diff --git a/CHANGELOG.md b/CHANGELOG.md index c99e318f7d9..7210295d15c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/). +## 3.78.0 - 2026-01-12 +### Added +- Support for Point-In-Time Recovery (PITR) as iRestore using timestamps in the Database service +- Support for selecting a maintenance window when enabling dedicated storage on a Resource Pool leader in the Database service +- Support for pausing and resuming maintenance patching in the Database service +- Support for providing the OCID of the standby local Autonomous Data Guard (ADG) Resource Pool leader when enabling local ADG on a Resource Pool with dedicated storage in the Database service +- Support for Security Attributes in the DevOps Deploy service +- Support for platform configuration soft links with new optional parameters in the Fleet Application Management service +- Support for Database Console operations in the MySQL HeatWave service + +### Breaking Changes +- The enum `SortByEnum` was removed from the Budget service +- The models `GetPullRequestChangeSummaryMetricsRequest`, `ListPullRequestCommitsRequest`, `ListPullRequestFileChangesRequest`, `PullRequestChangeSummaryMetrics`, `PullRequestFileChangeSummary`, and `ResolvePullRequestCommentRequest` were removed from the Devops Deploy service + ## 3.77.2 - 2025-12-16 ### Added - Support for Batch service diff --git a/README.md b/README.md index 6b42bd82bb2..fb89988a4e3 100644 --- a/README.md +++ b/README.md @@ -25,9 +25,13 @@ For basic set up, see [Getting Started](https://docs.oracle.com/iaas/Content/API For details on compatibility, advanced configurations, and add-ons, see [Configuration](https://docs.oracle.com/iaas/Content/API/SDKDocs/javasdkconfig.htm). - *Circuit Breaker*: By default, circuit breaker feature is enabled, if it is not expected, please explicitly set the environment variable: -``` -export OCI_SDK_DEFAULT_CIRCUITBREAKER_ENABLED=FALSE -``` + ``` + export OCI_SDK_DEFAULT_CIRCUITBREAKER_ENABLED=FALSE + ``` +- *Token Refresh Retries*: By default, the token refresh retires are enabled for 401s and processing exceptions. You have the flexibility to disable these retries if needed. This can be achieved by setting the system property + ``` + System.setProperty("oci.javasdk.token.refresh.enabled", "false"); + ``` ## Changes Introduced In OCI Java SDK `3.x.y` diff --git a/bmc-accessgovernancecp/pom.xml b/bmc-accessgovernancecp/pom.xml index 0502aeadff7..85ab8cfc6df 100644 --- a/bmc-accessgovernancecp/pom.xml +++ b/bmc-accessgovernancecp/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-accessgovernancecp @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCP.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCP.java index 204e386c806..b80cf729efe 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCP.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCP.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPAsync.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPAsync.java index 6c499d72d2b..3dd098a195d 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPAsync.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPAsyncClient.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPAsyncClient.java index d89a86087be..28f6d151aba 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPAsyncClient.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPClient.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPClient.java index 348e7cef362..2bdeba3e0d4 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPClient.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPPaginators.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPPaginators.java index ff1f253cfd5..fc9e7895277 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPPaginators.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPWaiters.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPWaiters.java index a18c4bc712b..d9bd0efe2b1 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPWaiters.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/AccessGovernanceCPWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/ChangeGovernanceInstanceCompartmentDetails.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/ChangeGovernanceInstanceCompartmentDetails.java index 39b1a505ff3..698d64506f6 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/ChangeGovernanceInstanceCompartmentDetails.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/ChangeGovernanceInstanceCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.model; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/CreateGovernanceInstanceDetails.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/CreateGovernanceInstanceDetails.java index ddfac8c6e30..555d045ce01 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/CreateGovernanceInstanceDetails.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/CreateGovernanceInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.model; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/GovernanceInstance.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/GovernanceInstance.java index 563bd2a6fb1..6b2e6d07735 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/GovernanceInstance.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/GovernanceInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.model; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/GovernanceInstanceCollection.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/GovernanceInstanceCollection.java index b6dd276a5e6..aad23f6bd97 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/GovernanceInstanceCollection.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/GovernanceInstanceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.model; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/GovernanceInstanceConfiguration.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/GovernanceInstanceConfiguration.java index eb33cb4ae60..65923704dfe 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/GovernanceInstanceConfiguration.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/GovernanceInstanceConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.model; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/GovernanceInstanceSummary.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/GovernanceInstanceSummary.java index b10adfee4da..3152955c2f7 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/GovernanceInstanceSummary.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/GovernanceInstanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.model; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/InstanceLifecycleState.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/InstanceLifecycleState.java index eb88841a295..9fc6591f3c5 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/InstanceLifecycleState.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/InstanceLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.model; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/LicenseType.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/LicenseType.java index cd9983e7690..cd7bdd6e7c0 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/LicenseType.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/LicenseType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.model; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/SenderConfig.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/SenderConfig.java index 2d0ed1a901f..33b5e96e9d4 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/SenderConfig.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/SenderConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.model; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/SortOrder.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/SortOrder.java index e6da4a53241..fc2d3b909c6 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/SortOrder.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.model; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/UpdateGovernanceInstanceConfigurationDetails.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/UpdateGovernanceInstanceConfigurationDetails.java index 0d184f6857f..51cae78b82b 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/UpdateGovernanceInstanceConfigurationDetails.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/UpdateGovernanceInstanceConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.model; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/UpdateGovernanceInstanceDetails.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/UpdateGovernanceInstanceDetails.java index fc157177d1c..31541715da0 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/UpdateGovernanceInstanceDetails.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/UpdateGovernanceInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.model; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/UpdateSenderConfig.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/UpdateSenderConfig.java index 152822c6d9d..476c2040fad 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/UpdateSenderConfig.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/model/UpdateSenderConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.model; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/ChangeGovernanceInstanceCompartmentRequest.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/ChangeGovernanceInstanceCompartmentRequest.java index 6a053304b52..1801e2cce42 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/ChangeGovernanceInstanceCompartmentRequest.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/ChangeGovernanceInstanceCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.requests; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/CreateGovernanceInstanceRequest.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/CreateGovernanceInstanceRequest.java index 4e552ad2ed7..b107ef9acda 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/CreateGovernanceInstanceRequest.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/CreateGovernanceInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.requests; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/DeleteGovernanceInstanceRequest.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/DeleteGovernanceInstanceRequest.java index 7e70058e4bb..503b517d06b 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/DeleteGovernanceInstanceRequest.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/DeleteGovernanceInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.requests; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/GetGovernanceInstanceConfigurationRequest.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/GetGovernanceInstanceConfigurationRequest.java index 002d6244627..199704df805 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/GetGovernanceInstanceConfigurationRequest.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/GetGovernanceInstanceConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.requests; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/GetGovernanceInstanceRequest.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/GetGovernanceInstanceRequest.java index 5aa6e788c1a..bee13440726 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/GetGovernanceInstanceRequest.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/GetGovernanceInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.requests; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/ListGovernanceInstancesRequest.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/ListGovernanceInstancesRequest.java index 87c1db43555..881c3874b6b 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/ListGovernanceInstancesRequest.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/ListGovernanceInstancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.requests; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/UpdateGovernanceInstanceConfigurationRequest.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/UpdateGovernanceInstanceConfigurationRequest.java index 0a8a7150255..c78c656a74a 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/UpdateGovernanceInstanceConfigurationRequest.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/UpdateGovernanceInstanceConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.requests; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/UpdateGovernanceInstanceRequest.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/UpdateGovernanceInstanceRequest.java index fd785327f0d..14a5da185ca 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/UpdateGovernanceInstanceRequest.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/requests/UpdateGovernanceInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.requests; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/ChangeGovernanceInstanceCompartmentResponse.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/ChangeGovernanceInstanceCompartmentResponse.java index 932d681c697..616651c2dad 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/ChangeGovernanceInstanceCompartmentResponse.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/ChangeGovernanceInstanceCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.responses; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/CreateGovernanceInstanceResponse.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/CreateGovernanceInstanceResponse.java index a3b118d3299..5aab54e39e4 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/CreateGovernanceInstanceResponse.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/CreateGovernanceInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.responses; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/DeleteGovernanceInstanceResponse.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/DeleteGovernanceInstanceResponse.java index 8f864ffe89e..504d620c1e5 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/DeleteGovernanceInstanceResponse.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/DeleteGovernanceInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.responses; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/GetGovernanceInstanceConfigurationResponse.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/GetGovernanceInstanceConfigurationResponse.java index f14d8c21072..9b7cc8936fd 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/GetGovernanceInstanceConfigurationResponse.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/GetGovernanceInstanceConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.responses; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/GetGovernanceInstanceResponse.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/GetGovernanceInstanceResponse.java index 868891f0104..82a9a32264f 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/GetGovernanceInstanceResponse.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/GetGovernanceInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.responses; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/ListGovernanceInstancesResponse.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/ListGovernanceInstancesResponse.java index e542cbd7597..ec75bffcb22 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/ListGovernanceInstancesResponse.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/ListGovernanceInstancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.responses; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/UpdateGovernanceInstanceConfigurationResponse.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/UpdateGovernanceInstanceConfigurationResponse.java index edd6e7c996a..1a708f6c05f 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/UpdateGovernanceInstanceConfigurationResponse.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/UpdateGovernanceInstanceConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.responses; diff --git a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/UpdateGovernanceInstanceResponse.java b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/UpdateGovernanceInstanceResponse.java index 48bc368b9eb..aa89c006e90 100644 --- a/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/UpdateGovernanceInstanceResponse.java +++ b/bmc-accessgovernancecp/src/main/java/com/oracle/bmc/accessgovernancecp/responses/UpdateGovernanceInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.accessgovernancecp.responses; diff --git a/bmc-accessgovernancecp/src/main/resources/com/oracle/bmc/accessgovernancecp/client.properties b/bmc-accessgovernancecp/src/main/resources/com/oracle/bmc/accessgovernancecp/client.properties index 3e97bc8c4b5..a2b7b97cc6f 100644 --- a/bmc-accessgovernancecp/src/main/resources/com/oracle/bmc/accessgovernancecp/client.properties +++ b/bmc-accessgovernancecp/src/main/resources/com/oracle/bmc/accessgovernancecp/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-addons/bmc-adk/pom.xml b/bmc-addons/bmc-adk/pom.xml index 64102358bfe..02ea170ef80 100644 --- a/bmc-addons/bmc-adk/pom.xml +++ b/bmc-addons/bmc-adk/pom.xml @@ -6,7 +6,7 @@ com.oracle.oci.sdk oci-java-sdk-addons - 3.77.2 + 3.78.0 oci-java-sdk-addons-adk diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/agent/Agent.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/agent/Agent.java index d71f75a325c..17a6997b1fe 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/agent/Agent.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/agent/Agent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.agent; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/agent/RunOptions.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/agent/RunOptions.java index c842e4d9864..51ceda1863d 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/agent/RunOptions.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/agent/RunOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.agent; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/client/AgentClient.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/client/AgentClient.java index 0ae90e1ca53..d05fdc7a0c5 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/client/AgentClient.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/client/AgentClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.client; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/client/mcp/McpClient.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/client/mcp/McpClient.java index 677f79dce7e..8295d429800 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/client/mcp/McpClient.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/client/mcp/McpClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.client.mcp; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/client/mcp/McpClientBase.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/client/mcp/McpClientBase.java index 4a32762ebd3..a749b1b43ad 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/client/mcp/McpClientBase.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/client/mcp/McpClientBase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.client.mcp; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/client/mcp/McpClientStdio.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/client/mcp/McpClientStdio.java index 5ad42a98da9..2e9051d509c 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/client/mcp/McpClientStdio.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/client/mcp/McpClientStdio.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.client.mcp; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/client/mcp/McpClientStreamableHttp.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/client/mcp/McpClientStreamableHttp.java index b4b098cc2b3..66bf9393055 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/client/mcp/McpClientStreamableHttp.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/client/mcp/McpClientStreamableHttp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.client.mcp; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/error/AdkException.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/error/AdkException.java index 04fe441168e..ca94202ec51 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/error/AdkException.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/error/AdkException.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.error; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/error/AgentException.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/error/AgentException.java index e83abf3afce..5f43d895af7 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/error/AgentException.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/error/AgentException.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.error; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/error/McpException.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/error/McpException.java index 754f11ac816..7fe9ce6b188 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/error/McpException.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/error/McpException.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.error; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/error/UserException.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/error/UserException.java index 107780b4978..e32af67e960 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/error/UserException.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/error/UserException.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.error; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/module/AgentModule.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/module/AgentModule.java index 97ac77b72e3..b5f8ba3630d 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/module/AgentModule.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/module/AgentModule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.module; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/module/McpSchema.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/module/McpSchema.java index 821525eacb0..4d834d7eb34 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/module/McpSchema.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/module/McpSchema.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.module; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/run/RunResponse.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/run/RunResponse.java index 7b822e37a3b..62d1cd79dd5 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/run/RunResponse.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/run/RunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.run; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/FunctionTool.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/FunctionTool.java index cbaf069a69c..25d8485a929 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/FunctionTool.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/FunctionTool.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.tools; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/Param.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/Param.java index c4f579094f0..2378b921604 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/Param.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/Param.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.tools; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/Tool.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/Tool.java index 8accb3c6e55..7ebe7578d47 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/Tool.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/Tool.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.tools; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/Toolkit.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/Toolkit.java index 306021e2890..c35d5088433 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/Toolkit.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/Toolkit.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.tools; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/prebuilt/AgenticRagTool.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/prebuilt/AgenticRagTool.java index 1bde732b3f6..bd3ff987976 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/prebuilt/AgenticRagTool.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/prebuilt/AgenticRagTool.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.tools.prebuilt; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/prebuilt/CalculatorToolkit.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/prebuilt/CalculatorToolkit.java index c6aa39f331b..67e8c471452 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/prebuilt/CalculatorToolkit.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/tools/prebuilt/CalculatorToolkit.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.tools.prebuilt; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/utils/Console.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/utils/Console.java index 536420039c1..174eed84bb8 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/utils/Console.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/utils/Console.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.utils; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/utils/Constants.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/utils/Constants.java index 383eaad29a5..9e37ad130d2 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/utils/Constants.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/utils/Constants.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.utils; diff --git a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/utils/JsonUtils.java b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/utils/JsonUtils.java index f92112dfe0f..807a71277ac 100644 --- a/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/utils/JsonUtils.java +++ b/bmc-addons/bmc-adk/src/main/java/com/oracle/bmc/adk/utils/JsonUtils.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.utils; diff --git a/bmc-addons/bmc-adk/src/main/resources/simplelogger.properties b/bmc-addons/bmc-adk/src/main/resources/simplelogger.properties index 9955532ca5e..6865122676f 100644 --- a/bmc-addons/bmc-adk/src/main/resources/simplelogger.properties +++ b/bmc-addons/bmc-adk/src/main/resources/simplelogger.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/agent/AgentTest.java b/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/agent/AgentTest.java index 7e547fd53d7..7f11b37e246 100644 --- a/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/agent/AgentTest.java +++ b/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/agent/AgentTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.agent; diff --git a/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/agent/McpClientBaseTest.java b/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/agent/McpClientBaseTest.java index d1151be4692..ad0c219ac11 100644 --- a/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/agent/McpClientBaseTest.java +++ b/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/agent/McpClientBaseTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.agent; diff --git a/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/agent/McpClientStdioTest.java b/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/agent/McpClientStdioTest.java index f2323d18ff2..334dd0a89f5 100644 --- a/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/agent/McpClientStdioTest.java +++ b/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/agent/McpClientStdioTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.agent; diff --git a/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/agent/McpClientStreamableHttpTest.java b/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/agent/McpClientStreamableHttpTest.java index d2c6233cff3..be0346a93f3 100644 --- a/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/agent/McpClientStreamableHttpTest.java +++ b/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/agent/McpClientStreamableHttpTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.agent; diff --git a/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/agent/TestFunctionCall.java b/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/agent/TestFunctionCall.java index f47dac3177a..844c633587c 100644 --- a/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/agent/TestFunctionCall.java +++ b/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/agent/TestFunctionCall.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.agent; diff --git a/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/client/AgentClientTest.java b/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/client/AgentClientTest.java index b57881f1422..0ac37b4724f 100644 --- a/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/client/AgentClientTest.java +++ b/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/client/AgentClientTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.client; diff --git a/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/tools/FunctionToolTest.java b/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/tools/FunctionToolTest.java index 741e5cd78cf..4aa1622168d 100644 --- a/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/tools/FunctionToolTest.java +++ b/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/tools/FunctionToolTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.tools; diff --git a/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/tools/ToolkitTest.java b/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/tools/ToolkitTest.java index a7e67a877ae..c2038bc2bea 100644 --- a/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/tools/ToolkitTest.java +++ b/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/tools/ToolkitTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.tools; diff --git a/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/utils/RunResponseTest.java b/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/utils/RunResponseTest.java index fb72c0a0d30..60b1068ab47 100644 --- a/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/utils/RunResponseTest.java +++ b/bmc-addons/bmc-adk/src/test/java/com/oracle/bmc/adk/utils/RunResponseTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adk.utils; diff --git a/bmc-addons/bmc-aispeech-realtime/pom.xml b/bmc-addons/bmc-aispeech-realtime/pom.xml index 38c75516c7d..d613a3b5535 100644 --- a/bmc-addons/bmc-aispeech-realtime/pom.xml +++ b/bmc-addons/bmc-aispeech-realtime/pom.xml @@ -5,7 +5,7 @@ com.oracle.oci.sdk oci-java-sdk-addons - 3.77.2 + 3.78.0 ../pom.xml 4.0.0 @@ -53,12 +53,12 @@ com.oracle.oci.sdk oci-java-sdk-aispeech - 3.77.2 + 3.78.0 com.oracle.oci.sdk oci-java-sdk-common-httpclient-jersey - 3.77.2 + 3.78.0 compile diff --git a/bmc-addons/bmc-aispeech-realtime/src/main/java/com/oracle/bmc/aispeech/realtimespeech/RealtimeSpeechClient.java b/bmc-addons/bmc-aispeech-realtime/src/main/java/com/oracle/bmc/aispeech/realtimespeech/RealtimeSpeechClient.java index 8b9bf437e42..e232ae51093 100644 --- a/bmc-addons/bmc-aispeech-realtime/src/main/java/com/oracle/bmc/aispeech/realtimespeech/RealtimeSpeechClient.java +++ b/bmc-addons/bmc-aispeech-realtime/src/main/java/com/oracle/bmc/aispeech/realtimespeech/RealtimeSpeechClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.realtimespeech; diff --git a/bmc-addons/bmc-aispeech-realtime/src/main/java/com/oracle/bmc/aispeech/realtimespeech/RealtimeSpeechClientListener.java b/bmc-addons/bmc-aispeech-realtime/src/main/java/com/oracle/bmc/aispeech/realtimespeech/RealtimeSpeechClientListener.java index ad3bb770373..abcaaab173e 100644 --- a/bmc-addons/bmc-aispeech-realtime/src/main/java/com/oracle/bmc/aispeech/realtimespeech/RealtimeSpeechClientListener.java +++ b/bmc-addons/bmc-aispeech-realtime/src/main/java/com/oracle/bmc/aispeech/realtimespeech/RealtimeSpeechClientListener.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.realtimespeech; diff --git a/bmc-addons/bmc-aispeech-realtime/src/main/java/com/oracle/bmc/aispeech/realtimespeech/RealtimeSpeechConnectException.java b/bmc-addons/bmc-aispeech-realtime/src/main/java/com/oracle/bmc/aispeech/realtimespeech/RealtimeSpeechConnectException.java index d6bce443a89..362a7f78e49 100644 --- a/bmc-addons/bmc-aispeech-realtime/src/main/java/com/oracle/bmc/aispeech/realtimespeech/RealtimeSpeechConnectException.java +++ b/bmc-addons/bmc-aispeech-realtime/src/main/java/com/oracle/bmc/aispeech/realtimespeech/RealtimeSpeechConnectException.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.realtimespeech; diff --git a/bmc-addons/bmc-aispeech-realtime/src/test/java/com/oracle/bmc/aispeech/realtimespeech/RealtimeSpeechClientTest.java b/bmc-addons/bmc-aispeech-realtime/src/test/java/com/oracle/bmc/aispeech/realtimespeech/RealtimeSpeechClientTest.java index a1dbd8b17f3..0ee0d4a0a2f 100644 --- a/bmc-addons/bmc-aispeech-realtime/src/test/java/com/oracle/bmc/aispeech/realtimespeech/RealtimeSpeechClientTest.java +++ b/bmc-addons/bmc-aispeech-realtime/src/test/java/com/oracle/bmc/aispeech/realtimespeech/RealtimeSpeechClientTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.realtimespeech; diff --git a/bmc-addons/bmc-apache-configurator-jersey-addon/pom.xml b/bmc-addons/bmc-apache-configurator-jersey-addon/pom.xml index 19d6a495f7b..314b6dca27a 100644 --- a/bmc-addons/bmc-apache-configurator-jersey-addon/pom.xml +++ b/bmc-addons/bmc-apache-configurator-jersey-addon/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk-addons - 3.77.2 + 3.78.0 ../pom.xml @@ -17,14 +17,14 @@ com.oracle.oci.sdk oci-java-sdk-bom - 3.77.2 + 3.78.0 pom import com.oracle.oci.sdk oci-java-sdk-common-httpclient-jersey - 3.77.2 + 3.78.0 pom import diff --git a/bmc-addons/bmc-apache-configurator-jersey-addon/src/main/java/com/oracle/bmc/http/client/jersey/apacheconfigurator/ApacheConfigurator.java b/bmc-addons/bmc-apache-configurator-jersey-addon/src/main/java/com/oracle/bmc/http/client/jersey/apacheconfigurator/ApacheConfigurator.java index 3479d07f767..a24433f1a1d 100644 --- a/bmc-addons/bmc-apache-configurator-jersey-addon/src/main/java/com/oracle/bmc/http/client/jersey/apacheconfigurator/ApacheConfigurator.java +++ b/bmc-addons/bmc-apache-configurator-jersey-addon/src/main/java/com/oracle/bmc/http/client/jersey/apacheconfigurator/ApacheConfigurator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey.apacheconfigurator; diff --git a/bmc-addons/bmc-apache-configurator-jersey-addon/src/main/java/com/oracle/bmc/http/client/jersey/apacheconfigurator/ApacheConnectionPoolConfig.java b/bmc-addons/bmc-apache-configurator-jersey-addon/src/main/java/com/oracle/bmc/http/client/jersey/apacheconfigurator/ApacheConnectionPoolConfig.java index dc0d68ed04c..5c5a7de65eb 100644 --- a/bmc-addons/bmc-apache-configurator-jersey-addon/src/main/java/com/oracle/bmc/http/client/jersey/apacheconfigurator/ApacheConnectionPoolConfig.java +++ b/bmc-addons/bmc-apache-configurator-jersey-addon/src/main/java/com/oracle/bmc/http/client/jersey/apacheconfigurator/ApacheConnectionPoolConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey.apacheconfigurator; diff --git a/bmc-addons/bmc-apache-configurator-jersey-addon/src/main/java/com/oracle/bmc/http/client/jersey/apacheconfigurator/ApacheConnectorProperties.java b/bmc-addons/bmc-apache-configurator-jersey-addon/src/main/java/com/oracle/bmc/http/client/jersey/apacheconfigurator/ApacheConnectorProperties.java index c10a412b0c2..81bdecfc155 100644 --- a/bmc-addons/bmc-apache-configurator-jersey-addon/src/main/java/com/oracle/bmc/http/client/jersey/apacheconfigurator/ApacheConnectorProperties.java +++ b/bmc-addons/bmc-apache-configurator-jersey-addon/src/main/java/com/oracle/bmc/http/client/jersey/apacheconfigurator/ApacheConnectorProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey.apacheconfigurator; diff --git a/bmc-addons/bmc-apache-configurator-jersey3-addon/pom.xml b/bmc-addons/bmc-apache-configurator-jersey3-addon/pom.xml index d064535fcc1..b734ce8b94f 100644 --- a/bmc-addons/bmc-apache-configurator-jersey3-addon/pom.xml +++ b/bmc-addons/bmc-apache-configurator-jersey3-addon/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk-addons - 3.77.2 + 3.78.0 ../pom.xml @@ -17,14 +17,14 @@ com.oracle.oci.sdk oci-java-sdk-bom - 3.77.2 + 3.78.0 pom import com.oracle.oci.sdk oci-java-sdk-common-httpclient-jersey3 - 3.77.2 + 3.78.0 pom import diff --git a/bmc-addons/bmc-apache-configurator-jersey3-addon/src/main/java/com/oracle/bmc/http/client/jersey3/apacheconfigurator/ApacheConfigurator.java b/bmc-addons/bmc-apache-configurator-jersey3-addon/src/main/java/com/oracle/bmc/http/client/jersey3/apacheconfigurator/ApacheConfigurator.java index deeffbf2246..282b4e3d760 100644 --- a/bmc-addons/bmc-apache-configurator-jersey3-addon/src/main/java/com/oracle/bmc/http/client/jersey3/apacheconfigurator/ApacheConfigurator.java +++ b/bmc-addons/bmc-apache-configurator-jersey3-addon/src/main/java/com/oracle/bmc/http/client/jersey3/apacheconfigurator/ApacheConfigurator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3.apacheconfigurator; diff --git a/bmc-addons/bmc-apache-configurator-jersey3-addon/src/main/java/com/oracle/bmc/http/client/jersey3/apacheconfigurator/ApacheConnectionPoolConfig.java b/bmc-addons/bmc-apache-configurator-jersey3-addon/src/main/java/com/oracle/bmc/http/client/jersey3/apacheconfigurator/ApacheConnectionPoolConfig.java index 9ffe71a224d..29191ca8c79 100644 --- a/bmc-addons/bmc-apache-configurator-jersey3-addon/src/main/java/com/oracle/bmc/http/client/jersey3/apacheconfigurator/ApacheConnectionPoolConfig.java +++ b/bmc-addons/bmc-apache-configurator-jersey3-addon/src/main/java/com/oracle/bmc/http/client/jersey3/apacheconfigurator/ApacheConnectionPoolConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3.apacheconfigurator; diff --git a/bmc-addons/bmc-apache-configurator-jersey3-addon/src/main/java/com/oracle/bmc/http/client/jersey3/apacheconfigurator/ApacheConnectorProperties.java b/bmc-addons/bmc-apache-configurator-jersey3-addon/src/main/java/com/oracle/bmc/http/client/jersey3/apacheconfigurator/ApacheConnectorProperties.java index fe1209ced00..205fd1582e9 100644 --- a/bmc-addons/bmc-apache-configurator-jersey3-addon/src/main/java/com/oracle/bmc/http/client/jersey3/apacheconfigurator/ApacheConnectorProperties.java +++ b/bmc-addons/bmc-apache-configurator-jersey3-addon/src/main/java/com/oracle/bmc/http/client/jersey3/apacheconfigurator/ApacheConnectorProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3.apacheconfigurator; diff --git a/bmc-addons/bmc-apache-connector-provider/pom.xml b/bmc-addons/bmc-apache-connector-provider/pom.xml index ac521bc5ac0..cf48a91e09e 100644 --- a/bmc-addons/bmc-apache-connector-provider/pom.xml +++ b/bmc-addons/bmc-apache-connector-provider/pom.xml @@ -5,7 +5,7 @@ com.oracle.oci.sdk oci-java-sdk-addons - 3.77.2 + 3.78.0 ../pom.xml @@ -18,7 +18,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-addons/bmc-oke-workload-identity/pom.xml b/bmc-addons/bmc-oke-workload-identity/pom.xml index a4d4b15bf4e..478e789293c 100644 --- a/bmc-addons/bmc-oke-workload-identity/pom.xml +++ b/bmc-addons/bmc-oke-workload-identity/pom.xml @@ -4,7 +4,7 @@ oci-java-sdk-addons com.oracle.oci.sdk - 3.77.2 + 3.78.0 4.0.0 @@ -38,25 +38,25 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 compile com.oracle.oci.sdk oci-java-sdk-core - 3.77.2 + 3.78.0 test com.oracle.oci.sdk oci-java-sdk-identity - 3.77.2 + 3.78.0 test com.oracle.oci.sdk oci-java-sdk-keymanagement - 3.77.2 + 3.78.0 test diff --git a/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/OkeWorkloadIdentityAuthenticationDetailsProvider.java b/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/OkeWorkloadIdentityAuthenticationDetailsProvider.java index 9b547b81c6e..a907765cf98 100644 --- a/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/OkeWorkloadIdentityAuthenticationDetailsProvider.java +++ b/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/OkeWorkloadIdentityAuthenticationDetailsProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.okeworkloadidentity; diff --git a/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/GetOkeResourcePrincipalSessionTokenDetails.java b/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/GetOkeResourcePrincipalSessionTokenDetails.java index 898ab966325..23d430f8b68 100644 --- a/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/GetOkeResourcePrincipalSessionTokenDetails.java +++ b/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/GetOkeResourcePrincipalSessionTokenDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.okeworkloadidentity.internal; diff --git a/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/GetOkeResourcePrincipalSessionTokenRequest.java b/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/GetOkeResourcePrincipalSessionTokenRequest.java index 45ea8ea7f00..dd33443136e 100644 --- a/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/GetOkeResourcePrincipalSessionTokenRequest.java +++ b/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/GetOkeResourcePrincipalSessionTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.okeworkloadidentity.internal; diff --git a/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/GetOkeResourcePrincipalSessionTokenResponse.java b/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/GetOkeResourcePrincipalSessionTokenResponse.java index 4bee0b47a55..26d75648f6d 100644 --- a/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/GetOkeResourcePrincipalSessionTokenResponse.java +++ b/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/GetOkeResourcePrincipalSessionTokenResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.okeworkloadidentity.internal; diff --git a/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/OkeResourcePrincipalSessionToken.java b/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/OkeResourcePrincipalSessionToken.java index b4ca988d224..732de8f1bf5 100644 --- a/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/OkeResourcePrincipalSessionToken.java +++ b/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/OkeResourcePrincipalSessionToken.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.okeworkloadidentity.internal; diff --git a/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/OkeTenancyOnlyAuthenticationDetailsProvider.java b/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/OkeTenancyOnlyAuthenticationDetailsProvider.java index 319d83beed2..211bc17e54a 100644 --- a/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/OkeTenancyOnlyAuthenticationDetailsProvider.java +++ b/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/OkeTenancyOnlyAuthenticationDetailsProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.okeworkloadidentity.internal; diff --git a/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/OkeWorkloadIdentityResourcePrincipalsFederationClient.java b/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/OkeWorkloadIdentityResourcePrincipalsFederationClient.java index ab5ddf8163b..08982526352 100644 --- a/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/OkeWorkloadIdentityResourcePrincipalsFederationClient.java +++ b/bmc-addons/bmc-oke-workload-identity/src/main/java/com/oracle/bmc/auth/okeworkloadidentity/internal/OkeWorkloadIdentityResourcePrincipalsFederationClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.okeworkloadidentity.internal; diff --git a/bmc-addons/bmc-resteasy-client-configurator/pom.xml b/bmc-addons/bmc-resteasy-client-configurator/pom.xml index a48e6386ed4..5fcf94b5f62 100644 --- a/bmc-addons/bmc-resteasy-client-configurator/pom.xml +++ b/bmc-addons/bmc-resteasy-client-configurator/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk-addons - 3.77.2 + 3.78.0 ../pom.xml @@ -23,7 +23,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-addons/bmc-resteasy-client-configurator/src/main/java/com/oracle/bmc/addons/resteasy/ResteasyClientConfigurator.java b/bmc-addons/bmc-resteasy-client-configurator/src/main/java/com/oracle/bmc/addons/resteasy/ResteasyClientConfigurator.java index 9f68bf990ac..828a1b4d61b 100644 --- a/bmc-addons/bmc-resteasy-client-configurator/src/main/java/com/oracle/bmc/addons/resteasy/ResteasyClientConfigurator.java +++ b/bmc-addons/bmc-resteasy-client-configurator/src/main/java/com/oracle/bmc/addons/resteasy/ResteasyClientConfigurator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.addons.resteasy; diff --git a/bmc-addons/bmc-sasl-oke-workload-identity/pom.xml b/bmc-addons/bmc-sasl-oke-workload-identity/pom.xml index da3f6eb6c85..526a21b86a7 100644 --- a/bmc-addons/bmc-sasl-oke-workload-identity/pom.xml +++ b/bmc-addons/bmc-sasl-oke-workload-identity/pom.xml @@ -4,7 +4,7 @@ oci-java-sdk-addons com.oracle.oci.sdk - 3.77.2 + 3.78.0 ../pom.xml 4.0.0 @@ -39,13 +39,13 @@ com.oracle.oci.sdk oci-java-sdk-addons-sasl - 3.77.2 + 3.78.0 compile com.oracle.oci.sdk oci-java-sdk-addons-oke-workload-identity - 3.77.2 + 3.78.0 compile diff --git a/bmc-addons/bmc-sasl-oke-workload-identity/src/main/java/com/oracle/bmc/auth/sasl/okeworkloadidentity/OkeWorkloadIdentityLoginModule.java b/bmc-addons/bmc-sasl-oke-workload-identity/src/main/java/com/oracle/bmc/auth/sasl/okeworkloadidentity/OkeWorkloadIdentityLoginModule.java index daa773528e4..2c94c716e6b 100644 --- a/bmc-addons/bmc-sasl-oke-workload-identity/src/main/java/com/oracle/bmc/auth/sasl/okeworkloadidentity/OkeWorkloadIdentityLoginModule.java +++ b/bmc-addons/bmc-sasl-oke-workload-identity/src/main/java/com/oracle/bmc/auth/sasl/okeworkloadidentity/OkeWorkloadIdentityLoginModule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.sasl.okeworkloadidentity; diff --git a/bmc-addons/bmc-sasl/pom.xml b/bmc-addons/bmc-sasl/pom.xml index a95138c6811..8a2e032b9e2 100644 --- a/bmc-addons/bmc-sasl/pom.xml +++ b/bmc-addons/bmc-sasl/pom.xml @@ -5,7 +5,7 @@ com.oracle.oci.sdk oci-java-sdk-addons - 3.77.2 + 3.78.0 ../pom.xml @@ -60,7 +60,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 diff --git a/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/InstancePrincipalsLoginModule.java b/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/InstancePrincipalsLoginModule.java index 689c9a83d55..c60c4b712f9 100644 --- a/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/InstancePrincipalsLoginModule.java +++ b/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/InstancePrincipalsLoginModule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.sasl; diff --git a/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/OciAuthProviderCallback.java b/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/OciAuthProviderCallback.java index 16c78a8ce48..6acecc2a254 100644 --- a/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/OciAuthProviderCallback.java +++ b/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/OciAuthProviderCallback.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.sasl; diff --git a/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/OciLoginModule.java b/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/OciLoginModule.java index 7e9f65ea51f..a2448e47b55 100644 --- a/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/OciLoginModule.java +++ b/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/OciLoginModule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.sasl; diff --git a/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/OciMechanism.java b/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/OciMechanism.java index 764d85e01b5..c8ce461e12a 100644 --- a/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/OciMechanism.java +++ b/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/OciMechanism.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.sasl; diff --git a/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/OciSaslClient.java b/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/OciSaslClient.java index 67ceeecbb1a..79c3dca0194 100644 --- a/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/OciSaslClient.java +++ b/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/OciSaslClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.sasl; diff --git a/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/OciSaslClientProvider.java b/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/OciSaslClientProvider.java index 7f7a86e3967..5bd4114a8ab 100644 --- a/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/OciSaslClientProvider.java +++ b/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/OciSaslClientProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.sasl; diff --git a/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/ResourcePrincipalsLoginModule.java b/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/ResourcePrincipalsLoginModule.java index 2e7be2ede3f..e12f2b1bf68 100644 --- a/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/ResourcePrincipalsLoginModule.java +++ b/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/ResourcePrincipalsLoginModule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.sasl; diff --git a/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/UserPrincipalsLoginModule.java b/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/UserPrincipalsLoginModule.java index db9fce569f6..6f980a20cd3 100644 --- a/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/UserPrincipalsLoginModule.java +++ b/bmc-addons/bmc-sasl/src/main/java/com/oracle/bmc/auth/sasl/UserPrincipalsLoginModule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.sasl; diff --git a/bmc-addons/bmc-sse-support-jersey3/pom.xml b/bmc-addons/bmc-sse-support-jersey3/pom.xml index 18b9a091d0d..11756c6932d 100644 --- a/bmc-addons/bmc-sse-support-jersey3/pom.xml +++ b/bmc-addons/bmc-sse-support-jersey3/pom.xml @@ -5,7 +5,7 @@ oci-java-sdk-addons com.oracle.oci.sdk - 3.77.2 + 3.78.0 ../pom.xml 4.0.0 @@ -150,12 +150,12 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 com.oracle.oci.sdk oci-java-sdk-generativeaiinference - 3.77.2 + 3.78.0 test @@ -164,7 +164,7 @@ but the code in it needs it. --> com.oracle.oci.sdk oci-java-sdk-common-httpclient-jersey3 - 3.77.2 + 3.78.0 diff --git a/bmc-addons/bmc-sse-support-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/sse/SseSupport.java b/bmc-addons/bmc-sse-support-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/sse/SseSupport.java index 6846f238d16..93328f0bea3 100644 --- a/bmc-addons/bmc-sse-support-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/sse/SseSupport.java +++ b/bmc-addons/bmc-sse-support-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/sse/SseSupport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3.sse; diff --git a/bmc-addons/bmc-sse-support-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/sse/internal/SseEventReader.java b/bmc-addons/bmc-sse-support-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/sse/internal/SseEventReader.java index cb0af230ca8..0f671fa9f97 100644 --- a/bmc-addons/bmc-sse-support-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/sse/internal/SseEventReader.java +++ b/bmc-addons/bmc-sse-support-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/sse/internal/SseEventReader.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3.sse.internal; diff --git a/bmc-addons/bmc-sse-support-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/sse/GenerateTextExample.java b/bmc-addons/bmc-sse-support-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/sse/GenerateTextExample.java index 4fd47de8da6..511269fe013 100644 --- a/bmc-addons/bmc-sse-support-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/sse/GenerateTextExample.java +++ b/bmc-addons/bmc-sse-support-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/sse/GenerateTextExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3.sse; diff --git a/bmc-addons/bmc-sse-support-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/sse/GenericChatExample.java b/bmc-addons/bmc-sse-support-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/sse/GenericChatExample.java index fa9c0191f44..99f017396aa 100644 --- a/bmc-addons/bmc-sse-support-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/sse/GenericChatExample.java +++ b/bmc-addons/bmc-sse-support-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/sse/GenericChatExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3.sse; diff --git a/bmc-addons/bmc-sse-support/pom.xml b/bmc-addons/bmc-sse-support/pom.xml index e206341e8d2..8524b8784b0 100644 --- a/bmc-addons/bmc-sse-support/pom.xml +++ b/bmc-addons/bmc-sse-support/pom.xml @@ -5,7 +5,7 @@ oci-java-sdk-addons com.oracle.oci.sdk - 3.77.2 + 3.78.0 ../pom.xml 4.0.0 @@ -150,12 +150,12 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 com.oracle.oci.sdk oci-java-sdk-generativeaiinference - 3.77.2 + 3.78.0 test @@ -164,7 +164,7 @@ but the code in it needs it. --> com.oracle.oci.sdk oci-java-sdk-common-httpclient-jersey - 3.77.2 + 3.78.0 diff --git a/bmc-addons/bmc-sse-support/src/main/java/com/oracle/bmc/http/client/jersey/sse/SseSupport.java b/bmc-addons/bmc-sse-support/src/main/java/com/oracle/bmc/http/client/jersey/sse/SseSupport.java index 1a079acd2b5..c3593c1af63 100644 --- a/bmc-addons/bmc-sse-support/src/main/java/com/oracle/bmc/http/client/jersey/sse/SseSupport.java +++ b/bmc-addons/bmc-sse-support/src/main/java/com/oracle/bmc/http/client/jersey/sse/SseSupport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey.sse; diff --git a/bmc-addons/bmc-sse-support/src/main/java/com/oracle/bmc/http/client/jersey/sse/internal/SseEventReader.java b/bmc-addons/bmc-sse-support/src/main/java/com/oracle/bmc/http/client/jersey/sse/internal/SseEventReader.java index b3f249d19d8..8e8ba212003 100644 --- a/bmc-addons/bmc-sse-support/src/main/java/com/oracle/bmc/http/client/jersey/sse/internal/SseEventReader.java +++ b/bmc-addons/bmc-sse-support/src/main/java/com/oracle/bmc/http/client/jersey/sse/internal/SseEventReader.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey.sse.internal; diff --git a/bmc-addons/bmc-sse-support/src/test/java/com/oracle/bmc/http/client/jersey/sse/GenerateTextExample.java b/bmc-addons/bmc-sse-support/src/test/java/com/oracle/bmc/http/client/jersey/sse/GenerateTextExample.java index 8c41eae103a..f370bb35daa 100644 --- a/bmc-addons/bmc-sse-support/src/test/java/com/oracle/bmc/http/client/jersey/sse/GenerateTextExample.java +++ b/bmc-addons/bmc-sse-support/src/test/java/com/oracle/bmc/http/client/jersey/sse/GenerateTextExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey.sse; diff --git a/bmc-addons/bmc-sse-support/src/test/java/com/oracle/bmc/http/client/jersey/sse/GenericChatExample.java b/bmc-addons/bmc-sse-support/src/test/java/com/oracle/bmc/http/client/jersey/sse/GenericChatExample.java index ec70efca8c6..729dd04a65c 100644 --- a/bmc-addons/bmc-sse-support/src/test/java/com/oracle/bmc/http/client/jersey/sse/GenericChatExample.java +++ b/bmc-addons/bmc-sse-support/src/test/java/com/oracle/bmc/http/client/jersey/sse/GenericChatExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey.sse; diff --git a/bmc-addons/pom.xml b/bmc-addons/pom.xml index 8db5475abbc..4ba66f629ce 100644 --- a/bmc-addons/pom.xml +++ b/bmc-addons/pom.xml @@ -5,7 +5,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml diff --git a/bmc-adm/pom.xml b/bmc-adm/pom.xml index 0309533b03d..12595765811 100644 --- a/bmc-adm/pom.xml +++ b/bmc-adm/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-adm @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagement.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagement.java index beddd350bc9..d357a802f56 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagement.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagementAsync.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagementAsync.java index 56be30a5b7f..0e7d51a483a 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagementAsync.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagementAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagementAsyncClient.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagementAsyncClient.java index 218b17296b0..5c8a58aec88 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagementAsyncClient.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagementAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagementClient.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagementClient.java index f0143866b80..740db08db49 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagementClient.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagementClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagementPaginators.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagementPaginators.java index 94787b35663..052c95e3fa3 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagementPaginators.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagementPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagementWaiters.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagementWaiters.java index c7635978cff..6d9ead770d3 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagementWaiters.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/ApplicationDependencyManagementWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ActionType.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ActionType.java index 989e64082a3..1471ab0bdaf 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ActionType.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependency.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependency.java index 2139615e713..902bf0d273c 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependency.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependency.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependencyRecommendationCollection.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependencyRecommendationCollection.java index 10cd6fca9c3..b627e2f5274 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependencyRecommendationCollection.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependencyRecommendationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependencyRecommendationSummary.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependencyRecommendationSummary.java index b4d7d8a5c4c..559566f4672 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependencyRecommendationSummary.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependencyRecommendationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependencyVulnerabilityCollection.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependencyVulnerabilityCollection.java index d5d5a3d2752..e06e0273c1b 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependencyVulnerabilityCollection.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependencyVulnerabilityCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependencyVulnerabilitySummary.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependencyVulnerabilitySummary.java index c2185b9c2ed..1bea1869699 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependencyVulnerabilitySummary.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplicationDependencyVulnerabilitySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplyStage.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplyStage.java index f0b333822bf..d14b6d30ff5 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplyStage.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ApplyStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ChangeKnowledgeBaseCompartmentDetails.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ChangeKnowledgeBaseCompartmentDetails.java index 9e49da72842..e2436c4bae8 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ChangeKnowledgeBaseCompartmentDetails.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ChangeKnowledgeBaseCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ChangeRemediationRecipeCompartmentDetails.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ChangeRemediationRecipeCompartmentDetails.java index 1d89dec634d..e14a46e4d08 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ChangeRemediationRecipeCompartmentDetails.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ChangeRemediationRecipeCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ChangeRemediationRunCompartmentDetails.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ChangeRemediationRunCompartmentDetails.java index bfba1774793..c33ac15f34f 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ChangeRemediationRunCompartmentDetails.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ChangeRemediationRunCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ChangeVulnerabilityAuditCompartmentDetails.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ChangeVulnerabilityAuditCompartmentDetails.java index 262a6262cbf..8d9e75b5fb1 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ChangeVulnerabilityAuditCompartmentDetails.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ChangeVulnerabilityAuditCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ConfigSeverity.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ConfigSeverity.java index 7c74fcd899b..19cadeaefc9 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ConfigSeverity.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ConfigSeverity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/CreateKnowledgeBaseDetails.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/CreateKnowledgeBaseDetails.java index c83787518db..84da180842d 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/CreateKnowledgeBaseDetails.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/CreateKnowledgeBaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/CreateRemediationRecipeDetails.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/CreateRemediationRecipeDetails.java index 65ea4eb7a1a..df8c1633d59 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/CreateRemediationRecipeDetails.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/CreateRemediationRecipeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/CreateRemediationRunDetails.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/CreateRemediationRunDetails.java index 104343c8a38..eb18fcba772 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/CreateRemediationRunDetails.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/CreateRemediationRunDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/CreateVulnerabilityAuditDetails.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/CreateVulnerabilityAuditDetails.java index 5c9f1acd54e..34565665ac0 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/CreateVulnerabilityAuditDetails.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/CreateVulnerabilityAuditDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/DetectConfiguration.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/DetectConfiguration.java index 7ecf37eab8d..da96111342d 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/DetectConfiguration.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/DetectConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/DetectStage.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/DetectStage.java index e0c8ac0861c..fdde64fcdcc 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/DetectStage.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/DetectStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ExternalResourceVulnerabilityAuditSource.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ExternalResourceVulnerabilityAuditSource.java index 092e61eebfb..dc85f41904e 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ExternalResourceVulnerabilityAuditSource.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ExternalResourceVulnerabilityAuditSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ExternalScmConfiguration.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ExternalScmConfiguration.java index 65f7cf4b1ce..960ea728274 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ExternalScmConfiguration.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ExternalScmConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/GitHubActionsConfiguration.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/GitHubActionsConfiguration.java index 2655c650738..fddf2c4b537 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/GitHubActionsConfiguration.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/GitHubActionsConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/GitLabPipelineConfiguration.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/GitLabPipelineConfiguration.java index b90f6ed8228..2a88def007a 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/GitLabPipelineConfiguration.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/GitLabPipelineConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/JenkinsPipelineConfiguration.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/JenkinsPipelineConfiguration.java index 58345f850d1..5fbf48a097d 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/JenkinsPipelineConfiguration.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/JenkinsPipelineConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/KnowledgeBase.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/KnowledgeBase.java index 87cbf21e5cf..32e8441708b 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/KnowledgeBase.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/KnowledgeBase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/KnowledgeBaseCollection.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/KnowledgeBaseCollection.java index 666adcf9e9c..f7f91b27f02 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/KnowledgeBaseCollection.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/KnowledgeBaseCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/KnowledgeBaseSummary.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/KnowledgeBaseSummary.java index ec8de0454aa..af76ed42a6d 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/KnowledgeBaseSummary.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/KnowledgeBaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/NetworkConfiguration.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/NetworkConfiguration.java index 38eb0bb8788..28215fc3b98 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/NetworkConfiguration.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/NetworkConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/NoneVerifyConfiguration.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/NoneVerifyConfiguration.java index d5a5275ef32..5d9ad604c7d 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/NoneVerifyConfiguration.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/NoneVerifyConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/OciCodeRepositoryConfiguration.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/OciCodeRepositoryConfiguration.java index c72bd4fc49f..ad15af2f4df 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/OciCodeRepositoryConfiguration.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/OciCodeRepositoryConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/OciDevOpsBuildConfiguration.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/OciDevOpsBuildConfiguration.java index 3cfae7e4c11..7bdb2766c69 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/OciDevOpsBuildConfiguration.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/OciDevOpsBuildConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/OciResourceVulnerabilityAuditSource.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/OciResourceVulnerabilityAuditSource.java index 3acf51aea83..ee446b73015 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/OciResourceVulnerabilityAuditSource.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/OciResourceVulnerabilityAuditSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/OperationStatus.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/OperationStatus.java index 13d0296b5d0..49bd67299fc 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/OperationStatus.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/OperationType.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/OperationType.java index 19347aa5dbf..95cc11516c7 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/OperationType.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/PipelineProperties.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/PipelineProperties.java index 92546056d3b..5e2ac69d403 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/PipelineProperties.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/PipelineProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/PullRequestProperties.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/PullRequestProperties.java index f655d0e9528..a87ec6b2a02 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/PullRequestProperties.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/PullRequestProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RecommendStage.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RecommendStage.java index c161a729fc0..121bd59aaf5 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RecommendStage.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RecommendStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRecipe.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRecipe.java index 022352d19a9..43a9e1ceccc 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRecipe.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRecipe.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRecipeCollection.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRecipeCollection.java index 2178c5d1eaa..4620e4cfc47 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRecipeCollection.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRecipeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRecipeSummary.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRecipeSummary.java index 13a623cef5f..051153aec19 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRecipeSummary.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRecipeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRun.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRun.java index 2b0d3718b98..d6a56cf20e2 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRun.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRun.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunCollection.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunCollection.java index 36019e10f6d..6e786c245b7 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunCollection.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunStage.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunStage.java index bd33747d4f3..0807895811e 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunStage.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunStageCollection.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunStageCollection.java index 59076a016bd..5d2734afcb8 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunStageCollection.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunStageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunStageSummary.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunStageSummary.java index 297ef2ab38f..b3d0f4bd1cb 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunStageSummary.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunStageType.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunStageType.java index c43ac21119e..b1e26abe654 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunStageType.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunStageType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunSummary.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunSummary.java index eee91013c34..5fef51d47e9 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunSummary.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/RemediationRunSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ScmConfiguration.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ScmConfiguration.java index 4969d22ae93..b247512e96f 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ScmConfiguration.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/ScmConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/SortOrder.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/SortOrder.java index 94481df85df..5bcff112248 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/SortOrder.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/StageSummary.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/StageSummary.java index 6c777f257b9..d074d68d2f5 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/StageSummary.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/StageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UnknownSourceVulnerabilityAuditSource.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UnknownSourceVulnerabilityAuditSource.java index 0becd013838..8c5ddf1c955 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UnknownSourceVulnerabilityAuditSource.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UnknownSourceVulnerabilityAuditSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UpdateKnowledgeBaseDetails.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UpdateKnowledgeBaseDetails.java index 91ce5749655..4a526383b7a 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UpdateKnowledgeBaseDetails.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UpdateKnowledgeBaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UpdateRemediationRecipeDetails.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UpdateRemediationRecipeDetails.java index b19e71a9bfc..55f2c4787e5 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UpdateRemediationRecipeDetails.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UpdateRemediationRecipeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UpdateRemediationRunDetails.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UpdateRemediationRunDetails.java index cdef8f76cda..e01c535a7bf 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UpdateRemediationRunDetails.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UpdateRemediationRunDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UpdateVulnerabilityAuditDetails.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UpdateVulnerabilityAuditDetails.java index 25883a0b89b..c30127a7f5e 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UpdateVulnerabilityAuditDetails.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UpdateVulnerabilityAuditDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UsageDataDetails.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UsageDataDetails.java index 1cbb61deb44..1b72b5c99a3 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UsageDataDetails.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UsageDataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UsageDataViaObjectStorageTupleDetails.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UsageDataViaObjectStorageTupleDetails.java index e99df6946a4..90bead0ba3d 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UsageDataViaObjectStorageTupleDetails.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/UsageDataViaObjectStorageTupleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VerifyConfiguration.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VerifyConfiguration.java index 4dd2c57bf38..73a029b98b1 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VerifyConfiguration.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VerifyConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VerifyStage.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VerifyStage.java index 76dfd218c6c..f025f1e5eb5 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VerifyStage.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VerifyStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/Vulnerability.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/Vulnerability.java index 57fd1ba6fc2..af67725a594 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/Vulnerability.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/Vulnerability.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilityAudit.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilityAudit.java index b7378782b8b..1e2daea4c7d 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilityAudit.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilityAudit.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilityAuditCollection.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilityAuditCollection.java index 26aecd0481a..ac2a378981a 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilityAuditCollection.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilityAuditCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilityAuditConfiguration.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilityAuditConfiguration.java index 810e91ed39b..89a085ffae1 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilityAuditConfiguration.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilityAuditConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilityAuditSource.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilityAuditSource.java index ad5eef42929..b367d0c0292 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilityAuditSource.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilityAuditSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilityAuditSummary.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilityAuditSummary.java index db2f1906c37..21f35a608f4 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilityAuditSummary.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilityAuditSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilitySeverity.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilitySeverity.java index 7695eaf7c4c..d51cc5b98fe 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilitySeverity.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/VulnerabilitySeverity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequest.java index f91989ec8f9..06f031cd899 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestError.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestError.java index 18fd0ba47fa..1975d70bf18 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestError.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestErrorCollection.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestErrorCollection.java index 8bfa189e385..4367969c7e7 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestErrorCollection.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestLogEntry.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestLogEntry.java index eb9936cb89a..540cba9e002 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestLogEntry.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestLogEntryCollection.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestLogEntryCollection.java index 456ea3c0621..00fec3f8349 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestLogEntryCollection.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestResource.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestResource.java index 54d6f089e9c..e84b044060b 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestResource.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestResourceMetadataKey.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestResourceMetadataKey.java index b587244b68e..c4dd9849f8e 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestResourceMetadataKey.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestSummary.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestSummary.java index 57d0b1490bc..6b823471f2e 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestSummary.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestSummaryCollection.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestSummaryCollection.java index bcc85841115..1e802560ca4 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestSummaryCollection.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.model; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ActivateRemediationRecipeRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ActivateRemediationRecipeRequest.java index 843291a6094..51abbb396d3 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ActivateRemediationRecipeRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ActivateRemediationRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CancelRemediationRunRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CancelRemediationRunRequest.java index a22ffd5ec8e..00a3cfe6748 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CancelRemediationRunRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CancelRemediationRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CancelWorkRequestRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CancelWorkRequestRequest.java index 31859332383..f2fa5bc07b9 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CancelWorkRequestRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ChangeKnowledgeBaseCompartmentRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ChangeKnowledgeBaseCompartmentRequest.java index 1c924249147..a8abaa366ce 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ChangeKnowledgeBaseCompartmentRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ChangeKnowledgeBaseCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ChangeRemediationRecipeCompartmentRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ChangeRemediationRecipeCompartmentRequest.java index 4aeb08793c9..83091cbf802 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ChangeRemediationRecipeCompartmentRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ChangeRemediationRecipeCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ChangeRemediationRunCompartmentRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ChangeRemediationRunCompartmentRequest.java index db142921c12..05ff08444cd 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ChangeRemediationRunCompartmentRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ChangeRemediationRunCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ChangeVulnerabilityAuditCompartmentRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ChangeVulnerabilityAuditCompartmentRequest.java index c0d8abcbcc0..e2ea3e1d3e5 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ChangeVulnerabilityAuditCompartmentRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ChangeVulnerabilityAuditCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CreateKnowledgeBaseRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CreateKnowledgeBaseRequest.java index dd819a466e2..b3736e7922a 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CreateKnowledgeBaseRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CreateKnowledgeBaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CreateRemediationRecipeRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CreateRemediationRecipeRequest.java index c702ff56e3b..13a79fa6561 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CreateRemediationRecipeRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CreateRemediationRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CreateRemediationRunRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CreateRemediationRunRequest.java index 53ae437153e..4b8dfe7f86b 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CreateRemediationRunRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CreateRemediationRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CreateVulnerabilityAuditRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CreateVulnerabilityAuditRequest.java index 295baea7693..27086f66970 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CreateVulnerabilityAuditRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/CreateVulnerabilityAuditRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/DeactivateRemediationRecipeRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/DeactivateRemediationRecipeRequest.java index 08d5ffe9507..b52d58dce46 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/DeactivateRemediationRecipeRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/DeactivateRemediationRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/DeleteKnowledgeBaseRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/DeleteKnowledgeBaseRequest.java index 66866844504..c79dcfc4b4c 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/DeleteKnowledgeBaseRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/DeleteKnowledgeBaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/DeleteRemediationRecipeRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/DeleteRemediationRecipeRequest.java index 0cccfda8f0b..f13e678acb0 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/DeleteRemediationRecipeRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/DeleteRemediationRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/DeleteRemediationRunRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/DeleteRemediationRunRequest.java index ddac2984ca4..8532846ffdb 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/DeleteRemediationRunRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/DeleteRemediationRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/DeleteVulnerabilityAuditRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/DeleteVulnerabilityAuditRequest.java index 914cf1eb49c..8b852dbd763 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/DeleteVulnerabilityAuditRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/DeleteVulnerabilityAuditRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetKnowledgeBaseRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetKnowledgeBaseRequest.java index da4fccac114..faffaf917b0 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetKnowledgeBaseRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetKnowledgeBaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetRemediationRecipeRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetRemediationRecipeRequest.java index c82fd2ada39..c10ca84ab75 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetRemediationRecipeRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetRemediationRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetRemediationRunRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetRemediationRunRequest.java index 5f2bb42b901..04763828e45 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetRemediationRunRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetRemediationRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetStageRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetStageRequest.java index d3ee64298d8..77bdbdebe8b 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetStageRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetStageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetVulnerabilityAuditRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetVulnerabilityAuditRequest.java index eed2f2ac215..c985a164693 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetVulnerabilityAuditRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetVulnerabilityAuditRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetWorkRequestRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetWorkRequestRequest.java index 4adfd5d6258..170b92fb425 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetWorkRequestRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListApplicationDependencyRecommendationsRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListApplicationDependencyRecommendationsRequest.java index 3a2cb4aa52b..991faeaf70f 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListApplicationDependencyRecommendationsRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListApplicationDependencyRecommendationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListApplicationDependencyVulnerabilitiesRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListApplicationDependencyVulnerabilitiesRequest.java index d3d99b743ce..9430ab80b08 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListApplicationDependencyVulnerabilitiesRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListApplicationDependencyVulnerabilitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListKnowledgeBasesRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListKnowledgeBasesRequest.java index c111b9945b6..e01cd9d9e88 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListKnowledgeBasesRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListKnowledgeBasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListRemediationRecipesRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListRemediationRecipesRequest.java index 3536467b788..356111c5acc 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListRemediationRecipesRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListRemediationRecipesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListRemediationRunsRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListRemediationRunsRequest.java index 44a2b70a653..4652c38baa0 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListRemediationRunsRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListRemediationRunsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListStagesRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListStagesRequest.java index b9ba5e52c15..953e1cfc466 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListStagesRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListStagesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListVulnerabilityAuditsRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListVulnerabilityAuditsRequest.java index 468064b479d..abd29c7280b 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListVulnerabilityAuditsRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListVulnerabilityAuditsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListWorkRequestErrorsRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListWorkRequestErrorsRequest.java index 83c79d203af..532f562b96c 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListWorkRequestLogsRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListWorkRequestLogsRequest.java index bfe00418e69..bca1620bb6a 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListWorkRequestLogsRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListWorkRequestsRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListWorkRequestsRequest.java index 83150b908b3..c4daa0f334c 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListWorkRequestsRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/UpdateKnowledgeBaseRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/UpdateKnowledgeBaseRequest.java index eb477069912..08ebbe6ecca 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/UpdateKnowledgeBaseRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/UpdateKnowledgeBaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/UpdateRemediationRecipeRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/UpdateRemediationRecipeRequest.java index b1a7be20ba1..d1671a48646 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/UpdateRemediationRecipeRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/UpdateRemediationRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/UpdateRemediationRunRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/UpdateRemediationRunRequest.java index eb39c933e19..51fc0e3f11b 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/UpdateRemediationRunRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/UpdateRemediationRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/UpdateVulnerabilityAuditRequest.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/UpdateVulnerabilityAuditRequest.java index 1e653bec441..21ee0845603 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/UpdateVulnerabilityAuditRequest.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/requests/UpdateVulnerabilityAuditRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.requests; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ActivateRemediationRecipeResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ActivateRemediationRecipeResponse.java index 8608d99f6dd..078bb2bc27c 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ActivateRemediationRecipeResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ActivateRemediationRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CancelRemediationRunResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CancelRemediationRunResponse.java index 6813631117d..2b1823b09f8 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CancelRemediationRunResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CancelRemediationRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CancelWorkRequestResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CancelWorkRequestResponse.java index bb05550b18e..d58e699eeb4 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CancelWorkRequestResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ChangeKnowledgeBaseCompartmentResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ChangeKnowledgeBaseCompartmentResponse.java index 52584b5472c..c839045f5ea 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ChangeKnowledgeBaseCompartmentResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ChangeKnowledgeBaseCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ChangeRemediationRecipeCompartmentResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ChangeRemediationRecipeCompartmentResponse.java index 87622a2733f..a56a5896ed9 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ChangeRemediationRecipeCompartmentResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ChangeRemediationRecipeCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ChangeRemediationRunCompartmentResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ChangeRemediationRunCompartmentResponse.java index 2b859b14e24..ea29f0408c9 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ChangeRemediationRunCompartmentResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ChangeRemediationRunCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ChangeVulnerabilityAuditCompartmentResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ChangeVulnerabilityAuditCompartmentResponse.java index 630507a3d68..153e0ae5249 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ChangeVulnerabilityAuditCompartmentResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ChangeVulnerabilityAuditCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CreateKnowledgeBaseResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CreateKnowledgeBaseResponse.java index 3678c4bb295..632b93c98bb 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CreateKnowledgeBaseResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CreateKnowledgeBaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CreateRemediationRecipeResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CreateRemediationRecipeResponse.java index 2d98160d7e9..3ec2f6ed058 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CreateRemediationRecipeResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CreateRemediationRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CreateRemediationRunResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CreateRemediationRunResponse.java index ab7038a95db..4d500b7841e 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CreateRemediationRunResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CreateRemediationRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CreateVulnerabilityAuditResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CreateVulnerabilityAuditResponse.java index ea7aaf351dc..259ff21321b 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CreateVulnerabilityAuditResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/CreateVulnerabilityAuditResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/DeactivateRemediationRecipeResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/DeactivateRemediationRecipeResponse.java index eb6918564e5..a66e07d895e 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/DeactivateRemediationRecipeResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/DeactivateRemediationRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/DeleteKnowledgeBaseResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/DeleteKnowledgeBaseResponse.java index 37b43ccc7fe..c89a13f32f1 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/DeleteKnowledgeBaseResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/DeleteKnowledgeBaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/DeleteRemediationRecipeResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/DeleteRemediationRecipeResponse.java index d88b0474d73..41c42119a2f 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/DeleteRemediationRecipeResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/DeleteRemediationRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/DeleteRemediationRunResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/DeleteRemediationRunResponse.java index 948dc64e8c6..57805edd48a 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/DeleteRemediationRunResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/DeleteRemediationRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/DeleteVulnerabilityAuditResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/DeleteVulnerabilityAuditResponse.java index 1f77f21c117..860d4df2609 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/DeleteVulnerabilityAuditResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/DeleteVulnerabilityAuditResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetKnowledgeBaseResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetKnowledgeBaseResponse.java index 3d09326ce0c..5c8dbdc5ef0 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetKnowledgeBaseResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetKnowledgeBaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetRemediationRecipeResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetRemediationRecipeResponse.java index b34a98633c6..8b4f118fd78 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetRemediationRecipeResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetRemediationRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetRemediationRunResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetRemediationRunResponse.java index 0d1fbf8cc18..fc4cd20d045 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetRemediationRunResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetRemediationRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetStageResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetStageResponse.java index 1fce2ae86a1..30e443eae46 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetStageResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetStageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetVulnerabilityAuditResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetVulnerabilityAuditResponse.java index 843a5b14cb1..531eea51753 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetVulnerabilityAuditResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetVulnerabilityAuditResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetWorkRequestResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetWorkRequestResponse.java index f5ef3602794..88d83854b76 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetWorkRequestResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListApplicationDependencyRecommendationsResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListApplicationDependencyRecommendationsResponse.java index 5c2dafba058..18eea6d889f 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListApplicationDependencyRecommendationsResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListApplicationDependencyRecommendationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListApplicationDependencyVulnerabilitiesResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListApplicationDependencyVulnerabilitiesResponse.java index 014792cbae9..44ab4fddcde 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListApplicationDependencyVulnerabilitiesResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListApplicationDependencyVulnerabilitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListKnowledgeBasesResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListKnowledgeBasesResponse.java index f7716e90857..733b187b9e2 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListKnowledgeBasesResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListKnowledgeBasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListRemediationRecipesResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListRemediationRecipesResponse.java index 4dde1252386..e35f6784f8f 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListRemediationRecipesResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListRemediationRecipesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListRemediationRunsResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListRemediationRunsResponse.java index ae1ebe0fc84..7ce05161793 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListRemediationRunsResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListRemediationRunsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListStagesResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListStagesResponse.java index 4cbff63e0af..c9541611754 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListStagesResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListStagesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListVulnerabilityAuditsResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListVulnerabilityAuditsResponse.java index 6a1b23545bc..4d3b20f8544 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListVulnerabilityAuditsResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListVulnerabilityAuditsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListWorkRequestErrorsResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListWorkRequestErrorsResponse.java index 17d36a03f3c..92dbb60a3ab 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListWorkRequestLogsResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListWorkRequestLogsResponse.java index 77e6d99970d..edcf999f95b 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListWorkRequestLogsResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListWorkRequestsResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListWorkRequestsResponse.java index 75c91bc1c01..fbde93e92de 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListWorkRequestsResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/UpdateKnowledgeBaseResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/UpdateKnowledgeBaseResponse.java index f039bf945df..2cf115a853d 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/UpdateKnowledgeBaseResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/UpdateKnowledgeBaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/UpdateRemediationRecipeResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/UpdateRemediationRecipeResponse.java index 62482435385..56415827669 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/UpdateRemediationRecipeResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/UpdateRemediationRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/UpdateRemediationRunResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/UpdateRemediationRunResponse.java index b60b1d8f214..ce1c9ec9ced 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/UpdateRemediationRunResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/UpdateRemediationRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/UpdateVulnerabilityAuditResponse.java b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/UpdateVulnerabilityAuditResponse.java index 6f74f36b120..7239d466a7a 100644 --- a/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/UpdateVulnerabilityAuditResponse.java +++ b/bmc-adm/src/main/java/com/oracle/bmc/adm/responses/UpdateVulnerabilityAuditResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.adm.responses; diff --git a/bmc-adm/src/main/resources/com/oracle/bmc/adm/client.properties b/bmc-adm/src/main/resources/com/oracle/bmc/adm/client.properties index 4e025bdeda4..a7e6b460bf4 100644 --- a/bmc-adm/src/main/resources/com/oracle/bmc/adm/client.properties +++ b/bmc-adm/src/main/resources/com/oracle/bmc/adm/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-aidataplatform/pom.xml b/bmc-aidataplatform/pom.xml index 019650b8b1f..76c0f3d5d81 100644 --- a/bmc-aidataplatform/pom.xml +++ b/bmc-aidataplatform/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-aidataplatform @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatform.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatform.java index 92e9a1eda2e..30ee9e94b71 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatform.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatform.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatformAsync.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatformAsync.java index 67e220f65f8..477d9c92121 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatformAsync.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatformAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatformAsyncClient.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatformAsyncClient.java index ec1e7ac2b7c..c94c6170566 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatformAsyncClient.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatformAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatformClient.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatformClient.java index 58aa73cd992..b4c5f712867 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatformClient.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatformClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatformPaginators.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatformPaginators.java index efbcd263462..37e6460f3da 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatformPaginators.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatformPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatformWaiters.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatformWaiters.java index 00d28450129..f5faac64dfa 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatformWaiters.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/AiDataPlatformWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/ActionType.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/ActionType.java index 5f5c68d6be8..eb493657acf 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/ActionType.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.model; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/AiDataPlatform.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/AiDataPlatform.java index 846a7cf2493..9c2a6181928 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/AiDataPlatform.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/AiDataPlatform.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.model; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/AiDataPlatformCollection.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/AiDataPlatformCollection.java index 05a8a92d286..2ce793a6b28 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/AiDataPlatformCollection.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/AiDataPlatformCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.model; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/AiDataPlatformSummary.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/AiDataPlatformSummary.java index 1c12b3606b4..c1b9b033e44 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/AiDataPlatformSummary.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/AiDataPlatformSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.model; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/ChangeAiDataPlatformCompartmentDetails.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/ChangeAiDataPlatformCompartmentDetails.java index f51101ffa5f..7f6d1ad4ee2 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/ChangeAiDataPlatformCompartmentDetails.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/ChangeAiDataPlatformCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.model; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/CreateAiDataPlatformDetails.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/CreateAiDataPlatformDetails.java index a099070b5f0..b6dda9106f1 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/CreateAiDataPlatformDetails.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/CreateAiDataPlatformDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.model; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/OperationStatus.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/OperationStatus.java index d26e032d8db..a88af8634ac 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/OperationStatus.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.model; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/OperationType.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/OperationType.java index 1d67bda5c8a..390726a7e63 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/OperationType.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.model; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/SortOrder.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/SortOrder.java index 6dc59741511..b5bcc42305f 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/SortOrder.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.model; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/UpdateAiDataPlatformDetails.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/UpdateAiDataPlatformDetails.java index 65563f69ca7..8145ffcf7c0 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/UpdateAiDataPlatformDetails.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/UpdateAiDataPlatformDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.model; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequest.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequest.java index 7ccdef967a5..49c3c30c996 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequest.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.model; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestError.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestError.java index 4cd9c691968..a7198d481a7 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestError.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.model; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestErrorCollection.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestErrorCollection.java index 2b554feb4be..d56b68cd80a 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestErrorCollection.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.model; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestLogEntry.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestLogEntry.java index 5b4e43e4519..83974484e01 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestLogEntry.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.model; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestLogEntryCollection.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestLogEntryCollection.java index 92de8d5b255..379b898a4fa 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestLogEntryCollection.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.model; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestResource.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestResource.java index 2b03aee446d..0d41c00639e 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestResource.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.model; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestResourceMetadataKey.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestResourceMetadataKey.java index 42d8f303a6b..01e4d307fab 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestResourceMetadataKey.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.model; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestSummary.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestSummary.java index 6159ca11ef6..164b8badaae 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestSummary.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.model; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestSummaryCollection.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestSummaryCollection.java index 8bbd3c6bf8a..86c55e317aa 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestSummaryCollection.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.model; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/CancelWorkRequestRequest.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/CancelWorkRequestRequest.java index 5d617b3dac6..bd0f25d9cd2 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/CancelWorkRequestRequest.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.requests; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/ChangeAiDataPlatformCompartmentRequest.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/ChangeAiDataPlatformCompartmentRequest.java index ad0c807eee0..a8cdb6fc3e0 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/ChangeAiDataPlatformCompartmentRequest.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/ChangeAiDataPlatformCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.requests; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/CreateAiDataPlatformRequest.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/CreateAiDataPlatformRequest.java index 68b0256ff57..c5652eec9af 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/CreateAiDataPlatformRequest.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/CreateAiDataPlatformRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.requests; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/DeleteAiDataPlatformRequest.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/DeleteAiDataPlatformRequest.java index e827f1ca353..faae6160078 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/DeleteAiDataPlatformRequest.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/DeleteAiDataPlatformRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.requests; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/GetAiDataPlatformRequest.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/GetAiDataPlatformRequest.java index 7f42e8dbc62..3912a85ebf6 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/GetAiDataPlatformRequest.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/GetAiDataPlatformRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.requests; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/GetWorkRequestRequest.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/GetWorkRequestRequest.java index eeb5cd2802c..b79a2b31aaf 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/GetWorkRequestRequest.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.requests; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/ListAiDataPlatformsRequest.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/ListAiDataPlatformsRequest.java index c25f3d17ff0..1aa0ee910af 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/ListAiDataPlatformsRequest.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/ListAiDataPlatformsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.requests; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/ListWorkRequestErrorsRequest.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/ListWorkRequestErrorsRequest.java index 33c4813fa73..c1e757234a6 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.requests; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/ListWorkRequestLogsRequest.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/ListWorkRequestLogsRequest.java index 209a5505748..ae7e1e97b6a 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/ListWorkRequestLogsRequest.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.requests; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/ListWorkRequestsRequest.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/ListWorkRequestsRequest.java index 83b66ca2b19..f0dd58268dd 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/ListWorkRequestsRequest.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.requests; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/UpdateAiDataPlatformRequest.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/UpdateAiDataPlatformRequest.java index ceefa5cb5c9..93da15776d4 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/UpdateAiDataPlatformRequest.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/requests/UpdateAiDataPlatformRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.requests; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/CancelWorkRequestResponse.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/CancelWorkRequestResponse.java index 965d0f29b2e..006aba825b3 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/CancelWorkRequestResponse.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.responses; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/ChangeAiDataPlatformCompartmentResponse.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/ChangeAiDataPlatformCompartmentResponse.java index 034a8008c20..0c80c07c915 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/ChangeAiDataPlatformCompartmentResponse.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/ChangeAiDataPlatformCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.responses; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/CreateAiDataPlatformResponse.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/CreateAiDataPlatformResponse.java index 73a6d74f23e..7205e6d3e29 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/CreateAiDataPlatformResponse.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/CreateAiDataPlatformResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.responses; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/DeleteAiDataPlatformResponse.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/DeleteAiDataPlatformResponse.java index ef115436498..c053159cd7b 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/DeleteAiDataPlatformResponse.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/DeleteAiDataPlatformResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.responses; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/GetAiDataPlatformResponse.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/GetAiDataPlatformResponse.java index 8404f8b14e6..69e20e9e0d2 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/GetAiDataPlatformResponse.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/GetAiDataPlatformResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.responses; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/GetWorkRequestResponse.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/GetWorkRequestResponse.java index a40b7693a93..c0ec182da53 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/GetWorkRequestResponse.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.responses; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/ListAiDataPlatformsResponse.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/ListAiDataPlatformsResponse.java index 1b77397579c..4143a6b084b 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/ListAiDataPlatformsResponse.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/ListAiDataPlatformsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.responses; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/ListWorkRequestErrorsResponse.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/ListWorkRequestErrorsResponse.java index 7589004fb97..025981054aa 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.responses; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/ListWorkRequestLogsResponse.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/ListWorkRequestLogsResponse.java index 7a8949477b9..3a7f19c94fd 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/ListWorkRequestLogsResponse.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.responses; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/ListWorkRequestsResponse.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/ListWorkRequestsResponse.java index 22aa58b1401..868fad5c9db 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/ListWorkRequestsResponse.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.responses; diff --git a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/UpdateAiDataPlatformResponse.java b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/UpdateAiDataPlatformResponse.java index 753bf64dec9..8db8a448429 100644 --- a/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/UpdateAiDataPlatformResponse.java +++ b/bmc-aidataplatform/src/main/java/com/oracle/bmc/aidataplatform/responses/UpdateAiDataPlatformResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidataplatform.responses; diff --git a/bmc-aidataplatform/src/main/resources/com/oracle/bmc/aidataplatform/client.properties b/bmc-aidataplatform/src/main/resources/com/oracle/bmc/aidataplatform/client.properties index 99f02aa392c..9b45431e7b4 100644 --- a/bmc-aidataplatform/src/main/resources/com/oracle/bmc/aidataplatform/client.properties +++ b/bmc-aidataplatform/src/main/resources/com/oracle/bmc/aidataplatform/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-aidocument/pom.xml b/bmc-aidocument/pom.xml index 7e337ac5f20..eca18b78b61 100644 --- a/bmc-aidocument/pom.xml +++ b/bmc-aidocument/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-aidocument @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocument.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocument.java index c8858d6b22d..720fc36bb96 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocument.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocument.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocumentAsync.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocumentAsync.java index 54fecfbecbc..d4561bbf470 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocumentAsync.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocumentAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocumentAsyncClient.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocumentAsyncClient.java index 49004a52ff1..d041d514778 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocumentAsyncClient.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocumentAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocumentClient.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocumentClient.java index 2a463e09ae6..e5387f513f2 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocumentClient.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocumentClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocumentPaginators.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocumentPaginators.java index 5ac86f45708..faf242c2239 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocumentPaginators.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocumentPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocumentWaiters.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocumentWaiters.java index fc45d913f42..5a82c166a2e 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocumentWaiters.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/AIServiceDocumentWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ActionType.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ActionType.java index d26ef3d46ac..fd1e2d71dfa 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ActionType.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/AddModelLockDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/AddModelLockDetails.java index cccbc483f2e..00bcf8328dc 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/AddModelLockDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/AddModelLockDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/AddProjectLockDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/AddProjectLockDetails.java index 18afe27c29a..902c748543e 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/AddProjectLockDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/AddProjectLockDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/AnalyzeDocumentDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/AnalyzeDocumentDetails.java index 76b86020fce..ae3feaae047 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/AnalyzeDocumentDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/AnalyzeDocumentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/AnalyzeDocumentResult.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/AnalyzeDocumentResult.java index 9109cd62e01..f7c08a69516 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/AnalyzeDocumentResult.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/AnalyzeDocumentResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/BarCode.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/BarCode.java index 590bb74b8f5..4f3df56e0e9 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/BarCode.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/BarCode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/BoundingPolygon.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/BoundingPolygon.java index 9d93d98a653..325462fbf22 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/BoundingPolygon.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/BoundingPolygon.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Capabilities.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Capabilities.java index 32b9280d370..157aa852fcd 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Capabilities.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Capabilities.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Capability.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Capability.java index a9cabbc71fa..d675d2b7441 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Capability.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Capability.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Cell.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Cell.java index fe6720e6f78..d911cb6661f 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Cell.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Cell.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ChangeModelCompartmentDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ChangeModelCompartmentDetails.java index f35c8f069dc..92f723f358e 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ChangeModelCompartmentDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ChangeModelCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ChangeProjectCompartmentDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ChangeProjectCompartmentDetails.java index fd6bfe312d0..f4c67637e1f 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ChangeProjectCompartmentDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ChangeProjectCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ComponentModel.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ComponentModel.java index e0470110c52..0db04ece48b 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ComponentModel.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ComponentModel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/CreateModelDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/CreateModelDetails.java index ba42e1422a2..b07af4beb8d 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/CreateModelDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/CreateModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/CreateProcessorJobDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/CreateProcessorJobDetails.java index ed7673bcf7a..efb7ac40be3 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/CreateProcessorJobDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/CreateProcessorJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/CreateProjectDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/CreateProjectDetails.java index 0538489636d..f5cc1cb79c8 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/CreateProjectDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/CreateProjectDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DataScienceLabelingDataset.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DataScienceLabelingDataset.java index 73b8368f28d..3c2e25a3fe5 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DataScienceLabelingDataset.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DataScienceLabelingDataset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Dataset.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Dataset.java index ffa444c5927..fafc20b8c15 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Dataset.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Dataset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DatasetSummary.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DatasetSummary.java index 095ac835eb7..0898ecb642f 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DatasetSummary.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DatasetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DetectedDocumentType.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DetectedDocumentType.java index d7229630703..8dcbe64fa09 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DetectedDocumentType.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DetectedDocumentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DetectedLanguage.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DetectedLanguage.java index 82d4ebe6335..dfd2eaa0c4d 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DetectedLanguage.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DetectedLanguage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Dimensions.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Dimensions.java index d5a050267ec..00e9bf4df22 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Dimensions.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Dimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentClassificationConfidenceEntry.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentClassificationConfidenceEntry.java index ea0e5815f23..50ca6dd8723 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentClassificationConfidenceEntry.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentClassificationConfidenceEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentClassificationFeature.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentClassificationFeature.java index 878eb56cc19..0603a6e9de8 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentClassificationFeature.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentClassificationFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentClassificationLabelMetricsReport.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentClassificationLabelMetricsReport.java index db426638b74..0ddbca85db3 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentClassificationLabelMetricsReport.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentClassificationLabelMetricsReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentClassificationModelMetrics.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentClassificationModelMetrics.java index c1e3b81be24..33e1b262bf0 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentClassificationModelMetrics.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentClassificationModelMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentClassificationOverallMetricsReport.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentClassificationOverallMetricsReport.java index 55ec19c23ce..439dcd8e6db 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentClassificationOverallMetricsReport.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentClassificationOverallMetricsReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentDetails.java index acccb1b001d..37170b8709e 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentElementsExtractionFeature.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentElementsExtractionFeature.java index 590b0987cfc..205df1125e6 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentElementsExtractionFeature.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentElementsExtractionFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentElementsSubType.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentElementsSubType.java index c1eab254cd7..c56fbe9f4db 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentElementsSubType.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentElementsSubType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentFeature.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentFeature.java index 6ac7489b8aa..014eaa7dfc6 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentFeature.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentField.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentField.java index 965b73e2765..55016bd17bc 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentField.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentKeyValueExtractionFeature.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentKeyValueExtractionFeature.java index 5ad4b3d8a51..153592de37f 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentKeyValueExtractionFeature.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentKeyValueExtractionFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentLanguageClassificationFeature.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentLanguageClassificationFeature.java index 04dd62e9e3d..5eab8baae56 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentLanguageClassificationFeature.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentLanguageClassificationFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentMetadata.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentMetadata.java index 9449e440a4c..4f9c9db9ca0 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentMetadata.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentTableExtractionFeature.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentTableExtractionFeature.java index 0d630b70e9f..ae01b880be7 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentTableExtractionFeature.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentTableExtractionFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentTextExtractionFeature.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentTextExtractionFeature.java index 31331e2bd71..f0229abf875 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentTextExtractionFeature.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentTextExtractionFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentType.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentType.java index 67c79a0d6e3..5184d1d9a96 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentType.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DocumentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DrivingLicenseKvModelSubTypeDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DrivingLicenseKvModelSubTypeDetails.java index 168fa2c9fe9..7d6948f692b 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DrivingLicenseKvModelSubTypeDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/DrivingLicenseKvModelSubTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/FieldLabel.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/FieldLabel.java index 4e2655dc6b3..dc89c81daa1 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/FieldLabel.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/FieldLabel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/FieldName.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/FieldName.java index ef89ec99e76..8f56a323747 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/FieldName.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/FieldName.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/FieldValue.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/FieldValue.java index b48d78261a9..04e93d491ae 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/FieldValue.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/FieldValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/GeneralProcessorConfig.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/GeneralProcessorConfig.java index c1f2bbc2737..c14de1ecd86 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/GeneralProcessorConfig.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/GeneralProcessorConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/HealthInsuranceKvModelSubTypeDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/HealthInsuranceKvModelSubTypeDetails.java index c313d5c4631..c58cc271226 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/HealthInsuranceKvModelSubTypeDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/HealthInsuranceKvModelSubTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/InlineDocumentContent.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/InlineDocumentContent.java index 055e392c988..8e82e713975 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/InlineDocumentContent.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/InlineDocumentContent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/InlineDocumentDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/InlineDocumentDetails.java index 29aed398734..4f240593d4e 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/InlineDocumentDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/InlineDocumentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/InputLocation.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/InputLocation.java index 0d3bd4846b0..4b8e06af196 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/InputLocation.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/InputLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/InvoiceKvModelSubTypeDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/InvoiceKvModelSubTypeDetails.java index 8bf4dbcd04e..c558bdfd5c8 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/InvoiceKvModelSubTypeDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/InvoiceKvModelSubTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/InvoiceProcessorConfig.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/InvoiceProcessorConfig.java index 1ea9bda0e46..6d278853752 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/InvoiceProcessorConfig.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/InvoiceProcessorConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/KeyValueDetectionConfidenceEntry.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/KeyValueDetectionConfidenceEntry.java index b0cc8c474c4..360202b3e85 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/KeyValueDetectionConfidenceEntry.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/KeyValueDetectionConfidenceEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/KeyValueDetectionLabelMetricsReport.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/KeyValueDetectionLabelMetricsReport.java index 682ec84195d..c0dc6b07baa 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/KeyValueDetectionLabelMetricsReport.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/KeyValueDetectionLabelMetricsReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/KeyValueDetectionModelMetrics.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/KeyValueDetectionModelMetrics.java index 59f8b7fc6bf..2b3ed58911b 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/KeyValueDetectionModelMetrics.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/KeyValueDetectionModelMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/KeyValueDetectionOverallMetricsReport.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/KeyValueDetectionOverallMetricsReport.java index 910fff4a97f..214a2c4c451 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/KeyValueDetectionOverallMetricsReport.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/KeyValueDetectionOverallMetricsReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/KvModelSubType.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/KvModelSubType.java index f64e108587f..70d14f72881 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/KvModelSubType.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/KvModelSubType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Line.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Line.java index 83f105068f4..599226e891f 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Line.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Line.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Model.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Model.java index e5f6f7c1e9c..44abdd6c937 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Model.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Model.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ModelCollection.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ModelCollection.java index 55f6518eda5..e77e3940bde 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ModelCollection.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ModelCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ModelMetrics.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ModelMetrics.java index 0083d9a4b69..29aa78b9d75 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ModelMetrics.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ModelMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ModelSubType.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ModelSubType.java index 1829dd3e1e8..5025e86e395 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ModelSubType.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ModelSubType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ModelSummary.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ModelSummary.java index 146a55c1239..6cb821c79eb 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ModelSummary.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ModelSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ModelTypeInfo.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ModelTypeInfo.java index 80e92ed44b3..1b963a66c65 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ModelTypeInfo.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ModelTypeInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/NormalizationFields.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/NormalizationFields.java index cf859807cdf..d2a444a5803 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/NormalizationFields.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/NormalizationFields.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/NormalizationFieldsMapValue.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/NormalizationFieldsMapValue.java index 89dfc2a79fb..cbca9dfda8d 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/NormalizationFieldsMapValue.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/NormalizationFieldsMapValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/NormalizedVertex.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/NormalizedVertex.java index 111670e7232..fd4b29d02af 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/NormalizedVertex.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/NormalizedVertex.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ObjectLocation.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ObjectLocation.java index ffeb7b2add0..8b3c95ab22b 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ObjectLocation.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ObjectLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ObjectStorageDataset.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ObjectStorageDataset.java index 9d70385010c..5bb00a4e38b 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ObjectStorageDataset.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ObjectStorageDataset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ObjectStorageDocumentDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ObjectStorageDocumentDetails.java index 26ee452fe84..b4efc5a2802 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ObjectStorageDocumentDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ObjectStorageDocumentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ObjectStorageLocations.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ObjectStorageLocations.java index 0c82e7ec598..e080eb842d5 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ObjectStorageLocations.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ObjectStorageLocations.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/OperationStatus.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/OperationStatus.java index 835c288d11f..15ee3c2726a 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/OperationStatus.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/OperationType.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/OperationType.java index 7284369b181..58bb6fca84a 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/OperationType.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/OutputLocation.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/OutputLocation.java index ba9630375d0..1702ffa8636 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/OutputLocation.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/OutputLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Page.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Page.java index 2d50323217b..357787f1664 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Page.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Page.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PassportKvModelSubTypeDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PassportKvModelSubTypeDetails.java index 8df85b07d0e..675e1d4b7fe 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PassportKvModelSubTypeDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PassportKvModelSubTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PatchModelDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PatchModelDetails.java index 076a911fa05..2756a131844 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PatchModelDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PatchModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PatchModelOperation.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PatchModelOperation.java index d5797996885..ca4f0dce23c 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PatchModelOperation.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PatchModelOperation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PatchResponseMessage.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PatchResponseMessage.java index 1b6d3f1d701..d47968dc57a 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PatchResponseMessage.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PatchResponseMessage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PreTrainedDocumentElementsExtractionModelDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PreTrainedDocumentElementsExtractionModelDetails.java index 3fc35ac7ea9..f9f4f70ffa3 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PreTrainedDocumentElementsExtractionModelDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PreTrainedDocumentElementsExtractionModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PretrainedDocumentClassificationModelDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PretrainedDocumentClassificationModelDetails.java index 7713cd6f975..d3b7c926fa7 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PretrainedDocumentClassificationModelDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PretrainedDocumentClassificationModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PretrainedKeyValueExtractionModelDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PretrainedKeyValueExtractionModelDetails.java index 28d8333738d..1050d93eb1f 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PretrainedKeyValueExtractionModelDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PretrainedKeyValueExtractionModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PretrainedTableExtractionModelDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PretrainedTableExtractionModelDetails.java index a1b2449684d..bff18831e21 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PretrainedTableExtractionModelDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PretrainedTableExtractionModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PretrainedTextExtractionModelDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PretrainedTextExtractionModelDetails.java index ced1ebd97b0..1b9b0cf93ab 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PretrainedTextExtractionModelDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/PretrainedTextExtractionModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProcessingError.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProcessingError.java index f94dcb8b535..c5ad380724a 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProcessingError.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProcessingError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProcessorConfig.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProcessorConfig.java index f9a14dff9e3..ad46a92d316 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProcessorConfig.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProcessorConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProcessorJob.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProcessorJob.java index 341c5eb14d6..c07ef218cd5 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProcessorJob.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProcessorJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProcessorType.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProcessorType.java index 3ba4e78b7c5..1a06c4321dc 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProcessorType.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProcessorType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Project.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Project.java index 4c596bdfd19..ff0d0ec7a45 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Project.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Project.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProjectCollection.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProjectCollection.java index 858eee5a184..9af8911ca48 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProjectCollection.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProjectCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProjectSummary.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProjectSummary.java index f1162a2a382..736d14c3e04 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProjectSummary.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ProjectSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/QrBarCodeSubTypeDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/QrBarCodeSubTypeDetails.java index dde118ef5c5..9cc6d7b2f90 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/QrBarCodeSubTypeDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/QrBarCodeSubTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ReceiptKvModelSubTypeDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ReceiptKvModelSubTypeDetails.java index 699bf6068c2..ce7d4bb7877 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ReceiptKvModelSubTypeDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ReceiptKvModelSubTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/RemoveModelLockDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/RemoveModelLockDetails.java index 3184eb26c54..6d6d269c416 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/RemoveModelLockDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/RemoveModelLockDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/RemoveProjectLockDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/RemoveProjectLockDetails.java index 34d613b581b..ee1926014f8 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/RemoveProjectLockDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/RemoveProjectLockDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ResourceLock.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ResourceLock.java index ffaf50fb182..9bab6449e4b 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ResourceLock.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ResourceLock.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/SelectionMark.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/SelectionMark.java index 3335aea3f34..ec5ac70695b 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/SelectionMark.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/SelectionMark.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Signature.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Signature.java index 843e5643fdd..88367a2e124 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Signature.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Signature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/SignatureSubTypeDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/SignatureSubTypeDetails.java index 4db8fd4316e..e31f8c3db81 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/SignatureSubTypeDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/SignatureSubTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/SortOrder.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/SortOrder.java index 02794a506be..79547164d0e 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/SortOrder.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Table.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Table.java index 191ffce35dc..9759e467927 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Table.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Table.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/TableRow.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/TableRow.java index 704024248e6..da5cf4c7510 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/TableRow.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/TableRow.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/UpdateModelDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/UpdateModelDetails.java index 7e10c7a26d2..cabe71b6b9e 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/UpdateModelDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/UpdateModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/UpdateProjectDetails.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/UpdateProjectDetails.java index 00f07f9548d..5bfba983d24 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/UpdateProjectDetails.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/UpdateProjectDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueArray.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueArray.java index 8e0b0229d9a..f0249152444 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueArray.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueArray.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueDate.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueDate.java index 1dfb9874ad1..fd8295ac576 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueDate.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueDate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueInteger.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueInteger.java index f1a4b237d86..5a4bcd74231 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueInteger.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueInteger.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueNumber.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueNumber.java index b530d2e4937..9e00029a067 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueNumber.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueNumber.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValuePhoneNumber.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValuePhoneNumber.java index 311b187086b..4afb21c0247 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValuePhoneNumber.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValuePhoneNumber.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueString.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueString.java index 3e7fe43cbf7..47af379bf24 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueString.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueString.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueTime.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueTime.java index 431a85b26cd..e1186765bc5 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueTime.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/ValueTime.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Word.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Word.java index db5cea9255e..271c87732e3 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Word.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/Word.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequest.java index 83cbd24d95d..a2e4df81f86 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestError.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestError.java index 23cbfe1c4be..759237dac08 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestError.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestErrorCollection.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestErrorCollection.java index f8c0e8784a0..284b3e2c77b 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestErrorCollection.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestLogEntry.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestLogEntry.java index e6d6de038ff..12a2de3cdeb 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestLogEntry.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestLogEntryCollection.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestLogEntryCollection.java index db6423fea18..8a3b412fd27 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestLogEntryCollection.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestResource.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestResource.java index 8af247145b3..63507e19543 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestResource.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestResourceMetadataKey.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestResourceMetadataKey.java index da1d49c31ab..97ccc3c0bb0 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestResourceMetadataKey.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestSummary.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestSummary.java index f060921f62d..699027598b9 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestSummary.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestSummaryCollection.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestSummaryCollection.java index 1724be4b389..cd08ebed4a5 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestSummaryCollection.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.model; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/AddModelLockRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/AddModelLockRequest.java index 2ab01341619..8a533cad504 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/AddModelLockRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/AddModelLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/AddProjectLockRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/AddProjectLockRequest.java index f1bcd51dd2f..e1e5a99ca44 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/AddProjectLockRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/AddProjectLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/AnalyzeDocumentRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/AnalyzeDocumentRequest.java index e08b59627aa..37239aa1063 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/AnalyzeDocumentRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/AnalyzeDocumentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/CancelProcessorJobRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/CancelProcessorJobRequest.java index 123907579a6..ddd14ed66de 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/CancelProcessorJobRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/CancelProcessorJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/CancelWorkRequestRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/CancelWorkRequestRequest.java index a647594eb16..a879871d35d 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/CancelWorkRequestRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ChangeModelCompartmentRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ChangeModelCompartmentRequest.java index 17c89f7f883..bb44f532afc 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ChangeModelCompartmentRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ChangeModelCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ChangeProjectCompartmentRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ChangeProjectCompartmentRequest.java index f874de14202..9aea3aad209 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ChangeProjectCompartmentRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ChangeProjectCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/CreateModelRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/CreateModelRequest.java index b343db62fef..7780a4acf23 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/CreateModelRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/CreateModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/CreateProcessorJobRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/CreateProcessorJobRequest.java index e608cb1e597..e15d22babcf 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/CreateProcessorJobRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/CreateProcessorJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/CreateProjectRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/CreateProjectRequest.java index a25c6551bf1..36df434b66d 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/CreateProjectRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/CreateProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/DeleteModelRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/DeleteModelRequest.java index a2ce69a3223..c89a4568daa 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/DeleteModelRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/DeleteModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/DeleteProjectRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/DeleteProjectRequest.java index f69edc0895e..05730ae53a4 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/DeleteProjectRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/DeleteProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/GetModelRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/GetModelRequest.java index 08a82ea8c82..8e7cba1e6da 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/GetModelRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/GetModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/GetModelTypeRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/GetModelTypeRequest.java index 8ac4999440a..1005d7e16ac 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/GetModelTypeRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/GetModelTypeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/GetProcessorJobRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/GetProcessorJobRequest.java index 8a82d1c7013..d52574af64a 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/GetProcessorJobRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/GetProcessorJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/GetProjectRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/GetProjectRequest.java index 271e767c1a4..95e6c0519a7 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/GetProjectRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/GetProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/GetWorkRequestRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/GetWorkRequestRequest.java index 576f39512e2..e6c4f21d8e1 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/GetWorkRequestRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ListModelsRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ListModelsRequest.java index 5719ab46585..7f0742fc56d 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ListModelsRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ListModelsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ListProjectsRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ListProjectsRequest.java index ba79cfbd5fd..5354c7919b4 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ListProjectsRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ListProjectsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ListWorkRequestErrorsRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ListWorkRequestErrorsRequest.java index 4a4ab568730..5537c0b3b84 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ListWorkRequestLogsRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ListWorkRequestLogsRequest.java index f75edc4af7e..287eb46691b 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ListWorkRequestLogsRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ListWorkRequestsRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ListWorkRequestsRequest.java index 1baa2a75f6b..eaade8ebfd5 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ListWorkRequestsRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/PatchModelRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/PatchModelRequest.java index ff0d4585810..530fecf64a1 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/PatchModelRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/PatchModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/RemoveModelLockRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/RemoveModelLockRequest.java index f8656ea7423..22de88f7aa4 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/RemoveModelLockRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/RemoveModelLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/RemoveProjectLockRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/RemoveProjectLockRequest.java index c99f970ff6c..ccbaf054cd0 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/RemoveProjectLockRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/RemoveProjectLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/UpdateModelRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/UpdateModelRequest.java index b7bf3861f91..c22ffaaaf26 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/UpdateModelRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/UpdateModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/UpdateProjectRequest.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/UpdateProjectRequest.java index b2bed26bcbe..461600efcf2 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/UpdateProjectRequest.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/requests/UpdateProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.requests; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/AddModelLockResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/AddModelLockResponse.java index c2d3cc00a4a..4b6513d03bf 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/AddModelLockResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/AddModelLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/AddProjectLockResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/AddProjectLockResponse.java index 589edb3b5b2..d2530b55f3e 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/AddProjectLockResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/AddProjectLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/AnalyzeDocumentResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/AnalyzeDocumentResponse.java index e6a661656be..0199cce5dfc 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/AnalyzeDocumentResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/AnalyzeDocumentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/CancelProcessorJobResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/CancelProcessorJobResponse.java index 2a24e3eab31..4d80bf1e47a 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/CancelProcessorJobResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/CancelProcessorJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/CancelWorkRequestResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/CancelWorkRequestResponse.java index 64b1f1703a2..f31fc32f9a2 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/CancelWorkRequestResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ChangeModelCompartmentResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ChangeModelCompartmentResponse.java index 3c204cfd951..a8cb13f23a9 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ChangeModelCompartmentResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ChangeModelCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ChangeProjectCompartmentResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ChangeProjectCompartmentResponse.java index 267ae2c293b..fae2f4894ee 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ChangeProjectCompartmentResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ChangeProjectCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/CreateModelResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/CreateModelResponse.java index 565956c24d4..b6ae436ef02 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/CreateModelResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/CreateModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/CreateProcessorJobResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/CreateProcessorJobResponse.java index 70616d4e679..7acacbd01f6 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/CreateProcessorJobResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/CreateProcessorJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/CreateProjectResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/CreateProjectResponse.java index 51c786c5c61..2108a9490e3 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/CreateProjectResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/CreateProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/DeleteModelResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/DeleteModelResponse.java index 6c9e893c4b6..e0b764d87d7 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/DeleteModelResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/DeleteModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/DeleteProjectResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/DeleteProjectResponse.java index 5f919a0be23..5c4f621d2f6 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/DeleteProjectResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/DeleteProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/GetModelResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/GetModelResponse.java index 52f96bc6a4d..c233da99151 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/GetModelResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/GetModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/GetModelTypeResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/GetModelTypeResponse.java index dde904ae963..6b34d44d54f 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/GetModelTypeResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/GetModelTypeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/GetProcessorJobResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/GetProcessorJobResponse.java index 3861b2fb088..df5ba347b9a 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/GetProcessorJobResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/GetProcessorJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/GetProjectResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/GetProjectResponse.java index a00b0d27e95..e53082f691d 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/GetProjectResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/GetProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/GetWorkRequestResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/GetWorkRequestResponse.java index 9d5293805cf..6ed889001c1 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/GetWorkRequestResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ListModelsResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ListModelsResponse.java index 6afb3d72816..402b47a8c6a 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ListModelsResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ListModelsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ListProjectsResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ListProjectsResponse.java index a725fdc7935..de3b59ab0e5 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ListProjectsResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ListProjectsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ListWorkRequestErrorsResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ListWorkRequestErrorsResponse.java index 3b736eb2c2d..7d40bfd70d8 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ListWorkRequestLogsResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ListWorkRequestLogsResponse.java index 595e60b7adf..2da1b238f4d 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ListWorkRequestLogsResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ListWorkRequestsResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ListWorkRequestsResponse.java index 2074339e813..d9d9a4017fc 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ListWorkRequestsResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/PatchModelResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/PatchModelResponse.java index 69d295bb8c3..4ff9263423d 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/PatchModelResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/PatchModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/RemoveModelLockResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/RemoveModelLockResponse.java index 9d27924389f..c3dd486a212 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/RemoveModelLockResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/RemoveModelLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/RemoveProjectLockResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/RemoveProjectLockResponse.java index 34bca34665a..8bdcb05a176 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/RemoveProjectLockResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/RemoveProjectLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/UpdateModelResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/UpdateModelResponse.java index e26eadac279..17b325d4561 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/UpdateModelResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/UpdateModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/UpdateProjectResponse.java b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/UpdateProjectResponse.java index 9f369e84ddd..fd520a64b06 100644 --- a/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/UpdateProjectResponse.java +++ b/bmc-aidocument/src/main/java/com/oracle/bmc/aidocument/responses/UpdateProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aidocument.responses; diff --git a/bmc-aidocument/src/main/resources/com/oracle/bmc/aidocument/client.properties b/bmc-aidocument/src/main/resources/com/oracle/bmc/aidocument/client.properties index ff6b85f0800..ffd087ea129 100644 --- a/bmc-aidocument/src/main/resources/com/oracle/bmc/aidocument/client.properties +++ b/bmc-aidocument/src/main/resources/com/oracle/bmc/aidocument/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-ailanguage/pom.xml b/bmc-ailanguage/pom.xml index e5b26332889..8ad86ce0649 100644 --- a/bmc-ailanguage/pom.xml +++ b/bmc-ailanguage/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-ailanguage @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguage.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguage.java index 9ad65ea45c9..2241bd48e68 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguage.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguageAsync.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguageAsync.java index 0eae1ddd0a9..377b91e2da4 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguageAsync.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguageAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguageAsyncClient.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguageAsyncClient.java index ef388c5e97d..f00ad54a4b9 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguageAsyncClient.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguageAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguageClient.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguageClient.java index 8caff4d961d..3d259f4388a 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguageClient.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguageClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguagePaginators.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguagePaginators.java index f8dbc3917cd..a74f83a0477 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguagePaginators.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguagePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguageWaiters.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguageWaiters.java index d56d3a47386..515c03cd5a7 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguageWaiters.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/AIServiceLanguageWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ActionType.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ActionType.java index 8229c35586e..1b2ccb1701b 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ActionType.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/AssertionDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/AssertionDetails.java index 6704c7f39f6..36305ac6d29 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/AssertionDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/AssertionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectDominantLanguageDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectDominantLanguageDetails.java index 1ee945fd7ca..3ba277b3215 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectDominantLanguageDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectDominantLanguageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectDominantLanguageResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectDominantLanguageResult.java index d2fa15758dd..7d9a40dccd8 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectDominantLanguageResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectDominantLanguageResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectHealthEntityDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectHealthEntityDetails.java index 415d821a5db..45447f888fa 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectHealthEntityDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectHealthEntityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectHealthEntityResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectHealthEntityResult.java index e3d62a1df96..0d324589ff7 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectHealthEntityResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectHealthEntityResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageEntitiesDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageEntitiesDetails.java index 2947a65b51f..b34832cef9b 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageEntitiesDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageEntitiesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageEntitiesResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageEntitiesResult.java index 4538fe74a73..1883a3fc80f 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageEntitiesResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageEntitiesResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageKeyPhrasesDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageKeyPhrasesDetails.java index 4d52a93dde0..98b48e80f5e 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageKeyPhrasesDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageKeyPhrasesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageKeyPhrasesResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageKeyPhrasesResult.java index 14cd710b8cf..e83b05d628f 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageKeyPhrasesResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageKeyPhrasesResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguagePiiEntitiesDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguagePiiEntitiesDetails.java index 5095114d2d5..008f1e0ca8c 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguagePiiEntitiesDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguagePiiEntitiesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguagePiiEntitiesResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguagePiiEntitiesResult.java index 186674ffe11..7fa03e759a2 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguagePiiEntitiesResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguagePiiEntitiesResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageSentimentsDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageSentimentsDetails.java index 6074fa4646a..8628fb436b0 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageSentimentsDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageSentimentsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageSentimentsResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageSentimentsResult.java index 77cc739bcff..8b3bb7c1f77 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageSentimentsResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageSentimentsResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageTextClassificationDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageTextClassificationDetails.java index ca342307e76..53a23768f50 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageTextClassificationDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageTextClassificationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageTextClassificationResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageTextClassificationResult.java index 964c586cf10..db68cdf9c2f 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageTextClassificationResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchDetectLanguageTextClassificationResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchLanguageTranslationDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchLanguageTranslationDetails.java index 188105191e6..a4eedd88c1a 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchLanguageTranslationDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchLanguageTranslationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchLanguageTranslationResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchLanguageTranslationResult.java index a80e8719470..22b30c8a255 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchLanguageTranslationResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/BatchLanguageTranslationResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Capabilities.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Capabilities.java index ea2b3f4de8c..3ec4011455e 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Capabilities.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Capabilities.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Capability.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Capability.java index e3437b6e8a3..5a269f8d866 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Capability.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Capability.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ChangeEndpointCompartmentDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ChangeEndpointCompartmentDetails.java index 7f566ac5693..8dc8509d51f 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ChangeEndpointCompartmentDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ChangeEndpointCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ChangeJobCompartmentDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ChangeJobCompartmentDetails.java index 7308779abb5..ef769ba2ee4 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ChangeJobCompartmentDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ChangeJobCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ChangeModelCompartmentDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ChangeModelCompartmentDetails.java index b31b452f032..7abf7a0a237 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ChangeModelCompartmentDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ChangeModelCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ChangeProjectCompartmentDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ChangeProjectCompartmentDetails.java index 75786f62915..cbb2e803191 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ChangeProjectCompartmentDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ChangeProjectCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ClassMetrics.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ClassMetrics.java index 9dc6ddc6210..f120e810d61 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ClassMetrics.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ClassMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ClassificationMultiClassModeDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ClassificationMultiClassModeDetails.java index ca9b6a56cf6..542ab18df7f 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ClassificationMultiClassModeDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ClassificationMultiClassModeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ClassificationMultiLabelModeDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ClassificationMultiLabelModeDetails.java index 5a72bc86b3f..38880e27e5e 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ClassificationMultiLabelModeDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ClassificationMultiLabelModeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ClassificationType.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ClassificationType.java index 0babad31f5a..580815c7cb1 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ClassificationType.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ClassificationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ConfigurationDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ConfigurationDetails.java index d6b9d9a168e..266f37c8607 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ConfigurationDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ConfusionMatrixDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ConfusionMatrixDetails.java index d808e86e496..f8a9777a7ae 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ConfusionMatrixDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ConfusionMatrixDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/CreateEndpointDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/CreateEndpointDetails.java index 9b8f688eb3e..44ca28e2358 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/CreateEndpointDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/CreateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/CreateJobDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/CreateJobDetails.java index 30163be12d1..e9b7f69799e 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/CreateJobDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/CreateJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/CreateModelDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/CreateModelDetails.java index 8f75a332d8c..cba4397a41c 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/CreateModelDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/CreateModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/CreateProjectDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/CreateProjectDetails.java index 090fb28dac5..532ad1d903a 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/CreateProjectDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/CreateProjectDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DataScienceLabelingDataset.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DataScienceLabelingDataset.java index b1e49fe1b1c..24338b8f76e 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DataScienceLabelingDataset.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DataScienceLabelingDataset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DatasetDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DatasetDetails.java index 1201874924a..9138aad0d10 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DatasetDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DatasetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectDominantLanguageDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectDominantLanguageDetails.java index fc7f5f4ad6c..9bc42a766e7 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectDominantLanguageDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectDominantLanguageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectDominantLanguageResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectDominantLanguageResult.java index e62bdde8ff6..baba2e07bb1 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectDominantLanguageResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectDominantLanguageResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageEntitiesDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageEntitiesDetails.java index 369f2c3008e..dd668e4a987 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageEntitiesDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageEntitiesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageEntitiesResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageEntitiesResult.java index f7266f3346b..ddfe0693c4b 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageEntitiesResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageEntitiesResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageKeyPhrasesDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageKeyPhrasesDetails.java index e5551f809f4..9b41513589b 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageKeyPhrasesDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageKeyPhrasesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageKeyPhrasesResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageKeyPhrasesResult.java index 535f8aab458..6c978aaef56 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageKeyPhrasesResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageKeyPhrasesResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageSentimentsDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageSentimentsDetails.java index da13af300d4..8f416f4a5a7 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageSentimentsDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageSentimentsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageSentimentsResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageSentimentsResult.java index e8e7f629fe4..5728ab6a9be 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageSentimentsResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageSentimentsResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageTextClassificationDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageTextClassificationDetails.java index d90f7b3f20e..4ec8e7a0d52 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageTextClassificationDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageTextClassificationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageTextClassificationResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageTextClassificationResult.java index db147289c84..5ec67dc560c 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageTextClassificationResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectLanguageTextClassificationResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectedLanguage.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectedLanguage.java index c8308632c78..1cf9c000dd4 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectedLanguage.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DetectedLanguage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DocumentError.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DocumentError.java index 763a227f905..2e7c9162685 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DocumentError.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DocumentError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DocumentsConfiguration.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DocumentsConfiguration.java index bd945b35b2f..89ef82927b1 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DocumentsConfiguration.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DocumentsConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DominantLanguageDocument.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DominantLanguageDocument.java index 577f8c9b051..5d5a84b0955 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DominantLanguageDocument.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DominantLanguageDocument.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DominantLanguageDocumentResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DominantLanguageDocumentResult.java index 173215e6a15..116b72147a0 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DominantLanguageDocumentResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/DominantLanguageDocumentResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Endpoint.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Endpoint.java index 0bc73a92d50..3012b9844dc 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Endpoint.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Endpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EndpointCollection.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EndpointCollection.java index ddbea0b1b35..2e4fa3cd1a9 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EndpointCollection.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EndpointCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EndpointSummary.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EndpointSummary.java index 3bde412caf3..b2515703532 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EndpointSummary.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Entity.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Entity.java index e390fdd0ab9..a5dcf11dc9b 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Entity.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Entity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EntityDocumentResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EntityDocumentResult.java index 00923eb3280..e4ac7eb72a2 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EntityDocumentResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EntityDocumentResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EntityLabelErrorAnalysis.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EntityLabelErrorAnalysis.java index f946553d6e1..0350fd4a1a1 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EntityLabelErrorAnalysis.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EntityLabelErrorAnalysis.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EntityMetrics.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EntityMetrics.java index 4834d949f3c..87bab875dad 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EntityMetrics.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EntityMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ErrorDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ErrorDetails.java index b4dc8ba4ef6..c1d96fcf8a2 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ErrorDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ErrorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EvaluationResultCollection.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EvaluationResultCollection.java index f48095d844a..fa88e1faffd 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EvaluationResultCollection.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EvaluationResultCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EvaluationResultSummary.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EvaluationResultSummary.java index b72e07709af..09c7d68fc4f 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EvaluationResultSummary.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EvaluationResultSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EvaluationResults.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EvaluationResults.java index 4d422bf714c..118c008e492 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EvaluationResults.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/EvaluationResults.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/HealthEntity.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/HealthEntity.java index dde78aafafd..39b5b7bdd95 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/HealthEntity.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/HealthEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/HealthEntityDocumentResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/HealthEntityDocumentResult.java index 83f7459b882..a5d0b60ee8d 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/HealthEntityDocumentResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/HealthEntityDocumentResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/HealthNluModelDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/HealthNluModelDetails.java index af28d6187f6..cd78cb9533f 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/HealthNluModelDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/HealthNluModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/HierarchicalEntity.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/HierarchicalEntity.java index 83f5736c2aa..eded8964fbd 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/HierarchicalEntity.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/HierarchicalEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/InputConfiguration.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/InputConfiguration.java index 56bebbeec35..c335de9c75d 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/InputConfiguration.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/InputConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/InputLocation.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/InputLocation.java index 98da93bbec0..0ffcf6d9e08 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/InputLocation.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/InputLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Job.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Job.java index e36da9ce24f..0e3702bd1cb 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Job.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Job.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/JobCollection.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/JobCollection.java index 6164e0c73fb..f1a7062aeb6 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/JobCollection.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/JobCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/JobSummary.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/JobSummary.java index 9f9f2c73f6c..94f26125c63 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/JobSummary.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/JobSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/KeyPhrase.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/KeyPhrase.java index 0de70c5c46b..a38707fd7bd 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/KeyPhrase.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/KeyPhrase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/KeyPhraseDocumentResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/KeyPhraseDocumentResult.java index f5ff6651b59..3cd27ab6802 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/KeyPhraseDocumentResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/KeyPhraseDocumentResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/LocationDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/LocationDetails.java index 8f7c18a7e2c..04c15aa940d 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/LocationDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/LocationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/MelConcept.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/MelConcept.java index ec3ece05591..735f2dab4ca 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/MelConcept.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/MelConcept.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/MelConceptDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/MelConceptDetails.java index 1278be8d096..9ef962574c4 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/MelConceptDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/MelConceptDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/MetaInfo.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/MetaInfo.java index 7c0c3151e29..5a47865a207 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/MetaInfo.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/MetaInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Model.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Model.java index 2b326d2f72c..e2be848e870 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Model.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Model.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ModelCollection.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ModelCollection.java index 237a0dee5d0..e27cabee6f1 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ModelCollection.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ModelCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ModelDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ModelDetails.java index 1b61bc51064..b63055d70f5 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ModelDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ModelMetadataDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ModelMetadataDetails.java index 75f1e1c6723..c798f96b243 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ModelMetadataDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ModelMetadataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ModelSummary.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ModelSummary.java index 11b2fa6db11..dee2bc43da9 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ModelSummary.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ModelSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ModelTypeInfo.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ModelTypeInfo.java index 3316e8658f6..b3d46bc1121 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ModelTypeInfo.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ModelTypeInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/NamedEntityRecognitionEvaluationResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/NamedEntityRecognitionEvaluationResult.java index 3cd8f765407..96eefab9b70 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/NamedEntityRecognitionEvaluationResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/NamedEntityRecognitionEvaluationResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/NamedEntityRecognitionEvaluationResults.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/NamedEntityRecognitionEvaluationResults.java index e56aaf8e993..11e4b1470f4 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/NamedEntityRecognitionEvaluationResults.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/NamedEntityRecognitionEvaluationResults.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/NamedEntityRecognitionModelDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/NamedEntityRecognitionModelDetails.java index 6269119205c..c09adf1b196 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/NamedEntityRecognitionModelDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/NamedEntityRecognitionModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/NamedEntityRecognitionModelMetrics.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/NamedEntityRecognitionModelMetrics.java index 8c02997d0c6..1f6f6c9d7b1 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/NamedEntityRecognitionModelMetrics.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/NamedEntityRecognitionModelMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/NerModelVersion.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/NerModelVersion.java index d3d2bb438b0..946f5bacd41 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/NerModelVersion.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/NerModelVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ObjectListDataset.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ObjectListDataset.java index 7ceba0103fa..e36bda4676c 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ObjectListDataset.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ObjectListDataset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ObjectPrefixOutputLocation.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ObjectPrefixOutputLocation.java index 249f4f4ac79..e13964d141f 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ObjectPrefixOutputLocation.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ObjectPrefixOutputLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ObjectStorageDataset.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ObjectStorageDataset.java index 71766559b70..cd33dddc550 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ObjectStorageDataset.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ObjectStorageDataset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ObjectStorageFileNameLocation.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ObjectStorageFileNameLocation.java index 6afc3ee809a..f0ab6174081 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ObjectStorageFileNameLocation.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ObjectStorageFileNameLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ObjectStoragePrefixLocation.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ObjectStoragePrefixLocation.java index 174f5507861..a0d12f9843e 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ObjectStoragePrefixLocation.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ObjectStoragePrefixLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/OperationStatus.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/OperationStatus.java index 21ad9125da5..4fe15b5b3b3 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/OperationStatus.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/OperationType.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/OperationType.java index c428c56520f..cc13e5dae43 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/OperationType.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntity.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntity.java index e5a49f31bba..7caa16d8925 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntity.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityDocumentResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityDocumentResult.java index 8edce9819e4..b3fdaecb054 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityDocumentResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityDocumentResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityMask.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityMask.java index 45fa312b1aa..2cec012438d 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityMask.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityMask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityMasking.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityMasking.java index 610e3816497..b11d373b60f 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityMasking.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityMasking.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityRelexify.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityRelexify.java index e15d746da57..abbf4aff32f 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityRelexify.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityRelexify.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityRemove.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityRemove.java index e943f6716c9..906de841189 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityRemove.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityRemove.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityReplace.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityReplace.java index 55cfc1d4c74..9efa601afca 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityReplace.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiEntityReplace.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiModelDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiModelDetails.java index 7fb04884bc1..d3f8557fed7 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiModelDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PiiModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreDeployedLanguageModels.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreDeployedLanguageModels.java index 66fa61eb171..763eaeb27fe 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreDeployedLanguageModels.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreDeployedLanguageModels.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedHealthNluModelDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedHealthNluModelDetails.java index 719c69b6e88..018e6e56b22 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedHealthNluModelDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedHealthNluModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedKeyPhraseExtractionModelDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedKeyPhraseExtractionModelDetails.java index e6097c9f4e0..53a63046f64 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedKeyPhraseExtractionModelDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedKeyPhraseExtractionModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedLanguageDetectionModelDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedLanguageDetectionModelDetails.java index 9ed424f3770..58c1a282dc4 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedLanguageDetectionModelDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedLanguageDetectionModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedNamedEntityRecognitionModelDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedNamedEntityRecognitionModelDetails.java index 02f41ecb68a..6358a1e4aef 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedNamedEntityRecognitionModelDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedNamedEntityRecognitionModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedPiiModelDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedPiiModelDetails.java index a81aa906c93..1d705c9614e 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedPiiModelDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedPiiModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedSentimentAnalysisModelDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedSentimentAnalysisModelDetails.java index a223db56619..9a1a2fae287 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedSentimentAnalysisModelDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedSentimentAnalysisModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedSummarization.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedSummarization.java index 703cec2c6bc..cb9e34220ea 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedSummarization.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedSummarization.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedTextClassificationModelDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedTextClassificationModelDetails.java index 71c875b449b..b5066f6c9bc 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedTextClassificationModelDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedTextClassificationModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedTranslationModelDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedTranslationModelDetails.java index 886d12b8cc0..df9599cb62b 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedTranslationModelDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedTranslationModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedUniversalModel.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedUniversalModel.java index 56af798fd06..02fa9e73f03 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedUniversalModel.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/PreTrainedUniversalModel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Profile.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Profile.java index 6e02351165e..7e9f5d78502 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Profile.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Profile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Project.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Project.java index 1490dd70361..e1e00bd3600 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Project.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/Project.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ProjectCollection.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ProjectCollection.java index 4302b20b038..071b56c90b3 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ProjectCollection.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ProjectCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ProjectSummary.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ProjectSummary.java index 7a12bb0a0ce..2303dae744a 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ProjectSummary.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ProjectSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/RelationEntity.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/RelationEntity.java index 4d8886c4751..82a74835a0d 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/RelationEntity.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/RelationEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ResolvedEntities.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ResolvedEntities.java index ad066be51ec..8a4368c1077 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ResolvedEntities.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ResolvedEntities.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ResolvedEntity.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ResolvedEntity.java index a74154d6280..a9a53e951be 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ResolvedEntity.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/ResolvedEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/SentimentAspect.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/SentimentAspect.java index 9aa48052c67..2c043c54288 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/SentimentAspect.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/SentimentAspect.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/SentimentDocumentResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/SentimentDocumentResult.java index d961a215057..f3faed82dfc 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/SentimentDocumentResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/SentimentDocumentResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/SentimentSentence.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/SentimentSentence.java index 8a0d8be39af..026269f7ad9 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/SentimentSentence.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/SentimentSentence.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/SortOrder.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/SortOrder.java index db43d051483..e10b3ba3278 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/SortOrder.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TestAndValidationDatasetStrategy.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TestAndValidationDatasetStrategy.java index 617a6c264bd..576d84136b2 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TestAndValidationDatasetStrategy.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TestAndValidationDatasetStrategy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TestStrategy.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TestStrategy.java index 043ebfc5865..a234f86fdc4 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TestStrategy.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TestStrategy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassification.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassification.java index dc2da282ac3..97530bc47cb 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassification.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassification.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassificationDocumentResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassificationDocumentResult.java index f41fc7c10bb..238c842f341 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassificationDocumentResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassificationDocumentResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassificationEvaluationResults.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassificationEvaluationResults.java index 5ce99c25d94..5eb9bd56d6d 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassificationEvaluationResults.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassificationEvaluationResults.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassificationModelDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassificationModelDetails.java index 477ccb89a6b..626f9da2fda 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassificationModelDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassificationModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassificationModelEvaluationResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassificationModelEvaluationResult.java index 3cbef69d9b8..84cffdb255c 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassificationModelEvaluationResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassificationModelEvaluationResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassificationModelMetrics.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassificationModelMetrics.java index db622b92745..ed86c2c09b6 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassificationModelMetrics.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextClassificationModelMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextDocument.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextDocument.java index 5ac523d5469..64a736d0e95 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextDocument.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TextDocument.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TranslationDocumentResult.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TranslationDocumentResult.java index d784322470b..21fdb6191f0 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TranslationDocumentResult.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/TranslationDocumentResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/UpdateEndpointDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/UpdateEndpointDetails.java index 9c8b878203f..7e389ee0ce2 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/UpdateEndpointDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/UpdateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/UpdateJobDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/UpdateJobDetails.java index 77e98955ce9..9cc9933a208 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/UpdateJobDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/UpdateJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/UpdateModelDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/UpdateModelDetails.java index 93721c62f57..47d5a9c97b8 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/UpdateModelDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/UpdateModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/UpdateProjectDetails.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/UpdateProjectDetails.java index 2e17a19f18b..115c853d15a 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/UpdateProjectDetails.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/UpdateProjectDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequest.java index c3fe189d7b1..d81eac0b84b 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestError.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestError.java index 35e42df0896..b696a113f51 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestError.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestErrorCollection.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestErrorCollection.java index 59d7a58e155..2629d087069 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestErrorCollection.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestLog.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestLog.java index 0aabc9bb711..26d2e648d52 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestLog.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestLog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestLogCollection.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestLogCollection.java index 131fe591cf6..adb60a1d0d8 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestLogCollection.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestLogCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestResource.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestResource.java index bb4ea30a328..6d2c304560a 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestResource.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestSummary.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestSummary.java index 40431a2e898..c2c0cdf5637 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestSummary.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestSummaryCollection.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestSummaryCollection.java index 6e7aefd383c..9767c42c329 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestSummaryCollection.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.model; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectDominantLanguageRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectDominantLanguageRequest.java index 159968c99b2..cc12f0c845d 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectDominantLanguageRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectDominantLanguageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectHealthEntityRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectHealthEntityRequest.java index 85b81490bae..0a826415208 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectHealthEntityRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectHealthEntityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectLanguageEntitiesRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectLanguageEntitiesRequest.java index 875ab834b79..c6d75a7ad4c 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectLanguageEntitiesRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectLanguageEntitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectLanguageKeyPhrasesRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectLanguageKeyPhrasesRequest.java index 73d2b5566f3..cf0bee6d0ec 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectLanguageKeyPhrasesRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectLanguageKeyPhrasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectLanguagePiiEntitiesRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectLanguagePiiEntitiesRequest.java index 3dfb9c2e534..3c9dba67ac4 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectLanguagePiiEntitiesRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectLanguagePiiEntitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectLanguageSentimentsRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectLanguageSentimentsRequest.java index e7173204f8a..c532e4a3dbb 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectLanguageSentimentsRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectLanguageSentimentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectLanguageTextClassificationRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectLanguageTextClassificationRequest.java index 4c51fa79b8c..80bedd86dbc 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectLanguageTextClassificationRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchDetectLanguageTextClassificationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchLanguageTranslationRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchLanguageTranslationRequest.java index 7cf73174ec1..78915c4e2a2 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchLanguageTranslationRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/BatchLanguageTranslationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/CancelJobRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/CancelJobRequest.java index a3f9b2688f1..44fa1da3228 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/CancelJobRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/CancelJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ChangeEndpointCompartmentRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ChangeEndpointCompartmentRequest.java index 5ee01183116..a02d9cdac7c 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ChangeEndpointCompartmentRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ChangeEndpointCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ChangeJobCompartmentRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ChangeJobCompartmentRequest.java index 21ce02087cb..1f67135b35e 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ChangeJobCompartmentRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ChangeJobCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ChangeModelCompartmentRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ChangeModelCompartmentRequest.java index 5e937b1eef2..1d88c6d61f1 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ChangeModelCompartmentRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ChangeModelCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ChangeProjectCompartmentRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ChangeProjectCompartmentRequest.java index 86fd32b3053..827236b4f0c 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ChangeProjectCompartmentRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ChangeProjectCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/CreateEndpointRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/CreateEndpointRequest.java index f654681685a..e2a4cecb3f2 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/CreateEndpointRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/CreateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/CreateJobRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/CreateJobRequest.java index 27c7fbc495e..4075bd17c10 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/CreateJobRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/CreateJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/CreateModelRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/CreateModelRequest.java index 33e61ad33c4..fe0d85c1501 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/CreateModelRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/CreateModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/CreateProjectRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/CreateProjectRequest.java index d90530ef095..6242cee2c3d 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/CreateProjectRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/CreateProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DeleteEndpointRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DeleteEndpointRequest.java index 9d068a9e301..71126fb4f4b 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DeleteEndpointRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DeleteEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DeleteJobRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DeleteJobRequest.java index 82e42b763a9..e3a05202a3a 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DeleteJobRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DeleteJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DeleteModelRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DeleteModelRequest.java index c3f39e2225c..426bca66eac 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DeleteModelRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DeleteModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DeleteProjectRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DeleteProjectRequest.java index 88257f4d129..a4b6a460d4d 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DeleteProjectRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DeleteProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DetectDominantLanguageRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DetectDominantLanguageRequest.java index d209f8e674a..083dd265d42 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DetectDominantLanguageRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DetectDominantLanguageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DetectLanguageEntitiesRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DetectLanguageEntitiesRequest.java index 69458624505..45d154603ca 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DetectLanguageEntitiesRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DetectLanguageEntitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DetectLanguageKeyPhrasesRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DetectLanguageKeyPhrasesRequest.java index 16c4daa7e4a..a097c209324 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DetectLanguageKeyPhrasesRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DetectLanguageKeyPhrasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DetectLanguageSentimentsRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DetectLanguageSentimentsRequest.java index 00b25fe7853..189a5e687d2 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DetectLanguageSentimentsRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DetectLanguageSentimentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DetectLanguageTextClassificationRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DetectLanguageTextClassificationRequest.java index b4c056ab508..7ff861e3b84 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DetectLanguageTextClassificationRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/DetectLanguageTextClassificationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetEndpointRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetEndpointRequest.java index 6ff9164169c..078155087b9 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetEndpointRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetJobRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetJobRequest.java index af933c4dfc9..d8ae01368a4 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetJobRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetModelRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetModelRequest.java index dde811b267b..41d71411a02 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetModelRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetModelTypeRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetModelTypeRequest.java index 377e6be2801..60980fbf490 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetModelTypeRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetModelTypeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetProjectRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetProjectRequest.java index 41cfde2e4f6..3b661a44359 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetProjectRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetWorkRequestRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetWorkRequestRequest.java index ad11ba745e2..14476757e8b 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetWorkRequestRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListEndpointsRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListEndpointsRequest.java index 2cca2a976ad..3c0d135d3e5 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListEndpointsRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListEndpointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListEvaluationResultsRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListEvaluationResultsRequest.java index 2464d85860f..4b97e96b97a 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListEvaluationResultsRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListEvaluationResultsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListJobsRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListJobsRequest.java index 30d310796f6..23fd0edbd9f 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListJobsRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListJobsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListModelsRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListModelsRequest.java index 027c7d2708b..88c945ed6f6 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListModelsRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListModelsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListProjectsRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListProjectsRequest.java index d9484c388b2..f3acdee35ad 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListProjectsRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListProjectsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListWorkRequestErrorsRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListWorkRequestErrorsRequest.java index cc9e5a8e0c3..7573b673175 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListWorkRequestLogsRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListWorkRequestLogsRequest.java index 94f8432677b..7692ee8429a 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListWorkRequestLogsRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListWorkRequestsRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListWorkRequestsRequest.java index 0163f03df44..0f349f9356d 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListWorkRequestsRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/UpdateEndpointRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/UpdateEndpointRequest.java index 422cd1449b8..cb00dd319d9 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/UpdateEndpointRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/UpdateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/UpdateJobRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/UpdateJobRequest.java index 791158d9930..4645423365c 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/UpdateJobRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/UpdateJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/UpdateModelRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/UpdateModelRequest.java index 57eee87ee2b..f62dccf22a8 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/UpdateModelRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/UpdateModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/UpdateProjectRequest.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/UpdateProjectRequest.java index c92f5ece21b..f3f3d7264fc 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/UpdateProjectRequest.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/requests/UpdateProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.requests; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectDominantLanguageResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectDominantLanguageResponse.java index 8ca33a9a6ed..320bb53880d 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectDominantLanguageResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectDominantLanguageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectHealthEntityResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectHealthEntityResponse.java index 3fc554ea219..258f51ba565 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectHealthEntityResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectHealthEntityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectLanguageEntitiesResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectLanguageEntitiesResponse.java index a06fc8cd2c2..26279fa2a47 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectLanguageEntitiesResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectLanguageEntitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectLanguageKeyPhrasesResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectLanguageKeyPhrasesResponse.java index f6fb89d99a0..b3f5ccbf21d 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectLanguageKeyPhrasesResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectLanguageKeyPhrasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectLanguagePiiEntitiesResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectLanguagePiiEntitiesResponse.java index cc1a16ac09d..44b23589d96 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectLanguagePiiEntitiesResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectLanguagePiiEntitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectLanguageSentimentsResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectLanguageSentimentsResponse.java index 1bf74de29ad..8763fbf79dd 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectLanguageSentimentsResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectLanguageSentimentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectLanguageTextClassificationResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectLanguageTextClassificationResponse.java index 9f5834a42c5..d3db5636ba3 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectLanguageTextClassificationResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchDetectLanguageTextClassificationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchLanguageTranslationResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchLanguageTranslationResponse.java index 872c923514e..51ab557470d 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchLanguageTranslationResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/BatchLanguageTranslationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/CancelJobResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/CancelJobResponse.java index a5cc1dc467d..8a1be6b7868 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/CancelJobResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/CancelJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ChangeEndpointCompartmentResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ChangeEndpointCompartmentResponse.java index d83f17298a9..56ec5cef23e 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ChangeEndpointCompartmentResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ChangeEndpointCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ChangeJobCompartmentResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ChangeJobCompartmentResponse.java index 770c9fefc20..9b0bedb38f7 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ChangeJobCompartmentResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ChangeJobCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ChangeModelCompartmentResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ChangeModelCompartmentResponse.java index 8b9a1d38c7e..32312e9751e 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ChangeModelCompartmentResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ChangeModelCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ChangeProjectCompartmentResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ChangeProjectCompartmentResponse.java index 2af214250c0..11b7e49af15 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ChangeProjectCompartmentResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ChangeProjectCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/CreateEndpointResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/CreateEndpointResponse.java index dfbbc5685de..59332b047d7 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/CreateEndpointResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/CreateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/CreateJobResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/CreateJobResponse.java index 527736023ca..32e68f738e6 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/CreateJobResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/CreateJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/CreateModelResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/CreateModelResponse.java index a2e795f7a91..6d2f9b97ea5 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/CreateModelResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/CreateModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/CreateProjectResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/CreateProjectResponse.java index 90ba70c2bd2..794a00554b9 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/CreateProjectResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/CreateProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DeleteEndpointResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DeleteEndpointResponse.java index 6888fe639ce..f78430187fa 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DeleteEndpointResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DeleteEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DeleteJobResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DeleteJobResponse.java index f7c5f5fb463..ebd3b141acf 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DeleteJobResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DeleteJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DeleteModelResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DeleteModelResponse.java index b8ef56178ec..2ef9b65b9a5 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DeleteModelResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DeleteModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DeleteProjectResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DeleteProjectResponse.java index 1f159d6c3db..d7f93c48f4f 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DeleteProjectResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DeleteProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DetectDominantLanguageResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DetectDominantLanguageResponse.java index ef44d00fb53..ff100f88eff 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DetectDominantLanguageResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DetectDominantLanguageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DetectLanguageEntitiesResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DetectLanguageEntitiesResponse.java index d2d32e2c6e4..295d29c7d13 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DetectLanguageEntitiesResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DetectLanguageEntitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DetectLanguageKeyPhrasesResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DetectLanguageKeyPhrasesResponse.java index bfc35bb4754..87a27c09f1d 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DetectLanguageKeyPhrasesResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DetectLanguageKeyPhrasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DetectLanguageSentimentsResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DetectLanguageSentimentsResponse.java index 39f3a61df65..9d582b9d8b8 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DetectLanguageSentimentsResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DetectLanguageSentimentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DetectLanguageTextClassificationResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DetectLanguageTextClassificationResponse.java index 16bddde49c6..7b9b31a5848 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DetectLanguageTextClassificationResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/DetectLanguageTextClassificationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetEndpointResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetEndpointResponse.java index 3f8c1c2a07c..28c4ff567e2 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetEndpointResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetJobResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetJobResponse.java index 361d9a34e97..07e6d80d655 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetJobResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetModelResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetModelResponse.java index 0cb1ca75a3e..588dcb7e734 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetModelResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetModelTypeResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetModelTypeResponse.java index 3f82506ae06..2136cad869d 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetModelTypeResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetModelTypeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetProjectResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetProjectResponse.java index 12fc3033743..6d60383f79c 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetProjectResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetWorkRequestResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetWorkRequestResponse.java index 34425a949b4..bef3cfc1236 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetWorkRequestResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListEndpointsResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListEndpointsResponse.java index 3954852312b..0e2887ca0d2 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListEndpointsResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListEndpointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListEvaluationResultsResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListEvaluationResultsResponse.java index 5fdc4c53efe..bf782b222bc 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListEvaluationResultsResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListEvaluationResultsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListJobsResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListJobsResponse.java index 602b0e191e6..91d06d32cfe 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListJobsResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListJobsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListModelsResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListModelsResponse.java index 01bb4b93e13..66f0ac76274 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListModelsResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListModelsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListProjectsResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListProjectsResponse.java index abb3310fb1f..c8d2b5e5068 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListProjectsResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListProjectsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListWorkRequestErrorsResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListWorkRequestErrorsResponse.java index 7cae2d74ddc..739e8854520 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListWorkRequestLogsResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListWorkRequestLogsResponse.java index 7214499b8c9..ede8580fb98 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListWorkRequestLogsResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListWorkRequestsResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListWorkRequestsResponse.java index 12ea7d81938..4d9cba78584 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListWorkRequestsResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/UpdateEndpointResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/UpdateEndpointResponse.java index 01cf65fc13b..6d5a42dbbe4 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/UpdateEndpointResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/UpdateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/UpdateJobResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/UpdateJobResponse.java index dcc66d4ae03..7cc2233a317 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/UpdateJobResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/UpdateJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/UpdateModelResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/UpdateModelResponse.java index ad101c33a2f..ca0abe8d1fd 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/UpdateModelResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/UpdateModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/UpdateProjectResponse.java b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/UpdateProjectResponse.java index 0ce732b3207..b1c78590c3e 100644 --- a/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/UpdateProjectResponse.java +++ b/bmc-ailanguage/src/main/java/com/oracle/bmc/ailanguage/responses/UpdateProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ailanguage.responses; diff --git a/bmc-ailanguage/src/main/resources/com/oracle/bmc/ailanguage/client.properties b/bmc-ailanguage/src/main/resources/com/oracle/bmc/ailanguage/client.properties index cc2c221b0cf..fa6a6e2f837 100644 --- a/bmc-ailanguage/src/main/resources/com/oracle/bmc/ailanguage/client.properties +++ b/bmc-ailanguage/src/main/resources/com/oracle/bmc/ailanguage/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-aispeech/pom.xml b/bmc-aispeech/pom.xml index f0ed96c86dc..02780efecec 100644 --- a/bmc-aispeech/pom.xml +++ b/bmc-aispeech/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-aispeech @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeech.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeech.java index 9ccd01e82f2..1b936b54455 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeech.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeech.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeechAsync.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeechAsync.java index d4686f862b5..e07129da3da 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeechAsync.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeechAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeechAsyncClient.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeechAsyncClient.java index 5f866ee3403..beb6f17f56b 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeechAsyncClient.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeechAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeechClient.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeechClient.java index 44de587b5f7..f7e83540f56 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeechClient.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeechClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeechPaginators.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeechPaginators.java index 64523c3bdb9..18a1051f4f5 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeechPaginators.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeechPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeechWaiters.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeechWaiters.java index 69d319aba34..e6f61b45bba 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeechWaiters.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/AIServiceSpeechWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/AudioFormatDetails.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/AudioFormatDetails.java index c87446cd2c0..f62b467e504 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/AudioFormatDetails.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/AudioFormatDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ChangeCustomizationCompartmentDetails.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ChangeCustomizationCompartmentDetails.java index d96478f93c4..5db9432f7e4 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ChangeCustomizationCompartmentDetails.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ChangeCustomizationCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ChangeTranscriptionJobCompartmentDetails.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ChangeTranscriptionJobCompartmentDetails.java index 5dd09ab6db4..2a57214bd47 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ChangeTranscriptionJobCompartmentDetails.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ChangeTranscriptionJobCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CreateCustomizationDetails.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CreateCustomizationDetails.java index 7baa3b6d0b4..027c7c8d619 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CreateCustomizationDetails.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CreateCustomizationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CreateRealtimeSessionTokenDetails.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CreateRealtimeSessionTokenDetails.java index ee41449154c..71dcf3e5a17 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CreateRealtimeSessionTokenDetails.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CreateRealtimeSessionTokenDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CreateTranscriptionJobDetails.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CreateTranscriptionJobDetails.java index d356d1f8e0a..950f94cc501 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CreateTranscriptionJobDetails.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CreateTranscriptionJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/Customization.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/Customization.java index 435c0b8e5c4..ce8fc51118a 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/Customization.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/Customization.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationCollection.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationCollection.java index 425d3309797..5de7e28e664 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationCollection.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationDatasetDetails.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationDatasetDetails.java index c7f1ab29216..9845d861770 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationDatasetDetails.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationDatasetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationInference.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationInference.java index 3f237bc1637..e9eb741c8b3 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationInference.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationInference.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationInferenceEntity.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationInferenceEntity.java index b6d6e5c388e..1110601b768 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationInferenceEntity.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationInferenceEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationModelDetails.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationModelDetails.java index 507cc0ae2cf..29cd5a89723 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationModelDetails.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationReferencedEntities.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationReferencedEntities.java index 96559f44a15..5e6a6412127 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationReferencedEntities.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationReferencedEntities.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationSummary.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationSummary.java index 471e2671b5c..b84e918a7f7 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationSummary.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/CustomizationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/Diarization.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/Diarization.java index a7f2c8b8d36..b16111e1635 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/Diarization.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/Diarization.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/Entity.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/Entity.java index 9442248eec1..976345a6472 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/Entity.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/Entity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/EntityList.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/EntityList.java index 7ac285cf720..3b4116924fe 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/EntityList.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/EntityList.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/EntityListDataset.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/EntityListDataset.java index 0b796ec4b66..83512479ecf 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/EntityListDataset.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/EntityListDataset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/InputLocation.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/InputLocation.java index 59f031e044b..d17013cf117 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/InputLocation.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/InputLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/LocationDetails.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/LocationDetails.java index 219ab07c0c3..4259f6bdd97 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/LocationDetails.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/LocationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ObjectListDataset.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ObjectListDataset.java index 15258593b56..d70cd074bf1 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ObjectListDataset.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ObjectListDataset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ObjectListFileInputLocation.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ObjectListFileInputLocation.java index 4ada8747bd9..cf9527cf3fc 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ObjectListFileInputLocation.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ObjectListFileInputLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ObjectListInlineInputLocation.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ObjectListInlineInputLocation.java index 2782972814b..aded3bf2613 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ObjectListInlineInputLocation.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ObjectListInlineInputLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ObjectLocation.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ObjectLocation.java index ca1370d6b0a..39d248a70fc 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ObjectLocation.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ObjectLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ObjectStorageDataset.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ObjectStorageDataset.java index 03a83f55b36..6b1298b69c1 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ObjectStorageDataset.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ObjectStorageDataset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/OutputLocation.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/OutputLocation.java index 7ff64583fdd..c0c0f58925d 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/OutputLocation.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/OutputLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ProfanityTranscriptionFilter.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ProfanityTranscriptionFilter.java index 49e8388b5a9..a04bb935435 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ProfanityTranscriptionFilter.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/ProfanityTranscriptionFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/Pronunciation.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/Pronunciation.java index 45e07b90889..493e916563b 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/Pronunciation.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/Pronunciation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessage.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessage.java index 48f8f9b70c2..99e47c258cf 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessage.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageAckAudio.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageAckAudio.java index 375a9734701..5df9f4c2b6a 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageAckAudio.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageAckAudio.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageAckAudioDetails.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageAckAudioDetails.java index 9d2307380eb..4e7b7030aac 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageAckAudioDetails.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageAckAudioDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageAuthentication.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageAuthentication.java index 326102df8ef..39d30d56a30 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageAuthentication.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageAuthentication.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageAuthenticationCredentials.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageAuthenticationCredentials.java index f877c71ea88..12ce1686bfd 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageAuthenticationCredentials.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageAuthenticationCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageAuthenticationToken.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageAuthenticationToken.java index fbb71257bd0..705ab59cd8c 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageAuthenticationToken.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageAuthenticationToken.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageConnect.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageConnect.java index ee7f956fca8..2a44acef54f 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageConnect.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageConnect.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageError.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageError.java index b0af8b79778..7f5b1624ddd 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageError.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageOut.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageOut.java index b40bebcb472..1c2b3c632c6 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageOut.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageOut.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageResult.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageResult.java index cbca681227f..575dcad0f81 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageResult.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageResultTranscription.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageResultTranscription.java index 6aef3fbf886..5a37d86acfd 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageResultTranscription.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageResultTranscription.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageResultTranscriptionToken.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageResultTranscriptionToken.java index 63a1444d535..8ded3a692a6 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageResultTranscriptionToken.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageResultTranscriptionToken.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageSendFinalResult.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageSendFinalResult.java index d10014ccd53..688dfeef7be 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageSendFinalResult.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeMessageSendFinalResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeModelDetails.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeModelDetails.java index f8e20b67f33..e2ce8076426 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeModelDetails.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeParameters.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeParameters.java index 0930df3143a..6f39c6bd329 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeParameters.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeParameters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeSessionToken.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeSessionToken.java index 104f08e6d25..2f9fa848a5d 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeSessionToken.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/RealtimeSessionToken.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/SortOrder.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/SortOrder.java index e159f4283c0..86427c398c9 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/SortOrder.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/SynthesizeSpeechDetails.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/SynthesizeSpeechDetails.java index 05387f7f5ea..0ff82920776 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/SynthesizeSpeechDetails.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/SynthesizeSpeechDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionFilter.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionFilter.java index 1d08b1df603..99f5655ffc9 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionFilter.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionJob.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionJob.java index e5c3e672937..93d4b1efa79 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionJob.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionJobCollection.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionJobCollection.java index 3ecc7a22361..e4720615537 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionJobCollection.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionJobCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionJobSummary.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionJobSummary.java index 9085db8a72a..c4c17072802 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionJobSummary.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionJobSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionModelDetails.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionModelDetails.java index ec4d8b2636b..e5e19ad4387 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionModelDetails.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionNormalization.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionNormalization.java index e9e76c75504..334244afbf3 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionNormalization.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionNormalization.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionSettings.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionSettings.java index 70d60caa583..5d050e47731 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionSettings.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionTask.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionTask.java index 6a59b9a5c65..431caaf4a52 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionTask.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionTaskCollection.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionTaskCollection.java index 74d2645ab5c..928194cfcbd 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionTaskCollection.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionTaskCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionTaskSummary.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionTaskSummary.java index 2f2ff2944ed..2755424db0e 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionTaskSummary.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TranscriptionTaskSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsAudioConfig.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsAudioConfig.java index 07b0f4f3136..fcea3a61aa2 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsAudioConfig.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsAudioConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsBaseAudioConfig.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsBaseAudioConfig.java index bb8892329b5..2213170d113 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsBaseAudioConfig.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsBaseAudioConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsConfiguration.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsConfiguration.java index 150d5a878e2..03b78653555 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsConfiguration.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsOracleConfiguration.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsOracleConfiguration.java index 75e8815a0eb..365b75735c4 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsOracleConfiguration.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsOracleConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsOracleModelDetails.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsOracleModelDetails.java index a23ec2e9ae1..cb3f4bb6b8a 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsOracleModelDetails.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsOracleModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsOracleSpeechSettings.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsOracleSpeechSettings.java index b3e3d6c8a77..3da2bced238 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsOracleSpeechSettings.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsOracleSpeechSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsOracleTts1StandardModelDetails.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsOracleTts1StandardModelDetails.java index 54009f31a0f..30ed6e95b5f 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsOracleTts1StandardModelDetails.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsOracleTts1StandardModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsOracleTts2NaturalModelDetails.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsOracleTts2NaturalModelDetails.java index fa8f26e4b7c..5d68f6ea9f3 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsOracleTts2NaturalModelDetails.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/TtsOracleTts2NaturalModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/UpdateCustomizationDetails.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/UpdateCustomizationDetails.java index 3f5971d42ea..8976e6887d6 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/UpdateCustomizationDetails.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/UpdateCustomizationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/UpdateTranscriptionJobDetails.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/UpdateTranscriptionJobDetails.java index a273e5d37c9..548765bc03e 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/UpdateTranscriptionJobDetails.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/UpdateTranscriptionJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/VoiceCollection.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/VoiceCollection.java index dc47ab8f52d..4ae6d2f33cd 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/VoiceCollection.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/VoiceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/VoiceSummary.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/VoiceSummary.java index b83ea0700ad..8d641ac0ba9 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/VoiceSummary.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/model/VoiceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.model; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/CancelTranscriptionJobRequest.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/CancelTranscriptionJobRequest.java index 25e444db506..572fbb133d2 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/CancelTranscriptionJobRequest.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/CancelTranscriptionJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.requests; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/CancelTranscriptionTaskRequest.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/CancelTranscriptionTaskRequest.java index 9b9eab071e5..9e4fbafce81 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/CancelTranscriptionTaskRequest.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/CancelTranscriptionTaskRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.requests; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ChangeCustomizationCompartmentRequest.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ChangeCustomizationCompartmentRequest.java index b290d6053a6..9b5d6f8a4d0 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ChangeCustomizationCompartmentRequest.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ChangeCustomizationCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.requests; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ChangeTranscriptionJobCompartmentRequest.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ChangeTranscriptionJobCompartmentRequest.java index 54da0b365dc..88f1a6f2470 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ChangeTranscriptionJobCompartmentRequest.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ChangeTranscriptionJobCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.requests; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/CreateCustomizationRequest.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/CreateCustomizationRequest.java index f54ae89b85b..1445d2415bd 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/CreateCustomizationRequest.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/CreateCustomizationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.requests; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/CreateRealtimeSessionTokenRequest.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/CreateRealtimeSessionTokenRequest.java index b788be7d03c..590b38c2a6e 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/CreateRealtimeSessionTokenRequest.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/CreateRealtimeSessionTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.requests; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/CreateTranscriptionJobRequest.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/CreateTranscriptionJobRequest.java index de3c7fcb539..956c7c44d6f 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/CreateTranscriptionJobRequest.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/CreateTranscriptionJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.requests; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/DeleteCustomizationRequest.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/DeleteCustomizationRequest.java index ba120a37cf7..113c30db137 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/DeleteCustomizationRequest.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/DeleteCustomizationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.requests; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/DeleteTranscriptionJobRequest.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/DeleteTranscriptionJobRequest.java index 554b2b33f60..6124339217f 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/DeleteTranscriptionJobRequest.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/DeleteTranscriptionJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.requests; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/GetCustomizationRequest.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/GetCustomizationRequest.java index 40437f6803b..7bc612da1bd 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/GetCustomizationRequest.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/GetCustomizationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.requests; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/GetTranscriptionJobRequest.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/GetTranscriptionJobRequest.java index 38b7f87751a..4383a2a0f47 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/GetTranscriptionJobRequest.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/GetTranscriptionJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.requests; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/GetTranscriptionTaskRequest.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/GetTranscriptionTaskRequest.java index dc0370d5662..e94005ab9c4 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/GetTranscriptionTaskRequest.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/GetTranscriptionTaskRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.requests; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ListCustomizationsRequest.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ListCustomizationsRequest.java index 07bbbfc0f8c..10c54dd6736 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ListCustomizationsRequest.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ListCustomizationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.requests; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ListTranscriptionJobsRequest.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ListTranscriptionJobsRequest.java index 1d42bfa2a7c..da2701ed803 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ListTranscriptionJobsRequest.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ListTranscriptionJobsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.requests; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ListTranscriptionTasksRequest.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ListTranscriptionTasksRequest.java index d7538f40fbb..d0f7ec79c4f 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ListTranscriptionTasksRequest.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ListTranscriptionTasksRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.requests; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ListVoicesRequest.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ListVoicesRequest.java index c255ee1a56e..0318f95198a 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ListVoicesRequest.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/ListVoicesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.requests; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/SynthesizeSpeechRequest.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/SynthesizeSpeechRequest.java index 3e9c785b3b2..2bde7b026b8 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/SynthesizeSpeechRequest.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/SynthesizeSpeechRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.requests; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/UpdateCustomizationRequest.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/UpdateCustomizationRequest.java index ca6d7627abd..e01f5cc76e7 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/UpdateCustomizationRequest.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/UpdateCustomizationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.requests; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/UpdateTranscriptionJobRequest.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/UpdateTranscriptionJobRequest.java index 1f8674847b8..dc6f0de97d4 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/UpdateTranscriptionJobRequest.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/requests/UpdateTranscriptionJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.requests; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/CancelTranscriptionJobResponse.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/CancelTranscriptionJobResponse.java index 8b2c04971a8..a4cde93bd63 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/CancelTranscriptionJobResponse.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/CancelTranscriptionJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.responses; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/CancelTranscriptionTaskResponse.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/CancelTranscriptionTaskResponse.java index f7831978957..16727e60e84 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/CancelTranscriptionTaskResponse.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/CancelTranscriptionTaskResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.responses; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ChangeCustomizationCompartmentResponse.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ChangeCustomizationCompartmentResponse.java index 54c2f6f4c0a..34a12b7b767 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ChangeCustomizationCompartmentResponse.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ChangeCustomizationCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.responses; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ChangeTranscriptionJobCompartmentResponse.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ChangeTranscriptionJobCompartmentResponse.java index 37b647e067f..72008aeec3e 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ChangeTranscriptionJobCompartmentResponse.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ChangeTranscriptionJobCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.responses; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/CreateCustomizationResponse.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/CreateCustomizationResponse.java index debb06458ba..fa6bcb74a3a 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/CreateCustomizationResponse.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/CreateCustomizationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.responses; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/CreateRealtimeSessionTokenResponse.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/CreateRealtimeSessionTokenResponse.java index 08aa36918fa..091146df0ac 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/CreateRealtimeSessionTokenResponse.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/CreateRealtimeSessionTokenResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.responses; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/CreateTranscriptionJobResponse.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/CreateTranscriptionJobResponse.java index e138e0a88d0..9fbde0326a5 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/CreateTranscriptionJobResponse.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/CreateTranscriptionJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.responses; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/DeleteCustomizationResponse.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/DeleteCustomizationResponse.java index 63e6bcddef8..0e1f50dc1c8 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/DeleteCustomizationResponse.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/DeleteCustomizationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.responses; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/DeleteTranscriptionJobResponse.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/DeleteTranscriptionJobResponse.java index 03a1f04a682..56da7ec9ec9 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/DeleteTranscriptionJobResponse.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/DeleteTranscriptionJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.responses; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/GetCustomizationResponse.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/GetCustomizationResponse.java index cf3f4b3ec27..a92cc039cb5 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/GetCustomizationResponse.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/GetCustomizationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.responses; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/GetTranscriptionJobResponse.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/GetTranscriptionJobResponse.java index 0a2a7136363..322dadb2647 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/GetTranscriptionJobResponse.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/GetTranscriptionJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.responses; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/GetTranscriptionTaskResponse.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/GetTranscriptionTaskResponse.java index b70770915dd..61d4de78f9f 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/GetTranscriptionTaskResponse.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/GetTranscriptionTaskResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.responses; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ListCustomizationsResponse.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ListCustomizationsResponse.java index e974c5aa618..2797aab7082 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ListCustomizationsResponse.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ListCustomizationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.responses; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ListTranscriptionJobsResponse.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ListTranscriptionJobsResponse.java index d21f4c6ac3b..9e47e4f092b 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ListTranscriptionJobsResponse.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ListTranscriptionJobsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.responses; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ListTranscriptionTasksResponse.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ListTranscriptionTasksResponse.java index 7ab3ef5f872..bf8a04179fd 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ListTranscriptionTasksResponse.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ListTranscriptionTasksResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.responses; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ListVoicesResponse.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ListVoicesResponse.java index 3728af21e3d..413b83eaf0a 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ListVoicesResponse.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/ListVoicesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.responses; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/SynthesizeSpeechResponse.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/SynthesizeSpeechResponse.java index 7e60ddb1f71..7697af733a0 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/SynthesizeSpeechResponse.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/SynthesizeSpeechResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.responses; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/UpdateCustomizationResponse.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/UpdateCustomizationResponse.java index 14b0a008404..e570b8374a4 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/UpdateCustomizationResponse.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/UpdateCustomizationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.responses; diff --git a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/UpdateTranscriptionJobResponse.java b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/UpdateTranscriptionJobResponse.java index 79dd8330641..b12b20751a9 100644 --- a/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/UpdateTranscriptionJobResponse.java +++ b/bmc-aispeech/src/main/java/com/oracle/bmc/aispeech/responses/UpdateTranscriptionJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aispeech.responses; diff --git a/bmc-aispeech/src/main/resources/com/oracle/bmc/aispeech/client.properties b/bmc-aispeech/src/main/resources/com/oracle/bmc/aispeech/client.properties index 77dcc2df0e1..fe1d1766a80 100644 --- a/bmc-aispeech/src/main/resources/com/oracle/bmc/aispeech/client.properties +++ b/bmc-aispeech/src/main/resources/com/oracle/bmc/aispeech/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-aivision/pom.xml b/bmc-aivision/pom.xml index df73331fa7c..d4a125f3dc2 100644 --- a/bmc-aivision/pom.xml +++ b/bmc-aivision/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-aivision @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVision.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVision.java index 8cc26a5e5e6..33e932dee65 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVision.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVision.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVisionAsync.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVisionAsync.java index 370e1b64a34..58686beab74 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVisionAsync.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVisionAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVisionAsyncClient.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVisionAsyncClient.java index 3f9d0da4213..e4e4669f778 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVisionAsyncClient.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVisionAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVisionClient.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVisionClient.java index 54763aedf18..2598ae7be02 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVisionClient.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVisionClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVisionPaginators.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVisionPaginators.java index 3f0dc07dad2..1294af4163a 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVisionPaginators.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVisionPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVisionWaiters.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVisionWaiters.java index 319c13314e8..88172c9ef04 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVisionWaiters.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/AIServiceVisionWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ActionType.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ActionType.java index 4bcf53085ae..87922c48757 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ActionType.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeDocumentDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeDocumentDetails.java index b99045962f0..39ca1336e72 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeDocumentDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeDocumentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeDocumentResult.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeDocumentResult.java index 59b0dec6bb2..c2136bad1e6 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeDocumentResult.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeDocumentResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeImageDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeImageDetails.java index 20d33df9550..2df276a9284 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeImageDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeImageResult.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeImageResult.java index b622821fa78..b88934b0435 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeImageResult.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeImageResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeVideoResult.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeVideoResult.java index 1ac8106932d..09938960550 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeVideoResult.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeVideoResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeVideoStreamResult.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeVideoStreamResult.java index 16b1d3b4cc9..895ecdccb21 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeVideoStreamResult.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/AnalyzeVideoStreamResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/BoundingPolygon.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/BoundingPolygon.java index e3195a8adc1..eb28250333c 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/BoundingPolygon.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/BoundingPolygon.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Cell.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Cell.java index 875bd22e268..babaa224bb6 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Cell.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Cell.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeModelCompartmentDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeModelCompartmentDetails.java index 9a7cdc73000..3b09ecc67aa 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeModelCompartmentDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeModelCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeProjectCompartmentDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeProjectCompartmentDetails.java index b6dcc9fccb5..9c90d54278b 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeProjectCompartmentDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeProjectCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeStreamGroupCompartmentDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeStreamGroupCompartmentDetails.java index a2fd23a8609..8938f962258 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeStreamGroupCompartmentDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeStreamGroupCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeStreamJobCompartmentDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeStreamJobCompartmentDetails.java index 138282c3283..b6b28c58a1d 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeStreamJobCompartmentDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeStreamJobCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeStreamSourceCompartmentDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeStreamSourceCompartmentDetails.java index 8c79fea0edd..0361084cf91 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeStreamSourceCompartmentDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeStreamSourceCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeVisionPrivateEndpointCompartmentDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeVisionPrivateEndpointCompartmentDetails.java index 7dc89ce9e61..d5aca50114a 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeVisionPrivateEndpointCompartmentDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ChangeVisionPrivateEndpointCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateDocumentJobDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateDocumentJobDetails.java index 084f6ec26e5..d3d5ca9c659 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateDocumentJobDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateDocumentJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateImageJobDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateImageJobDetails.java index 57cdd92b1ff..e0006bfab68 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateImageJobDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateImageJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateModelDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateModelDetails.java index 0b2773d151f..64ba6590d24 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateModelDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateProjectDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateProjectDetails.java index 144c087d49e..b42f5ecf69e 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateProjectDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateProjectDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateStreamGroupDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateStreamGroupDetails.java index aa0610128e0..8d7d96f5c80 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateStreamGroupDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateStreamGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateStreamJobDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateStreamJobDetails.java index 9d1efb102a1..96ac7114211 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateStreamJobDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateStreamJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateStreamSourceDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateStreamSourceDetails.java index 17cb4827199..51fbdc40f4a 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateStreamSourceDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateStreamSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateVideoJobDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateVideoJobDetails.java index 5f1f8a986ee..bddfbcae340 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateVideoJobDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateVideoJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateVisionPrivateEndpointDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateVisionPrivateEndpointDetails.java index 081f6f98b9f..4ac993f072f 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateVisionPrivateEndpointDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/CreateVisionPrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DataScienceLabelingDataset.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DataScienceLabelingDataset.java index ac73c00f96c..87605cf7d4a 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DataScienceLabelingDataset.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DataScienceLabelingDataset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Dataset.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Dataset.java index 1628af00489..fbf9cff1675 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Dataset.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Dataset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DetectedDocumentType.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DetectedDocumentType.java index 754ce0a5689..75da7d81b54 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DetectedDocumentType.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DetectedDocumentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DetectedLanguage.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DetectedLanguage.java index 828238828c3..80220445be9 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DetectedLanguage.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DetectedLanguage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Dimensions.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Dimensions.java index 8e92f171f49..f77ea183551 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Dimensions.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Dimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentClassificationFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentClassificationFeature.java index 53e664577a5..5585de5009f 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentClassificationFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentClassificationFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentDetails.java index 007bb386081..8014e03bf42 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentFeature.java index 293321768bd..761f7d69043 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentField.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentField.java index 4827a44c074..57ff9bdc63f 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentField.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentJob.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentJob.java index dcf4ab5c5f0..1047af6f791 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentJob.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentKeyValueDetectionFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentKeyValueDetectionFeature.java index 89a2b058f08..acd8de70722 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentKeyValueDetectionFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentKeyValueDetectionFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentLanguage.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentLanguage.java index 92629bd8280..c5323f20409 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentLanguage.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentLanguage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentLanguageClassificationFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentLanguageClassificationFeature.java index d4c068b73fb..4000a6f30fb 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentLanguageClassificationFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentLanguageClassificationFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentMetadata.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentMetadata.java index 73cf3d66813..314d55f8465 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentMetadata.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentTableDetectionFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentTableDetectionFeature.java index 77f8e8247e4..930ea93f96b 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentTableDetectionFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentTableDetectionFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentTextDetectionFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentTextDetectionFeature.java index 68023e4685b..517d7430bc9 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentTextDetectionFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentTextDetectionFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentType.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentType.java index f4696a4c16a..f6b7601a118 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentType.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/DocumentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Face.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Face.java index 1ac7e63dbd6..54ecd3bacb4 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Face.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Face.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/FaceDetectionFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/FaceDetectionFeature.java index 080ca04b415..92c0189a9f6 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/FaceDetectionFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/FaceDetectionFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/FaceEmbeddingFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/FaceEmbeddingFeature.java index d3d0ee26423..a06c88d0fd2 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/FaceEmbeddingFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/FaceEmbeddingFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/FieldLabel.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/FieldLabel.java index e3f57724f83..931999587f4 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/FieldLabel.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/FieldLabel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/FieldName.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/FieldName.java index 20fd961b18b..dbc92cca967 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/FieldName.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/FieldName.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/FieldValue.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/FieldValue.java index 5ad836bf133..46abe54effc 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/FieldValue.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/FieldValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageClassificationFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageClassificationFeature.java index bf21b3a36b5..986d15f10b7 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageClassificationFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageClassificationFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageDetails.java index c42312f403f..2ffd82e65de 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageFeature.java index cc7e9e2cfba..a8a0a27e399 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageJob.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageJob.java index 7dea12e7a7c..319ec701d84 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageJob.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageObject.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageObject.java index 21394aea1ac..8da1cd91b84 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageObject.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageObjectDetectionFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageObjectDetectionFeature.java index 63259b22e35..087942847f6 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageObjectDetectionFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageObjectDetectionFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageText.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageText.java index 87b2fa691e7..20032f35ef3 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageText.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageText.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageTextDetectionFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageTextDetectionFeature.java index 2f72accc6cc..3374d4fa573 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageTextDetectionFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ImageTextDetectionFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/InlineDocumentDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/InlineDocumentDetails.java index aa7fd12eca4..e97f1529f09 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/InlineDocumentDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/InlineDocumentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/InlineImageDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/InlineImageDetails.java index 465e229c702..c84aea7c7c8 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/InlineImageDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/InlineImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/InputLocation.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/InputLocation.java index 92a2fb3270f..f067e7da481 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/InputLocation.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/InputLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Label.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Label.java index 9c9e8619a5e..e74b3b8e12f 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Label.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Label.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Landmark.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Landmark.java index a67bc5935f2..d01a9e5b43f 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Landmark.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Landmark.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Line.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Line.java index 69e95e911f5..269b8a7f65f 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Line.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Line.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Model.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Model.java index e6acc663ff9..42ba273dfc7 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Model.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Model.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ModelCollection.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ModelCollection.java index 536624f030c..857ab0a78e1 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ModelCollection.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ModelCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ModelSummary.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ModelSummary.java index 08f7ec6857a..47910804b9c 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ModelSummary.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ModelSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ModelVersionDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ModelVersionDetails.java index afad228ed13..adddbeacec6 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ModelVersionDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ModelVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/NormalizedVertex.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/NormalizedVertex.java index ea5e774588e..e6f635db9cb 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/NormalizedVertex.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/NormalizedVertex.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectListInlineInputLocation.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectListInlineInputLocation.java index a8bd8e915d9..9b8e48141d8 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectListInlineInputLocation.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectListInlineInputLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectLocation.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectLocation.java index d4586952d4a..d54e76a3369 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectLocation.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectProperties.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectProperties.java index efe8ad09c58..b0aa37db807 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectProperties.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectProperty.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectProperty.java index 474fc07a945..96d9cf80b85 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectProperty.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectProperty.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectStorageDataset.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectStorageDataset.java index 42a65f74f29..00215b8bc2d 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectStorageDataset.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectStorageDataset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectStorageDocumentDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectStorageDocumentDetails.java index 121c8988af3..64c1f085c10 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectStorageDocumentDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectStorageDocumentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectStorageImageDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectStorageImageDetails.java index 4e13dca30d8..c165c9fdbd5 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectStorageImageDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectStorageImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectStorageOutputLocation.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectStorageOutputLocation.java index 8db1d003df7..a772494fe11 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectStorageOutputLocation.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ObjectStorageOutputLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/OntologyClass.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/OntologyClass.java index e2f5d9501ac..0f54f9de79b 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/OntologyClass.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/OntologyClass.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/OperationStatus.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/OperationStatus.java index 2da09c0592d..e5d73a539be 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/OperationStatus.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/OperationType.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/OperationType.java index f159360348b..e8ee5c48ca2 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/OperationType.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/OutputLocation.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/OutputLocation.java index bc7746026d0..40a3140b802 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/OutputLocation.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/OutputLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Page.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Page.java index 0c2e3c5eac2..418d83c6d45 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Page.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Page.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/PrivateStreamNetworkAccessDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/PrivateStreamNetworkAccessDetails.java index ddf25e74531..5866709f6c8 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/PrivateStreamNetworkAccessDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/PrivateStreamNetworkAccessDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ProcessingError.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ProcessingError.java index 4f13cb5ad53..5e30fa8b321 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ProcessingError.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ProcessingError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Project.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Project.java index dcec502a04e..5613e17cdef 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Project.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Project.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ProjectCollection.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ProjectCollection.java index d413e3178de..2248d5be30e 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ProjectCollection.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ProjectCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ProjectSummary.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ProjectSummary.java index bc565e0348e..fd8a930f12a 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ProjectSummary.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ProjectSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/RtspSourceDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/RtspSourceDetails.java index d84191fb0c5..ee5a61c69ca 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/RtspSourceDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/RtspSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/SortOrder.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/SortOrder.java index 2eaa9d51f5f..b6861e9fd31 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/SortOrder.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamGroup.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamGroup.java index 56255aa3980..f4ba1008e5f 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamGroup.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamGroupCollection.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamGroupCollection.java index 809f81f9e76..6ddaaa8f883 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamGroupCollection.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamGroupCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamGroupOverlap.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamGroupOverlap.java index 0f079355e1e..56faa4389a2 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamGroupOverlap.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamGroupOverlap.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamGroupSummary.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamGroupSummary.java index 9550bfbd6da..774d774fe93 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamGroupSummary.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamGroupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamJob.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamJob.java index 934c9d29722..6f5d880baf4 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamJob.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamJobCollection.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamJobCollection.java index 575ba4275ca..963d9316100 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamJobCollection.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamJobCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamJobSummary.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamJobSummary.java index cc07f28f42c..473eb82e0a2 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamJobSummary.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamJobSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamNetworkAccessDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamNetworkAccessDetails.java index 2d9950047e5..e85a82a2ba9 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamNetworkAccessDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamNetworkAccessDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamOutputLocation.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamOutputLocation.java index 8d46a4fa4fc..0026e5a0649 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamOutputLocation.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamOutputLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamSource.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamSource.java index 6bacfcd8b6b..9b932974e4c 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamSource.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamSourceCollection.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamSourceCollection.java index 65df26a5107..860a3f90619 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamSourceCollection.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamSourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamSourceDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamSourceDetails.java index 55a8ead0af9..d40bf61ccd8 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamSourceDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamSourceSummary.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamSourceSummary.java index 61c2c9390b5..899d1c4fde2 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamSourceSummary.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/StreamSourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Table.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Table.java index e6a590d8070..421d34a3977 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Table.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Table.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/TableRow.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/TableRow.java index f3abf88e73b..b2914eebff1 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/TableRow.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/TableRow.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/TrackingType.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/TrackingType.java index ac33346eb17..626a90b9335 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/TrackingType.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/TrackingType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateModelDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateModelDetails.java index 58cffa1b624..9ec1db259df 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateModelDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateProjectDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateProjectDetails.java index 41779038ad8..c194acca6b2 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateProjectDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateProjectDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateStreamGroupDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateStreamGroupDetails.java index be0ac4b5b12..98e462e4b6b 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateStreamGroupDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateStreamGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateStreamJobDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateStreamJobDetails.java index 3f1a647256d..1c0199a8756 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateStreamJobDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateStreamJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateStreamSourceDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateStreamSourceDetails.java index 119f1cf45be..d3415437492 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateStreamSourceDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateStreamSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateVisionPrivateEndpointDetails.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateVisionPrivateEndpointDetails.java index 21bf1da22cc..0460fa60221 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateVisionPrivateEndpointDetails.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/UpdateVisionPrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueArray.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueArray.java index 265e6560e96..b6569e0e43c 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueArray.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueArray.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueDate.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueDate.java index 3c9308393cb..f7ba0783484 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueDate.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueDate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueInteger.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueInteger.java index 9945c1eae5f..5ddefbf9fcd 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueInteger.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueInteger.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueNumber.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueNumber.java index b3a47ebc3ac..5c8df261740 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueNumber.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueNumber.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValuePhoneNumber.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValuePhoneNumber.java index 7ff94ca1127..e3bc74b5b74 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValuePhoneNumber.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValuePhoneNumber.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueString.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueString.java index 1f65e96e5fd..665cfa8c313 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueString.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueString.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueTime.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueTime.java index e577b689fff..bc7711f591e 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueTime.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/ValueTime.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoFace.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoFace.java index 3747bead436..1ae5840d9a3 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoFace.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoFace.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoFaceDetectionFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoFaceDetectionFeature.java index e5780238275..bfbdc019485 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoFaceDetectionFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoFaceDetectionFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoFaceFrame.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoFaceFrame.java index b9e31e639dd..c88b7430fe6 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoFaceFrame.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoFaceFrame.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoFaceSegment.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoFaceSegment.java index dc9e78db3d0..03ac52eaa6f 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoFaceSegment.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoFaceSegment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoFeature.java index dca85e6bde6..11308b16a1b 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoJob.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoJob.java index ac12a45c85c..5d1c8c4819c 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoJob.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoLabel.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoLabel.java index 23e29159d84..9e7f8e37adb 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoLabel.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoLabel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoLabelDetectionFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoLabelDetectionFeature.java index 6fd090f6907..291626e669d 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoLabelDetectionFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoLabelDetectionFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoLabelSegment.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoLabelSegment.java index f3f443ae4e7..9fb1088bd70 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoLabelSegment.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoLabelSegment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoMetadata.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoMetadata.java index 11f93db4dc2..fa764027c8b 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoMetadata.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoObject.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoObject.java index c1e25b45c3c..605324e5e0d 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoObject.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoObjectDetectionFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoObjectDetectionFeature.java index 6772344240a..b8868158483 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoObjectDetectionFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoObjectDetectionFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoObjectFrame.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoObjectFrame.java index 3af9bb2037c..51df85077c4 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoObjectFrame.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoObjectFrame.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoObjectSegment.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoObjectSegment.java index 6e378308f9e..2686cf93841 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoObjectSegment.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoObjectSegment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoObjectTrackingFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoObjectTrackingFeature.java index 1cbff2fe684..19b27e557b4 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoObjectTrackingFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoObjectTrackingFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoSegment.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoSegment.java index 9c2f74ded57..db1cdb6ca31 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoSegment.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoSegment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamFaceDetectionFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamFaceDetectionFeature.java index 2a9ca7cf8d4..5df64df2824 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamFaceDetectionFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamFaceDetectionFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamFeature.java index 9efb500ac8a..8e8131e18c5 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamMetadata.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamMetadata.java index d18746da879..9a426364983 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamMetadata.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamObject.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamObject.java index cef98a2af10..99ef9e9bf68 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamObject.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamObjectDetectionFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamObjectDetectionFeature.java index 678363d9b5a..2972fc9a32a 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamObjectDetectionFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamObjectDetectionFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamObjectTrackingFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamObjectTrackingFeature.java index eed720dbb39..b0cbaff2acf 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamObjectTrackingFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoStreamObjectTrackingFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoText.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoText.java index 1248184ce5b..118254833df 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoText.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoText.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTextDetectionFeature.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTextDetectionFeature.java index d99461db030..d07fc52bb60 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTextDetectionFeature.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTextDetectionFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTextFrame.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTextFrame.java index 98157e9114e..742f17f9803 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTextFrame.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTextFrame.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTextSegment.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTextSegment.java index 547168e240d..6f980010878 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTextSegment.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTextSegment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTrackedObject.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTrackedObject.java index a2c3e82b7a7..3dbf089e5ea 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTrackedObject.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTrackedObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTrackedObjectProperties.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTrackedObjectProperties.java index 877d36cdae1..76d3c3142a8 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTrackedObjectProperties.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTrackedObjectProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTrackedObjectSegment.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTrackedObjectSegment.java index 10d50050b97..1b63c922298 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTrackedObjectSegment.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTrackedObjectSegment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTrackingFrame.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTrackingFrame.java index 809a58b819d..4fbca32d577 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTrackingFrame.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VideoTrackingFrame.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VisionPrivateEndpoint.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VisionPrivateEndpoint.java index 6899930b6f8..a33e6834c52 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VisionPrivateEndpoint.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VisionPrivateEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VisionPrivateEndpointCollection.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VisionPrivateEndpointCollection.java index 569910819d1..bdff175689c 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VisionPrivateEndpointCollection.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VisionPrivateEndpointCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VisionPrivateEndpointSummary.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VisionPrivateEndpointSummary.java index 24428c98c10..79b8196efa5 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VisionPrivateEndpointSummary.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/VisionPrivateEndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Word.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Word.java index 6cd969e31ed..b922d6be498 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Word.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/Word.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequest.java index ac8b67e3691..580d70d037c 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestError.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestError.java index c764600428f..0aea0d82beb 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestError.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestErrorCollection.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestErrorCollection.java index 1e36ade2a40..f9853eb9142 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestErrorCollection.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestLogEntry.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestLogEntry.java index 61dfe802552..74d304f2ea7 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestLogEntry.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestLogEntryCollection.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestLogEntryCollection.java index 7d9e93cdc20..b89e6502d54 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestLogEntryCollection.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestResource.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestResource.java index 9514218fbb7..c96e4f07b38 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestResource.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestSummary.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestSummary.java index cb84334311f..0bce89eefcf 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestSummary.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestSummaryCollection.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestSummaryCollection.java index e53e5a90463..b3843d2a38d 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestSummaryCollection.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.model; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/AnalyzeDocumentRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/AnalyzeDocumentRequest.java index 778de830896..fbe39a36bce 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/AnalyzeDocumentRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/AnalyzeDocumentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/AnalyzeImageRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/AnalyzeImageRequest.java index a19329e81bf..4a6a6b6cf37 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/AnalyzeImageRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/AnalyzeImageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CancelDocumentJobRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CancelDocumentJobRequest.java index 226b2803848..418454e6d7e 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CancelDocumentJobRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CancelDocumentJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CancelImageJobRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CancelImageJobRequest.java index 755295f4980..e3b0ff28a8e 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CancelImageJobRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CancelImageJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CancelVideoJobRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CancelVideoJobRequest.java index 374b4f45916..29c411dac16 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CancelVideoJobRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CancelVideoJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CancelWorkRequestRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CancelWorkRequestRequest.java index 9f5618d1a50..4f8b49c1e5c 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CancelWorkRequestRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeModelCompartmentRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeModelCompartmentRequest.java index c482ea3dc75..871c77c6821 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeModelCompartmentRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeModelCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeProjectCompartmentRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeProjectCompartmentRequest.java index 2569a651696..4161ec22303 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeProjectCompartmentRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeProjectCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeStreamGroupCompartmentRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeStreamGroupCompartmentRequest.java index 6d6598695f8..c28dd18e7e0 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeStreamGroupCompartmentRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeStreamGroupCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeStreamJobCompartmentRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeStreamJobCompartmentRequest.java index 4ab74017578..1ae428e94a2 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeStreamJobCompartmentRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeStreamJobCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeStreamSourceCompartmentRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeStreamSourceCompartmentRequest.java index 05ecc932e23..c4920fde639 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeStreamSourceCompartmentRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeStreamSourceCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeVisionPrivateEndpointCompartmentRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeVisionPrivateEndpointCompartmentRequest.java index 4b22c384690..a38369656d4 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeVisionPrivateEndpointCompartmentRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ChangeVisionPrivateEndpointCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateDocumentJobRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateDocumentJobRequest.java index 1fb8f2f1e11..2c4789e202a 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateDocumentJobRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateDocumentJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateImageJobRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateImageJobRequest.java index b6ba77172fb..0f96bb22bb2 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateImageJobRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateImageJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateModelRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateModelRequest.java index fa0cbd18525..b6b1bbf2a3f 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateModelRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateProjectRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateProjectRequest.java index 9cb8c2e4939..aa3da05811a 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateProjectRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateStreamGroupRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateStreamGroupRequest.java index cc33b62d1a9..b4209bb1a95 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateStreamGroupRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateStreamGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateStreamJobRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateStreamJobRequest.java index 78d11dc638e..bad9a4ba3f2 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateStreamJobRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateStreamJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateStreamSourceRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateStreamSourceRequest.java index 54633a4cbd7..669436c3155 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateStreamSourceRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateStreamSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateVideoJobRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateVideoJobRequest.java index d0466687e8d..162029b3756 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateVideoJobRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateVideoJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateVisionPrivateEndpointRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateVisionPrivateEndpointRequest.java index ceea05f68ec..46a3b38f6b4 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateVisionPrivateEndpointRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/CreateVisionPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteModelRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteModelRequest.java index b80d45c60c7..a2dcdf15d64 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteModelRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteProjectRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteProjectRequest.java index c902778f9e4..1d491b430d4 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteProjectRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteStreamGroupRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteStreamGroupRequest.java index 9cefc53ce0a..a13b4ecba3a 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteStreamGroupRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteStreamGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteStreamJobRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteStreamJobRequest.java index e1f69e2dea0..2b2aea24ec2 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteStreamJobRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteStreamJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteStreamSourceRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteStreamSourceRequest.java index a4ffcfa0ee5..8e9a260088e 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteStreamSourceRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteStreamSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteVisionPrivateEndpointRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteVisionPrivateEndpointRequest.java index d7389e67101..1334eb02d75 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteVisionPrivateEndpointRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/DeleteVisionPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetDocumentJobRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetDocumentJobRequest.java index 58861d9cb48..4f831a5e9fc 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetDocumentJobRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetDocumentJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetImageJobRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetImageJobRequest.java index 76670798d53..dc3ace1c51a 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetImageJobRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetImageJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetModelRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetModelRequest.java index 715ce3d5dab..eb72115c35b 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetModelRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetProjectRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetProjectRequest.java index fc7631bb86e..9fc924ad2d8 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetProjectRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetStreamGroupRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetStreamGroupRequest.java index 2783f71acf3..f66d0d8834d 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetStreamGroupRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetStreamGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetStreamJobRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetStreamJobRequest.java index 6c18a82e7b3..840ba379f7b 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetStreamJobRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetStreamJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetStreamSourceRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetStreamSourceRequest.java index d52d68396f0..98d7285076e 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetStreamSourceRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetStreamSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetVideoJobRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetVideoJobRequest.java index 3d2477c8dac..b7b57120487 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetVideoJobRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetVideoJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetVisionPrivateEndpointRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetVisionPrivateEndpointRequest.java index 4033875d75f..8eaa6698432 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetVisionPrivateEndpointRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetVisionPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetWorkRequestRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetWorkRequestRequest.java index 1b12cbc32ee..45050c3d151 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetWorkRequestRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListModelsRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListModelsRequest.java index 46d6c42bf6b..14c59be2ce7 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListModelsRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListModelsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListProjectsRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListProjectsRequest.java index a9ceeec87e7..e5780b51782 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListProjectsRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListProjectsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListStreamGroupsRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListStreamGroupsRequest.java index d0f12c51e63..58906a28b1a 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListStreamGroupsRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListStreamGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListStreamJobsRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListStreamJobsRequest.java index 71a549bb48f..a0dd8883f99 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListStreamJobsRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListStreamJobsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListStreamSourcesRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListStreamSourcesRequest.java index 3076faca722..c3c0d0295ff 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListStreamSourcesRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListStreamSourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListVisionPrivateEndpointsRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListVisionPrivateEndpointsRequest.java index 51b877e79ac..c0c45d252ea 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListVisionPrivateEndpointsRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListVisionPrivateEndpointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListWorkRequestErrorsRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListWorkRequestErrorsRequest.java index 4c93d3d0eea..2c4a65947ed 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListWorkRequestLogsRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListWorkRequestLogsRequest.java index c574597f718..38524385db2 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListWorkRequestLogsRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListWorkRequestsRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListWorkRequestsRequest.java index b538c1ab78a..9e585d0cf42 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListWorkRequestsRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/StartStreamJobRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/StartStreamJobRequest.java index 7128318d4fc..d41f583c8c1 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/StartStreamJobRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/StartStreamJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/StopStreamJobRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/StopStreamJobRequest.java index 0faadba18e1..863651189a6 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/StopStreamJobRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/StopStreamJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateModelRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateModelRequest.java index 5cfd7839a32..8143c2ff89d 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateModelRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateProjectRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateProjectRequest.java index 378fa27c2f4..62c058fa3de 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateProjectRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateStreamGroupRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateStreamGroupRequest.java index 70fff33e17c..d5e68672868 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateStreamGroupRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateStreamGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateStreamJobRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateStreamJobRequest.java index 1d9efe188d2..e84d67c6865 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateStreamJobRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateStreamJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateStreamSourceRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateStreamSourceRequest.java index 4a85310ece8..700a507dd27 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateStreamSourceRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateStreamSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateVisionPrivateEndpointRequest.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateVisionPrivateEndpointRequest.java index cbfe43ea6df..e01daeb1343 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateVisionPrivateEndpointRequest.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/requests/UpdateVisionPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.requests; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/AnalyzeDocumentResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/AnalyzeDocumentResponse.java index 91af74ada31..c0ebb41a3b9 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/AnalyzeDocumentResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/AnalyzeDocumentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/AnalyzeImageResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/AnalyzeImageResponse.java index 51b81014f0b..859519ccd57 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/AnalyzeImageResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/AnalyzeImageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CancelDocumentJobResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CancelDocumentJobResponse.java index ea56539fd3e..7fa61ff3582 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CancelDocumentJobResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CancelDocumentJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CancelImageJobResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CancelImageJobResponse.java index 5d70b5d2d30..c00fa9244bf 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CancelImageJobResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CancelImageJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CancelVideoJobResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CancelVideoJobResponse.java index e6fca5f5c36..52c51375e1a 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CancelVideoJobResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CancelVideoJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CancelWorkRequestResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CancelWorkRequestResponse.java index be422a2febd..1f0cdc5146f 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CancelWorkRequestResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeModelCompartmentResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeModelCompartmentResponse.java index cdb1ee58c84..4ff53163fde 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeModelCompartmentResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeModelCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeProjectCompartmentResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeProjectCompartmentResponse.java index e3126cd2165..4dbf37703de 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeProjectCompartmentResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeProjectCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeStreamGroupCompartmentResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeStreamGroupCompartmentResponse.java index d005b476c4c..9fc583e3452 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeStreamGroupCompartmentResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeStreamGroupCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeStreamJobCompartmentResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeStreamJobCompartmentResponse.java index 9cdbcf06d4b..04bc147d6a7 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeStreamJobCompartmentResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeStreamJobCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeStreamSourceCompartmentResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeStreamSourceCompartmentResponse.java index 1e6d5a63bb3..827e340e109 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeStreamSourceCompartmentResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeStreamSourceCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeVisionPrivateEndpointCompartmentResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeVisionPrivateEndpointCompartmentResponse.java index 11cb6236570..bbdb583a296 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeVisionPrivateEndpointCompartmentResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ChangeVisionPrivateEndpointCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateDocumentJobResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateDocumentJobResponse.java index 3cf4a4a24d8..cd1ceb44fd7 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateDocumentJobResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateDocumentJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateImageJobResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateImageJobResponse.java index 9b672c88f91..9645ba161c8 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateImageJobResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateImageJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateModelResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateModelResponse.java index 0841619ea85..a9dffe1dde2 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateModelResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateProjectResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateProjectResponse.java index 4ee160bc95a..06f70fd1c3e 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateProjectResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateStreamGroupResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateStreamGroupResponse.java index 2a3e0617c8d..9260fcf8c2e 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateStreamGroupResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateStreamGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateStreamJobResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateStreamJobResponse.java index ca5fd8ac01a..1d71b7b9953 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateStreamJobResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateStreamJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateStreamSourceResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateStreamSourceResponse.java index 5e3fbaad0f9..94f2973063f 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateStreamSourceResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateStreamSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateVideoJobResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateVideoJobResponse.java index c84f71ca4d8..c84c9bbe340 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateVideoJobResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateVideoJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateVisionPrivateEndpointResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateVisionPrivateEndpointResponse.java index e6adcf543f6..6173b2cdecc 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateVisionPrivateEndpointResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/CreateVisionPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteModelResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteModelResponse.java index dec2f5e5424..0d3f8057e07 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteModelResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteProjectResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteProjectResponse.java index e9ddc94125b..7f0ad225fd3 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteProjectResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteStreamGroupResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteStreamGroupResponse.java index e1285aee696..7574813d635 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteStreamGroupResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteStreamGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteStreamJobResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteStreamJobResponse.java index a6429957eff..ca3c68c73ba 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteStreamJobResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteStreamJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteStreamSourceResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteStreamSourceResponse.java index 210c4695d03..cbd04d5016a 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteStreamSourceResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteStreamSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteVisionPrivateEndpointResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteVisionPrivateEndpointResponse.java index b2c6a2893a7..a4edf1cd648 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteVisionPrivateEndpointResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/DeleteVisionPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetDocumentJobResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetDocumentJobResponse.java index 66ed69346b0..a231f9ad62e 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetDocumentJobResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetDocumentJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetImageJobResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetImageJobResponse.java index 8b5166aad6c..098ea4573d1 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetImageJobResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetImageJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetModelResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetModelResponse.java index df595c53119..c8298c31f5f 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetModelResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetProjectResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetProjectResponse.java index d7a55146f5e..3e3685cf22f 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetProjectResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetStreamGroupResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetStreamGroupResponse.java index cffeddcd8ed..51060d2abfa 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetStreamGroupResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetStreamGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetStreamJobResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetStreamJobResponse.java index 04f674a3960..28e4c74ccd7 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetStreamJobResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetStreamJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetStreamSourceResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetStreamSourceResponse.java index 23ee4392b8b..6592d6d052f 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetStreamSourceResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetStreamSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetVideoJobResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetVideoJobResponse.java index 51a42eca96c..4ba209f38c6 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetVideoJobResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetVideoJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetVisionPrivateEndpointResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetVisionPrivateEndpointResponse.java index 3079eccc900..09a43582e1e 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetVisionPrivateEndpointResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetVisionPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetWorkRequestResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetWorkRequestResponse.java index 12e543611f9..e9c63ccfa9c 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetWorkRequestResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListModelsResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListModelsResponse.java index 77d16efe447..c354f1f4878 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListModelsResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListModelsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListProjectsResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListProjectsResponse.java index 4b2289f13d0..c4e82244b9b 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListProjectsResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListProjectsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListStreamGroupsResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListStreamGroupsResponse.java index 71c9269655d..abae30afd30 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListStreamGroupsResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListStreamGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListStreamJobsResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListStreamJobsResponse.java index 0abe5ec84f5..c6b54751d98 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListStreamJobsResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListStreamJobsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListStreamSourcesResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListStreamSourcesResponse.java index baa8312981f..09da7a712d6 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListStreamSourcesResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListStreamSourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListVisionPrivateEndpointsResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListVisionPrivateEndpointsResponse.java index 8447d87f991..31818aaf0bc 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListVisionPrivateEndpointsResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListVisionPrivateEndpointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListWorkRequestErrorsResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListWorkRequestErrorsResponse.java index 8bd7826bed5..83675b6472b 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListWorkRequestLogsResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListWorkRequestLogsResponse.java index b9945769bd4..2e9701f5282 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListWorkRequestLogsResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListWorkRequestsResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListWorkRequestsResponse.java index fb3eea512ca..b222cb55d5b 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListWorkRequestsResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/StartStreamJobResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/StartStreamJobResponse.java index 37e6ccac4be..2c02ddaddc4 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/StartStreamJobResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/StartStreamJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/StopStreamJobResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/StopStreamJobResponse.java index f6cbbf43c5a..c4ad46f8d16 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/StopStreamJobResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/StopStreamJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateModelResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateModelResponse.java index a3d072ab765..b1c029a05f5 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateModelResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateProjectResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateProjectResponse.java index 6c8f513100c..61ed6d8a9ac 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateProjectResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateStreamGroupResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateStreamGroupResponse.java index 12b17a5e926..8e478a223e8 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateStreamGroupResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateStreamGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateStreamJobResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateStreamJobResponse.java index 2ee7d45843c..b60798b2584 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateStreamJobResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateStreamJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateStreamSourceResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateStreamSourceResponse.java index 6dab3f2b965..d5d06c37687 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateStreamSourceResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateStreamSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateVisionPrivateEndpointResponse.java b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateVisionPrivateEndpointResponse.java index 3251304c1e0..fa36cc852d0 100644 --- a/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateVisionPrivateEndpointResponse.java +++ b/bmc-aivision/src/main/java/com/oracle/bmc/aivision/responses/UpdateVisionPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.aivision.responses; diff --git a/bmc-aivision/src/main/resources/com/oracle/bmc/aivision/client.properties b/bmc-aivision/src/main/resources/com/oracle/bmc/aivision/client.properties index 8293816e6d8..82a3a0dc005 100644 --- a/bmc-aivision/src/main/resources/com/oracle/bmc/aivision/client.properties +++ b/bmc-aivision/src/main/resources/com/oracle/bmc/aivision/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-analytics/pom.xml b/bmc-analytics/pom.xml index 18657495168..197966b72c5 100644 --- a/bmc-analytics/pom.xml +++ b/bmc-analytics/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-analytics @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/Analytics.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/Analytics.java index eedaba809a3..bd54e841397 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/Analytics.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/Analytics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsAsync.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsAsync.java index 92043078864..d2d2e41222f 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsAsync.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsAsyncClient.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsAsyncClient.java index 4e2f3bf8a13..f9764a436cf 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsAsyncClient.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsClient.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsClient.java index 483cf6edc28..936979db2b8 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsClient.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsPaginators.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsPaginators.java index 6b1e4f0cf82..a15eb169adf 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsPaginators.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsWaiters.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsWaiters.java index 7cdd75ce4bf..3b06ce92969 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsWaiters.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/AnalyticsWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/AccessControlServiceType.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/AccessControlServiceType.java index ec31372e87c..ee62aba61b0 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/AccessControlServiceType.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/AccessControlServiceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/AnalyticsInstance.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/AnalyticsInstance.java index b9d39ee8f11..b28be5b6946 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/AnalyticsInstance.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/AnalyticsInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/AnalyticsInstanceLifecycleState.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/AnalyticsInstanceLifecycleState.java index baae55ce9ec..7b336ac80ed 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/AnalyticsInstanceLifecycleState.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/AnalyticsInstanceLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/AnalyticsInstanceSummary.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/AnalyticsInstanceSummary.java index fa498fca334..2962693fba7 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/AnalyticsInstanceSummary.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/AnalyticsInstanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/Capacity.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/Capacity.java index c45a3c5b932..79e6abfd212 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/Capacity.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/Capacity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/CapacityType.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/CapacityType.java index 4877a89ea50..48a4d96dcd8 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/CapacityType.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/CapacityType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/ChangeAnalyticsInstanceNetworkEndpointDetails.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/ChangeAnalyticsInstanceNetworkEndpointDetails.java index c613f75edac..d0a9168d1c4 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/ChangeAnalyticsInstanceNetworkEndpointDetails.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/ChangeAnalyticsInstanceNetworkEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/ChangeCompartmentDetails.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/ChangeCompartmentDetails.java index 03d83ca3974..90316704444 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/ChangeCompartmentDetails.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/ChangeCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/CreateAnalyticsInstanceDetails.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/CreateAnalyticsInstanceDetails.java index 5b166cba35d..d09f0a0ef17 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/CreateAnalyticsInstanceDetails.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/CreateAnalyticsInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/CreatePrivateAccessChannelDetails.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/CreatePrivateAccessChannelDetails.java index a1510ad70e5..d794affde40 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/CreatePrivateAccessChannelDetails.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/CreatePrivateAccessChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/CreateVanityUrlDetails.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/CreateVanityUrlDetails.java index 2a92c967648..2dbe48feb6d 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/CreateVanityUrlDetails.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/CreateVanityUrlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/FeatureBundle.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/FeatureBundle.java index 7ed5e0d7b02..cee5f71df14 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/FeatureBundle.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/FeatureBundle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/FeatureSet.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/FeatureSet.java index 1065af7eeae..e8824dd029a 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/FeatureSet.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/FeatureSet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/LicenseType.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/LicenseType.java index 8f29a2c465c..791aab3d9ea 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/LicenseType.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/LicenseType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/NetworkEndpointDetails.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/NetworkEndpointDetails.java index a6468366da6..65b449d1ff4 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/NetworkEndpointDetails.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/NetworkEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/NetworkEndpointType.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/NetworkEndpointType.java index 1b75546c03d..0ad15aafc51 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/NetworkEndpointType.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/NetworkEndpointType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/PrivateAccessChannel.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/PrivateAccessChannel.java index 4233afc3b07..307faf43209 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/PrivateAccessChannel.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/PrivateAccessChannel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/PrivateEndpointDetails.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/PrivateEndpointDetails.java index b23e083f614..c3da482f0ed 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/PrivateEndpointDetails.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/PrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/PrivateSourceDnsZone.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/PrivateSourceDnsZone.java index 56f1992c71c..c38a7118144 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/PrivateSourceDnsZone.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/PrivateSourceDnsZone.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/PrivateSourceScanHost.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/PrivateSourceScanHost.java index cc3955443f8..ae90f14b29a 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/PrivateSourceScanHost.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/PrivateSourceScanHost.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/PublicEndpointDetails.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/PublicEndpointDetails.java index 6bb5aa1666a..fb11eabfa51 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/PublicEndpointDetails.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/PublicEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/ScaleAnalyticsInstanceDetails.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/ScaleAnalyticsInstanceDetails.java index 76e5ae1db7b..1a0aac03d1d 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/ScaleAnalyticsInstanceDetails.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/ScaleAnalyticsInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/SetFeatureBundleDetails.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/SetFeatureBundleDetails.java index 011f1b196a3..f61e204bb78 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/SetFeatureBundleDetails.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/SetFeatureBundleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/SetKmsKeyDetails.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/SetKmsKeyDetails.java index 5807a1a9ea6..fa78b1c8c78 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/SetKmsKeyDetails.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/SetKmsKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/SortBy.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/SortBy.java index 038be13b707..b2b517c35e4 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/SortBy.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/SortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/SortOrder.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/SortOrder.java index ada281a547a..5ee6e12bbdc 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/SortOrder.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/UpdateAnalyticsInstanceDetails.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/UpdateAnalyticsInstanceDetails.java index bf2a20f613a..aefbe63aa5c 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/UpdateAnalyticsInstanceDetails.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/UpdateAnalyticsInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/UpdateChannel.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/UpdateChannel.java index 9612eed5038..4889b3c9223 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/UpdateChannel.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/UpdateChannel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/UpdatePrivateAccessChannelDetails.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/UpdatePrivateAccessChannelDetails.java index eb18528aef9..de4d9d57eac 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/UpdatePrivateAccessChannelDetails.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/UpdatePrivateAccessChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/UpdateVanityUrlDetails.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/UpdateVanityUrlDetails.java index a0a815a390f..49371bc08d5 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/UpdateVanityUrlDetails.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/UpdateVanityUrlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/VanityUrlDetails.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/VanityUrlDetails.java index b1ddf09d743..f63b099ac69 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/VanityUrlDetails.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/VanityUrlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/VirtualCloudNetwork.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/VirtualCloudNetwork.java index e86e4e37bce..7f84e0633f2 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/VirtualCloudNetwork.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/VirtualCloudNetwork.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequest.java index 43b552b5d6d..60ffdb9bee0 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestActionResult.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestActionResult.java index 41bb95485c0..7d201438001 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestActionResult.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestActionResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestError.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestError.java index aeb53ed4d88..3dd0b7d1e4f 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestError.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestLog.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestLog.java index c5252401acd..97664ab95d9 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestLog.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestLog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestOperationType.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestOperationType.java index b641a2ae94c..a7c9afdb245 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestOperationType.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestOperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestResource.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestResource.java index de8672f1d62..033a02f6400 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestResource.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestResourceType.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestResourceType.java index 955654764e2..7e6b64188e0 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestResourceType.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestResourceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestSortBy.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestSortBy.java index 2aee8b36468..ef7ffef7279 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestSortBy.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestStatus.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestStatus.java index 3774d2587bc..00f6aec56d3 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestStatus.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestSummary.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestSummary.java index bb48cd30da7..d20314da7a3 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestSummary.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.model; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ChangeAnalyticsInstanceCompartmentRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ChangeAnalyticsInstanceCompartmentRequest.java index 7ec097ce6d4..23c6ed005e9 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ChangeAnalyticsInstanceCompartmentRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ChangeAnalyticsInstanceCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ChangeAnalyticsInstanceNetworkEndpointRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ChangeAnalyticsInstanceNetworkEndpointRequest.java index cbea0cb006a..49cf247360c 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ChangeAnalyticsInstanceNetworkEndpointRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ChangeAnalyticsInstanceNetworkEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/CreateAnalyticsInstanceRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/CreateAnalyticsInstanceRequest.java index fe2c6e5ca90..65fb82cd1c5 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/CreateAnalyticsInstanceRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/CreateAnalyticsInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/CreatePrivateAccessChannelRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/CreatePrivateAccessChannelRequest.java index 499a05e5ea5..718ceedbeae 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/CreatePrivateAccessChannelRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/CreatePrivateAccessChannelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/CreateVanityUrlRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/CreateVanityUrlRequest.java index 6fce3152a26..a2f2323008b 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/CreateVanityUrlRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/CreateVanityUrlRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/DeleteAnalyticsInstanceRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/DeleteAnalyticsInstanceRequest.java index 86b6707a690..3b9fc8623f5 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/DeleteAnalyticsInstanceRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/DeleteAnalyticsInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/DeletePrivateAccessChannelRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/DeletePrivateAccessChannelRequest.java index f1f322056cd..fe704bce057 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/DeletePrivateAccessChannelRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/DeletePrivateAccessChannelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/DeleteVanityUrlRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/DeleteVanityUrlRequest.java index 9e25aee4c9d..3c7afc6e442 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/DeleteVanityUrlRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/DeleteVanityUrlRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/DeleteWorkRequestRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/DeleteWorkRequestRequest.java index ef2767f2461..9bb632858c7 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/DeleteWorkRequestRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/DeleteWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/GetAnalyticsInstanceRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/GetAnalyticsInstanceRequest.java index 471b331c029..e23e3b7fe7d 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/GetAnalyticsInstanceRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/GetAnalyticsInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/GetPrivateAccessChannelRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/GetPrivateAccessChannelRequest.java index 3513acf33f3..acca2b47ffa 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/GetPrivateAccessChannelRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/GetPrivateAccessChannelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/GetWorkRequestRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/GetWorkRequestRequest.java index 17a53ec6401..7965daf07c9 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/GetWorkRequestRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ListAnalyticsInstancesRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ListAnalyticsInstancesRequest.java index 501779ff1f4..cdd12464580 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ListAnalyticsInstancesRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ListAnalyticsInstancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ListWorkRequestErrorsRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ListWorkRequestErrorsRequest.java index f56f0666896..5ed68fca58e 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ListWorkRequestLogsRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ListWorkRequestLogsRequest.java index 66088fb0d20..00376bb0dce 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ListWorkRequestLogsRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ListWorkRequestsRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ListWorkRequestsRequest.java index 0d1160d9040..1e1c344f8bf 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ListWorkRequestsRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ScaleAnalyticsInstanceRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ScaleAnalyticsInstanceRequest.java index 1fa7a805c6d..70acf52a579 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ScaleAnalyticsInstanceRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/ScaleAnalyticsInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/SetFeatureBundleRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/SetFeatureBundleRequest.java index c93224cffa4..5327d085893 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/SetFeatureBundleRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/SetFeatureBundleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/SetKmsKeyRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/SetKmsKeyRequest.java index 7ca9f7a099b..16f638ead88 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/SetKmsKeyRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/SetKmsKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/StartAnalyticsInstanceRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/StartAnalyticsInstanceRequest.java index 59aa80f8490..ad97d49eaf2 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/StartAnalyticsInstanceRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/StartAnalyticsInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/StopAnalyticsInstanceRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/StopAnalyticsInstanceRequest.java index f8be3a6f2bb..70ff11bae04 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/StopAnalyticsInstanceRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/StopAnalyticsInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/UpdateAnalyticsInstanceRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/UpdateAnalyticsInstanceRequest.java index dd520e4714a..d39554e0c11 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/UpdateAnalyticsInstanceRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/UpdateAnalyticsInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/UpdatePrivateAccessChannelRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/UpdatePrivateAccessChannelRequest.java index cb35a637e6e..974b49a2bb4 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/UpdatePrivateAccessChannelRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/UpdatePrivateAccessChannelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/UpdateVanityUrlRequest.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/UpdateVanityUrlRequest.java index 1d2ffa9c30f..79eea51fda2 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/UpdateVanityUrlRequest.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/requests/UpdateVanityUrlRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.requests; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ChangeAnalyticsInstanceCompartmentResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ChangeAnalyticsInstanceCompartmentResponse.java index 1c388bae1b7..fb0c1efd709 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ChangeAnalyticsInstanceCompartmentResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ChangeAnalyticsInstanceCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ChangeAnalyticsInstanceNetworkEndpointResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ChangeAnalyticsInstanceNetworkEndpointResponse.java index f07865d4bf0..a7e47058482 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ChangeAnalyticsInstanceNetworkEndpointResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ChangeAnalyticsInstanceNetworkEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/CreateAnalyticsInstanceResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/CreateAnalyticsInstanceResponse.java index 27976e61d73..9c21b8a7d40 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/CreateAnalyticsInstanceResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/CreateAnalyticsInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/CreatePrivateAccessChannelResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/CreatePrivateAccessChannelResponse.java index 4232b2672ea..754020eacfb 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/CreatePrivateAccessChannelResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/CreatePrivateAccessChannelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/CreateVanityUrlResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/CreateVanityUrlResponse.java index c635da338ac..f23a1fe893f 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/CreateVanityUrlResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/CreateVanityUrlResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/DeleteAnalyticsInstanceResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/DeleteAnalyticsInstanceResponse.java index 2379da32448..9627e4b518d 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/DeleteAnalyticsInstanceResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/DeleteAnalyticsInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/DeletePrivateAccessChannelResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/DeletePrivateAccessChannelResponse.java index 9318311876f..95a6c315799 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/DeletePrivateAccessChannelResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/DeletePrivateAccessChannelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/DeleteVanityUrlResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/DeleteVanityUrlResponse.java index 5736ce6e5dd..3e93567d518 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/DeleteVanityUrlResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/DeleteVanityUrlResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/DeleteWorkRequestResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/DeleteWorkRequestResponse.java index e854b4efdd2..33cea6f0206 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/DeleteWorkRequestResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/DeleteWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/GetAnalyticsInstanceResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/GetAnalyticsInstanceResponse.java index 2e9825cb423..84c600774bc 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/GetAnalyticsInstanceResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/GetAnalyticsInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/GetPrivateAccessChannelResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/GetPrivateAccessChannelResponse.java index 7fd671c003a..30c455aece5 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/GetPrivateAccessChannelResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/GetPrivateAccessChannelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/GetWorkRequestResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/GetWorkRequestResponse.java index 72c4c39560a..15521100288 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/GetWorkRequestResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ListAnalyticsInstancesResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ListAnalyticsInstancesResponse.java index 63c0aa71162..63a40b94bf3 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ListAnalyticsInstancesResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ListAnalyticsInstancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ListWorkRequestErrorsResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ListWorkRequestErrorsResponse.java index 91e5e7faafd..0c750af3669 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ListWorkRequestLogsResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ListWorkRequestLogsResponse.java index d445a5794b0..b6d65473fae 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ListWorkRequestLogsResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ListWorkRequestsResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ListWorkRequestsResponse.java index 74442a45184..fad3eb90ea8 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ListWorkRequestsResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ScaleAnalyticsInstanceResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ScaleAnalyticsInstanceResponse.java index 0ef7f4316c3..c76464e1214 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ScaleAnalyticsInstanceResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/ScaleAnalyticsInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/SetFeatureBundleResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/SetFeatureBundleResponse.java index 74619080dd6..fb89bff37bc 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/SetFeatureBundleResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/SetFeatureBundleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/SetKmsKeyResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/SetKmsKeyResponse.java index f09d661f39d..6d043ba0b9f 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/SetKmsKeyResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/SetKmsKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/StartAnalyticsInstanceResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/StartAnalyticsInstanceResponse.java index 82d1faf84c2..d46e2410c97 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/StartAnalyticsInstanceResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/StartAnalyticsInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/StopAnalyticsInstanceResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/StopAnalyticsInstanceResponse.java index 5ae4ccde63e..5b65d358da9 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/StopAnalyticsInstanceResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/StopAnalyticsInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/UpdateAnalyticsInstanceResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/UpdateAnalyticsInstanceResponse.java index 7b83bee6fd7..d0eb523ba28 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/UpdateAnalyticsInstanceResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/UpdateAnalyticsInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/UpdatePrivateAccessChannelResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/UpdatePrivateAccessChannelResponse.java index 5bfe19bea12..59880d33066 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/UpdatePrivateAccessChannelResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/UpdatePrivateAccessChannelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/UpdateVanityUrlResponse.java b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/UpdateVanityUrlResponse.java index 39a0d839b30..252d7f00087 100644 --- a/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/UpdateVanityUrlResponse.java +++ b/bmc-analytics/src/main/java/com/oracle/bmc/analytics/responses/UpdateVanityUrlResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.analytics.responses; diff --git a/bmc-analytics/src/main/resources/com/oracle/bmc/analytics/client.properties b/bmc-analytics/src/main/resources/com/oracle/bmc/analytics/client.properties index 535799c886a..b152fb43c8b 100644 --- a/bmc-analytics/src/main/resources/com/oracle/bmc/analytics/client.properties +++ b/bmc-analytics/src/main/resources/com/oracle/bmc/analytics/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-announcementsservice/pom.xml b/bmc-announcementsservice/pom.xml index a806239092f..3e0f5200619 100644 --- a/bmc-announcementsservice/pom.xml +++ b/bmc-announcementsservice/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-announcementsservice @@ -16,7 +16,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/Announcement.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/Announcement.java index 9961e795297..4ef9513c9a3 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/Announcement.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/Announcement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementAsync.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementAsync.java index c0982a31a45..a0928dbcaf1 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementAsync.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementAsyncClient.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementAsyncClient.java index 1ed611a4220..f5f3a9428f5 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementAsyncClient.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementClient.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementClient.java index 6843591ac09..98130bcb307 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementClient.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementPaginators.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementPaginators.java index db18b6f2607..cf2fa608783 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementPaginators.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscription.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscription.java index 15b0259834a..6948c6701f2 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscription.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscription.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscriptionAsync.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscriptionAsync.java index 6205e27def4..3ac38a4730a 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscriptionAsync.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscriptionAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscriptionAsyncClient.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscriptionAsyncClient.java index 2a3a9268506..7d50fcced0a 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscriptionAsyncClient.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscriptionAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscriptionClient.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscriptionClient.java index 5fe7ffd2191..d7a98b1f73c 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscriptionClient.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscriptionClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscriptionPaginators.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscriptionPaginators.java index 7adbc0675c0..acb5dbfe31a 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscriptionPaginators.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscriptionPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscriptionWaiters.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscriptionWaiters.java index 0b013c19453..33ee2a17e82 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscriptionWaiters.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementSubscriptionWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementsPreferences.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementsPreferences.java index 3d2dcf7d2b2..a94237ee89d 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementsPreferences.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementsPreferences.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementsPreferencesAsync.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementsPreferencesAsync.java index a239396ae31..85df9f30a7e 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementsPreferencesAsync.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementsPreferencesAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementsPreferencesAsyncClient.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementsPreferencesAsyncClient.java index 1176d00f77e..b726d28cd0b 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementsPreferencesAsyncClient.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementsPreferencesAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementsPreferencesClient.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementsPreferencesClient.java index 45aa1e99090..c310b6287f9 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementsPreferencesClient.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementsPreferencesClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementsPreferencesPaginators.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementsPreferencesPaginators.java index cd044e26a77..4f32a881694 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementsPreferencesPaginators.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/AnnouncementsPreferencesPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/Service.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/Service.java index ecd858e66f6..5042e4f35a7 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/Service.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/Service.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/ServiceAsync.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/ServiceAsync.java index 2efceb6bcaa..8cd27cd3e7d 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/ServiceAsync.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/ServiceAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/ServiceAsyncClient.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/ServiceAsyncClient.java index c30722c7145..fb54845af8d 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/ServiceAsyncClient.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/ServiceAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/ServiceClient.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/ServiceClient.java index 1e06818c2d0..bcc76a59a18 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/ServiceClient.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/ServiceClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/ServicePaginators.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/ServicePaginators.java index d0c7e97eee7..445bab2aac4 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/ServicePaginators.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/ServicePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AffectedResource.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AffectedResource.java index a57ba4473c2..35583798e21 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AffectedResource.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AffectedResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/Announcement.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/Announcement.java index c9c27f25d8c..7eed8ee8261 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/Announcement.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/Announcement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementCompartment.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementCompartment.java index 99d4313b0c9..4bc65cd93ae 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementCompartment.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementCompartment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementSubscription.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementSubscription.java index 96bd535f513..19b84a4ed67 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementSubscription.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementSubscription.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementSubscriptionCollection.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementSubscriptionCollection.java index ae0429eeb27..5db7258f929 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementSubscriptionCollection.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementSubscriptionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementSubscriptionSummary.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementSubscriptionSummary.java index 4f3933afb43..63cde4bffb9 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementSubscriptionSummary.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementSubscriptionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementSummary.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementSummary.java index 399836bccd1..f1346d90223 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementSummary.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementUserStatusDetails.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementUserStatusDetails.java index 1c8afa91726..3e996dbab35 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementUserStatusDetails.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementUserStatusDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementsCollection.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementsCollection.java index d9fe10f1ff5..3f758220d11 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementsCollection.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementsPreferences.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementsPreferences.java index 7fbb957bafe..e8a02af8ac0 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementsPreferences.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementsPreferences.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementsPreferencesSummary.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementsPreferencesSummary.java index a77209acc1e..f093d43f499 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementsPreferencesSummary.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/AnnouncementsPreferencesSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/BaseAnnouncement.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/BaseAnnouncement.java index 7c4d24f940e..70cc7c032ee 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/BaseAnnouncement.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/BaseAnnouncement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/BaseAnnouncementsPreferences.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/BaseAnnouncementsPreferences.java index 4a0e820ff1b..05b5d78b8b5 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/BaseAnnouncementsPreferences.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/BaseAnnouncementsPreferences.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/BaseCreateAnnouncementsPreferencesDetails.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/BaseCreateAnnouncementsPreferencesDetails.java index ee92c45db94..8b27586c3aa 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/BaseCreateAnnouncementsPreferencesDetails.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/BaseCreateAnnouncementsPreferencesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/BaseService.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/BaseService.java index 959d908b577..4bb7220843e 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/BaseService.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/BaseService.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/ChangeAnnouncementSubscriptionCompartmentDetails.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/ChangeAnnouncementSubscriptionCompartmentDetails.java index 65c09a79a2b..fd011693025 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/ChangeAnnouncementSubscriptionCompartmentDetails.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/ChangeAnnouncementSubscriptionCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/CommsManagerName.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/CommsManagerName.java index 0a35bf97505..2bafe2a2480 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/CommsManagerName.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/CommsManagerName.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/CreateAnnouncementSubscriptionDetails.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/CreateAnnouncementSubscriptionDetails.java index 365cbc41e6c..47751b076ce 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/CreateAnnouncementSubscriptionDetails.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/CreateAnnouncementSubscriptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/CreateAnnouncementsPreferencesDetails.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/CreateAnnouncementsPreferencesDetails.java index d8af43bc792..6d806152846 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/CreateAnnouncementsPreferencesDetails.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/CreateAnnouncementsPreferencesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/CreateFilterGroupDetails.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/CreateFilterGroupDetails.java index 9a9768bb3b9..8e34dba9768 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/CreateFilterGroupDetails.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/CreateFilterGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/Filter.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/Filter.java index 8cdc48f969a..f57ee4cee55 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/Filter.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/Filter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/FilterGroup.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/FilterGroup.java index 58c188f22da..eb8bde58909 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/FilterGroup.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/FilterGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/FilterGroupDetails.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/FilterGroupDetails.java index 2df5e855bbf..a4ee2ee6863 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/FilterGroupDetails.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/FilterGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/NotificationsSummary.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/NotificationsSummary.java index 54f658d971b..4da015b7d3c 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/NotificationsSummary.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/NotificationsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/PlatformType.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/PlatformType.java index 7edad196d9d..aff5e4131cc 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/PlatformType.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/PlatformType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/Property.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/Property.java index 2d32d6d68ad..0b3d6efdac4 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/Property.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/Property.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/Service.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/Service.java index f5153e86362..61ac5ece147 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/Service.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/Service.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/ServiceSummary.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/ServiceSummary.java index 92dd3e81c1a..4753cba4ec8 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/ServiceSummary.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/ServiceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/ServicesCollection.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/ServicesCollection.java index fd0b3df9a2f..b7c8abd72e1 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/ServicesCollection.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/ServicesCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/SortOrder.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/SortOrder.java index 6fe40c0640e..e16dfa631d9 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/SortOrder.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/UpdateAnnouncementSubscriptionDetails.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/UpdateAnnouncementSubscriptionDetails.java index b6ef4b68664..e87ec0f577e 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/UpdateAnnouncementSubscriptionDetails.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/UpdateAnnouncementSubscriptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/UpdateAnnouncementsPreferencesDetails.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/UpdateAnnouncementsPreferencesDetails.java index a3d2435f12c..d675ef2306c 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/UpdateAnnouncementsPreferencesDetails.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/UpdateAnnouncementsPreferencesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/UpdateFilterGroupDetails.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/UpdateFilterGroupDetails.java index 69b5e806a7f..e6eab2c0144 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/UpdateFilterGroupDetails.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/model/UpdateFilterGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.model; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/ChangeAnnouncementSubscriptionCompartmentRequest.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/ChangeAnnouncementSubscriptionCompartmentRequest.java index 8f572f624bc..3fc719e1af6 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/ChangeAnnouncementSubscriptionCompartmentRequest.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/ChangeAnnouncementSubscriptionCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.requests; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/CreateAnnouncementSubscriptionRequest.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/CreateAnnouncementSubscriptionRequest.java index e7cf7a700b7..0e6e6e5b884 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/CreateAnnouncementSubscriptionRequest.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/CreateAnnouncementSubscriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.requests; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/CreateAnnouncementsPreferenceRequest.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/CreateAnnouncementsPreferenceRequest.java index ba8d8156ba3..463c82611fc 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/CreateAnnouncementsPreferenceRequest.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/CreateAnnouncementsPreferenceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.requests; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/CreateFilterGroupRequest.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/CreateFilterGroupRequest.java index 5c40afff3f6..f3e5a7a9e25 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/CreateFilterGroupRequest.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/CreateFilterGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.requests; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/DeleteAnnouncementSubscriptionRequest.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/DeleteAnnouncementSubscriptionRequest.java index d77a20030a6..12760625325 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/DeleteAnnouncementSubscriptionRequest.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/DeleteAnnouncementSubscriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.requests; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/DeleteFilterGroupRequest.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/DeleteFilterGroupRequest.java index 96e683d74f7..02e084c89e4 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/DeleteFilterGroupRequest.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/DeleteFilterGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.requests; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/GetAnnouncementCompartmentRequest.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/GetAnnouncementCompartmentRequest.java index 283cc8567b1..3d3820c2776 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/GetAnnouncementCompartmentRequest.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/GetAnnouncementCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.requests; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/GetAnnouncementRequest.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/GetAnnouncementRequest.java index 28dd1bb4e91..4d1002ba0a4 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/GetAnnouncementRequest.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/GetAnnouncementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.requests; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/GetAnnouncementSubscriptionRequest.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/GetAnnouncementSubscriptionRequest.java index b4d6bd760ef..f95e16a7095 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/GetAnnouncementSubscriptionRequest.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/GetAnnouncementSubscriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.requests; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/GetAnnouncementUserStatusRequest.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/GetAnnouncementUserStatusRequest.java index d70a1b42c03..f209d4e9546 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/GetAnnouncementUserStatusRequest.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/GetAnnouncementUserStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.requests; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/GetAnnouncementsPreferenceRequest.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/GetAnnouncementsPreferenceRequest.java index 600a2eb6eb1..21116cd9758 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/GetAnnouncementsPreferenceRequest.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/GetAnnouncementsPreferenceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.requests; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/ListAnnouncementSubscriptionsRequest.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/ListAnnouncementSubscriptionsRequest.java index 958efe5a2df..e412409a027 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/ListAnnouncementSubscriptionsRequest.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/ListAnnouncementSubscriptionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.requests; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/ListAnnouncementsPreferencesRequest.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/ListAnnouncementsPreferencesRequest.java index e31c0762b07..ba02951e562 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/ListAnnouncementsPreferencesRequest.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/ListAnnouncementsPreferencesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.requests; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/ListAnnouncementsRequest.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/ListAnnouncementsRequest.java index c30b9395594..6daaee066fe 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/ListAnnouncementsRequest.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/ListAnnouncementsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.requests; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/ListServicesRequest.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/ListServicesRequest.java index 50fa1634fb1..88ef585bc57 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/ListServicesRequest.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/ListServicesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.requests; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/UpdateAnnouncementSubscriptionRequest.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/UpdateAnnouncementSubscriptionRequest.java index 630f30db86e..ce2b4277c65 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/UpdateAnnouncementSubscriptionRequest.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/UpdateAnnouncementSubscriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.requests; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/UpdateAnnouncementUserStatusRequest.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/UpdateAnnouncementUserStatusRequest.java index 65864b93074..c2a6bca5e93 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/UpdateAnnouncementUserStatusRequest.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/UpdateAnnouncementUserStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.requests; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/UpdateAnnouncementsPreferenceRequest.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/UpdateAnnouncementsPreferenceRequest.java index 77d9c02d4cb..b0d64cc3bf9 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/UpdateAnnouncementsPreferenceRequest.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/UpdateAnnouncementsPreferenceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.requests; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/UpdateFilterGroupRequest.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/UpdateFilterGroupRequest.java index 8587236b99b..34f0a3a0c0c 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/UpdateFilterGroupRequest.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/requests/UpdateFilterGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.requests; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/ChangeAnnouncementSubscriptionCompartmentResponse.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/ChangeAnnouncementSubscriptionCompartmentResponse.java index b68e664f5c7..713f376856c 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/ChangeAnnouncementSubscriptionCompartmentResponse.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/ChangeAnnouncementSubscriptionCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.responses; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/CreateAnnouncementSubscriptionResponse.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/CreateAnnouncementSubscriptionResponse.java index ff897fcf7f1..52b69ebb1ff 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/CreateAnnouncementSubscriptionResponse.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/CreateAnnouncementSubscriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.responses; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/CreateAnnouncementsPreferenceResponse.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/CreateAnnouncementsPreferenceResponse.java index d1324b6d10f..444564f3bce 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/CreateAnnouncementsPreferenceResponse.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/CreateAnnouncementsPreferenceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.responses; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/CreateFilterGroupResponse.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/CreateFilterGroupResponse.java index 2abcfef28e1..41fa7510c5b 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/CreateFilterGroupResponse.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/CreateFilterGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.responses; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/DeleteAnnouncementSubscriptionResponse.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/DeleteAnnouncementSubscriptionResponse.java index d860a505e1c..a33ef62a124 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/DeleteAnnouncementSubscriptionResponse.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/DeleteAnnouncementSubscriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.responses; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/DeleteFilterGroupResponse.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/DeleteFilterGroupResponse.java index 4b3151a7439..71b371df599 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/DeleteFilterGroupResponse.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/DeleteFilterGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.responses; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/GetAnnouncementCompartmentResponse.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/GetAnnouncementCompartmentResponse.java index ab386daa5dd..abc4b33d098 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/GetAnnouncementCompartmentResponse.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/GetAnnouncementCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.responses; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/GetAnnouncementResponse.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/GetAnnouncementResponse.java index 0f883e6c8da..49784cc629f 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/GetAnnouncementResponse.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/GetAnnouncementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.responses; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/GetAnnouncementSubscriptionResponse.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/GetAnnouncementSubscriptionResponse.java index 5a27eeb56a7..6d341949b95 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/GetAnnouncementSubscriptionResponse.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/GetAnnouncementSubscriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.responses; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/GetAnnouncementUserStatusResponse.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/GetAnnouncementUserStatusResponse.java index 0239c3b0355..eefe95fcfd5 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/GetAnnouncementUserStatusResponse.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/GetAnnouncementUserStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.responses; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/GetAnnouncementsPreferenceResponse.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/GetAnnouncementsPreferenceResponse.java index 6bde2cc5b44..956bb98db5a 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/GetAnnouncementsPreferenceResponse.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/GetAnnouncementsPreferenceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.responses; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/ListAnnouncementSubscriptionsResponse.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/ListAnnouncementSubscriptionsResponse.java index 89c761f1997..a0c51686413 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/ListAnnouncementSubscriptionsResponse.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/ListAnnouncementSubscriptionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.responses; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/ListAnnouncementsPreferencesResponse.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/ListAnnouncementsPreferencesResponse.java index 9b43d275bb7..ed2012e4888 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/ListAnnouncementsPreferencesResponse.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/ListAnnouncementsPreferencesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.responses; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/ListAnnouncementsResponse.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/ListAnnouncementsResponse.java index dad735504db..be384bafd19 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/ListAnnouncementsResponse.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/ListAnnouncementsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.responses; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/ListServicesResponse.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/ListServicesResponse.java index 98781170d4c..477b1122411 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/ListServicesResponse.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/ListServicesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.responses; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/UpdateAnnouncementSubscriptionResponse.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/UpdateAnnouncementSubscriptionResponse.java index de27f8015cb..ce569199788 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/UpdateAnnouncementSubscriptionResponse.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/UpdateAnnouncementSubscriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.responses; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/UpdateAnnouncementUserStatusResponse.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/UpdateAnnouncementUserStatusResponse.java index fdf6a09834c..f634a2de810 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/UpdateAnnouncementUserStatusResponse.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/UpdateAnnouncementUserStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.responses; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/UpdateAnnouncementsPreferenceResponse.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/UpdateAnnouncementsPreferenceResponse.java index cd98303f18b..baa14722cc4 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/UpdateAnnouncementsPreferenceResponse.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/UpdateAnnouncementsPreferenceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.responses; diff --git a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/UpdateFilterGroupResponse.java b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/UpdateFilterGroupResponse.java index 37a3ceeade1..2f3f9415391 100644 --- a/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/UpdateFilterGroupResponse.java +++ b/bmc-announcementsservice/src/main/java/com/oracle/bmc/announcementsservice/responses/UpdateFilterGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.announcementsservice.responses; diff --git a/bmc-announcementsservice/src/main/resources/com/oracle/bmc/announcementsservice/client.properties b/bmc-announcementsservice/src/main/resources/com/oracle/bmc/announcementsservice/client.properties index fed5c044e6e..0fa1c728a5f 100644 --- a/bmc-announcementsservice/src/main/resources/com/oracle/bmc/announcementsservice/client.properties +++ b/bmc-announcementsservice/src/main/resources/com/oracle/bmc/announcementsservice/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-apiaccesscontrol/pom.xml b/bmc-apiaccesscontrol/pom.xml index 10775817a01..16819b417f1 100644 --- a/bmc-apiaccesscontrol/pom.xml +++ b/bmc-apiaccesscontrol/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-apiaccesscontrol @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadata.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadata.java index 9794d28d954..ed872a1fb89 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadata.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadataAsync.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadataAsync.java index cbf12522a92..edf2e572898 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadataAsync.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadataAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadataAsyncClient.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadataAsyncClient.java index 698519fcb0e..11fc78b14b4 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadataAsyncClient.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadataAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadataClient.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadataClient.java index 250286b192e..13785647c2a 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadataClient.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadataClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadataPaginators.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadataPaginators.java index 5665ed4f369..d2327b43be3 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadataPaginators.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadataPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadataWaiters.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadataWaiters.java index cdfea8a7f47..ec7040f39d0 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadataWaiters.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/ApiMetadataWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControl.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControl.java index 73cbf87657b..80c0d6cf764 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControl.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControl.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControlAsync.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControlAsync.java index b787eea103d..490d45e6c45 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControlAsync.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControlAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControlAsyncClient.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControlAsyncClient.java index 03b51a60e00..b5f7899667f 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControlAsyncClient.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControlAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControlClient.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControlClient.java index a6a99fb3879..97a06894c3c 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControlClient.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControlClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControlPaginators.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControlPaginators.java index e92a93bdd07..42af5230eb0 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControlPaginators.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControlPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControlWaiters.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControlWaiters.java index 141b81a4362..e903172fdd3 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControlWaiters.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiControlWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequests.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequests.java index 2b43d64f92c..72453d856f0 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequests.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequests.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequestsAsync.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequestsAsync.java index 7f86f4c4e2f..1be5310c296 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequestsAsync.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequestsAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequestsAsyncClient.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequestsAsyncClient.java index 54c746ab151..23e970fc003 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequestsAsyncClient.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequestsAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequestsClient.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequestsClient.java index 778a447f67e..67df36af3f1 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequestsClient.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequestsClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequestsPaginators.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequestsPaginators.java index 9dac7fd7c8c..64028e409eb 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequestsPaginators.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequestsPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequestsWaiters.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequestsWaiters.java index 56e82352a9b..f43c4c3512d 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequestsWaiters.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiRequestsWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequest.java index f5019afebaf..a85a5614881 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequestAsync.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequestAsync.java index 55c98141754..a2b46d46d5c 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequestAsync.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequestAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequestAsyncClient.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequestAsyncClient.java index fec64152601..cfa7a440129 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequestAsyncClient.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequestAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequestClient.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequestClient.java index df85bb7b2e7..f1dbd07d589 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequestClient.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequestClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequestPaginators.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequestPaginators.java index 395ebae7bd8..f7a22b4bd2f 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequestPaginators.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequestPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequestWaiters.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequestWaiters.java index 0568c3f01d8..dea3859c321 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequestWaiters.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/PrivilegedApiWorkRequestWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ActionType.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ActionType.java index 4503430e480..098a7936abb 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ActionType.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApiMetadata.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApiMetadata.java index e36b7d27b7a..e6ff58e9d4c 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApiMetadata.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApiMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApiMetadataByEntityTypeCollection.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApiMetadataByEntityTypeCollection.java index 10175b14170..546d5fa50e9 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApiMetadataByEntityTypeCollection.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApiMetadataByEntityTypeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApiMetadataByEntityTypeSummary.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApiMetadataByEntityTypeSummary.java index 64a1282cc36..b301173820a 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApiMetadataByEntityTypeSummary.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApiMetadataByEntityTypeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApiMetadataCollection.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApiMetadataCollection.java index b260c89bcc8..bbbc80ff667 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApiMetadataCollection.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApiMetadataCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApiMetadataSummary.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApiMetadataSummary.java index c691ca5eb85..abb6115f2be 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApiMetadataSummary.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApiMetadataSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApprovePrivilegedApiRequestDetails.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApprovePrivilegedApiRequestDetails.java index 33c93465133..4e6d767b53a 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApprovePrivilegedApiRequestDetails.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApprovePrivilegedApiRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApproverDetail.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApproverDetail.java index 9875c644764..14d754943f2 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApproverDetail.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ApproverDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ChangePrivilegedApiControlCompartmentDetails.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ChangePrivilegedApiControlCompartmentDetails.java index d3e35e7a85d..6b90c6c2c21 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ChangePrivilegedApiControlCompartmentDetails.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ChangePrivilegedApiControlCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ClosePrivilegedApiRequestDetails.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ClosePrivilegedApiRequestDetails.java index 820ff9bf293..30a1c464a36 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ClosePrivilegedApiRequestDetails.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/ClosePrivilegedApiRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/CreatePrivilegedApiControlDetails.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/CreatePrivilegedApiControlDetails.java index fea5b5be05a..a49e7fc7bb9 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/CreatePrivilegedApiControlDetails.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/CreatePrivilegedApiControlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/CreatePrivilegedApiRequestDetails.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/CreatePrivilegedApiRequestDetails.java index 7a39365190f..235d1804a00 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/CreatePrivilegedApiRequestDetails.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/CreatePrivilegedApiRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/OperationStatus.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/OperationStatus.java index 5ba7cfa5526..053d1a48c7f 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/OperationStatus.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/OperationType.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/OperationType.java index 554902c2b55..3b186e7ead4 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/OperationType.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiControl.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiControl.java index 5536c2677e9..429fafc2b4b 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiControl.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiControl.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiControlCollection.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiControlCollection.java index 8eb61bd5f8d..b0341edc4bb 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiControlCollection.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiControlCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiControlSummary.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiControlSummary.java index 087fc41e400..b2055102aef 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiControlSummary.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiControlSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiDetails.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiDetails.java index 160772f49c0..b38acce4da7 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiDetails.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiRequest.java index ffba160153e..4f1cf7bb400 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiRequestCollection.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiRequestCollection.java index ceef561234d..3455977d412 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiRequestCollection.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiRequestCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiRequestOperationDetails.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiRequestOperationDetails.java index ecd0719b5db..d28dc3e50b8 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiRequestOperationDetails.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiRequestOperationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiRequestSeverity.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiRequestSeverity.java index e3d6c101428..a6579139b71 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiRequestSeverity.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiRequestSeverity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiRequestSummary.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiRequestSummary.java index fe768a6ae06..83365b3fb32 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiRequestSummary.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/PrivilegedApiRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/RejectPrivilegedApiRequestDetails.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/RejectPrivilegedApiRequestDetails.java index 9d0aaefb062..ad80adefa6d 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/RejectPrivilegedApiRequestDetails.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/RejectPrivilegedApiRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/RevokePrivilegedApiRequestDetails.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/RevokePrivilegedApiRequestDetails.java index d5c5025e54c..391a70ed941 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/RevokePrivilegedApiRequestDetails.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/RevokePrivilegedApiRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/SortOrder.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/SortOrder.java index fbc6898b26f..b659db8da2b 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/SortOrder.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/UpdatePrivilegedApiControlDetails.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/UpdatePrivilegedApiControlDetails.java index c321d1b2c48..01d379b6761 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/UpdatePrivilegedApiControlDetails.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/UpdatePrivilegedApiControlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequest.java index 7f0ce680f13..f03765ac2bf 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestError.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestError.java index 6aab709e530..a1c1b52f308 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestError.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestErrorCollection.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestErrorCollection.java index 7fedcb1e67d..e526c4727a7 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestErrorCollection.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestLogEntry.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestLogEntry.java index c081aa09915..57af3bd9c9d 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestLogEntry.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestLogEntryCollection.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestLogEntryCollection.java index cb5e06f7906..f9f4046dc4c 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestLogEntryCollection.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestResource.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestResource.java index c0ff0285ffa..1f6e72fdc8c 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestResource.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestResourceMetadataKey.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestResourceMetadataKey.java index 16f3505e2b2..7d46b6ae94a 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestResourceMetadataKey.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestSummary.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestSummary.java index 705ba1be12d..8a1cd460b4f 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestSummary.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestSummaryCollection.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestSummaryCollection.java index 84701f56626..a511969c21d 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestSummaryCollection.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.model; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ApprovePrivilegedApiRequestRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ApprovePrivilegedApiRequestRequest.java index 238e7d7268d..79438b6791a 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ApprovePrivilegedApiRequestRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ApprovePrivilegedApiRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.requests; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/CancelWorkRequestRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/CancelWorkRequestRequest.java index 107410eef8b..bd4d6fa2ef5 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/CancelWorkRequestRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.requests; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ChangePrivilegedApiControlCompartmentRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ChangePrivilegedApiControlCompartmentRequest.java index a69f57d642f..ec0c73081bb 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ChangePrivilegedApiControlCompartmentRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ChangePrivilegedApiControlCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.requests; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ClosePrivilegedApiRequestRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ClosePrivilegedApiRequestRequest.java index a0c65754bae..ec449ff3cfa 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ClosePrivilegedApiRequestRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ClosePrivilegedApiRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.requests; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/CreatePrivilegedApiControlRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/CreatePrivilegedApiControlRequest.java index a2a6096f28b..a9af262e750 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/CreatePrivilegedApiControlRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/CreatePrivilegedApiControlRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.requests; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/CreatePrivilegedApiRequestRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/CreatePrivilegedApiRequestRequest.java index 9769f15c13f..dfa30cf895b 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/CreatePrivilegedApiRequestRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/CreatePrivilegedApiRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.requests; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/DeletePrivilegedApiControlRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/DeletePrivilegedApiControlRequest.java index 1c606f81d9d..419109041a6 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/DeletePrivilegedApiControlRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/DeletePrivilegedApiControlRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.requests; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/GetApiMetadataRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/GetApiMetadataRequest.java index ea41d1b4d29..b0cd95b4a63 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/GetApiMetadataRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/GetApiMetadataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.requests; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/GetPrivilegedApiControlRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/GetPrivilegedApiControlRequest.java index 48c62352aa0..27fbf88cf4e 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/GetPrivilegedApiControlRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/GetPrivilegedApiControlRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.requests; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/GetPrivilegedApiRequestRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/GetPrivilegedApiRequestRequest.java index e5ee4b9a033..6f246807894 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/GetPrivilegedApiRequestRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/GetPrivilegedApiRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.requests; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/GetWorkRequestRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/GetWorkRequestRequest.java index d81ddfd4c12..5123a9c1693 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/GetWorkRequestRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.requests; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListApiMetadataByEntityTypesRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListApiMetadataByEntityTypesRequest.java index 6de59094bfc..1f78dd6f003 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListApiMetadataByEntityTypesRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListApiMetadataByEntityTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.requests; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListApiMetadataRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListApiMetadataRequest.java index eb8e0b6a6b8..0a0fd9d2e32 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListApiMetadataRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListApiMetadataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.requests; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListPrivilegedApiControlsRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListPrivilegedApiControlsRequest.java index bdff789e416..2fb7997f3ee 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListPrivilegedApiControlsRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListPrivilegedApiControlsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.requests; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListPrivilegedApiRequestsRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListPrivilegedApiRequestsRequest.java index f8ee98f6939..947ab9a0a7b 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListPrivilegedApiRequestsRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListPrivilegedApiRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.requests; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListWorkRequestErrorsRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListWorkRequestErrorsRequest.java index 329e26902fa..e40207da189 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.requests; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListWorkRequestLogsRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListWorkRequestLogsRequest.java index d71f3799bed..9f4d5437c56 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListWorkRequestLogsRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.requests; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListWorkRequestsRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListWorkRequestsRequest.java index 6f93c38c05b..adbdd3d8843 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListWorkRequestsRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.requests; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/RejectPrivilegedApiRequestRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/RejectPrivilegedApiRequestRequest.java index 56f2000c048..929ff9a7162 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/RejectPrivilegedApiRequestRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/RejectPrivilegedApiRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.requests; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/RevokePrivilegedApiRequestRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/RevokePrivilegedApiRequestRequest.java index b04a4db2864..93f00720437 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/RevokePrivilegedApiRequestRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/RevokePrivilegedApiRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.requests; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/UpdatePrivilegedApiControlRequest.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/UpdatePrivilegedApiControlRequest.java index 34aa4b49e85..4380185840b 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/UpdatePrivilegedApiControlRequest.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/requests/UpdatePrivilegedApiControlRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.requests; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ApprovePrivilegedApiRequestResponse.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ApprovePrivilegedApiRequestResponse.java index dbed176bc87..a08fe36252c 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ApprovePrivilegedApiRequestResponse.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ApprovePrivilegedApiRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.responses; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/CancelWorkRequestResponse.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/CancelWorkRequestResponse.java index 48a07e57b61..a61a9a13cc1 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/CancelWorkRequestResponse.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.responses; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ChangePrivilegedApiControlCompartmentResponse.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ChangePrivilegedApiControlCompartmentResponse.java index 0c9f918917b..89705513a24 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ChangePrivilegedApiControlCompartmentResponse.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ChangePrivilegedApiControlCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.responses; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ClosePrivilegedApiRequestResponse.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ClosePrivilegedApiRequestResponse.java index 79341367c45..f3a16c37166 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ClosePrivilegedApiRequestResponse.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ClosePrivilegedApiRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.responses; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/CreatePrivilegedApiControlResponse.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/CreatePrivilegedApiControlResponse.java index 4b4c322e9a9..2efbbd3251b 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/CreatePrivilegedApiControlResponse.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/CreatePrivilegedApiControlResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.responses; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/CreatePrivilegedApiRequestResponse.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/CreatePrivilegedApiRequestResponse.java index f878dbc4483..d451b4c2e57 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/CreatePrivilegedApiRequestResponse.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/CreatePrivilegedApiRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.responses; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/DeletePrivilegedApiControlResponse.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/DeletePrivilegedApiControlResponse.java index 4aec8920112..1daf8b8bfa1 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/DeletePrivilegedApiControlResponse.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/DeletePrivilegedApiControlResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.responses; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/GetApiMetadataResponse.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/GetApiMetadataResponse.java index 0410bf914e3..58baf476137 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/GetApiMetadataResponse.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/GetApiMetadataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.responses; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/GetPrivilegedApiControlResponse.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/GetPrivilegedApiControlResponse.java index ee1494453e9..1dbc8d02963 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/GetPrivilegedApiControlResponse.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/GetPrivilegedApiControlResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.responses; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/GetPrivilegedApiRequestResponse.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/GetPrivilegedApiRequestResponse.java index 3e8b638c759..becf57f6d4c 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/GetPrivilegedApiRequestResponse.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/GetPrivilegedApiRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.responses; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/GetWorkRequestResponse.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/GetWorkRequestResponse.java index 96e382ab988..6ee1ac96fed 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/GetWorkRequestResponse.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.responses; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListApiMetadataByEntityTypesResponse.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListApiMetadataByEntityTypesResponse.java index f3c30bf9d34..a70f9c59e38 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListApiMetadataByEntityTypesResponse.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListApiMetadataByEntityTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.responses; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListApiMetadataResponse.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListApiMetadataResponse.java index c8402437a83..255bbd08464 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListApiMetadataResponse.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListApiMetadataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.responses; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListPrivilegedApiControlsResponse.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListPrivilegedApiControlsResponse.java index e53778f8f3c..4db3d56549f 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListPrivilegedApiControlsResponse.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListPrivilegedApiControlsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.responses; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListPrivilegedApiRequestsResponse.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListPrivilegedApiRequestsResponse.java index 6b4fb728a9b..4ddf1fee76a 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListPrivilegedApiRequestsResponse.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListPrivilegedApiRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.responses; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListWorkRequestErrorsResponse.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListWorkRequestErrorsResponse.java index e55ea340084..372f5132a55 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.responses; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListWorkRequestLogsResponse.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListWorkRequestLogsResponse.java index 2fc0e63538c..173a9376823 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListWorkRequestLogsResponse.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.responses; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListWorkRequestsResponse.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListWorkRequestsResponse.java index 3a987182e2e..2b24a7f3f67 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListWorkRequestsResponse.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.responses; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/RejectPrivilegedApiRequestResponse.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/RejectPrivilegedApiRequestResponse.java index e89466fc298..13e0011c3b3 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/RejectPrivilegedApiRequestResponse.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/RejectPrivilegedApiRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.responses; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/RevokePrivilegedApiRequestResponse.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/RevokePrivilegedApiRequestResponse.java index 046a9f40aae..922cdd33ad0 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/RevokePrivilegedApiRequestResponse.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/RevokePrivilegedApiRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.responses; diff --git a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/UpdatePrivilegedApiControlResponse.java b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/UpdatePrivilegedApiControlResponse.java index 63b3a856645..1567f406612 100644 --- a/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/UpdatePrivilegedApiControlResponse.java +++ b/bmc-apiaccesscontrol/src/main/java/com/oracle/bmc/apiaccesscontrol/responses/UpdatePrivilegedApiControlResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiaccesscontrol.responses; diff --git a/bmc-apiaccesscontrol/src/main/resources/com/oracle/bmc/apiaccesscontrol/client.properties b/bmc-apiaccesscontrol/src/main/resources/com/oracle/bmc/apiaccesscontrol/client.properties index aa6412b25db..56c4ecd6313 100644 --- a/bmc-apiaccesscontrol/src/main/resources/com/oracle/bmc/apiaccesscontrol/client.properties +++ b/bmc-apiaccesscontrol/src/main/resources/com/oracle/bmc/apiaccesscontrol/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-apigateway/pom.xml b/bmc-apigateway/pom.xml index c07765ea37e..76324b8fdae 100644 --- a/bmc-apigateway/pom.xml +++ b/bmc-apigateway/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-apigateway @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGateway.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGateway.java index f63dc0a37f0..3c20c454a01 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGateway.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGateway.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGatewayAsync.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGatewayAsync.java index 042426eb0b3..3a5931ab1a3 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGatewayAsync.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGatewayAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGatewayAsyncClient.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGatewayAsyncClient.java index 49f5bf16b66..0f3ef41a658 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGatewayAsyncClient.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGatewayAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGatewayClient.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGatewayClient.java index 31ccf959505..3acdd842f6b 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGatewayClient.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGatewayClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGatewayPaginators.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGatewayPaginators.java index 5950051f580..5563a6b9e3a 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGatewayPaginators.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGatewayPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGatewayWaiters.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGatewayWaiters.java index 0521de12365..811502d0cc2 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGatewayWaiters.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/ApiGatewayWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/Deployment.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/Deployment.java index 62cd4b98c3f..43dacc57e64 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/Deployment.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/Deployment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/DeploymentAsync.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/DeploymentAsync.java index 0c9ce389cae..7bd4cc0554a 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/DeploymentAsync.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/DeploymentAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/DeploymentAsyncClient.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/DeploymentAsyncClient.java index 9230343c607..172eb1ad071 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/DeploymentAsyncClient.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/DeploymentAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/DeploymentClient.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/DeploymentClient.java index 9450a7a1307..9d36233fa59 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/DeploymentClient.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/DeploymentClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/DeploymentPaginators.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/DeploymentPaginators.java index 99670cf95b6..f813ef7f4e4 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/DeploymentPaginators.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/DeploymentPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/DeploymentWaiters.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/DeploymentWaiters.java index d8056b40b1f..d3fc98a553e 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/DeploymentWaiters.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/DeploymentWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/Gateway.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/Gateway.java index 496df82f3ff..4053ffb9d3e 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/Gateway.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/Gateway.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/GatewayAsync.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/GatewayAsync.java index 3995548df5e..df0b7aead74 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/GatewayAsync.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/GatewayAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/GatewayAsyncClient.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/GatewayAsyncClient.java index 3823734f63a..9d119522906 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/GatewayAsyncClient.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/GatewayAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/GatewayClient.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/GatewayClient.java index 79e0090242a..d250600698d 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/GatewayClient.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/GatewayClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/GatewayPaginators.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/GatewayPaginators.java index 3c64a61880a..77fbb9aad1a 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/GatewayPaginators.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/GatewayPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/GatewayWaiters.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/GatewayWaiters.java index 6ed10a6e239..606b9adfcf6 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/GatewayWaiters.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/GatewayWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/Subscribers.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/Subscribers.java index f2ba5e45765..583b17185e3 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/Subscribers.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/Subscribers.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/SubscribersAsync.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/SubscribersAsync.java index 64267f27893..4815d65a026 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/SubscribersAsync.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/SubscribersAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/SubscribersAsyncClient.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/SubscribersAsyncClient.java index d8b23438d2b..fbdc93171e1 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/SubscribersAsyncClient.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/SubscribersAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/SubscribersClient.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/SubscribersClient.java index f3d63df5d09..0818d6b2f5e 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/SubscribersClient.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/SubscribersClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/SubscribersPaginators.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/SubscribersPaginators.java index a8ccdddfabb..8b666ecfe5f 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/SubscribersPaginators.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/SubscribersPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/SubscribersWaiters.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/SubscribersWaiters.java index 74b0c384512..3368c8e1ecc 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/SubscribersWaiters.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/SubscribersWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlans.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlans.java index 027a375bbd0..97e9e28f3f0 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlans.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlans.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlansAsync.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlansAsync.java index 18bf35ca362..0817df5dea1 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlansAsync.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlansAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlansAsyncClient.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlansAsyncClient.java index feb8725ce55..a8879bb8e14 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlansAsyncClient.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlansAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlansClient.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlansClient.java index af142a8702a..c6db90ee060 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlansClient.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlansClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlansPaginators.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlansPaginators.java index 44e553d81db..7cbc967bdab 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlansPaginators.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlansPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlansWaiters.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlansWaiters.java index 4fb62eb4ef2..bfc6235eaa4 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlansWaiters.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/UsagePlansWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequests.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequests.java index 9d424622fe2..c96a31aa9be 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequests.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequests.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequestsAsync.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequestsAsync.java index 752caad0dd0..770eb1adc98 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequestsAsync.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequestsAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequestsAsyncClient.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequestsAsyncClient.java index 66bd0ebbadf..fb29ad13088 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequestsAsyncClient.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequestsAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequestsClient.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequestsClient.java index 18d0649b840..93a2c82a926 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequestsClient.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequestsClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequestsPaginators.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequestsPaginators.java index 9b524bfcab7..421a584606b 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequestsPaginators.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequestsPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequestsWaiters.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequestsWaiters.java index cf508d134c2..37b5dde40b0 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequestsWaiters.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/WorkRequestsWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AccessLogPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AccessLogPolicy.java index b3967deb455..cf03a118ce0 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AccessLogPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AccessLogPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AddResourceLockDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AddResourceLockDetails.java index 39fcb8262bf..090875bdde1 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AddResourceLockDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AddResourceLockDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AdditionalValidationPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AdditionalValidationPolicy.java index 2e9fcd5a3a0..fbad2561e7e 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AdditionalValidationPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AdditionalValidationPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AnonymousRouteAuthorizationPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AnonymousRouteAuthorizationPolicy.java index 04bf48ed591..bb5d6c1800d 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AnonymousRouteAuthorizationPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AnonymousRouteAuthorizationPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AnyOfRouteAuthorizationPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AnyOfRouteAuthorizationPolicy.java index 9a9a1874e06..efb36f27db3 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AnyOfRouteAuthorizationPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AnyOfRouteAuthorizationPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AnyOfSelectionKey.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AnyOfSelectionKey.java index 0da029347ff..7adf57825c6 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AnyOfSelectionKey.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AnyOfSelectionKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Api.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Api.java index 009e2acc129..e6b64925b64 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Api.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Api.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiCollection.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiCollection.java index c5e5863cc79..bb9e6f13ef6 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiCollection.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecification.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecification.java index 4d9ffa06fe9..28e917fd5c3 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecification.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecification.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationLoggingPolicies.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationLoggingPolicies.java index 89e1736fb28..f9060639eed 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationLoggingPolicies.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationLoggingPolicies.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationRequestPolicies.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationRequestPolicies.java index 529aad1fa3e..513b92a6319 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationRequestPolicies.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationRequestPolicies.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationRoute.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationRoute.java index 2a5e2e44a8f..9608dd6c3cd 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationRoute.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationRoute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationRouteBackend.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationRouteBackend.java index 790a3d83bdc..cb3dc499e65 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationRouteBackend.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationRouteBackend.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationRouteRequestPolicies.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationRouteRequestPolicies.java index 200f141352e..6dd995d70f4 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationRouteRequestPolicies.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationRouteRequestPolicies.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationRouteResponsePolicies.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationRouteResponsePolicies.java index 45ca4bdd93a..bb129868b7c 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationRouteResponsePolicies.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSpecificationRouteResponsePolicies.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSummary.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSummary.java index a225864db7e..2ca0c37add1 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSummary.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiValidationDetail.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiValidationDetail.java index 1044fbc69ad..93072819d70 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiValidationDetail.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiValidationDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiValidationDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiValidationDetails.java index a46f33cffe7..a10c06e7ff1 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiValidationDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiValidationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiValidationResult.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiValidationResult.java index 23d6f4f0456..71902c36158 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiValidationResult.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiValidationResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiValidations.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiValidations.java index 023a066cdd6..d5197f184f4 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiValidations.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ApiValidations.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AuthenticationOnlyRouteAuthorizationPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AuthenticationOnlyRouteAuthorizationPolicy.java index 68783f64e8d..a5300f570a7 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AuthenticationOnlyRouteAuthorizationPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AuthenticationOnlyRouteAuthorizationPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AuthenticationPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AuthenticationPolicy.java index 64892a9d6a0..340863635a1 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AuthenticationPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AuthenticationPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AuthenticationServerPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AuthenticationServerPolicy.java index 98075d8c9c1..ee525276b0f 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AuthenticationServerPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/AuthenticationServerPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/BodyValidationRequestPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/BodyValidationRequestPolicy.java index 6ec0eaf0da4..7873e2fa40b 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/BodyValidationRequestPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/BodyValidationRequestPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CaBundle.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CaBundle.java index 6abd6468398..6f43c1bd367 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CaBundle.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CaBundle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Certificate.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Certificate.java index 5de4c9c62bd..c3c1a2a1950 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Certificate.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Certificate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CertificateCollection.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CertificateCollection.java index defe6408ff1..6fb23b59cfd 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CertificateCollection.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CertificateCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CertificateSummary.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CertificateSummary.java index c5727cbf5a1..59ea924754c 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CertificateSummary.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CertificateSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CertificatesCaBundle.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CertificatesCaBundle.java index bdfcd783f06..11c8f030a45 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CertificatesCaBundle.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CertificatesCaBundle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CertificatesCertificateAuthority.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CertificatesCertificateAuthority.java index 6defeb119ed..027d889d2ad 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CertificatesCertificateAuthority.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CertificatesCertificateAuthority.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeApiCompartmentDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeApiCompartmentDetails.java index 55fea2e3ca4..4d809abca40 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeApiCompartmentDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeApiCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeCertificateCompartmentDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeCertificateCompartmentDetails.java index 27b6b292532..175dc1b36bf 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeCertificateCompartmentDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeCertificateCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeDeploymentCompartmentDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeDeploymentCompartmentDetails.java index fe82c7b23d7..ccf9b012724 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeDeploymentCompartmentDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeDeploymentCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeGatewayCompartmentDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeGatewayCompartmentDetails.java index 239235c57ca..385bc57ab0c 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeGatewayCompartmentDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeGatewayCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeSubscriberCompartmentDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeSubscriberCompartmentDetails.java index a271265fb84..2da8014117a 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeSubscriberCompartmentDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeSubscriberCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeUsagePlanCompartmentDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeUsagePlanCompartmentDetails.java index 942fb18f55f..7f26097081d 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeUsagePlanCompartmentDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ChangeUsagePlanCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Client.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Client.java index 28a9a149a8f..6c0669825b3 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Client.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Client.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ClientAppDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ClientAppDetails.java index d68aa4bd324..cee8c37197b 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ClientAppDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ClientAppDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ClientSummary.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ClientSummary.java index e563f43d998..caabda49b8f 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ClientSummary.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ClientSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ContentValidation.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ContentValidation.java index 5830279148f..6236ce029fd 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ContentValidation.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ContentValidation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CorsPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CorsPolicy.java index 7e63659489e..b6f393c2664 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CorsPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CorsPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateApiDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateApiDetails.java index 1bac33bf092..1a2b0fb9e2f 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateApiDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateApiDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateCertificateDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateCertificateDetails.java index bfce79c1cbb..f1ba9965e04 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateCertificateDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateCertificateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateDeploymentDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateDeploymentDetails.java index 0eb9a71ffe9..848bdc549e6 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateDeploymentDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateGatewayDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateGatewayDetails.java index 8fb98192a2c..291fbf4975e 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateGatewayDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateGatewayDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateSdkDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateSdkDetails.java index 66b76ff60cc..2c2898dcc7e 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateSdkDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateSdkDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateSubscriberDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateSubscriberDetails.java index 26453fd706e..5a429516733 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateSubscriberDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateSubscriberDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateUsagePlanDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateUsagePlanDetails.java index b19a24dc3d1..573527a8a94 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateUsagePlanDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CreateUsagePlanDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CustomAuthenticationPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CustomAuthenticationPolicy.java index e4294705f4f..825bbbdaec8 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CustomAuthenticationPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CustomAuthenticationPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CustomClientAppDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CustomClientAppDetails.java index 58e7a0011af..db2341f4717 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CustomClientAppDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/CustomClientAppDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Deployment.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Deployment.java index 06dc7510178..04578c259bf 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Deployment.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Deployment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DeploymentCollection.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DeploymentCollection.java index 4e91a4189f1..dcf0a00fa3b 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DeploymentCollection.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DeploymentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DeploymentSummary.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DeploymentSummary.java index 0558f08cbd0..6f2457c4f5f 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DeploymentSummary.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DeploymentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DiscoveryUriSourceUriDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DiscoveryUriSourceUriDetails.java index 4bd36256938..ae1c36355f9 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DiscoveryUriSourceUriDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DiscoveryUriSourceUriDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DynamicAuthenticationPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DynamicAuthenticationPolicy.java index 0104fe21bf2..8ccba71bc65 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DynamicAuthenticationPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DynamicAuthenticationPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DynamicRoutingBackend.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DynamicRoutingBackend.java index 4d80bd33ad5..7cbdfb5639a 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DynamicRoutingBackend.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DynamicRoutingBackend.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DynamicRoutingTypeRoutingBackend.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DynamicRoutingTypeRoutingBackend.java index 4ca145eddfd..332c941338f 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DynamicRoutingTypeRoutingBackend.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DynamicRoutingTypeRoutingBackend.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DynamicSelectionKey.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DynamicSelectionKey.java index 949eef6cd4f..39ea2781c50 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DynamicSelectionKey.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/DynamicSelectionKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Entitlement.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Entitlement.java index 462cd07c75a..515f54a5ad2 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Entitlement.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Entitlement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/EntitlementSummary.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/EntitlementSummary.java index 5dcf42f2e83..c113b3b7dfe 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/EntitlementSummary.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/EntitlementSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/EntitlementTarget.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/EntitlementTarget.java index fe53640ece4..d187e25f275 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/EntitlementTarget.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/EntitlementTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ExecutionLogPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ExecutionLogPolicy.java index 2f32bd77dbe..094cc04bc68 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ExecutionLogPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ExecutionLogPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ExternalRespCache.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ExternalRespCache.java index 80e57762804..927c799ee47 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ExternalRespCache.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ExternalRespCache.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/FilterHeaderPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/FilterHeaderPolicy.java index 35155fac6cf..417b386f906 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/FilterHeaderPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/FilterHeaderPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/FilterHeaderPolicyItem.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/FilterHeaderPolicyItem.java index 95825684ac8..a0fd85318f3 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/FilterHeaderPolicyItem.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/FilterHeaderPolicyItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/FilterQueryParameterPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/FilterQueryParameterPolicy.java index f36944873f8..cb75329de49 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/FilterQueryParameterPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/FilterQueryParameterPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/FilterQueryParameterPolicyItem.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/FilterQueryParameterPolicyItem.java index 124dd0a0eeb..b0b5d6972c4 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/FilterQueryParameterPolicyItem.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/FilterQueryParameterPolicyItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/FixedTTLResponseCacheStorePolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/FixedTTLResponseCacheStorePolicy.java index 11256e0d5a0..93ee1e7312e 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/FixedTTLResponseCacheStorePolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/FixedTTLResponseCacheStorePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Gateway.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Gateway.java index db8ab7fac15..b5559197bda 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Gateway.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Gateway.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/GatewayCollection.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/GatewayCollection.java index e4a83c3c2f0..06de7eca1a7 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/GatewayCollection.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/GatewayCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/GatewaySummary.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/GatewaySummary.java index 92ab0da2761..c9ecf1c7f64 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/GatewaySummary.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/GatewaySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/HTTPBackend.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/HTTPBackend.java index 9dce86292fd..5304a398983 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/HTTPBackend.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/HTTPBackend.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/HeaderFieldSpecification.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/HeaderFieldSpecification.java index 8ba4694e19f..a943c8b2186 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/HeaderFieldSpecification.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/HeaderFieldSpecification.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/HeaderTransformationPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/HeaderTransformationPolicy.java index d9673bd3663..954f3886c66 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/HeaderTransformationPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/HeaderTransformationPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/HeaderValidationItem.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/HeaderValidationItem.java index 731c3499ed8..4eda837c372 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/HeaderValidationItem.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/HeaderValidationItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/HeaderValidationRequestPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/HeaderValidationRequestPolicy.java index 69f5f10744c..31849bd43e5 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/HeaderValidationRequestPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/HeaderValidationRequestPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/IpAddress.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/IpAddress.java index d88f64d9f32..cbd78d21b0b 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/IpAddress.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/IpAddress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Ipv4AddressConfiguration.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Ipv4AddressConfiguration.java index d2245db716e..6b555e98850 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Ipv4AddressConfiguration.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Ipv4AddressConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Ipv6AddressConfiguration.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Ipv6AddressConfiguration.java index bafe8388b7b..5628b19087a 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Ipv6AddressConfiguration.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Ipv6AddressConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/JsonWebKey.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/JsonWebKey.java index a60be13fbef..572e2e5a2c5 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/JsonWebKey.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/JsonWebKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/JsonWebTokenClaim.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/JsonWebTokenClaim.java index 8fc7733017f..0ac93d349ce 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/JsonWebTokenClaim.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/JsonWebTokenClaim.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/JwtAuthenticationPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/JwtAuthenticationPolicy.java index f6dff04e556..b39b182e9e3 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/JwtAuthenticationPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/JwtAuthenticationPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ModifyResponseValidationFailurePolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ModifyResponseValidationFailurePolicy.java index 14a3adf9f6d..3cef929951c 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ModifyResponseValidationFailurePolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ModifyResponseValidationFailurePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/MutualTlsDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/MutualTlsDetails.java index b13c27acca2..7413c45e268 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/MutualTlsDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/MutualTlsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/NoCache.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/NoCache.java index 2b8149d3bbb..7d0ea9cf7d7 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/NoCache.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/NoCache.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/NoContentValidation.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/NoContentValidation.java index ae5e630db00..bcdd009060d 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/NoContentValidation.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/NoContentValidation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/OAuth2LogoutBackend.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/OAuth2LogoutBackend.java index 5f7a359da40..613361719d4 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/OAuth2LogoutBackend.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/OAuth2LogoutBackend.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/OAuth2ResponseValidationFailurePolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/OAuth2ResponseValidationFailurePolicy.java index 827a51a42c6..ea3ddb68cb3 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/OAuth2ResponseValidationFailurePolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/OAuth2ResponseValidationFailurePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/OracleFunctionBackend.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/OracleFunctionBackend.java index 004751c0b25..7f29582a2cc 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/OracleFunctionBackend.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/OracleFunctionBackend.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/PemEncodedPublicKey.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/PemEncodedPublicKey.java index 5cb6950ba89..f2359eee5da 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/PemEncodedPublicKey.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/PemEncodedPublicKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/PublicKeySet.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/PublicKeySet.java index 8c4b647a35d..ba99385cf7b 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/PublicKeySet.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/PublicKeySet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/QueryParameterTransformationPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/QueryParameterTransformationPolicy.java index 7dfe16ffd9c..2add1ad8fe7 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/QueryParameterTransformationPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/QueryParameterTransformationPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/QueryParameterValidationItem.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/QueryParameterValidationItem.java index ea023c53e93..db879958775 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/QueryParameterValidationItem.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/QueryParameterValidationItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/QueryParameterValidationRequestPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/QueryParameterValidationRequestPolicy.java index e87ab2be4ee..7a5f05d5654 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/QueryParameterValidationRequestPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/QueryParameterValidationRequestPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Quota.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Quota.java index a641d849771..3d086c8d850 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Quota.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Quota.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RateLimit.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RateLimit.java index cf3dd35f0c4..282f30018b7 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RateLimit.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RateLimit.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RateLimitingPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RateLimitingPolicy.java index 0a895934617..f0cf923b76a 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RateLimitingPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RateLimitingPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RemoteJsonWebKeySet.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RemoteJsonWebKeySet.java index 969fe3ee867..d2d6bff981d 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RemoteJsonWebKeySet.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RemoteJsonWebKeySet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RemoveResourceLockDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RemoveResourceLockDetails.java index 9f95d217f06..9c3dc048b7d 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RemoveResourceLockDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RemoveResourceLockDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RenameHeaderPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RenameHeaderPolicy.java index 730c7fc9770..2341d740f8c 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RenameHeaderPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RenameHeaderPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RenameHeaderPolicyItem.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RenameHeaderPolicyItem.java index 0c65e79f54a..b7c0098d17e 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RenameHeaderPolicyItem.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RenameHeaderPolicyItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RenameQueryParameterPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RenameQueryParameterPolicy.java index 298c42967a6..f9b5171ce5b 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RenameQueryParameterPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RenameQueryParameterPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RenameQueryParameterPolicyItem.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RenameQueryParameterPolicyItem.java index 3094870991e..7576967894f 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RenameQueryParameterPolicyItem.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RenameQueryParameterPolicyItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RequestParameterValidation.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RequestParameterValidation.java index 537d27425e7..011a477a347 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RequestParameterValidation.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RequestParameterValidation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ResourceLock.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ResourceLock.java index 5ae12d65a86..05224103c07 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ResourceLock.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ResourceLock.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ResponseCacheDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ResponseCacheDetails.java index 501aa79160c..64c0ed7c606 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ResponseCacheDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ResponseCacheDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ResponseCacheLookupPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ResponseCacheLookupPolicy.java index f2e0f9bde04..dc63eb1de7b 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ResponseCacheLookupPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ResponseCacheLookupPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ResponseCacheRespServer.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ResponseCacheRespServer.java index abd2312696a..2b81307de68 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ResponseCacheRespServer.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ResponseCacheRespServer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ResponseCacheStorePolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ResponseCacheStorePolicy.java index bd93e54bd7a..442e216cc92 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ResponseCacheStorePolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ResponseCacheStorePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RouteAuthorizationPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RouteAuthorizationPolicy.java index eefdf6f0ae4..3f96598b8d7 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RouteAuthorizationPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/RouteAuthorizationPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Sdk.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Sdk.java index efb7cd7120e..f9006dd6caa 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Sdk.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Sdk.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkCollection.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkCollection.java index 45a54b9013e..fe1cd950ea6 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkCollection.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkLanguageOptionalParameters.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkLanguageOptionalParameters.java index dc7630a4ccc..cfb9ea84f55 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkLanguageOptionalParameters.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkLanguageOptionalParameters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkLanguageOptionalParametersAllowedValue.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkLanguageOptionalParametersAllowedValue.java index e4a600acca3..02eff2d850a 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkLanguageOptionalParametersAllowedValue.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkLanguageOptionalParametersAllowedValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkLanguageTypeCollection.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkLanguageTypeCollection.java index 143949ce49f..3bcf2454d26 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkLanguageTypeCollection.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkLanguageTypeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkLanguageTypeSummary.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkLanguageTypeSummary.java index fc5407124e2..861069dac16 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkLanguageTypeSummary.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkLanguageTypeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkLanguageTypes.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkLanguageTypes.java index 18b87957351..3ee816028b4 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkLanguageTypes.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkLanguageTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkSummary.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkSummary.java index b61f2b9e502..2721f85d269 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkSummary.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SdkSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SelectionSourcePolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SelectionSourcePolicy.java index 8ca0f3b5e7a..48139548046 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SelectionSourcePolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SelectionSourcePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SetHeaderPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SetHeaderPolicy.java index 78aca410ace..244fffa21bb 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SetHeaderPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SetHeaderPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SetHeaderPolicyItem.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SetHeaderPolicyItem.java index 945a49ea271..f34b9fffe4f 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SetHeaderPolicyItem.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SetHeaderPolicyItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SetQueryParameterPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SetQueryParameterPolicy.java index 43407ed9650..bf64ef02a6b 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SetQueryParameterPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SetQueryParameterPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SetQueryParameterPolicyItem.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SetQueryParameterPolicyItem.java index eafa9e3c35a..20b35189d1c 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SetQueryParameterPolicyItem.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SetQueryParameterPolicyItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SimpleLookupPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SimpleLookupPolicy.java index a4d1feba49b..5d690d3cd3e 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SimpleLookupPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SimpleLookupPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SingleSelectionSourcePolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SingleSelectionSourcePolicy.java index f2b0a6eeed3..b028fd8aef4 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SingleSelectionSourcePolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SingleSelectionSourcePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SourceUriDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SourceUriDetails.java index 1a201c02120..23261c4d06b 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SourceUriDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SourceUriDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/StaticPublicKey.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/StaticPublicKey.java index e092740f4ea..51281e97ec2 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/StaticPublicKey.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/StaticPublicKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/StaticPublicKeySet.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/StaticPublicKeySet.java index 6dddc7f7a92..70070ab1942 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/StaticPublicKeySet.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/StaticPublicKeySet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/StockResponseBackend.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/StockResponseBackend.java index 2fd220a05c0..23f130c4363 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/StockResponseBackend.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/StockResponseBackend.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Subscriber.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Subscriber.java index 0571df74c26..e2b4d1e66df 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Subscriber.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/Subscriber.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SubscriberCollection.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SubscriberCollection.java index 3488123cb53..612c1020bf5 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SubscriberCollection.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SubscriberCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SubscriberSummary.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SubscriberSummary.java index b95bb6b8f94..6bffef73c22 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SubscriberSummary.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/SubscriberSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/TokenAuthenticationPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/TokenAuthenticationPolicy.java index e5928778953..2c97587f923 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/TokenAuthenticationPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/TokenAuthenticationPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/TokenAuthenticationRemoteDiscoveryValidationPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/TokenAuthenticationRemoteDiscoveryValidationPolicy.java index a9cbbb413c7..0e40a2a7ff0 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/TokenAuthenticationRemoteDiscoveryValidationPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/TokenAuthenticationRemoteDiscoveryValidationPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/TokenAuthenticationRemoteJWKSValidationPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/TokenAuthenticationRemoteJWKSValidationPolicy.java index ca2fb315fce..13531c8677d 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/TokenAuthenticationRemoteJWKSValidationPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/TokenAuthenticationRemoteJWKSValidationPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/TokenAuthenticationStaticKeysValidationPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/TokenAuthenticationStaticKeysValidationPolicy.java index 919a0dfaaea..bd7d2e5edd6 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/TokenAuthenticationStaticKeysValidationPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/TokenAuthenticationStaticKeysValidationPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/TokenAuthenticationValidationPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/TokenAuthenticationValidationPolicy.java index a6051121d30..a7c97a53100 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/TokenAuthenticationValidationPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/TokenAuthenticationValidationPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateApiDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateApiDetails.java index f7099b6c17e..e67f100a8b9 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateApiDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateApiDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateCertificateDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateCertificateDetails.java index b4f4d2ffb02..d40a0c144b1 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateCertificateDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateCertificateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateDeploymentDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateDeploymentDetails.java index a72af8d4f4a..171e96d315b 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateDeploymentDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateGatewayDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateGatewayDetails.java index 4710df2b774..443b4ed7bd1 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateGatewayDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateGatewayDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateSdkDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateSdkDetails.java index bd6d96fe55f..789ed6f8139 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateSdkDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateSdkDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateSubscriberDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateSubscriberDetails.java index 2c04bf887bc..7145d9f4c96 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateSubscriberDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateSubscriberDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateUsagePlanDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateUsagePlanDetails.java index cc3ae83f1ca..60654983124 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateUsagePlanDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UpdateUsagePlanDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UsagePlan.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UsagePlan.java index 68afecad01f..e277d09c9d2 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UsagePlan.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UsagePlan.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UsagePlanCollection.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UsagePlanCollection.java index a24d860add8..873b7b0393e 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UsagePlanCollection.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UsagePlanCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UsagePlanSummary.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UsagePlanSummary.java index dbccf5808df..462af56a9f5 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UsagePlanSummary.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UsagePlanSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UsagePlansPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UsagePlansPolicy.java index c9b8bd377c1..b839e5ebbab 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UsagePlansPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/UsagePlansPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ValidationBlockClientAppDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ValidationBlockClientAppDetails.java index 0ec1dcadd65..30213e1e04e 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ValidationBlockClientAppDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ValidationBlockClientAppDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ValidationBlockSourceUriDetails.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ValidationBlockSourceUriDetails.java index bd1d9f3a63a..ca59f2a79c0 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ValidationBlockSourceUriDetails.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ValidationBlockSourceUriDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ValidationFailurePolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ValidationFailurePolicy.java index fc186536cb4..c60b5e965d5 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ValidationFailurePolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ValidationFailurePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ValidationRequestPolicy.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ValidationRequestPolicy.java index be73b5aaa68..04e81b489fd 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ValidationRequestPolicy.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/ValidationRequestPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WildcardSelectionKey.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WildcardSelectionKey.java index 760fafc3702..6a817977c7f 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WildcardSelectionKey.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WildcardSelectionKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequest.java index 62ee02e5fc1..0791779b980 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestCollection.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestCollection.java index 39ee6e559a8..3920dd584cf 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestCollection.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestError.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestError.java index fee003f94f7..957b80adb92 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestError.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestErrorCollection.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestErrorCollection.java index 2cd4d80ec15..8e0f41f9529 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestErrorCollection.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestLog.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestLog.java index 007e2b4ab1f..2991aafaaf7 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestLog.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestLog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestLogCollection.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestLogCollection.java index 12413881786..998747645bd 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestLogCollection.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestLogCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestResource.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestResource.java index 27d093743e2..8a15659279c 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestResource.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestSummary.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestSummary.java index e655a078a2f..fb7b5def7b0 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestSummary.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.model; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddApiLockRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddApiLockRequest.java index faba2af2a56..18fc3943621 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddApiLockRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddApiLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddCertificateLockRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddCertificateLockRequest.java index c5979c22e07..5af80c565e7 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddCertificateLockRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddCertificateLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddDeploymentLockRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddDeploymentLockRequest.java index 1a83c7fe983..a6170a14096 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddDeploymentLockRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddDeploymentLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddGatewayLockRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddGatewayLockRequest.java index 69867c2ed3c..5748e81c276 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddGatewayLockRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddGatewayLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddSdkLockRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddSdkLockRequest.java index f17ffd76793..2a51893aedf 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddSdkLockRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddSdkLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddSubscriberLockRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddSubscriberLockRequest.java index 6a6ba438e59..46a28e7f215 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddSubscriberLockRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddSubscriberLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddUsagePlanLockRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddUsagePlanLockRequest.java index f406c21d964..db46b82c7f9 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddUsagePlanLockRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/AddUsagePlanLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CancelWorkRequestRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CancelWorkRequestRequest.java index 1fcfd93d113..42fdbc36466 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CancelWorkRequestRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeApiCompartmentRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeApiCompartmentRequest.java index b151fc4633a..82a951744cb 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeApiCompartmentRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeApiCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeCertificateCompartmentRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeCertificateCompartmentRequest.java index 2f7886e465c..8864b9255e3 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeCertificateCompartmentRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeCertificateCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeDeploymentCompartmentRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeDeploymentCompartmentRequest.java index 988c16d760a..e2393ecaa02 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeDeploymentCompartmentRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeDeploymentCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeGatewayCompartmentRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeGatewayCompartmentRequest.java index a9c9543c535..ec691659bd6 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeGatewayCompartmentRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeGatewayCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeSubscriberCompartmentRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeSubscriberCompartmentRequest.java index 14eaef267ec..2538612b101 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeSubscriberCompartmentRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeSubscriberCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeUsagePlanCompartmentRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeUsagePlanCompartmentRequest.java index 3b9710fb854..af716083d10 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeUsagePlanCompartmentRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ChangeUsagePlanCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateApiRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateApiRequest.java index 0875ac4bafd..d1a64644a4f 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateApiRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateApiRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateCertificateRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateCertificateRequest.java index 077102985e7..1ca8da82310 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateCertificateRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateCertificateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateDeploymentRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateDeploymentRequest.java index 951696b7dd2..5a8c30585e7 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateDeploymentRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateGatewayRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateGatewayRequest.java index e1b340de94a..898e9c64487 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateGatewayRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateGatewayRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateSdkRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateSdkRequest.java index 3cfc81e55a6..98c2b8a3f9e 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateSdkRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateSdkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateSubscriberRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateSubscriberRequest.java index 912e6ebf70b..c62e44949e2 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateSubscriberRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateSubscriberRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateUsagePlanRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateUsagePlanRequest.java index 170f695c987..2d598d86600 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateUsagePlanRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/CreateUsagePlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteApiRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteApiRequest.java index b6f693f2119..e2325cd23d4 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteApiRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteApiRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteCertificateRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteCertificateRequest.java index de9ce46e42e..9be478667d2 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteCertificateRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteCertificateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteDeploymentRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteDeploymentRequest.java index dd6cc80dba1..34896bc52af 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteDeploymentRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteGatewayRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteGatewayRequest.java index 4f1cd3239fa..b970581570b 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteGatewayRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteGatewayRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteSdkRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteSdkRequest.java index ae9da88c3db..bf6eef80a3c 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteSdkRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteSdkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteSubscriberRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteSubscriberRequest.java index 94adebd2e51..a125c954c1d 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteSubscriberRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteSubscriberRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteUsagePlanRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteUsagePlanRequest.java index 4b863f5f073..03627f4a3cb 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteUsagePlanRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/DeleteUsagePlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetApiContentRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetApiContentRequest.java index 82a60d8f1e4..45d15b5813e 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetApiContentRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetApiContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetApiDeploymentSpecificationRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetApiDeploymentSpecificationRequest.java index 8a33ab89fc0..9e8f9b251c4 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetApiDeploymentSpecificationRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetApiDeploymentSpecificationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetApiRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetApiRequest.java index 8f24a12de07..2560467ec48 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetApiRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetApiRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetApiValidationsRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetApiValidationsRequest.java index 9ff88d998f9..40c5a929a22 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetApiValidationsRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetApiValidationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetCertificateRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetCertificateRequest.java index dee730de382..16d9b8dcc81 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetCertificateRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetCertificateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetDeploymentRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetDeploymentRequest.java index 6cf09c7b40c..ae07801d09f 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetDeploymentRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetGatewayRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetGatewayRequest.java index 81e4f38d6cc..c349da84e5f 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetGatewayRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetGatewayRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetSdkRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetSdkRequest.java index 6888d7a8cea..2a19c23d30e 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetSdkRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetSdkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetSubscriberRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetSubscriberRequest.java index e70034db049..be7ab8ccd43 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetSubscriberRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetSubscriberRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetUsagePlanRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetUsagePlanRequest.java index c0c307cb489..0d9be0a161d 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetUsagePlanRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetUsagePlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetWorkRequestRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetWorkRequestRequest.java index 6c29688cc3f..500d6eb0a0d 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetWorkRequestRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListApisRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListApisRequest.java index 5682b511823..6fa8063d20c 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListApisRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListApisRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListCertificatesRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListCertificatesRequest.java index 5565a5dd485..1700cb264f1 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListCertificatesRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListCertificatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListDeploymentsRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListDeploymentsRequest.java index 31078b878c4..e56c733944f 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListDeploymentsRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListDeploymentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListGatewaysRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListGatewaysRequest.java index b1bcfc771c0..be0a81ff578 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListGatewaysRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListGatewaysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListSdkLanguageTypesRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListSdkLanguageTypesRequest.java index 48cd45f41a1..9adcf7f9702 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListSdkLanguageTypesRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListSdkLanguageTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListSdksRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListSdksRequest.java index 1e22b45c748..c743bbf3eef 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListSdksRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListSdksRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListSubscribersRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListSubscribersRequest.java index df785a10c0f..bf56bd513bd 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListSubscribersRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListSubscribersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListUsagePlansRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListUsagePlansRequest.java index 12a7b954dd4..476bd951f59 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListUsagePlansRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListUsagePlansRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListWorkRequestErrorsRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListWorkRequestErrorsRequest.java index 6c98b90a613..ccf30ee62c0 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListWorkRequestLogsRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListWorkRequestLogsRequest.java index 43d68dd94e0..d92cf206b64 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListWorkRequestLogsRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListWorkRequestsRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListWorkRequestsRequest.java index 1beb9517aca..0cd787ebb60 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListWorkRequestsRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveApiLockRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveApiLockRequest.java index e6336439d73..b6ef669a1d9 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveApiLockRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveApiLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveCertificateLockRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveCertificateLockRequest.java index 18240b197de..0368d61aa6e 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveCertificateLockRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveCertificateLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveDeploymentLockRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveDeploymentLockRequest.java index 0195c729509..1a0831a6ddf 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveDeploymentLockRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveDeploymentLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveGatewayLockRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveGatewayLockRequest.java index 86ca42424f7..9cad565cc5f 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveGatewayLockRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveGatewayLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveSdkLockRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveSdkLockRequest.java index b6e08a5debc..929927cd25b 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveSdkLockRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveSdkLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveSubscriberLockRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveSubscriberLockRequest.java index 8dff6919602..3703d463c63 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveSubscriberLockRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveSubscriberLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveUsagePlanLockRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveUsagePlanLockRequest.java index e91df7641d4..c164aa2f368 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveUsagePlanLockRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/RemoveUsagePlanLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateApiRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateApiRequest.java index 893ceda3f1e..4b8a0b84e6e 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateApiRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateApiRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateCertificateRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateCertificateRequest.java index fc81b868256..279046ffa4b 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateCertificateRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateCertificateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateDeploymentRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateDeploymentRequest.java index 88bd6fcd35b..1bf2b28a0c2 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateDeploymentRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateGatewayRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateGatewayRequest.java index f784e874744..7117e2c13be 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateGatewayRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateGatewayRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateSdkRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateSdkRequest.java index 59a52a15ebf..bcebb086699 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateSdkRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateSdkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateSubscriberRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateSubscriberRequest.java index 91ef863a340..06cce348939 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateSubscriberRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateSubscriberRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateUsagePlanRequest.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateUsagePlanRequest.java index b17021758fd..037108320b6 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateUsagePlanRequest.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/requests/UpdateUsagePlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.requests; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddApiLockResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddApiLockResponse.java index 878d38bd61f..a26e0c43ce9 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddApiLockResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddApiLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddCertificateLockResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddCertificateLockResponse.java index 70b5c6b13b5..81a6a779e49 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddCertificateLockResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddCertificateLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddDeploymentLockResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddDeploymentLockResponse.java index f95b1c8eefd..90704cbfb85 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddDeploymentLockResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddDeploymentLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddGatewayLockResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddGatewayLockResponse.java index c59b52a5f72..eed73b037c9 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddGatewayLockResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddGatewayLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddSdkLockResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddSdkLockResponse.java index e53942e8b10..d92f90ab451 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddSdkLockResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddSdkLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddSubscriberLockResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddSubscriberLockResponse.java index 5a1b1bce5e5..0a0d042a1e9 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddSubscriberLockResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddSubscriberLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddUsagePlanLockResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddUsagePlanLockResponse.java index 65e91ad1260..51caa49b399 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddUsagePlanLockResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/AddUsagePlanLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CancelWorkRequestResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CancelWorkRequestResponse.java index f96197fb0d7..786adab5c29 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CancelWorkRequestResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeApiCompartmentResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeApiCompartmentResponse.java index 7c860b8075c..35938424fe4 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeApiCompartmentResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeApiCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeCertificateCompartmentResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeCertificateCompartmentResponse.java index 770bb858dba..7cdab176f0d 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeCertificateCompartmentResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeCertificateCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeDeploymentCompartmentResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeDeploymentCompartmentResponse.java index 5df230d7a7a..bba5f3798e0 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeDeploymentCompartmentResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeDeploymentCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeGatewayCompartmentResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeGatewayCompartmentResponse.java index e8c03486488..7696093f9f5 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeGatewayCompartmentResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeGatewayCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeSubscriberCompartmentResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeSubscriberCompartmentResponse.java index ce161490510..4af51c30303 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeSubscriberCompartmentResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeSubscriberCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeUsagePlanCompartmentResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeUsagePlanCompartmentResponse.java index be565175123..c025ed547f1 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeUsagePlanCompartmentResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ChangeUsagePlanCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateApiResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateApiResponse.java index 0a685d0913d..05a415df3e3 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateApiResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateApiResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateCertificateResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateCertificateResponse.java index f9a15cc6a79..915d25f15d1 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateCertificateResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateCertificateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateDeploymentResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateDeploymentResponse.java index 6f4c6d18182..8bdbc4988aa 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateDeploymentResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateGatewayResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateGatewayResponse.java index b73006f5e5a..93be51d4fbe 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateGatewayResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateGatewayResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateSdkResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateSdkResponse.java index f735cf290eb..13cda4cd10f 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateSdkResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateSdkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateSubscriberResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateSubscriberResponse.java index ccf53349255..5e6dc7b5784 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateSubscriberResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateSubscriberResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateUsagePlanResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateUsagePlanResponse.java index 6ab6495bd29..3d52c7cdb5e 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateUsagePlanResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/CreateUsagePlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteApiResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteApiResponse.java index e41d0e3d907..e1ca152f23a 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteApiResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteApiResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteCertificateResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteCertificateResponse.java index 64c350fc77a..1a74ddaa59c 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteCertificateResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteCertificateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteDeploymentResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteDeploymentResponse.java index 03f0cbd05d2..bccac40b187 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteDeploymentResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteGatewayResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteGatewayResponse.java index cd5e040eba1..7b7d4afa17d 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteGatewayResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteGatewayResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteSdkResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteSdkResponse.java index 61a40f55f9e..47b4d60ba99 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteSdkResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteSdkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteSubscriberResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteSubscriberResponse.java index 6487dcbd692..3d38943f1a6 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteSubscriberResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteSubscriberResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteUsagePlanResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteUsagePlanResponse.java index e9a54c8bf30..e8939b75027 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteUsagePlanResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/DeleteUsagePlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetApiContentResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetApiContentResponse.java index 2078a05f4de..4540ff202d1 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetApiContentResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetApiContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetApiDeploymentSpecificationResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetApiDeploymentSpecificationResponse.java index 062d20357e5..acda2ee80b2 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetApiDeploymentSpecificationResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetApiDeploymentSpecificationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetApiResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetApiResponse.java index 894103efaa6..0bd02205ddf 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetApiResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetApiResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetApiValidationsResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetApiValidationsResponse.java index 0870b2df813..0e5ab4142e2 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetApiValidationsResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetApiValidationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetCertificateResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetCertificateResponse.java index 9cc365b9619..fc98697b73a 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetCertificateResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetCertificateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetDeploymentResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetDeploymentResponse.java index 4f3c9aa01b0..26d182c11cb 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetDeploymentResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetGatewayResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetGatewayResponse.java index 71ec888dd00..c7b16889e20 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetGatewayResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetGatewayResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetSdkResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetSdkResponse.java index 5ee87d88766..b85c916e491 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetSdkResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetSdkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetSubscriberResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetSubscriberResponse.java index bce12a4b2bb..36bf7cb37d2 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetSubscriberResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetSubscriberResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetUsagePlanResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetUsagePlanResponse.java index 588348e402d..9a309b331af 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetUsagePlanResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetUsagePlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetWorkRequestResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetWorkRequestResponse.java index abe292bedb3..cb0c7686585 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetWorkRequestResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListApisResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListApisResponse.java index 8aeb9d203d6..19615fb68c6 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListApisResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListApisResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListCertificatesResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListCertificatesResponse.java index d86a894e6ac..bb65c514738 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListCertificatesResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListCertificatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListDeploymentsResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListDeploymentsResponse.java index 55bc25a93e8..efe80a5f9ad 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListDeploymentsResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListDeploymentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListGatewaysResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListGatewaysResponse.java index f732839fec3..ef076b42a8d 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListGatewaysResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListGatewaysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListSdkLanguageTypesResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListSdkLanguageTypesResponse.java index 8a0f93574a0..f6b7d80a211 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListSdkLanguageTypesResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListSdkLanguageTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListSdksResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListSdksResponse.java index a149ffbb87c..5d4f7c7b855 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListSdksResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListSdksResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListSubscribersResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListSubscribersResponse.java index 8674170130b..87df03c72be 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListSubscribersResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListSubscribersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListUsagePlansResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListUsagePlansResponse.java index 6e4572d5b0f..acd7961551c 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListUsagePlansResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListUsagePlansResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListWorkRequestErrorsResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListWorkRequestErrorsResponse.java index 39f79bcc2ff..0779ca23fe1 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListWorkRequestLogsResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListWorkRequestLogsResponse.java index 44d37b4bac1..8983beec09a 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListWorkRequestLogsResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListWorkRequestsResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListWorkRequestsResponse.java index a21c88451ae..bf13a7433f5 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListWorkRequestsResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveApiLockResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveApiLockResponse.java index 21d90042f2d..af72acde117 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveApiLockResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveApiLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveCertificateLockResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveCertificateLockResponse.java index 1c83b5fbf66..a3d758e98d9 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveCertificateLockResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveCertificateLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveDeploymentLockResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveDeploymentLockResponse.java index 11bc3ad27f6..3398f2c3748 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveDeploymentLockResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveDeploymentLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveGatewayLockResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveGatewayLockResponse.java index cb5167e1835..699150882a1 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveGatewayLockResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveGatewayLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveSdkLockResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveSdkLockResponse.java index 1518c3e6130..bbd925ec1ad 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveSdkLockResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveSdkLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveSubscriberLockResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveSubscriberLockResponse.java index 38a599d5e8e..008557497f9 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveSubscriberLockResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveSubscriberLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveUsagePlanLockResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveUsagePlanLockResponse.java index d88cd1bbe45..b4049990ff1 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveUsagePlanLockResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/RemoveUsagePlanLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateApiResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateApiResponse.java index 96ffaba3fe1..28f6cd19aa2 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateApiResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateApiResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateCertificateResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateCertificateResponse.java index 5971f71b562..b7eddc30543 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateCertificateResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateCertificateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateDeploymentResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateDeploymentResponse.java index da17490c028..a30fe8afcf4 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateDeploymentResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateGatewayResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateGatewayResponse.java index 2b97f660821..c1b90ca7f9a 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateGatewayResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateGatewayResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateSdkResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateSdkResponse.java index bbcb2f14120..4f10148cd48 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateSdkResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateSdkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateSubscriberResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateSubscriberResponse.java index 0f23b91f5da..0829576ed9d 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateSubscriberResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateSubscriberResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateUsagePlanResponse.java b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateUsagePlanResponse.java index 61ad65dbb1f..38ba14de7b2 100644 --- a/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateUsagePlanResponse.java +++ b/bmc-apigateway/src/main/java/com/oracle/bmc/apigateway/responses/UpdateUsagePlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apigateway.responses; diff --git a/bmc-apigateway/src/main/resources/com/oracle/bmc/apigateway/client.properties b/bmc-apigateway/src/main/resources/com/oracle/bmc/apigateway/client.properties index 3ba52c35bde..e264c893ece 100644 --- a/bmc-apigateway/src/main/resources/com/oracle/bmc/apigateway/client.properties +++ b/bmc-apigateway/src/main/resources/com/oracle/bmc/apigateway/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-apiplatform/pom.xml b/bmc-apiplatform/pom.xml index beaa56abb52..45d0fabd841 100644 --- a/bmc-apiplatform/pom.xml +++ b/bmc-apiplatform/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-apiplatform @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatform.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatform.java index 46fd94fcbb4..ecb63273c97 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatform.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatform.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatformAsync.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatformAsync.java index e86e3cef75d..d97316a9ede 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatformAsync.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatformAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatformAsyncClient.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatformAsyncClient.java index 08d4735adc2..b2c0c6fdf1e 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatformAsyncClient.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatformAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatformClient.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatformClient.java index 36d1d4d58e3..82868a931b1 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatformClient.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatformClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatformPaginators.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatformPaginators.java index 0c973283a41..66166ca238e 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatformPaginators.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatformPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatformWaiters.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatformWaiters.java index e47f463f1b1..600dd851fae 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatformWaiters.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/ApiPlatformWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/ActionType.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/ActionType.java index dece13936ac..4f9c588b541 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/ActionType.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.model; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/ApiPlatformInstance.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/ApiPlatformInstance.java index 6f990716db8..c006bdfa651 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/ApiPlatformInstance.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/ApiPlatformInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.model; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/ApiPlatformInstanceCollection.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/ApiPlatformInstanceCollection.java index 7aa148a8357..b53f819fd93 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/ApiPlatformInstanceCollection.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/ApiPlatformInstanceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.model; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/ApiPlatformInstanceSummary.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/ApiPlatformInstanceSummary.java index 311dd4ac8c2..e08ccec1204 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/ApiPlatformInstanceSummary.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/ApiPlatformInstanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.model; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/ChangeApiPlatformInstanceCompartmentDetails.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/ChangeApiPlatformInstanceCompartmentDetails.java index 7e14fed976a..d2bfbaa74b6 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/ChangeApiPlatformInstanceCompartmentDetails.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/ChangeApiPlatformInstanceCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.model; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/CreateApiPlatformInstanceDetails.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/CreateApiPlatformInstanceDetails.java index 1e61e7fa419..d6c5b79a7a8 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/CreateApiPlatformInstanceDetails.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/CreateApiPlatformInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.model; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/IdcsApp.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/IdcsApp.java index 9955336b695..f90f547565a 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/IdcsApp.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/IdcsApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.model; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/OperationStatus.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/OperationStatus.java index 74beafec760..e516400f128 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/OperationStatus.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.model; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/OperationType.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/OperationType.java index 1b674085afe..4443238a771 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/OperationType.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.model; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/SortOrder.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/SortOrder.java index f065d6f067e..0cc39f2abec 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/SortOrder.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.model; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/UpdateApiPlatformInstanceDetails.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/UpdateApiPlatformInstanceDetails.java index ce971c03195..c69ed4c08b8 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/UpdateApiPlatformInstanceDetails.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/UpdateApiPlatformInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.model; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/Uris.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/Uris.java index b55efbaecb0..5480a9b81e5 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/Uris.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/Uris.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.model; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequest.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequest.java index 75d09995771..9521f61d10a 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequest.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.model; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestError.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestError.java index f89e946f556..5cb42fbac5d 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestError.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.model; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestErrorCollection.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestErrorCollection.java index 88d2c1eabaa..50e27f04ca9 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestErrorCollection.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.model; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestLogEntry.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestLogEntry.java index 254f5abbba2..17551e83fd0 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestLogEntry.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.model; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestLogEntryCollection.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestLogEntryCollection.java index eec243b529c..3bb004c7dd7 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestLogEntryCollection.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.model; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestResource.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestResource.java index 265eecbe581..386c7f74294 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestResource.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.model; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestResourceMetadataKey.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestResourceMetadataKey.java index 53a3e18ad54..9ce3115beb8 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestResourceMetadataKey.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.model; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestSummary.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestSummary.java index 852d432ecb2..9744254f526 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestSummary.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.model; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestSummaryCollection.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestSummaryCollection.java index 4480bb79504..3136f441478 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestSummaryCollection.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.model; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/ChangeApiPlatformInstanceCompartmentRequest.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/ChangeApiPlatformInstanceCompartmentRequest.java index 0c892f2e758..586452845d7 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/ChangeApiPlatformInstanceCompartmentRequest.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/ChangeApiPlatformInstanceCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.requests; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/CreateApiPlatformInstanceRequest.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/CreateApiPlatformInstanceRequest.java index a59fa41f131..7ab02c1300f 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/CreateApiPlatformInstanceRequest.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/CreateApiPlatformInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.requests; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/DeleteApiPlatformInstanceRequest.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/DeleteApiPlatformInstanceRequest.java index 760387448ac..5a577cdb7fc 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/DeleteApiPlatformInstanceRequest.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/DeleteApiPlatformInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.requests; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/GetApiPlatformInstanceRequest.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/GetApiPlatformInstanceRequest.java index af69e3b3e95..09f825387e5 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/GetApiPlatformInstanceRequest.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/GetApiPlatformInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.requests; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/GetWorkRequestRequest.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/GetWorkRequestRequest.java index da69910e1ec..1486035fd01 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/GetWorkRequestRequest.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.requests; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/ListApiPlatformInstancesRequest.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/ListApiPlatformInstancesRequest.java index 932f27acf7c..6ec0177c4fe 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/ListApiPlatformInstancesRequest.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/ListApiPlatformInstancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.requests; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/ListWorkRequestErrorsRequest.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/ListWorkRequestErrorsRequest.java index 0f02e206705..94e0f0dd875 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.requests; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/ListWorkRequestLogsRequest.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/ListWorkRequestLogsRequest.java index e85446963fe..0d5c4cbe7c2 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/ListWorkRequestLogsRequest.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.requests; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/ListWorkRequestsRequest.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/ListWorkRequestsRequest.java index fa9e7221785..c451da3048f 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/ListWorkRequestsRequest.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.requests; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/UpdateApiPlatformInstanceRequest.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/UpdateApiPlatformInstanceRequest.java index ae97987c1fc..ca6265c04a7 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/UpdateApiPlatformInstanceRequest.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/requests/UpdateApiPlatformInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.requests; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/ChangeApiPlatformInstanceCompartmentResponse.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/ChangeApiPlatformInstanceCompartmentResponse.java index 92eec58416a..64df56d53c1 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/ChangeApiPlatformInstanceCompartmentResponse.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/ChangeApiPlatformInstanceCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.responses; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/CreateApiPlatformInstanceResponse.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/CreateApiPlatformInstanceResponse.java index 2b8d6b4a762..855cd7dbf13 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/CreateApiPlatformInstanceResponse.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/CreateApiPlatformInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.responses; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/DeleteApiPlatformInstanceResponse.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/DeleteApiPlatformInstanceResponse.java index 1eb5bd4ef9a..2fbbf0ef3d4 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/DeleteApiPlatformInstanceResponse.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/DeleteApiPlatformInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.responses; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/GetApiPlatformInstanceResponse.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/GetApiPlatformInstanceResponse.java index 6813d5b641b..f3fe5f6efb6 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/GetApiPlatformInstanceResponse.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/GetApiPlatformInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.responses; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/GetWorkRequestResponse.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/GetWorkRequestResponse.java index 85e6b3808b1..fa0e8d8df77 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/GetWorkRequestResponse.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.responses; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/ListApiPlatformInstancesResponse.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/ListApiPlatformInstancesResponse.java index 52b9c714964..13ba015153d 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/ListApiPlatformInstancesResponse.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/ListApiPlatformInstancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.responses; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/ListWorkRequestErrorsResponse.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/ListWorkRequestErrorsResponse.java index df8bcbdcaaf..994dba2fd84 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.responses; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/ListWorkRequestLogsResponse.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/ListWorkRequestLogsResponse.java index 120c0d582d3..cae95b4d72a 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/ListWorkRequestLogsResponse.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.responses; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/ListWorkRequestsResponse.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/ListWorkRequestsResponse.java index 240c1cfe392..c216f732e21 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/ListWorkRequestsResponse.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.responses; diff --git a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/UpdateApiPlatformInstanceResponse.java b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/UpdateApiPlatformInstanceResponse.java index 16c0213e8b0..c4b8c5f9a45 100644 --- a/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/UpdateApiPlatformInstanceResponse.java +++ b/bmc-apiplatform/src/main/java/com/oracle/bmc/apiplatform/responses/UpdateApiPlatformInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apiplatform.responses; diff --git a/bmc-apiplatform/src/main/resources/com/oracle/bmc/apiplatform/client.properties b/bmc-apiplatform/src/main/resources/com/oracle/bmc/apiplatform/client.properties index 25fe1ed6142..bcee046440d 100644 --- a/bmc-apiplatform/src/main/resources/com/oracle/bmc/apiplatform/client.properties +++ b/bmc-apiplatform/src/main/resources/com/oracle/bmc/apiplatform/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-apmconfig/pom.xml b/bmc-apmconfig/pom.xml index 640d9037016..8d0f67d10d1 100644 --- a/bmc-apmconfig/pom.xml +++ b/bmc-apmconfig/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-apmconfig @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/Config.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/Config.java index dc109925e7f..6f74c18179d 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/Config.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/Config.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/ConfigAsync.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/ConfigAsync.java index ddaa48fc314..c59bc13535e 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/ConfigAsync.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/ConfigAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/ConfigAsyncClient.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/ConfigAsyncClient.java index 0bf926a820a..51005386300 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/ConfigAsyncClient.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/ConfigAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/ConfigClient.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/ConfigClient.java index e849e8ec991..5cfdfd619ab 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/ConfigClient.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/ConfigClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/ConfigPaginators.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/ConfigPaginators.java index 631ac1182c9..e2d9068357e 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/ConfigPaginators.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/ConfigPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfig.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfig.java index d5f5053a14c..05c7bc9ab5f 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfig.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfigFile.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfigFile.java index 8490bda4cb6..dc99ddf0722 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfigFile.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfigFile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfigMap.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfigMap.java index 443b4bf6d7b..8233106efd6 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfigMap.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfigMap.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfigOverride.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfigOverride.java index 32bdb729688..516c3ff20dc 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfigOverride.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfigOverride.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfigOverrides.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfigOverrides.java index ab451e4d234..49a0cf03558 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfigOverrides.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfigOverrides.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfigSummary.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfigSummary.java index 98ebe78b079..6516bfdc79d 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfigSummary.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/AgentConfigSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Apdex.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Apdex.java index c13560f1025..1aafa371e52 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Apdex.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Apdex.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ApdexRules.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ApdexRules.java index e47231b59a6..e4dc6ada64a 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ApdexRules.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ApdexRules.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ApdexRulesSummary.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ApdexRulesSummary.java index 1af11f4cf06..d2d8935eda3 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ApdexRulesSummary.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ApdexRulesSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Config.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Config.java index 43ff7f5d71d..48b57132d3e 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Config.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Config.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ConfigCollection.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ConfigCollection.java index cf828c50f59..cefe19bd949 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ConfigCollection.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ConfigCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ConfigSummary.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ConfigSummary.java index cfc8c7e47af..ce3a60b770b 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ConfigSummary.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ConfigSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ConfigTypes.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ConfigTypes.java index e33fa312b1a..067ca1349e5 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ConfigTypes.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ConfigTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CopyConfigurationDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CopyConfigurationDetails.java index 1e4b5c1d11a..9530378e270 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CopyConfigurationDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CopyConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateAgentConfigDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateAgentConfigDetails.java index 17a480d7d9f..7506c35c54b 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateAgentConfigDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateAgentConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateApdexRulesDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateApdexRulesDetails.java index 1d21467b441..7ce62643da0 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateApdexRulesDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateApdexRulesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateConfigDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateConfigDetails.java index 17fb8250b5a..9de7d54bd03 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateConfigDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateMacsApmExtensionDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateMacsApmExtensionDetails.java index ae97499f809..e5313078a79 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateMacsApmExtensionDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateMacsApmExtensionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateMetricGroupDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateMetricGroupDetails.java index 53eb607085b..418ed853739 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateMetricGroupDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateMetricGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateOptionsDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateOptionsDetails.java index 98079b8fdd8..cc1e504915f 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateOptionsDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateOptionsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateSpanFilterDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateSpanFilterDetails.java index ddab9fc0730..ccdd9ba20d6 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateSpanFilterDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/CreateSpanFilterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Dimension.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Dimension.java index 0f0bd5a1126..9c0a6765002 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Dimension.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Dimension.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportConfigurationDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportConfigurationDetails.java index c80acf43e8b..20700ebcac9 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportConfigurationDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportConfigurationResponseDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportConfigurationResponseDetails.java index cfc042f1e03..55dc84ffeb3 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportConfigurationResponseDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportConfigurationResponseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportImportApdexRulesSummary.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportImportApdexRulesSummary.java index c956999d55b..7d11fa05880 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportImportApdexRulesSummary.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportImportApdexRulesSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportImportConfigSummary.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportImportConfigSummary.java index d91a4c028a0..d20669f8f40 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportImportConfigSummary.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportImportConfigSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportImportMetricGroupSummary.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportImportMetricGroupSummary.java index 0cf29bb5bc6..e9a84270a07 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportImportMetricGroupSummary.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportImportMetricGroupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportImportOptionsSummary.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportImportOptionsSummary.java index 99951c9b007..b717362f533 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportImportOptionsSummary.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportImportOptionsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportImportSpanFilterSummary.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportImportSpanFilterSummary.java index f497c7d79a6..61f6145edc9 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportImportSpanFilterSummary.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ExportImportSpanFilterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/FilterTextOrId.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/FilterTextOrId.java index effb72a076c..e44a19676fa 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/FilterTextOrId.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/FilterTextOrId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ImportConfigurationDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ImportConfigurationDetails.java index 78fb9aa883a..7ea6fa171f3 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ImportConfigurationDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ImportConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ImportConfigurationFailedItemSummary.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ImportConfigurationFailedItemSummary.java index 6dd2ef1e9f9..19a9f2a83f2 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ImportConfigurationFailedItemSummary.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ImportConfigurationFailedItemSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ImportConfigurationFailedItemsCollection.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ImportConfigurationFailedItemsCollection.java index 062dc12982f..e986ba746af 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ImportConfigurationFailedItemsCollection.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ImportConfigurationFailedItemsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MacsApmExtension.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MacsApmExtension.java index 43592776cee..d1333964008 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MacsApmExtension.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MacsApmExtension.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MacsApmExtensionSummary.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MacsApmExtensionSummary.java index 5e29bac68b0..cfefde0cf99 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MacsApmExtensionSummary.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MacsApmExtensionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MatchAgentsWithAttributeKey.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MatchAgentsWithAttributeKey.java index c6a2449c774..5b76a386243 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MatchAgentsWithAttributeKey.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MatchAgentsWithAttributeKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Metric.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Metric.java index 15a688db31b..61d0d24cd89 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Metric.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Metric.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MetricGroup.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MetricGroup.java index eb871bfda31..91e8bf62abd 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MetricGroup.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MetricGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MetricGroupSummary.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MetricGroupSummary.java index 27edeaad5ff..e0e77776819 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MetricGroupSummary.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MetricGroupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MetricTypes.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MetricTypes.java index 7c963486976..0dfa2291791 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MetricTypes.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/MetricTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Namespace.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Namespace.java index cadaacecc6c..c385310ae6d 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Namespace.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Namespace.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/NamespaceCollection.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/NamespaceCollection.java index 68482d5e96e..b41c9e762a9 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/NamespaceCollection.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/NamespaceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/NamespaceMetric.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/NamespaceMetric.java index a3994129010..7e02914cd58 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/NamespaceMetric.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/NamespaceMetric.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/NamespaceMetricCollection.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/NamespaceMetricCollection.java index f6a47ee33d3..5cad270f9b3 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/NamespaceMetricCollection.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/NamespaceMetricCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Options.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Options.java index 6f12a3b449c..0833a2a29ec 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Options.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/Options.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/OptionsSummary.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/OptionsSummary.java index 528c7d72346..8cd21f3ea68 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/OptionsSummary.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/OptionsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/RetrieveNamespaceMetricsDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/RetrieveNamespaceMetricsDetails.java index af9b19e8101..a452e205076 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/RetrieveNamespaceMetricsDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/RetrieveNamespaceMetricsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/SortOrders.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/SortOrders.java index 70f9f839fef..18eeac8dcc4 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/SortOrders.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/SortOrders.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/SpanFilter.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/SpanFilter.java index 4415732768b..f92d66a7c70 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/SpanFilter.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/SpanFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/SpanFilterReference.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/SpanFilterReference.java index 8a8b12c74c9..d1c2d76fc41 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/SpanFilterReference.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/SpanFilterReference.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/SpanFilterSummary.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/SpanFilterSummary.java index 6612e37a71d..b2db9f26d6f 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/SpanFilterSummary.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/SpanFilterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/TestDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/TestDetails.java index ae1e9a06808..f1885ae340d 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/TestDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/TestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/TestOutput.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/TestOutput.java index 64988efa3b6..d97461cfe60 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/TestOutput.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/TestOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/TestSpanEnrichmentDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/TestSpanEnrichmentDetails.java index 5d779bb97e0..2313310a8a6 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/TestSpanEnrichmentDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/TestSpanEnrichmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/TestSpanEnrichmentOutput.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/TestSpanEnrichmentOutput.java index 353e7aff01c..4616776c5e4 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/TestSpanEnrichmentOutput.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/TestSpanEnrichmentOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/TestTypes.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/TestTypes.java index aed4176edcf..6f75f80ff69 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/TestTypes.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/TestTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateAgentConfigDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateAgentConfigDetails.java index 08f06884749..a02bb21bdbc 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateAgentConfigDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateAgentConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateApdexRulesDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateApdexRulesDetails.java index e11a3c02061..49e765c815f 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateApdexRulesDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateApdexRulesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateConfigDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateConfigDetails.java index 0c242151610..c5763adc7ce 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateConfigDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateMacsApmExtensionDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateMacsApmExtensionDetails.java index e2c82f4f268..fe81fd68eda 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateMacsApmExtensionDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateMacsApmExtensionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateMatchAgentsWithAttributeKeyDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateMatchAgentsWithAttributeKeyDetails.java index 9804f382939..0ddbbd02e7a 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateMatchAgentsWithAttributeKeyDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateMatchAgentsWithAttributeKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateMetricGroupDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateMetricGroupDetails.java index 756c67ce3d8..4b812dd9026 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateMetricGroupDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateMetricGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateOptionsDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateOptionsDetails.java index bfc15ad5667..6f6317329da 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateOptionsDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateOptionsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateSpanFilterDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateSpanFilterDetails.java index facb9bbc29f..761847f6921 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateSpanFilterDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/UpdateSpanFilterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ValidateSpanFilterPatternDetails.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ValidateSpanFilterPatternDetails.java index 2c32ea6feda..ca0e2833134 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ValidateSpanFilterPatternDetails.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/model/ValidateSpanFilterPatternDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.model; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/CopyConfigurationRequest.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/CopyConfigurationRequest.java index 0cc7bdf4e0e..e46e70fd8b1 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/CopyConfigurationRequest.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/CopyConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.requests; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/CreateConfigRequest.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/CreateConfigRequest.java index daf3a352fa9..827e564fd6f 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/CreateConfigRequest.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/CreateConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.requests; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/DeleteConfigRequest.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/DeleteConfigRequest.java index f30c672cdb0..428d79aafa9 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/DeleteConfigRequest.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/DeleteConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.requests; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/ExportConfigurationRequest.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/ExportConfigurationRequest.java index f948b07e8d1..fbcf232986a 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/ExportConfigurationRequest.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/ExportConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.requests; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/GetConfigRequest.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/GetConfigRequest.java index e342e1095af..7995fcc8322 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/GetConfigRequest.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/GetConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.requests; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/GetMatchAgentsWithAttributeKeyRequest.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/GetMatchAgentsWithAttributeKeyRequest.java index 90a2d659de2..b99fd588c60 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/GetMatchAgentsWithAttributeKeyRequest.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/GetMatchAgentsWithAttributeKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.requests; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/ImportConfigurationRequest.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/ImportConfigurationRequest.java index 535df158620..634e1641c0b 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/ImportConfigurationRequest.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/ImportConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.requests; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/ListConfigsRequest.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/ListConfigsRequest.java index 1aeb28f0094..93ba717ea42 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/ListConfigsRequest.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/ListConfigsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.requests; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/RetrieveNamespaceMetricsRequest.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/RetrieveNamespaceMetricsRequest.java index 32ad5d358fe..4de063a2f01 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/RetrieveNamespaceMetricsRequest.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/RetrieveNamespaceMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.requests; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/RetrieveNamespacesRequest.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/RetrieveNamespacesRequest.java index 08f96f182ab..b282e6683fe 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/RetrieveNamespacesRequest.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/RetrieveNamespacesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.requests; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/TestRequest.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/TestRequest.java index 692c198357b..4cbdf041519 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/TestRequest.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/TestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.requests; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/UpdateConfigRequest.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/UpdateConfigRequest.java index 4dcd6795b40..d5f7f749ea8 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/UpdateConfigRequest.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/UpdateConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.requests; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/UpdateMatchAgentsWithAttributeKeyRequest.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/UpdateMatchAgentsWithAttributeKeyRequest.java index 9a115fa615d..0c280713c5b 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/UpdateMatchAgentsWithAttributeKeyRequest.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/UpdateMatchAgentsWithAttributeKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.requests; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/ValidateSpanFilterPatternRequest.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/ValidateSpanFilterPatternRequest.java index e824983f34f..a9ffeac3177 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/ValidateSpanFilterPatternRequest.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/requests/ValidateSpanFilterPatternRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.requests; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/CopyConfigurationResponse.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/CopyConfigurationResponse.java index a2927e76c7d..6d6f703032f 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/CopyConfigurationResponse.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/CopyConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.responses; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/CreateConfigResponse.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/CreateConfigResponse.java index d94c319408b..d85d4d5be3e 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/CreateConfigResponse.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/CreateConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.responses; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/DeleteConfigResponse.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/DeleteConfigResponse.java index 87bfc6f7b3a..e30f46c1de9 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/DeleteConfigResponse.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/DeleteConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.responses; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/ExportConfigurationResponse.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/ExportConfigurationResponse.java index c3cd1f16974..c39815632b5 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/ExportConfigurationResponse.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/ExportConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.responses; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/GetConfigResponse.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/GetConfigResponse.java index baf00d01f43..040efcbcd43 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/GetConfigResponse.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/GetConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.responses; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/GetMatchAgentsWithAttributeKeyResponse.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/GetMatchAgentsWithAttributeKeyResponse.java index 86edb478d83..bbaaf6839da 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/GetMatchAgentsWithAttributeKeyResponse.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/GetMatchAgentsWithAttributeKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.responses; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/ImportConfigurationResponse.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/ImportConfigurationResponse.java index 0b2ebed7fc9..8e3bb7f67cb 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/ImportConfigurationResponse.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/ImportConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.responses; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/ListConfigsResponse.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/ListConfigsResponse.java index 1827d9eef03..0301521fc1c 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/ListConfigsResponse.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/ListConfigsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.responses; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/RetrieveNamespaceMetricsResponse.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/RetrieveNamespaceMetricsResponse.java index 0ecb96b14e4..ed0c007579a 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/RetrieveNamespaceMetricsResponse.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/RetrieveNamespaceMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.responses; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/RetrieveNamespacesResponse.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/RetrieveNamespacesResponse.java index f7549e28945..9206991313a 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/RetrieveNamespacesResponse.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/RetrieveNamespacesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.responses; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/TestResponse.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/TestResponse.java index 946caa5a596..30b25704615 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/TestResponse.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/TestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.responses; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/UpdateConfigResponse.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/UpdateConfigResponse.java index 5b66c61d269..80efd93d0c8 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/UpdateConfigResponse.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/UpdateConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.responses; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/UpdateMatchAgentsWithAttributeKeyResponse.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/UpdateMatchAgentsWithAttributeKeyResponse.java index c61e2e20c65..7f08770e397 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/UpdateMatchAgentsWithAttributeKeyResponse.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/UpdateMatchAgentsWithAttributeKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.responses; diff --git a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/ValidateSpanFilterPatternResponse.java b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/ValidateSpanFilterPatternResponse.java index aa90b684458..54f6d4c7c0c 100644 --- a/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/ValidateSpanFilterPatternResponse.java +++ b/bmc-apmconfig/src/main/java/com/oracle/bmc/apmconfig/responses/ValidateSpanFilterPatternResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmconfig.responses; diff --git a/bmc-apmconfig/src/main/resources/com/oracle/bmc/apmconfig/client.properties b/bmc-apmconfig/src/main/resources/com/oracle/bmc/apmconfig/client.properties index 922512a21c1..b3e37348cd0 100644 --- a/bmc-apmconfig/src/main/resources/com/oracle/bmc/apmconfig/client.properties +++ b/bmc-apmconfig/src/main/resources/com/oracle/bmc/apmconfig/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-apmcontrolplane/pom.xml b/bmc-apmcontrolplane/pom.xml index 17539eac1bd..993dd4f079c 100644 --- a/bmc-apmcontrolplane/pom.xml +++ b/bmc-apmcontrolplane/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-apmcontrolplane @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomain.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomain.java index ad657109d70..e0f322424c4 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomain.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomain.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomainAsync.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomainAsync.java index 144b3cbdaaf..d0cabda5a66 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomainAsync.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomainAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomainAsyncClient.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomainAsyncClient.java index 1ff82f66f08..f5ed147697c 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomainAsyncClient.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomainAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomainClient.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomainClient.java index 1a7e38171db..099606d14bd 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomainClient.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomainClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomainPaginators.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomainPaginators.java index b46badc34d6..181f88a325e 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomainPaginators.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomainPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomainWaiters.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomainWaiters.java index d66413bdd51..7f90b4ccf4a 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomainWaiters.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/ApmDomainWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/ActionTypes.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/ActionTypes.java index 2ecb1262c99..abf16dd51ae 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/ActionTypes.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/ActionTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.model; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/ApmDomain.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/ApmDomain.java index 7f539066b01..5b6eefecba2 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/ApmDomain.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/ApmDomain.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.model; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/ApmDomainSummary.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/ApmDomainSummary.java index 886e9b3d666..cdfc9b88465 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/ApmDomainSummary.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/ApmDomainSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.model; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/BaseDomainDetails.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/BaseDomainDetails.java index 19aeff35800..cfa6ef33b23 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/BaseDomainDetails.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/BaseDomainDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.model; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/BaseKeyDetails.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/BaseKeyDetails.java index d9f1cf3959b..13318925c47 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/BaseKeyDetails.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/BaseKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.model; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/ChangeApmDomainCompartmentDetails.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/ChangeApmDomainCompartmentDetails.java index 8e934232612..6f26abf63bf 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/ChangeApmDomainCompartmentDetails.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/ChangeApmDomainCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.model; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/CreateApmDomainDetails.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/CreateApmDomainDetails.java index 00918401f4c..3a829b713ff 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/CreateApmDomainDetails.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/CreateApmDomainDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.model; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/DataKey.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/DataKey.java index a443919df10..25d73e29e5e 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/DataKey.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/DataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.model; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/DataKeySummary.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/DataKeySummary.java index 6e9090260d7..1016666ed11 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/DataKeySummary.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/DataKeySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.model; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/DataKeyTypes.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/DataKeyTypes.java index b3770b5b686..69999921504 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/DataKeyTypes.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/DataKeyTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.model; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/GenerateDataKeyDetails.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/GenerateDataKeyDetails.java index f797b51200f..24ab1c9fcda 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/GenerateDataKeyDetails.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/GenerateDataKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.model; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/LifecycleStates.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/LifecycleStates.java index 66bb1adc451..181f8a62acb 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/LifecycleStates.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/LifecycleStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.model; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/OperationStatus.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/OperationStatus.java index 15b5a3e83af..52da1bdaff1 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/OperationStatus.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.model; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/OperationTypes.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/OperationTypes.java index 5668d70383e..ff68a0e2464 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/OperationTypes.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/OperationTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.model; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/RemoveDataKeyDetails.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/RemoveDataKeyDetails.java index 3e1af173c8d..f60265fd878 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/RemoveDataKeyDetails.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/RemoveDataKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.model; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/SortOrders.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/SortOrders.java index 362b6896219..d48ea6ca47f 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/SortOrders.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/SortOrders.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.model; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/UpdateApmDomainDetails.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/UpdateApmDomainDetails.java index 313f863d239..eb6f6d4b0b2 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/UpdateApmDomainDetails.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/UpdateApmDomainDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.model; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/WorkRequest.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/WorkRequest.java index 1b1cfe2dba8..31e22234a4e 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/WorkRequest.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.model; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/WorkRequestError.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/WorkRequestError.java index 90eb7f3f2b9..c5eb703df43 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/WorkRequestError.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.model; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/WorkRequestLogEntry.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/WorkRequestLogEntry.java index b28167f0fc8..bf3711f459a 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/WorkRequestLogEntry.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.model; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/WorkRequestResource.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/WorkRequestResource.java index f268f0d5d71..7f378c45bad 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/WorkRequestResource.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.model; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ChangeApmDomainCompartmentRequest.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ChangeApmDomainCompartmentRequest.java index 3b809ee3ab4..dbf5f382e4c 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ChangeApmDomainCompartmentRequest.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ChangeApmDomainCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.requests; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/CreateApmDomainRequest.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/CreateApmDomainRequest.java index 3bf4d58b87f..4a9f64906c9 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/CreateApmDomainRequest.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/CreateApmDomainRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.requests; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/DeleteApmDomainRequest.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/DeleteApmDomainRequest.java index f8f2370dbc9..e99c998c18a 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/DeleteApmDomainRequest.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/DeleteApmDomainRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.requests; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/GenerateDataKeysRequest.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/GenerateDataKeysRequest.java index 5a6289bc3f3..1628be69ec3 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/GenerateDataKeysRequest.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/GenerateDataKeysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.requests; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/GetApmDomainRequest.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/GetApmDomainRequest.java index 2bce1ed243a..425a5b4bc32 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/GetApmDomainRequest.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/GetApmDomainRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.requests; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/GetWorkRequestRequest.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/GetWorkRequestRequest.java index 7fe6ed0d5d6..fc5eaf468bc 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/GetWorkRequestRequest.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.requests; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListApmDomainWorkRequestsRequest.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListApmDomainWorkRequestsRequest.java index ede03c1c65c..e0a06b5ce02 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListApmDomainWorkRequestsRequest.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListApmDomainWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.requests; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListApmDomainsRequest.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListApmDomainsRequest.java index fa7a42a834a..a597510a36a 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListApmDomainsRequest.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListApmDomainsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.requests; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListDataKeysRequest.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListDataKeysRequest.java index 6db8e591cd4..3a5d4285741 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListDataKeysRequest.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListDataKeysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.requests; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListWorkRequestErrorsRequest.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListWorkRequestErrorsRequest.java index 17f2ebe0259..08b20d6dc1b 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.requests; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListWorkRequestLogsRequest.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListWorkRequestLogsRequest.java index b1b5ddc6de4..6eda30120ac 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListWorkRequestLogsRequest.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.requests; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListWorkRequestsRequest.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListWorkRequestsRequest.java index 0beb4f99baa..da2049d304b 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListWorkRequestsRequest.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.requests; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/RemoveDataKeysRequest.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/RemoveDataKeysRequest.java index 8c2fc82596c..c66a145c69e 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/RemoveDataKeysRequest.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/RemoveDataKeysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.requests; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/UpdateApmDomainRequest.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/UpdateApmDomainRequest.java index 78a39939fca..922fd99d63e 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/UpdateApmDomainRequest.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/requests/UpdateApmDomainRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.requests; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ChangeApmDomainCompartmentResponse.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ChangeApmDomainCompartmentResponse.java index 58a6d523f2b..f79c9c2c8db 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ChangeApmDomainCompartmentResponse.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ChangeApmDomainCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.responses; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/CreateApmDomainResponse.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/CreateApmDomainResponse.java index 5d1771d7015..cd14921f2da 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/CreateApmDomainResponse.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/CreateApmDomainResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.responses; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/DeleteApmDomainResponse.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/DeleteApmDomainResponse.java index ec8eb8306d8..5bbeaf3267a 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/DeleteApmDomainResponse.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/DeleteApmDomainResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.responses; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/GenerateDataKeysResponse.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/GenerateDataKeysResponse.java index 8bd7c6fb293..77c7819ab2e 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/GenerateDataKeysResponse.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/GenerateDataKeysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.responses; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/GetApmDomainResponse.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/GetApmDomainResponse.java index 794c14729ba..0379846af0a 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/GetApmDomainResponse.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/GetApmDomainResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.responses; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/GetWorkRequestResponse.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/GetWorkRequestResponse.java index 6a9cd7724a6..c2277045bcf 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/GetWorkRequestResponse.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.responses; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListApmDomainWorkRequestsResponse.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListApmDomainWorkRequestsResponse.java index dd8b8c66cd3..de54b80f7bb 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListApmDomainWorkRequestsResponse.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListApmDomainWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.responses; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListApmDomainsResponse.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListApmDomainsResponse.java index 02b54da076a..0949d31571d 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListApmDomainsResponse.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListApmDomainsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.responses; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListDataKeysResponse.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListDataKeysResponse.java index 48cea012cfb..db70114d2de 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListDataKeysResponse.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListDataKeysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.responses; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListWorkRequestErrorsResponse.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListWorkRequestErrorsResponse.java index 7053b38d582..f2da5bfc03e 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.responses; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListWorkRequestLogsResponse.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListWorkRequestLogsResponse.java index c5a515dfbce..d25ed67982a 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListWorkRequestLogsResponse.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.responses; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListWorkRequestsResponse.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListWorkRequestsResponse.java index b463c78cc63..f36e4bf94f7 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListWorkRequestsResponse.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.responses; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/RemoveDataKeysResponse.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/RemoveDataKeysResponse.java index ef43a285d8b..72a58312c8e 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/RemoveDataKeysResponse.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/RemoveDataKeysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.responses; diff --git a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/UpdateApmDomainResponse.java b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/UpdateApmDomainResponse.java index 874ce26c31e..37f19acd04f 100644 --- a/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/UpdateApmDomainResponse.java +++ b/bmc-apmcontrolplane/src/main/java/com/oracle/bmc/apmcontrolplane/responses/UpdateApmDomainResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmcontrolplane.responses; diff --git a/bmc-apmcontrolplane/src/main/resources/com/oracle/bmc/apmcontrolplane/client.properties b/bmc-apmcontrolplane/src/main/resources/com/oracle/bmc/apmcontrolplane/client.properties index 2cf36acb269..d08316a30f3 100644 --- a/bmc-apmcontrolplane/src/main/resources/com/oracle/bmc/apmcontrolplane/client.properties +++ b/bmc-apmcontrolplane/src/main/resources/com/oracle/bmc/apmcontrolplane/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-apmsynthetics/pom.xml b/bmc-apmsynthetics/pom.xml index 2a6885b1043..df1a1f8ccb9 100644 --- a/bmc-apmsynthetics/pom.xml +++ b/bmc-apmsynthetics/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-apmsynthetics @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/ApmSynthetic.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/ApmSynthetic.java index 848f2b96fc0..b8784efd687 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/ApmSynthetic.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/ApmSynthetic.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/ApmSyntheticAsync.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/ApmSyntheticAsync.java index f2afc4411eb..af313dd7cef 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/ApmSyntheticAsync.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/ApmSyntheticAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/ApmSyntheticAsyncClient.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/ApmSyntheticAsyncClient.java index 0e933e22a1d..47da11ddfea 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/ApmSyntheticAsyncClient.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/ApmSyntheticAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/ApmSyntheticClient.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/ApmSyntheticClient.java index 52716ee5c6a..fe9147d6d48 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/ApmSyntheticClient.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/ApmSyntheticClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/ApmSyntheticPaginators.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/ApmSyntheticPaginators.java index c468af1a413..2ce77efef18 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/ApmSyntheticPaginators.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/ApmSyntheticPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/AggregateNetworkDataDetails.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/AggregateNetworkDataDetails.java index cec674bf80e..432e644ef59 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/AggregateNetworkDataDetails.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/AggregateNetworkDataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/AggregatedNetworkData.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/AggregatedNetworkData.java index 026cc9f7656..8f9c0d06ff0 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/AggregatedNetworkData.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/AggregatedNetworkData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/AggregatedNetworkDataResult.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/AggregatedNetworkDataResult.java index 690115618b2..7bb14b7a79d 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/AggregatedNetworkDataResult.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/AggregatedNetworkDataResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/AvailabilityConfiguration.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/AvailabilityConfiguration.java index 24674cd48bc..c08306581c0 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/AvailabilityConfiguration.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/AvailabilityConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/AvailableCapability.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/AvailableCapability.java index bd81d649d0b..2d09a346dcb 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/AvailableCapability.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/AvailableCapability.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/BasicAuthenticationDetails.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/BasicAuthenticationDetails.java index e4bf6676d03..47a834ccbd2 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/BasicAuthenticationDetails.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/BasicAuthenticationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/BrowserMonitorConfiguration.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/BrowserMonitorConfiguration.java index 50442bc673a..df33b927d89 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/BrowserMonitorConfiguration.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/BrowserMonitorConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ClientCertificate.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ClientCertificate.java index 6ba72d91b22..751dbd0ed9d 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ClientCertificate.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ClientCertificate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ClientCertificateDetails.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ClientCertificateDetails.java index c4426af076f..d53078a2483 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ClientCertificateDetails.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ClientCertificateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ContentTypes.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ContentTypes.java index aaa555bcc21..cfa3b34a69e 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ContentTypes.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ContentTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/CreateDedicatedVantagePointDetails.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/CreateDedicatedVantagePointDetails.java index 14abf0d91dc..cc73dc64e31 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/CreateDedicatedVantagePointDetails.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/CreateDedicatedVantagePointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/CreateMonitorDetails.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/CreateMonitorDetails.java index 872a85d99a2..128bd9d7dfe 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/CreateMonitorDetails.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/CreateMonitorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/CreateOnPremiseVantagePointDetails.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/CreateOnPremiseVantagePointDetails.java index 0914c8d5bd4..3012decf674 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/CreateOnPremiseVantagePointDetails.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/CreateOnPremiseVantagePointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/CreateScriptDetails.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/CreateScriptDetails.java index 1585c0bbf37..12f531522e4 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/CreateScriptDetails.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/CreateScriptDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/CreateWorkerDetails.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/CreateWorkerDetails.java index 979c163810e..25c75dfcb7d 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/CreateWorkerDetails.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/CreateWorkerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DatabaseConnectionType.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DatabaseConnectionType.java index 86180d10fae..bb3d2f391d5 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DatabaseConnectionType.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DatabaseConnectionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DatabaseType.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DatabaseType.java index 142f897f2fa..265fbd6f1be 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DatabaseType.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DatabaseType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DatabaseWalletDetails.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DatabaseWalletDetails.java index 9ba7d3850dd..d693f3f15e1 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DatabaseWalletDetails.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DatabaseWalletDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DedicatedVantagePoint.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DedicatedVantagePoint.java index ce70c9838df..6ec9abb66d2 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DedicatedVantagePoint.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DedicatedVantagePoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DedicatedVantagePointCollection.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DedicatedVantagePointCollection.java index e2526bcf551..eb3acc9f4cc 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DedicatedVantagePointCollection.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DedicatedVantagePointCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DedicatedVantagePointStatus.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DedicatedVantagePointStatus.java index c9bfbdfa8b2..7e043ba9df0 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DedicatedVantagePointStatus.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DedicatedVantagePointStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DedicatedVantagePointSummary.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DedicatedVantagePointSummary.java index 6dbbdcf6145..1e7f61cb57a 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DedicatedVantagePointSummary.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DedicatedVantagePointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsConfiguration.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsConfiguration.java index 73dcb1606d9..c41e3de312e 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsConfiguration.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsRecordType.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsRecordType.java index d405971f2fc..f84cb002a93 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsRecordType.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsRecordType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsSecMonitorConfiguration.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsSecMonitorConfiguration.java index 98ea6941a1b..fbe825e0f10 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsSecMonitorConfiguration.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsSecMonitorConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsServerMonitorConfiguration.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsServerMonitorConfiguration.java index 436961054f9..45671311d10 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsServerMonitorConfiguration.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsServerMonitorConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsTraceMonitorConfiguration.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsTraceMonitorConfiguration.java index 45c2ed888b6..91a44978b06 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsTraceMonitorConfiguration.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsTraceMonitorConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsTransportProtocol.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsTransportProtocol.java index b5825a73413..020f6bcaf77 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsTransportProtocol.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DnsTransportProtocol.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DvpStackDetails.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DvpStackDetails.java index 34d7a31e9fb..7018f587d3a 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DvpStackDetails.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/DvpStackDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/FtpMonitorConfiguration.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/FtpMonitorConfiguration.java index 3235422253f..6e17d538918 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/FtpMonitorConfiguration.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/FtpMonitorConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/FtpProtocol.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/FtpProtocol.java index 7017b67b896..70fcb915472 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/FtpProtocol.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/FtpProtocol.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/FtpRequestType.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/FtpRequestType.java index 7b67045efd0..8548b2346cd 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/FtpRequestType.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/FtpRequestType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/GeoSummary.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/GeoSummary.java index 8732b6fd52f..15d4c96f143 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/GeoSummary.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/GeoSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Header.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Header.java index f213b45e0cf..8f878db8f81 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Header.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Header.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/IdentityInfoDetails.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/IdentityInfoDetails.java index 178100de7e1..25e69d64c8f 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/IdentityInfoDetails.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/IdentityInfoDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Link.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Link.java index c5d98b22ff0..62db37fb92f 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Link.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Link.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MaintenanceWindowSchedule.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MaintenanceWindowSchedule.java index 7db83ed70d0..5c5c60b08f8 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MaintenanceWindowSchedule.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MaintenanceWindowSchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Monitor.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Monitor.java index f9599cb7bd7..a5acdc15af7 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Monitor.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Monitor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorCollection.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorCollection.java index 365eb0fc387..231ddb7a4f8 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorCollection.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorConfiguration.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorConfiguration.java index c74764157ea..582f2679acc 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorConfiguration.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorResult.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorResult.java index e285df4ac15..cd82919e68a 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorResult.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorResultData.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorResultData.java index 009189907c6..e5ae50a72f9 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorResultData.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorResultData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorScriptParameter.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorScriptParameter.java index eed6e71fed6..cfcf47b7efe 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorScriptParameter.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorScriptParameter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorScriptParameterInfo.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorScriptParameterInfo.java index 75764bae1a5..5d9304af529 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorScriptParameterInfo.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorScriptParameterInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorStatus.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorStatus.java index ef6a2c3c83c..b3c9078059d 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorStatus.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorStatusCountMap.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorStatusCountMap.java index 14935ad55d7..b8395c6e4c9 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorStatusCountMap.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorStatusCountMap.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorSummary.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorSummary.java index 8a48a69c1dd..31cbdfef473 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorSummary.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorTypes.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorTypes.java index 110c0d73fe2..3e1efc4249b 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorTypes.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/MonitorTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/NetworkConfiguration.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/NetworkConfiguration.java index 7e2198f72d8..68024babc11 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/NetworkConfiguration.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/NetworkConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/NetworkMonitorConfiguration.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/NetworkMonitorConfiguration.java index a60d2af2d07..a0b0d355904 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/NetworkMonitorConfiguration.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/NetworkMonitorConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Node.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Node.java index aae048ebccc..f6b9f798fad 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Node.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Node.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OAuthSchemes.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OAuthSchemes.java index 8ef92c2f644..367575185c3 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OAuthSchemes.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OAuthSchemes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVantagePoint.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVantagePoint.java index c21e616633b..bdab242a450 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVantagePoint.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVantagePoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVantagePointCollection.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVantagePointCollection.java index f7562fd43e0..af058112a75 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVantagePointCollection.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVantagePointCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVantagePointSummary.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVantagePointSummary.java index 73fc8c29f2e..d834cf44690 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVantagePointSummary.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVantagePointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVantagePointWorkerStatus.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVantagePointWorkerStatus.java index 85afd4ede12..09e7a26d458 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVantagePointWorkerStatus.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVantagePointWorkerStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVantagePointWorkerType.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVantagePointWorkerType.java index 3dd9fa88ced..c9c2c320eef 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVantagePointWorkerType.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVantagePointWorkerType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVpWorkerVersionDetails.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVpWorkerVersionDetails.java index 3e2131d824e..6f988de3b5e 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVpWorkerVersionDetails.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OnPremiseVpWorkerVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OracleRMStack.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OracleRMStack.java index 3bcf3ea1a7b..ea35fb133fd 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OracleRMStack.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/OracleRMStack.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Password.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Password.java index 3ad697e3bab..34d3d850e8d 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Password.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Password.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/PasswordInText.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/PasswordInText.java index 8d2ab187aa4..17e697b9746 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/PasswordInText.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/PasswordInText.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/PasswordInVault.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/PasswordInVault.java index 3b5a951b208..2235bf3ff2b 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/PasswordInVault.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/PasswordInVault.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/PrivateKey.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/PrivateKey.java index 763d896dd27..1365eb1ce4f 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/PrivateKey.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/PrivateKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ProbeMode.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ProbeMode.java index f5c3cbf5ab6..d163797999e 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ProbeMode.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ProbeMode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Protocol.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Protocol.java index c56ada6bb2d..feed150badc 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Protocol.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Protocol.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/PublicVantagePointCollection.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/PublicVantagePointCollection.java index d7c39a61fe0..6c0072cb104 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/PublicVantagePointCollection.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/PublicVantagePointCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/PublicVantagePointSummary.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/PublicVantagePointSummary.java index 0d09cb28903..b7296aaf0f4 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/PublicVantagePointSummary.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/PublicVantagePointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RequestAuthenticationDetails.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RequestAuthenticationDetails.java index 2cfe40d2156..c2b135b4969 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RequestAuthenticationDetails.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RequestAuthenticationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RequestAuthenticationSchemes.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RequestAuthenticationSchemes.java index 095c3e35be6..8a99b8d4b60 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RequestAuthenticationSchemes.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RequestAuthenticationSchemes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RequestAuthenticationSchemesForScriptedRest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RequestAuthenticationSchemesForScriptedRest.java index b9cfb89755e..a7d4e40c897 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RequestAuthenticationSchemesForScriptedRest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RequestAuthenticationSchemesForScriptedRest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RequestMethods.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RequestMethods.java index 621d5686f2a..51222839677 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RequestMethods.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RequestMethods.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RequestQueryParam.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RequestQueryParam.java index 96141a81c97..cc13a59aee4 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RequestQueryParam.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RequestQueryParam.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RestMonitorConfiguration.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RestMonitorConfiguration.java index fc5bd9aa777..f86eee2b474 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RestMonitorConfiguration.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/RestMonitorConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/SchedulingPolicy.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/SchedulingPolicy.java index 9874267d667..5323440a096 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/SchedulingPolicy.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/SchedulingPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Script.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Script.java index ba9a8e0a165..3c5ac396af1 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Script.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Script.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptCollection.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptCollection.java index 12c299481a0..a175bc86c7b 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptCollection.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptParameter.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptParameter.java index 36924922c95..63412571331 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptParameter.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptParameter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptParameterInfo.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptParameterInfo.java index 9bcaa0bc205..7d73634da48 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptParameterInfo.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptParameterInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptSummary.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptSummary.java index b2de7ef2de8..d00696a32d7 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptSummary.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptedBrowserMonitorConfiguration.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptedBrowserMonitorConfiguration.java index 008f4fcd338..d09cc83fd47 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptedBrowserMonitorConfiguration.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptedBrowserMonitorConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptedRestMonitorConfiguration.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptedRestMonitorConfiguration.java index 155c4f363a2..cdc76187160 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptedRestMonitorConfiguration.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/ScriptedRestMonitorConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/SortOrders.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/SortOrders.java index b1ade72cc6b..b097147e6f1 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/SortOrders.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/SortOrders.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/SqlMonitorConfiguration.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/SqlMonitorConfiguration.java index 2ca985a0742..79615f23a1f 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/SqlMonitorConfiguration.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/SqlMonitorConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/UpdateDedicatedVantagePointDetails.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/UpdateDedicatedVantagePointDetails.java index 09bf70628a1..43e97eb9b45 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/UpdateDedicatedVantagePointDetails.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/UpdateDedicatedVantagePointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/UpdateMonitorDetails.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/UpdateMonitorDetails.java index a522489ba13..a3969f797ff 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/UpdateMonitorDetails.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/UpdateMonitorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/UpdateOnPremiseVantagePointDetails.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/UpdateOnPremiseVantagePointDetails.java index 0df16af7989..f1ebd535aae 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/UpdateOnPremiseVantagePointDetails.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/UpdateOnPremiseVantagePointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/UpdateScriptDetails.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/UpdateScriptDetails.java index 862f32824e9..5ac98a5140d 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/UpdateScriptDetails.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/UpdateScriptDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/UpdateWorkerDetails.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/UpdateWorkerDetails.java index bf314cd5c1e..17cbe8d2088 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/UpdateWorkerDetails.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/UpdateWorkerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/VantagePointExecution.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/VantagePointExecution.java index eca267dd353..bc6d7a90a28 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/VantagePointExecution.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/VantagePointExecution.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/VantagePointInfo.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/VantagePointInfo.java index 1c6bd1c806e..85277b597fc 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/VantagePointInfo.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/VantagePointInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/VantagePointNode.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/VantagePointNode.java index 54b10ff0de2..1972f0e7987 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/VantagePointNode.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/VantagePointNode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/VerifyText.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/VerifyText.java index e2c4a47391a..d123be34eea 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/VerifyText.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/VerifyText.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Worker.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Worker.java index 9eedc4f23bc..0b9e7c051ce 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Worker.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/Worker.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/WorkerCollection.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/WorkerCollection.java index 81d99ada88c..b3f8ec2c046 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/WorkerCollection.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/WorkerCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/WorkerMonitorList.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/WorkerMonitorList.java index 4fb59d454d3..3f0013e2a22 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/WorkerMonitorList.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/WorkerMonitorList.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/WorkerSummary.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/WorkerSummary.java index 102fcb0ec7d..d1255e5af7b 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/WorkerSummary.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/WorkerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/WorkersSummary.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/WorkersSummary.java index f3de407b6e7..4dea1cab559 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/WorkersSummary.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/model/WorkersSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.model; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/AggregateNetworkDataRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/AggregateNetworkDataRequest.java index df8a19e7b1a..7534979ee86 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/AggregateNetworkDataRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/AggregateNetworkDataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/CreateDedicatedVantagePointRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/CreateDedicatedVantagePointRequest.java index bac21639015..b005683512f 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/CreateDedicatedVantagePointRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/CreateDedicatedVantagePointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/CreateMonitorRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/CreateMonitorRequest.java index 0928b618c2b..2e3468087d5 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/CreateMonitorRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/CreateMonitorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/CreateOnPremiseVantagePointRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/CreateOnPremiseVantagePointRequest.java index b5ae9ee19ef..3ea0926c0a5 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/CreateOnPremiseVantagePointRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/CreateOnPremiseVantagePointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/CreateScriptRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/CreateScriptRequest.java index a4f97bfd2c9..e7588f249d7 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/CreateScriptRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/CreateScriptRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/CreateWorkerRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/CreateWorkerRequest.java index 6caef9aa94e..62f8dcd16e0 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/CreateWorkerRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/CreateWorkerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/DeleteDedicatedVantagePointRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/DeleteDedicatedVantagePointRequest.java index 5182afdf63e..0b238dfb544 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/DeleteDedicatedVantagePointRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/DeleteDedicatedVantagePointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/DeleteMonitorRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/DeleteMonitorRequest.java index bdee0e4949e..03a6d125d1a 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/DeleteMonitorRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/DeleteMonitorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/DeleteOnPremiseVantagePointRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/DeleteOnPremiseVantagePointRequest.java index c7e69d274c7..397daf05acf 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/DeleteOnPremiseVantagePointRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/DeleteOnPremiseVantagePointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/DeleteScriptRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/DeleteScriptRequest.java index a878a40e62f..610cd083cd7 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/DeleteScriptRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/DeleteScriptRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/DeleteWorkerRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/DeleteWorkerRequest.java index 19670e9b935..31fa88dbe5f 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/DeleteWorkerRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/DeleteWorkerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetDedicatedVantagePointRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetDedicatedVantagePointRequest.java index 7b400af834c..fd1c4aa3c44 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetDedicatedVantagePointRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetDedicatedVantagePointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetMonitorRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetMonitorRequest.java index a5ba80b5143..4f6408b1d22 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetMonitorRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetMonitorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetMonitorResultRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetMonitorResultRequest.java index 5a9139bf745..65eec53515d 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetMonitorResultRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetMonitorResultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetOnPremiseVantagePointRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetOnPremiseVantagePointRequest.java index 57f4a4c4f91..7c2de650a90 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetOnPremiseVantagePointRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetOnPremiseVantagePointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetScriptRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetScriptRequest.java index 542e4af0fee..a1f2665b7c1 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetScriptRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetScriptRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetWorkerRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetWorkerRequest.java index a74b2418be8..64b5960d3ba 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetWorkerRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/GetWorkerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListDedicatedVantagePointsRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListDedicatedVantagePointsRequest.java index 2d7fc77f1a1..76dd04309de 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListDedicatedVantagePointsRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListDedicatedVantagePointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListMonitorsRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListMonitorsRequest.java index f0e174df91b..130efc69525 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListMonitorsRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListMonitorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListOnPremiseVantagePointsRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListOnPremiseVantagePointsRequest.java index d7edc6b14bf..0551bf894a5 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListOnPremiseVantagePointsRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListOnPremiseVantagePointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListPublicVantagePointsRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListPublicVantagePointsRequest.java index 04b6771f416..6dc6f1e0657 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListPublicVantagePointsRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListPublicVantagePointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListScriptsRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListScriptsRequest.java index ffe632fccf0..558278f1ec5 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListScriptsRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListScriptsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListWorkersRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListWorkersRequest.java index 4e0f5bcfc68..623936ab286 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListWorkersRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/ListWorkersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/UpdateDedicatedVantagePointRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/UpdateDedicatedVantagePointRequest.java index b129163c86e..ca7fe8a78bd 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/UpdateDedicatedVantagePointRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/UpdateDedicatedVantagePointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/UpdateMonitorRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/UpdateMonitorRequest.java index 08eebd841f1..6ae4c252e42 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/UpdateMonitorRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/UpdateMonitorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/UpdateOnPremiseVantagePointRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/UpdateOnPremiseVantagePointRequest.java index ca09557d4f7..ff3a6c90ab9 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/UpdateOnPremiseVantagePointRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/UpdateOnPremiseVantagePointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/UpdateScriptRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/UpdateScriptRequest.java index f790fc8ca4f..2412c0e7c2d 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/UpdateScriptRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/UpdateScriptRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/UpdateWorkerRequest.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/UpdateWorkerRequest.java index fc8525bdf7d..138e83440b8 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/UpdateWorkerRequest.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/requests/UpdateWorkerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.requests; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/AggregateNetworkDataResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/AggregateNetworkDataResponse.java index 4b517032355..6e8ad38ee1e 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/AggregateNetworkDataResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/AggregateNetworkDataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/CreateDedicatedVantagePointResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/CreateDedicatedVantagePointResponse.java index 0091eb6cfde..817600c162d 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/CreateDedicatedVantagePointResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/CreateDedicatedVantagePointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/CreateMonitorResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/CreateMonitorResponse.java index 8022f2609ef..6a0edf9b942 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/CreateMonitorResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/CreateMonitorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/CreateOnPremiseVantagePointResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/CreateOnPremiseVantagePointResponse.java index 1f2761b65f6..6703451aa94 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/CreateOnPremiseVantagePointResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/CreateOnPremiseVantagePointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/CreateScriptResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/CreateScriptResponse.java index 3b5a6ff13df..164b7cec239 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/CreateScriptResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/CreateScriptResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/CreateWorkerResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/CreateWorkerResponse.java index 467a71fea69..7b0441f3beb 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/CreateWorkerResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/CreateWorkerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/DeleteDedicatedVantagePointResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/DeleteDedicatedVantagePointResponse.java index 224366363f1..2167c5855e6 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/DeleteDedicatedVantagePointResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/DeleteDedicatedVantagePointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/DeleteMonitorResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/DeleteMonitorResponse.java index b689ec2f457..6ea28bee738 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/DeleteMonitorResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/DeleteMonitorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/DeleteOnPremiseVantagePointResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/DeleteOnPremiseVantagePointResponse.java index a474a3a5cba..899b27aaad3 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/DeleteOnPremiseVantagePointResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/DeleteOnPremiseVantagePointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/DeleteScriptResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/DeleteScriptResponse.java index ebab9d009c0..24a5de0c3d6 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/DeleteScriptResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/DeleteScriptResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/DeleteWorkerResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/DeleteWorkerResponse.java index 271a7d504b8..ced28f8f522 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/DeleteWorkerResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/DeleteWorkerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetDedicatedVantagePointResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetDedicatedVantagePointResponse.java index 1d48801c728..24719239beb 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetDedicatedVantagePointResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetDedicatedVantagePointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetMonitorResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetMonitorResponse.java index a92712bde85..af5f36d6a21 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetMonitorResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetMonitorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetMonitorResultResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetMonitorResultResponse.java index 8e0618ff105..4c48df5a744 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetMonitorResultResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetMonitorResultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetOnPremiseVantagePointResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetOnPremiseVantagePointResponse.java index 5f30bfa4972..f77429c7b45 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetOnPremiseVantagePointResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetOnPremiseVantagePointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetScriptResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetScriptResponse.java index 13c23650b92..dc27d95d892 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetScriptResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetScriptResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetWorkerResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetWorkerResponse.java index f0e460715c6..eea7878f42f 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetWorkerResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/GetWorkerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListDedicatedVantagePointsResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListDedicatedVantagePointsResponse.java index 2589d1a6501..ce0bc153294 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListDedicatedVantagePointsResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListDedicatedVantagePointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListMonitorsResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListMonitorsResponse.java index 6112c979cb7..0f270e2b849 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListMonitorsResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListMonitorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListOnPremiseVantagePointsResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListOnPremiseVantagePointsResponse.java index f836e09fe55..7e585247932 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListOnPremiseVantagePointsResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListOnPremiseVantagePointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListPublicVantagePointsResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListPublicVantagePointsResponse.java index 0fac91cd20f..3da3ead0d20 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListPublicVantagePointsResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListPublicVantagePointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListScriptsResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListScriptsResponse.java index d95fb2ebe9b..757de96257d 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListScriptsResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListScriptsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListWorkersResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListWorkersResponse.java index 208e199b10c..9cb3617d484 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListWorkersResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/ListWorkersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/UpdateDedicatedVantagePointResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/UpdateDedicatedVantagePointResponse.java index 6138478ddea..a6ebe842ba5 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/UpdateDedicatedVantagePointResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/UpdateDedicatedVantagePointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/UpdateMonitorResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/UpdateMonitorResponse.java index a70cebfb5a7..a56a43652cc 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/UpdateMonitorResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/UpdateMonitorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/UpdateOnPremiseVantagePointResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/UpdateOnPremiseVantagePointResponse.java index a50b136594b..11a99253e62 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/UpdateOnPremiseVantagePointResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/UpdateOnPremiseVantagePointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/UpdateScriptResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/UpdateScriptResponse.java index 3270f1128ef..f7f26cca4f5 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/UpdateScriptResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/UpdateScriptResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/UpdateWorkerResponse.java b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/UpdateWorkerResponse.java index 6defcd8f79b..b6da3541b08 100644 --- a/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/UpdateWorkerResponse.java +++ b/bmc-apmsynthetics/src/main/java/com/oracle/bmc/apmsynthetics/responses/UpdateWorkerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmsynthetics.responses; diff --git a/bmc-apmsynthetics/src/main/resources/com/oracle/bmc/apmsynthetics/client.properties b/bmc-apmsynthetics/src/main/resources/com/oracle/bmc/apmsynthetics/client.properties index 2cf36acb269..d08316a30f3 100644 --- a/bmc-apmsynthetics/src/main/resources/com/oracle/bmc/apmsynthetics/client.properties +++ b/bmc-apmsynthetics/src/main/resources/com/oracle/bmc/apmsynthetics/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-apmtraces/pom.xml b/bmc-apmtraces/pom.xml index d3fae6e1cfa..b56a2fd33c0 100644 --- a/bmc-apmtraces/pom.xml +++ b/bmc-apmtraces/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-apmtraces @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/Attributes.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/Attributes.java index 04b74f01f1b..f5e78247400 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/Attributes.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/Attributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/AttributesAsync.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/AttributesAsync.java index 8e6cb51ccff..577995658cd 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/AttributesAsync.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/AttributesAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/AttributesAsyncClient.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/AttributesAsyncClient.java index 78034ab8df1..6d313f37166 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/AttributesAsyncClient.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/AttributesAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/AttributesClient.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/AttributesClient.java index ac10e5620b2..989634591c7 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/AttributesClient.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/AttributesClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/Query.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/Query.java index 55e2a6960d0..f25fbc56e0e 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/Query.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/Query.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/QueryAsync.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/QueryAsync.java index f9fc127542f..486b946a66b 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/QueryAsync.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/QueryAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/QueryAsyncClient.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/QueryAsyncClient.java index 4d3c260c953..e99b1eae0dd 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/QueryAsyncClient.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/QueryAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/QueryClient.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/QueryClient.java index b1b9e966cee..a3d1e698869 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/QueryClient.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/QueryClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/QueryPaginators.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/QueryPaginators.java index 4b645cb2180..6d4125ce340 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/QueryPaginators.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/QueryPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQuery.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQuery.java index eae18619023..bbfa70f5ffe 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQuery.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQuery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQueryAsync.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQueryAsync.java index 7f533a85b30..337c24e2cc0 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQueryAsync.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQueryAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQueryAsyncClient.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQueryAsyncClient.java index 8a9b8ae0b54..eed2bc2303c 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQueryAsyncClient.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQueryAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQueryClient.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQueryClient.java index 44ec943bc6e..bc644741d70 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQueryClient.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQueryClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQueryPaginators.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQueryPaginators.java index de9d091db7a..b15243b7f9c 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQueryPaginators.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQueryPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQueryWaiters.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQueryWaiters.java index 06c3f95dc5b..4836e568195 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQueryWaiters.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/ScheduledQueryWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/Trace.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/Trace.java index 08c1c573692..64e934e9ba9 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/Trace.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/Trace.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/TraceAsync.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/TraceAsync.java index 588cb20d197..1e5f9ca3026 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/TraceAsync.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/TraceAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/TraceAsyncClient.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/TraceAsyncClient.java index 5a6bb352358..c79f91f846d 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/TraceAsyncClient.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/TraceAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/TraceClient.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/TraceClient.java index b60ba8fbae8..d7c0d61c876 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/TraceClient.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/TraceClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AggregatedSnapshot.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AggregatedSnapshot.java index 62221c879c2..1f729450ddb 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AggregatedSnapshot.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AggregatedSnapshot.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AggregatedStackTrace.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AggregatedStackTrace.java index 9e9cfe8cd62..732f4818176 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AggregatedStackTrace.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AggregatedStackTrace.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Attribute.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Attribute.java index e1e0265adc0..2df06789467 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Attribute.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Attribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributeMetadata.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributeMetadata.java index 75a141968b7..c9a174a8449 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributeMetadata.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributeMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributePinResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributePinResponse.java index 115b871bef2..6c0c711349d 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributePinResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributePinResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributeResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributeResponse.java index 775fbf5aa0b..8bace9bd920 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributeResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributeUnpinResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributeUnpinResponse.java index 9c79268d8d8..63b283b155e 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributeUnpinResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributeUnpinResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributeUpdateNotesResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributeUpdateNotesResponse.java index fbeda4a3f14..7c631771040 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributeUpdateNotesResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributeUpdateNotesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributeUpdateResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributeUpdateResponse.java index 22a7b1f4e49..e9fd316aa3b 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributeUpdateResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AttributeUpdateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AutoActivateStatus.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AutoActivateStatus.java index 5317d767408..51e386863a2 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AutoActivateStatus.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AutoActivateStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AutoActivateToggleStatus.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AutoActivateToggleStatus.java index 2674b465598..9dc196b24d9 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AutoActivateToggleStatus.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/AutoActivateToggleStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkActivateAttributeDetail.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkActivateAttributeDetail.java index af7c5bbd5e5..59e762fd272 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkActivateAttributeDetail.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkActivateAttributeDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkActivateAttributeDetails.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkActivateAttributeDetails.java index ccc18bb3ba4..f78934d364c 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkActivateAttributeDetails.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkActivateAttributeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkActivationMetadata.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkActivationMetadata.java index be5bbf3e2e7..d846cc09f52 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkActivationMetadata.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkActivationMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkActivationStatus.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkActivationStatus.java index 92ee90793de..58f09a5a021 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkActivationStatus.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkActivationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkDeActivateAttributeDetail.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkDeActivateAttributeDetail.java index 8fb9d1fc929..205ffce4a87 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkDeActivateAttributeDetail.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkDeActivateAttributeDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkDeActivateAttributeDetails.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkDeActivateAttributeDetails.java index 04830f1b76e..225e304b637 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkDeActivateAttributeDetails.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkDeActivateAttributeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkDeActivationMetadata.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkDeActivationMetadata.java index 8819c7767ff..b9320716e23 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkDeActivationMetadata.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkDeActivationMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkDeActivationStatus.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkDeActivationStatus.java index 1a7ee3319fb..974db1c15e7 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkDeActivationStatus.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkDeActivationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkPinAttributeDetail.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkPinAttributeDetail.java index 911062dac5d..c3077343ed0 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkPinAttributeDetail.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkPinAttributeDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkPinAttributeDetails.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkPinAttributeDetails.java index 9265b641713..2e689f1cf99 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkPinAttributeDetails.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkPinAttributeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkPinMetadata.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkPinMetadata.java index fc277115a3c..f49944d29e6 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkPinMetadata.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkPinMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkPinStatus.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkPinStatus.java index 41be6dab6ab..af2f8fb1a9b 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkPinStatus.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkPinStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUnpinAttributeDetail.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUnpinAttributeDetail.java index 5a1c1f54332..c5ed4215091 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUnpinAttributeDetail.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUnpinAttributeDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUnpinAttributeDetails.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUnpinAttributeDetails.java index e5045eba10f..f626acb71ca 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUnpinAttributeDetails.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUnpinAttributeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUnpinMetadata.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUnpinMetadata.java index 78a4fcadf62..9aa55541762 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUnpinMetadata.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUnpinMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUnpinStatus.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUnpinStatus.java index f72f5bdd962..22cb1dd217a 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUnpinStatus.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUnpinStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeDetail.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeDetail.java index d6d86285d02..da4ee038edb 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeDetail.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeDetails.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeDetails.java index 72d85502285..8b555efdc36 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeDetails.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeMetadata.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeMetadata.java index 804c7de350e..ae15efd4614 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeMetadata.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeNotesDetail.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeNotesDetail.java index 0158dfe5517..14c6dcb4930 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeNotesDetail.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeNotesDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeNotesDetails.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeNotesDetails.java index 6acb093ebe6..8b52cbfdb90 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeNotesDetails.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeNotesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeStatus.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeStatus.java index 52a6e18f5d8..a8b4182a6dd 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeStatus.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateAttributeStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateNotesMetadata.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateNotesMetadata.java index 29b6011aa40..7a99a928541 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateNotesMetadata.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateNotesMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateNotesStatus.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateNotesStatus.java index 313f1f29816..ac0eab890cb 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateNotesStatus.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/BulkUpdateNotesStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/CreateScheduledQueryDetails.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/CreateScheduledQueryDetails.java index 3fcef1c1537..afd8ccf47f6 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/CreateScheduledQueryDetails.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/CreateScheduledQueryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/CustomMetric.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/CustomMetric.java index c2c26ceeb53..ca15f3e1947 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/CustomMetric.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/CustomMetric.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/LifecycleStates.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/LifecycleStates.java index 090e03dc00b..956a6021977 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/LifecycleStates.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/LifecycleStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Log.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Log.java index cbc87dfd5c6..adff7bb0741 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Log.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Log.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ObjectStorage.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ObjectStorage.java index 98b210dbc4e..8d2fdd600af 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ObjectStorage.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ObjectStorage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryDetails.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryDetails.java index 70a4179d0db..b3a9bd43da5 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryDetails.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultMetadataSummary.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultMetadataSummary.java index aeef14fbc89..8afb02ec989 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultMetadataSummary.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultMetadataSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultResponse.java index 01c9c566633..363e8c0027e 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultRow.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultRow.java index 48171dd0f99..0b76e9077ed 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultRow.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultRow.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultRowTypeSummary.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultRowTypeSummary.java index 9e25810bc1f..6f91d0e4a1b 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultRowTypeSummary.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultRowTypeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultWarning.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultWarning.java index be8b498c34d..e1f4e79d5fe 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultWarning.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultWarning.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultsGroupedBySummary.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultsGroupedBySummary.java index 6be240dd0ec..2cc2c97dc3f 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultsGroupedBySummary.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultsGroupedBySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultsOrderedBySummary.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultsOrderedBySummary.java index 73053389182..0b06da017e2 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultsOrderedBySummary.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultsOrderedBySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultsTopologyInfo.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultsTopologyInfo.java index c25048a9693..e4e135cba2e 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultsTopologyInfo.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultsTopologyInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultsTopologyNodeInfo.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultsTopologyNodeInfo.java index af04a8f380c..74c40f53273 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultsTopologyNodeInfo.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QueryResultsTopologyNodeInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QuickPickSummary.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QuickPickSummary.java index e39edb0102f..4813dd86f31 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QuickPickSummary.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/QuickPickSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQuery.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQuery.java index 0bec3135f2e..cccb0234871 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQuery.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQuery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQueryCollection.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQueryCollection.java index b047f5764fc..4e2f927c530 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQueryCollection.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQueryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQueryProcessingConfig.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQueryProcessingConfig.java index ae97c965ed2..9e3dc2c9182 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQueryProcessingConfig.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQueryProcessingConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQueryProcessingSubType.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQueryProcessingSubType.java index d326075fe94..d949741310e 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQueryProcessingSubType.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQueryProcessingSubType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQueryProcessingType.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQueryProcessingType.java index 60340a0a42f..c604a7b8a09 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQueryProcessingType.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQueryProcessingType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQueryRetentionCriteria.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQueryRetentionCriteria.java index c5c960497d1..ab19cf02486 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQueryRetentionCriteria.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQueryRetentionCriteria.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQuerySummary.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQuerySummary.java index 82f084bb087..606a0546607 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQuerySummary.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ScheduledQuerySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/SnapshotDetail.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/SnapshotDetail.java index 5588570bdc6..cb5b7e1e164 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/SnapshotDetail.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/SnapshotDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/SortOrder.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/SortOrder.java index c7d5bbdbd3e..7542bdf5742 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/SortOrder.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Span.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Span.java index b33dededda2..fb1d5e6c1e4 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Span.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Span.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/SpanLog.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/SpanLog.java index 719d68a5f1e..989560fb796 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/SpanLog.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/SpanLog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/SpanLogCollection.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/SpanLogCollection.java index 06428c4c461..9eea0a72ba0 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/SpanLogCollection.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/SpanLogCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/SpanSnapshot.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/SpanSnapshot.java index d18122a80f6..eb2625e41dc 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/SpanSnapshot.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/SpanSnapshot.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/StackTraceElement.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/StackTraceElement.java index 15dfd70e009..b0983ff126b 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/StackTraceElement.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/StackTraceElement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Streaming.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Streaming.java index 9bad51300de..7246339ccb0 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Streaming.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Streaming.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Tag.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Tag.java index fa5832d6908..ff8a26d4ce0 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Tag.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Tag.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/TagMetadata.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/TagMetadata.java index 2889053bda4..fec7e8e929e 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/TagMetadata.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/TagMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ThreadSnapshot.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ThreadSnapshot.java index 28669163b3a..5a4185e283b 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ThreadSnapshot.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/ThreadSnapshot.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Trace.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Trace.java index c81a6074251..585d4639a59 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Trace.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/Trace.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/TraceServiceSummary.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/TraceServiceSummary.java index 15534b00a50..60fb1e76e7f 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/TraceServiceSummary.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/TraceServiceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/TraceSnapshot.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/TraceSnapshot.java index f4c15b9a72d..7fc7dc989e9 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/TraceSnapshot.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/TraceSnapshot.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/TraceSpanSummary.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/TraceSpanSummary.java index 71d17effba2..da76eb0f813 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/TraceSpanSummary.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/TraceSpanSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/UpdateScheduledQueryDetails.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/UpdateScheduledQueryDetails.java index 86b946f9ed9..7c04687a92a 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/UpdateScheduledQueryDetails.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/model/UpdateScheduledQueryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.model; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkActivateAttributeRequest.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkActivateAttributeRequest.java index 993f918e7aa..3aa396784eb 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkActivateAttributeRequest.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkActivateAttributeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.requests; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkDeActivateAttributeRequest.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkDeActivateAttributeRequest.java index 5500d2fb8b2..b0948ef2c0d 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkDeActivateAttributeRequest.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkDeActivateAttributeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.requests; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkPinAttributeRequest.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkPinAttributeRequest.java index fe45ade15b6..4683fc1b3ad 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkPinAttributeRequest.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkPinAttributeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.requests; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkUnpinAttributeRequest.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkUnpinAttributeRequest.java index 048080d6d96..7853cbf31db 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkUnpinAttributeRequest.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkUnpinAttributeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.requests; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkUpdateAttributeNotesRequest.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkUpdateAttributeNotesRequest.java index 0817eabc300..d7afd7c1dd8 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkUpdateAttributeNotesRequest.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkUpdateAttributeNotesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.requests; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkUpdateAttributeRequest.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkUpdateAttributeRequest.java index d038b34e179..ec0ecd5cb4e 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkUpdateAttributeRequest.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/BulkUpdateAttributeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.requests; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/CreateScheduledQueryRequest.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/CreateScheduledQueryRequest.java index 8cf246eb59f..6b0403a8a50 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/CreateScheduledQueryRequest.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/CreateScheduledQueryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.requests; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/DeleteScheduledQueryRequest.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/DeleteScheduledQueryRequest.java index c8c3531852a..86481ededf7 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/DeleteScheduledQueryRequest.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/DeleteScheduledQueryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.requests; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetAggregatedSnapshotRequest.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetAggregatedSnapshotRequest.java index 62e3d05e140..c29b78a8a89 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetAggregatedSnapshotRequest.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetAggregatedSnapshotRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.requests; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetLogRequest.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetLogRequest.java index 9e3af7d149b..40152d64747 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetLogRequest.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetLogRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.requests; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetScheduledQueryRequest.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetScheduledQueryRequest.java index 4f6bfbec498..6eb40386b3f 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetScheduledQueryRequest.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetScheduledQueryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.requests; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetSpanRequest.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetSpanRequest.java index 35b934273e1..d15fe00ec2a 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetSpanRequest.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetSpanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.requests; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetStatusAutoActivateRequest.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetStatusAutoActivateRequest.java index 2b9cacf0d32..c5cbdb843d2 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetStatusAutoActivateRequest.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetStatusAutoActivateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.requests; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetTraceRequest.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetTraceRequest.java index e94487985ea..c27ffac6665 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetTraceRequest.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetTraceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.requests; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetTraceSnapshotRequest.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetTraceSnapshotRequest.java index b2c8daf0b3d..ee23696d7c0 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetTraceSnapshotRequest.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/GetTraceSnapshotRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.requests; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/ListQuickPicksRequest.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/ListQuickPicksRequest.java index 5c6434340e5..a5bca83757c 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/ListQuickPicksRequest.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/ListQuickPicksRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.requests; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/ListScheduledQueriesRequest.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/ListScheduledQueriesRequest.java index a762a00e183..2b309e1ba03 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/ListScheduledQueriesRequest.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/ListScheduledQueriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.requests; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/PutToggleAutoActivateRequest.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/PutToggleAutoActivateRequest.java index 0c4684000f4..94bd8b6f063 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/PutToggleAutoActivateRequest.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/PutToggleAutoActivateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.requests; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/QueryRequest.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/QueryRequest.java index 1729b09daf4..5ede094a8a6 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/QueryRequest.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/QueryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.requests; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/UpdateScheduledQueryRequest.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/UpdateScheduledQueryRequest.java index f3255da5752..e3327759573 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/UpdateScheduledQueryRequest.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/requests/UpdateScheduledQueryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.requests; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkActivateAttributeResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkActivateAttributeResponse.java index 169378b8d17..521376b5658 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkActivateAttributeResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkActivateAttributeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.responses; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkDeActivateAttributeResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkDeActivateAttributeResponse.java index 386722616b7..e445fd94337 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkDeActivateAttributeResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkDeActivateAttributeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.responses; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkPinAttributeResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkPinAttributeResponse.java index 0b8f86e30a4..fa9453c9510 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkPinAttributeResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkPinAttributeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.responses; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkUnpinAttributeResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkUnpinAttributeResponse.java index 3c2f2a9a24b..962503087f9 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkUnpinAttributeResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkUnpinAttributeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.responses; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkUpdateAttributeNotesResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkUpdateAttributeNotesResponse.java index a8c211b2b0c..0b35a0d1927 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkUpdateAttributeNotesResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkUpdateAttributeNotesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.responses; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkUpdateAttributeResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkUpdateAttributeResponse.java index cb1154085f5..9e8e30c198c 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkUpdateAttributeResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/BulkUpdateAttributeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.responses; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/CreateScheduledQueryResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/CreateScheduledQueryResponse.java index 1f7a3a49d55..a1e81cdb4b9 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/CreateScheduledQueryResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/CreateScheduledQueryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.responses; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/DeleteScheduledQueryResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/DeleteScheduledQueryResponse.java index 59454ff479c..d28fde93d5b 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/DeleteScheduledQueryResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/DeleteScheduledQueryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.responses; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetAggregatedSnapshotResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetAggregatedSnapshotResponse.java index 7e119863cae..9d768ba150f 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetAggregatedSnapshotResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetAggregatedSnapshotResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.responses; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetLogResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetLogResponse.java index 2f3560a1368..5ace5310fa8 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetLogResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetLogResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.responses; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetScheduledQueryResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetScheduledQueryResponse.java index 5b92be8e5e9..b6c716a3e70 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetScheduledQueryResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetScheduledQueryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.responses; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetSpanResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetSpanResponse.java index fb44d3b9f74..0c81bb222ff 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetSpanResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetSpanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.responses; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetStatusAutoActivateResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetStatusAutoActivateResponse.java index 7383c23a6e5..fbdafa2aec1 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetStatusAutoActivateResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetStatusAutoActivateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.responses; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetTraceResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetTraceResponse.java index 93f328aeb98..910280d1997 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetTraceResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetTraceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.responses; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetTraceSnapshotResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetTraceSnapshotResponse.java index 651d1afbe43..a359637665f 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetTraceSnapshotResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/GetTraceSnapshotResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.responses; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/ListQuickPicksResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/ListQuickPicksResponse.java index 50691d7484c..8d47ff04b56 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/ListQuickPicksResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/ListQuickPicksResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.responses; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/ListScheduledQueriesResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/ListScheduledQueriesResponse.java index 0913a4a5c3c..f094d01742d 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/ListScheduledQueriesResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/ListScheduledQueriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.responses; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/PutToggleAutoActivateResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/PutToggleAutoActivateResponse.java index e183085e066..8054e63213e 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/PutToggleAutoActivateResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/PutToggleAutoActivateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.responses; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/QueryResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/QueryResponse.java index b451deb2f1b..6702d149e53 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/QueryResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/QueryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.responses; diff --git a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/UpdateScheduledQueryResponse.java b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/UpdateScheduledQueryResponse.java index 6e42f256b4f..4d96b517b6b 100644 --- a/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/UpdateScheduledQueryResponse.java +++ b/bmc-apmtraces/src/main/java/com/oracle/bmc/apmtraces/responses/UpdateScheduledQueryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.apmtraces.responses; diff --git a/bmc-apmtraces/src/main/resources/com/oracle/bmc/apmtraces/client.properties b/bmc-apmtraces/src/main/resources/com/oracle/bmc/apmtraces/client.properties index 2cf36acb269..d08316a30f3 100644 --- a/bmc-apmtraces/src/main/resources/com/oracle/bmc/apmtraces/client.properties +++ b/bmc-apmtraces/src/main/resources/com/oracle/bmc/apmtraces/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-appmgmtcontrol/pom.xml b/bmc-appmgmtcontrol/pom.xml index 09ee5faafd9..2a6c0a7aff4 100644 --- a/bmc-appmgmtcontrol/pom.xml +++ b/bmc-appmgmtcontrol/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-appmgmtcontrol @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControl.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControl.java index 05a5828cd3f..a0604f4cb70 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControl.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControl.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControlAsync.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControlAsync.java index 8e18ed78771..27a8062d3c8 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControlAsync.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControlAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControlAsyncClient.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControlAsyncClient.java index 80c67f89482..7bf5b519ec6 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControlAsyncClient.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControlAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControlClient.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControlClient.java index c4810e00359..65e2316b828 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControlClient.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControlClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControlPaginators.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControlPaginators.java index 4c080290159..002f25557d0 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControlPaginators.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControlPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControlWaiters.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControlWaiters.java index a30bb2d05e3..12037bbb113 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControlWaiters.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/AppmgmtControlWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/ActionType.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/ActionType.java index c4c76bd3059..51f3fdb614f 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/ActionType.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.model; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/MonitoredInstance.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/MonitoredInstance.java index ab99244fbbc..a54f039c980 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/MonitoredInstance.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/MonitoredInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.model; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/MonitoredInstanceCollection.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/MonitoredInstanceCollection.java index 8dfad125a9d..58ab6c7961e 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/MonitoredInstanceCollection.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/MonitoredInstanceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.model; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/MonitoredInstanceSummary.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/MonitoredInstanceSummary.java index c4ebff60563..f4edf2002cb 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/MonitoredInstanceSummary.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/MonitoredInstanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.model; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/OperationStatus.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/OperationStatus.java index fb98e8272e8..1eb1b7be8cc 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/OperationStatus.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.model; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/OperationType.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/OperationType.java index 7ec3f4d5b6b..00aac780e3e 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/OperationType.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.model; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/SortOrder.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/SortOrder.java index efae7781f7f..523e5bd3880 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/SortOrder.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.model; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequest.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequest.java index 1ee57cd5b5e..73270ed06fc 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequest.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.model; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestError.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestError.java index ff766631c1f..e52a9281838 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestError.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.model; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestErrorCollection.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestErrorCollection.java index 3dc261c389e..d199146f6e6 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestErrorCollection.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.model; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestLogEntry.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestLogEntry.java index f57d4d4b0ee..1b243454be8 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestLogEntry.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.model; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestLogEntryCollection.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestLogEntryCollection.java index be99ba5ef6a..ebb3b091f97 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestLogEntryCollection.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.model; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestResource.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestResource.java index 80afdc66215..a6b46a3331d 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestResource.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.model; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestSummary.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestSummary.java index b056bf23f62..63bc51d1626 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestSummary.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.model; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestSummaryCollection.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestSummaryCollection.java index 743189dfb5e..bffe91907a6 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestSummaryCollection.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.model; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/ActivateMonitoringPluginRequest.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/ActivateMonitoringPluginRequest.java index 769178e9044..a6ef0ce6708 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/ActivateMonitoringPluginRequest.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/ActivateMonitoringPluginRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.requests; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/GetMonitoredInstanceRequest.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/GetMonitoredInstanceRequest.java index c0d88c4cd2a..9d9a7ca4641 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/GetMonitoredInstanceRequest.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/GetMonitoredInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.requests; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/GetWorkRequestRequest.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/GetWorkRequestRequest.java index e72029d106a..d1cee530b43 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/GetWorkRequestRequest.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.requests; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/ListMonitoredInstancesRequest.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/ListMonitoredInstancesRequest.java index 9b03547eacb..1c0eb2ad52e 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/ListMonitoredInstancesRequest.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/ListMonitoredInstancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.requests; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/ListWorkRequestErrorsRequest.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/ListWorkRequestErrorsRequest.java index 84a01e03627..c2df72c40df 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.requests; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/ListWorkRequestLogsRequest.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/ListWorkRequestLogsRequest.java index 0377b40f19c..422d1a7cef4 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/ListWorkRequestLogsRequest.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.requests; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/ListWorkRequestsRequest.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/ListWorkRequestsRequest.java index 3e46ede1698..f7e27395559 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/ListWorkRequestsRequest.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.requests; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/PublishTopProcessesMetricsRequest.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/PublishTopProcessesMetricsRequest.java index 39f20fb0453..e201cfb34eb 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/PublishTopProcessesMetricsRequest.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/requests/PublishTopProcessesMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.requests; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/ActivateMonitoringPluginResponse.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/ActivateMonitoringPluginResponse.java index 0f802dc88a1..f2d582e695e 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/ActivateMonitoringPluginResponse.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/ActivateMonitoringPluginResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.responses; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/GetMonitoredInstanceResponse.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/GetMonitoredInstanceResponse.java index 06017d70a6f..7c834e561f3 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/GetMonitoredInstanceResponse.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/GetMonitoredInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.responses; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/GetWorkRequestResponse.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/GetWorkRequestResponse.java index 7112af4b1fb..41fbc349120 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/GetWorkRequestResponse.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.responses; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/ListMonitoredInstancesResponse.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/ListMonitoredInstancesResponse.java index b637c5602a9..87f3c076f44 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/ListMonitoredInstancesResponse.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/ListMonitoredInstancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.responses; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/ListWorkRequestErrorsResponse.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/ListWorkRequestErrorsResponse.java index 04c74a64c01..1c0ee1ce39c 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.responses; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/ListWorkRequestLogsResponse.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/ListWorkRequestLogsResponse.java index ecbf0a081ba..45f0be455d5 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/ListWorkRequestLogsResponse.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.responses; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/ListWorkRequestsResponse.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/ListWorkRequestsResponse.java index d20b5893b7b..d1d8c5d5a02 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/ListWorkRequestsResponse.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.responses; diff --git a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/PublishTopProcessesMetricsResponse.java b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/PublishTopProcessesMetricsResponse.java index 0a48837b4d2..be748a3f05a 100644 --- a/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/PublishTopProcessesMetricsResponse.java +++ b/bmc-appmgmtcontrol/src/main/java/com/oracle/bmc/appmgmtcontrol/responses/PublishTopProcessesMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.appmgmtcontrol.responses; diff --git a/bmc-appmgmtcontrol/src/main/resources/com/oracle/bmc/appmgmtcontrol/client.properties b/bmc-appmgmtcontrol/src/main/resources/com/oracle/bmc/appmgmtcontrol/client.properties index 07b88388e14..c8f200afda2 100644 --- a/bmc-appmgmtcontrol/src/main/resources/com/oracle/bmc/appmgmtcontrol/client.properties +++ b/bmc-appmgmtcontrol/src/main/resources/com/oracle/bmc/appmgmtcontrol/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-artifacts/pom.xml b/bmc-artifacts/pom.xml index 55e73408541..65f7414ad65 100644 --- a/bmc-artifacts/pom.xml +++ b/bmc-artifacts/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-artifacts @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/Artifacts.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/Artifacts.java index 125d9be51e1..c99c895ffad 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/Artifacts.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/Artifacts.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/ArtifactsAsync.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/ArtifactsAsync.java index 3b17c464ad5..23ceec84cf2 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/ArtifactsAsync.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/ArtifactsAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/ArtifactsAsyncClient.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/ArtifactsAsyncClient.java index 0349446ce31..f2b550f0f39 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/ArtifactsAsyncClient.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/ArtifactsAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/ArtifactsClient.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/ArtifactsClient.java index a04b9b76787..66b0ba83271 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/ArtifactsClient.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/ArtifactsClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/ArtifactsPaginators.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/ArtifactsPaginators.java index d15de6507fe..35500b54c6c 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/ArtifactsPaginators.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/ArtifactsPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/ArtifactsWaiters.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/ArtifactsWaiters.java index e0b476d11ae..ff7f2718a1a 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/ArtifactsWaiters.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/ArtifactsWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ChangeContainerRepositoryCompartmentDetails.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ChangeContainerRepositoryCompartmentDetails.java index 3cb22124ced..ec265038d46 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ChangeContainerRepositoryCompartmentDetails.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ChangeContainerRepositoryCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ChangeRepositoryCompartmentDetails.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ChangeRepositoryCompartmentDetails.java index 2d342683073..41513b88515 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ChangeRepositoryCompartmentDetails.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ChangeRepositoryCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerConfiguration.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerConfiguration.java index 50929a76ccb..c5544576b29 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerConfiguration.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImage.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImage.java index 47aabe94b2b..de823e445fa 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImage.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageCollection.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageCollection.java index 5910c581bb1..f6c5485dc10 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageCollection.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageLayer.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageLayer.java index 5b03a7b21ba..9b96a3eb6a8 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageLayer.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageLayer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageSignature.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageSignature.java index 9c9b865f3cf..0d19a39c697 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageSignature.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageSignature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageSignatureCollection.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageSignatureCollection.java index ba50b8a7a71..51e6a5f5da2 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageSignatureCollection.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageSignatureCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageSignatureSummary.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageSignatureSummary.java index dcb1d79be4f..fc3a2f2cfda 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageSignatureSummary.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageSignatureSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageSummary.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageSummary.java index 1ee174a889e..7fe4d157fff 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageSummary.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerImageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerRepository.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerRepository.java index 3cf67da14c9..85dfaf59697 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerRepository.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerRepository.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerRepositoryCollection.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerRepositoryCollection.java index 81ff5fe805d..377da09dab5 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerRepositoryCollection.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerRepositoryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerRepositoryReadme.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerRepositoryReadme.java index 7167a4c8261..b59d2af3e7e 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerRepositoryReadme.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerRepositoryReadme.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerRepositorySummary.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerRepositorySummary.java index 36ade8d8072..56b4cf99ac3 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerRepositorySummary.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerRepositorySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerVersion.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerVersion.java index d06533d2840..8169d6a401b 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerVersion.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/ContainerVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/CreateContainerImageSignatureDetails.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/CreateContainerImageSignatureDetails.java index 72f4ccd0910..3c8266c743e 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/CreateContainerImageSignatureDetails.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/CreateContainerImageSignatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/CreateContainerRepositoryDetails.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/CreateContainerRepositoryDetails.java index a56ca57a4fa..828a683ace7 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/CreateContainerRepositoryDetails.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/CreateContainerRepositoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/CreateGenericRepositoryDetails.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/CreateGenericRepositoryDetails.java index 7ac509d3f51..a2378aa2223 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/CreateGenericRepositoryDetails.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/CreateGenericRepositoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/CreateRepositoryDetails.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/CreateRepositoryDetails.java index dca3322bbbd..38b555e8a4d 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/CreateRepositoryDetails.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/CreateRepositoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/GenericArtifact.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/GenericArtifact.java index e31a20e604e..9452825fc0e 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/GenericArtifact.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/GenericArtifact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/GenericArtifactCollection.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/GenericArtifactCollection.java index 225526a6193..68b519c6ba0 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/GenericArtifactCollection.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/GenericArtifactCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/GenericArtifactSummary.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/GenericArtifactSummary.java index 39dba95afd6..5d72075416f 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/GenericArtifactSummary.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/GenericArtifactSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/GenericRepository.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/GenericRepository.java index 2789b9b0d95..2c73a3064e0 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/GenericRepository.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/GenericRepository.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/GenericRepositorySummary.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/GenericRepositorySummary.java index be490e15f0b..0385d5badc8 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/GenericRepositorySummary.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/GenericRepositorySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/LookupContainerImageByUriDetails.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/LookupContainerImageByUriDetails.java index c4b751a600f..fed95f13907 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/LookupContainerImageByUriDetails.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/LookupContainerImageByUriDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/RemoveContainerVersionDetails.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/RemoveContainerVersionDetails.java index b96e33ceac3..6d7f5313464 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/RemoveContainerVersionDetails.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/RemoveContainerVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/Repository.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/Repository.java index 89fd3bd7074..184b63679a7 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/Repository.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/Repository.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/RepositoryCollection.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/RepositoryCollection.java index 7599d17c2a4..1cc5e6da1be 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/RepositoryCollection.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/RepositoryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/RepositorySummary.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/RepositorySummary.java index fcdaf32f299..50609a12d6d 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/RepositorySummary.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/RepositorySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/RestoreContainerImageDetails.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/RestoreContainerImageDetails.java index d71c9f0fffb..782dd9efe94 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/RestoreContainerImageDetails.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/RestoreContainerImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateContainerConfigurationDetails.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateContainerConfigurationDetails.java index f5380ae111f..e2b33c4c755 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateContainerConfigurationDetails.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateContainerConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateContainerImageDetails.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateContainerImageDetails.java index 7a47114b064..f274c201a6b 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateContainerImageDetails.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateContainerImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateContainerImageSignatureDetails.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateContainerImageSignatureDetails.java index df6748275e7..6978f53149d 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateContainerImageSignatureDetails.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateContainerImageSignatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateContainerRepositoryDetails.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateContainerRepositoryDetails.java index 2cfb2d3d03f..d56635f3e18 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateContainerRepositoryDetails.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateContainerRepositoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateGenericArtifactByPathDetails.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateGenericArtifactByPathDetails.java index 50915408669..723a4f3f159 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateGenericArtifactByPathDetails.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateGenericArtifactByPathDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateGenericArtifactDetails.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateGenericArtifactDetails.java index aca6a1a5c0e..e33b1597f7f 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateGenericArtifactDetails.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateGenericArtifactDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateGenericRepositoryDetails.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateGenericRepositoryDetails.java index 0ce08354c20..0f9d82c5a5b 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateGenericRepositoryDetails.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateGenericRepositoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateRepositoryDetails.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateRepositoryDetails.java index 02efbc754e7..18e5ce212b9 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateRepositoryDetails.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/model/UpdateRepositoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.model; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ChangeContainerRepositoryCompartmentRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ChangeContainerRepositoryCompartmentRequest.java index 6987bad410f..6f2c62e653d 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ChangeContainerRepositoryCompartmentRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ChangeContainerRepositoryCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ChangeRepositoryCompartmentRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ChangeRepositoryCompartmentRequest.java index fb9edbc9174..0d8da260d94 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ChangeRepositoryCompartmentRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ChangeRepositoryCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/CreateContainerImageSignatureRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/CreateContainerImageSignatureRequest.java index 3b64ce6f45e..8f2d90fbc3a 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/CreateContainerImageSignatureRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/CreateContainerImageSignatureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/CreateContainerRepositoryRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/CreateContainerRepositoryRequest.java index a4f7f9b6bff..373e1245ec2 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/CreateContainerRepositoryRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/CreateContainerRepositoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/CreateRepositoryRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/CreateRepositoryRequest.java index 4e6501106e1..66343c2738b 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/CreateRepositoryRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/CreateRepositoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteContainerImageRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteContainerImageRequest.java index ca65efc33fe..586dc9ace56 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteContainerImageRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteContainerImageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteContainerImageSignatureRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteContainerImageSignatureRequest.java index 12343b1dcc2..b003bb3f54c 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteContainerImageSignatureRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteContainerImageSignatureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteContainerRepositoryRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteContainerRepositoryRequest.java index 6157df9f6f3..538c0adbb21 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteContainerRepositoryRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteContainerRepositoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteGenericArtifactByPathRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteGenericArtifactByPathRequest.java index a3bed7392d6..6aeecf77048 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteGenericArtifactByPathRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteGenericArtifactByPathRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteGenericArtifactRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteGenericArtifactRequest.java index a388c438aad..ce028b304c7 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteGenericArtifactRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteGenericArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteRepositoryRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteRepositoryRequest.java index 5b2fd720486..ce42d8261f3 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteRepositoryRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/DeleteRepositoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetContainerConfigurationRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetContainerConfigurationRequest.java index b3017af81a6..bb107dd521c 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetContainerConfigurationRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetContainerConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetContainerImageRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetContainerImageRequest.java index 0c719704b71..bb000bc1ea3 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetContainerImageRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetContainerImageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetContainerImageSignatureRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetContainerImageSignatureRequest.java index d8ea9895cdd..f0c7c5d3bc6 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetContainerImageSignatureRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetContainerImageSignatureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetContainerRepositoryRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetContainerRepositoryRequest.java index 61348ec3fe5..8f8b0f5ba02 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetContainerRepositoryRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetContainerRepositoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetGenericArtifactByPathRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetGenericArtifactByPathRequest.java index 8ed95d72dbf..30ecdfe8b5e 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetGenericArtifactByPathRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetGenericArtifactByPathRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetGenericArtifactRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetGenericArtifactRequest.java index a5351711ee1..e401e44abc8 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetGenericArtifactRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetGenericArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetRepositoryRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetRepositoryRequest.java index 23dd624a00d..4bace9b9ce7 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetRepositoryRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/GetRepositoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ListContainerImageSignaturesRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ListContainerImageSignaturesRequest.java index 74ed6978624..3dce552b2a6 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ListContainerImageSignaturesRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ListContainerImageSignaturesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ListContainerImagesRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ListContainerImagesRequest.java index 94f5cf16e02..553fad1b5e2 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ListContainerImagesRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ListContainerImagesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ListContainerRepositoriesRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ListContainerRepositoriesRequest.java index 36ad490f4c9..5ea94d67b8c 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ListContainerRepositoriesRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ListContainerRepositoriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ListGenericArtifactsRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ListGenericArtifactsRequest.java index be66146c442..085aaa39fc3 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ListGenericArtifactsRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ListGenericArtifactsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ListRepositoriesRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ListRepositoriesRequest.java index 64c1bf831e8..e2683485f11 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ListRepositoriesRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/ListRepositoriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/LookupContainerImageByUriRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/LookupContainerImageByUriRequest.java index d0771846573..be020576f45 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/LookupContainerImageByUriRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/LookupContainerImageByUriRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/RemoveContainerVersionRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/RemoveContainerVersionRequest.java index 6957f617e5e..0f7695961b5 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/RemoveContainerVersionRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/RemoveContainerVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/RestoreContainerImageRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/RestoreContainerImageRequest.java index a972aeb9128..62e96cb3ad3 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/RestoreContainerImageRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/RestoreContainerImageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateContainerConfigurationRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateContainerConfigurationRequest.java index 7acdd1dcf13..4e3fbf7839b 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateContainerConfigurationRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateContainerConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateContainerImageRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateContainerImageRequest.java index 30245434fdc..f95d6ab0f8c 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateContainerImageRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateContainerImageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateContainerImageSignatureRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateContainerImageSignatureRequest.java index 07d386aff59..27dca7f7ad2 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateContainerImageSignatureRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateContainerImageSignatureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateContainerRepositoryRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateContainerRepositoryRequest.java index d151ba54de1..32059ede75e 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateContainerRepositoryRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateContainerRepositoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateGenericArtifactByPathRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateGenericArtifactByPathRequest.java index d22f17af181..2c1513ebdf3 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateGenericArtifactByPathRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateGenericArtifactByPathRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateGenericArtifactRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateGenericArtifactRequest.java index 83138ce838a..15334ad7c1a 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateGenericArtifactRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateGenericArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateRepositoryRequest.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateRepositoryRequest.java index 07e326b008e..ff24fb17bef 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateRepositoryRequest.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/requests/UpdateRepositoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.requests; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ChangeContainerRepositoryCompartmentResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ChangeContainerRepositoryCompartmentResponse.java index 175a371b9ee..8b5c6c4b23c 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ChangeContainerRepositoryCompartmentResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ChangeContainerRepositoryCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ChangeRepositoryCompartmentResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ChangeRepositoryCompartmentResponse.java index 84ade94d11f..c6e0f99b920 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ChangeRepositoryCompartmentResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ChangeRepositoryCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/CreateContainerImageSignatureResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/CreateContainerImageSignatureResponse.java index 9eb5c0bcb04..9e5137bb967 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/CreateContainerImageSignatureResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/CreateContainerImageSignatureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/CreateContainerRepositoryResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/CreateContainerRepositoryResponse.java index 9ab60b9ef23..ef853741a13 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/CreateContainerRepositoryResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/CreateContainerRepositoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/CreateRepositoryResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/CreateRepositoryResponse.java index 0ad766d6898..9c2d1d32e7a 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/CreateRepositoryResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/CreateRepositoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteContainerImageResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteContainerImageResponse.java index 6771861edb9..230b2316d2f 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteContainerImageResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteContainerImageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteContainerImageSignatureResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteContainerImageSignatureResponse.java index 8305abd9e54..3ea7939d700 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteContainerImageSignatureResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteContainerImageSignatureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteContainerRepositoryResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteContainerRepositoryResponse.java index 9ccad756a8f..52ea1f4f971 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteContainerRepositoryResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteContainerRepositoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteGenericArtifactByPathResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteGenericArtifactByPathResponse.java index 2db2b097dab..c95be74859b 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteGenericArtifactByPathResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteGenericArtifactByPathResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteGenericArtifactResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteGenericArtifactResponse.java index 1cb7adf2468..7c8e2c8e442 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteGenericArtifactResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteGenericArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteRepositoryResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteRepositoryResponse.java index c7c299dd84d..d1c4121246d 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteRepositoryResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/DeleteRepositoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetContainerConfigurationResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetContainerConfigurationResponse.java index 5be73251915..4f5f96cf7da 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetContainerConfigurationResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetContainerConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetContainerImageResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetContainerImageResponse.java index 86308686ff0..11d981852cf 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetContainerImageResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetContainerImageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetContainerImageSignatureResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetContainerImageSignatureResponse.java index 39d42102e86..82e01cc55f9 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetContainerImageSignatureResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetContainerImageSignatureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetContainerRepositoryResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetContainerRepositoryResponse.java index 098d562124e..8cb8a17e281 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetContainerRepositoryResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetContainerRepositoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetGenericArtifactByPathResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetGenericArtifactByPathResponse.java index 2d2cc7ac849..7a349cdac0b 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetGenericArtifactByPathResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetGenericArtifactByPathResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetGenericArtifactResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetGenericArtifactResponse.java index 53802385e95..c75d7aec4db 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetGenericArtifactResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetGenericArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetRepositoryResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetRepositoryResponse.java index cb18ad8edc9..c8709a5b73b 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetRepositoryResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/GetRepositoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ListContainerImageSignaturesResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ListContainerImageSignaturesResponse.java index da9a10d34d6..78f59281d95 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ListContainerImageSignaturesResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ListContainerImageSignaturesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ListContainerImagesResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ListContainerImagesResponse.java index 0feec937f44..27b238d81db 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ListContainerImagesResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ListContainerImagesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ListContainerRepositoriesResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ListContainerRepositoriesResponse.java index 66987376b45..923137a9427 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ListContainerRepositoriesResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ListContainerRepositoriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ListGenericArtifactsResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ListGenericArtifactsResponse.java index 8d5a4e8f46d..3af2f7d9f2f 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ListGenericArtifactsResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ListGenericArtifactsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ListRepositoriesResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ListRepositoriesResponse.java index 9e61c8e6bb1..e002c3447ca 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ListRepositoriesResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/ListRepositoriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/LookupContainerImageByUriResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/LookupContainerImageByUriResponse.java index 5b488437b31..9bdd7c6548e 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/LookupContainerImageByUriResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/LookupContainerImageByUriResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/RemoveContainerVersionResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/RemoveContainerVersionResponse.java index 4e31961897e..b59cb52096d 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/RemoveContainerVersionResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/RemoveContainerVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/RestoreContainerImageResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/RestoreContainerImageResponse.java index e6288c071f4..6aa207b8aca 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/RestoreContainerImageResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/RestoreContainerImageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateContainerConfigurationResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateContainerConfigurationResponse.java index d4fb18880e8..9b3db893c4f 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateContainerConfigurationResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateContainerConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateContainerImageResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateContainerImageResponse.java index 2ac510df25e..551d4c01670 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateContainerImageResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateContainerImageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateContainerImageSignatureResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateContainerImageSignatureResponse.java index 096e92338da..8093e11ba77 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateContainerImageSignatureResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateContainerImageSignatureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateContainerRepositoryResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateContainerRepositoryResponse.java index 3641bf147a2..18d517af8ef 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateContainerRepositoryResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateContainerRepositoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateGenericArtifactByPathResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateGenericArtifactByPathResponse.java index b84a8efa2da..f0c8ff98d91 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateGenericArtifactByPathResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateGenericArtifactByPathResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateGenericArtifactResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateGenericArtifactResponse.java index 578b7d02eca..e12fd7fbb2b 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateGenericArtifactResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateGenericArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateRepositoryResponse.java b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateRepositoryResponse.java index 695ff36a06f..9029c0f4f5d 100644 --- a/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateRepositoryResponse.java +++ b/bmc-artifacts/src/main/java/com/oracle/bmc/artifacts/responses/UpdateRepositoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.artifacts.responses; diff --git a/bmc-artifacts/src/main/resources/com/oracle/bmc/artifacts/client.properties b/bmc-artifacts/src/main/resources/com/oracle/bmc/artifacts/client.properties index 03c9ae88318..57fa7f4b072 100644 --- a/bmc-artifacts/src/main/resources/com/oracle/bmc/artifacts/client.properties +++ b/bmc-artifacts/src/main/resources/com/oracle/bmc/artifacts/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-audit/pom.xml b/bmc-audit/pom.xml index 29eebd5e81f..6b5195b0bc7 100644 --- a/bmc-audit/pom.xml +++ b/bmc-audit/pom.xml @@ -5,7 +5,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml @@ -18,7 +18,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 diff --git a/bmc-audit/src/main/java/com/oracle/bmc/audit/Audit.java b/bmc-audit/src/main/java/com/oracle/bmc/audit/Audit.java index a663c91f233..ae60e19c54d 100644 --- a/bmc-audit/src/main/java/com/oracle/bmc/audit/Audit.java +++ b/bmc-audit/src/main/java/com/oracle/bmc/audit/Audit.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.audit; diff --git a/bmc-audit/src/main/java/com/oracle/bmc/audit/AuditAsync.java b/bmc-audit/src/main/java/com/oracle/bmc/audit/AuditAsync.java index 80de187e0a3..4494c5c85a8 100644 --- a/bmc-audit/src/main/java/com/oracle/bmc/audit/AuditAsync.java +++ b/bmc-audit/src/main/java/com/oracle/bmc/audit/AuditAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.audit; diff --git a/bmc-audit/src/main/java/com/oracle/bmc/audit/AuditAsyncClient.java b/bmc-audit/src/main/java/com/oracle/bmc/audit/AuditAsyncClient.java index 543157f372e..01dba756f89 100644 --- a/bmc-audit/src/main/java/com/oracle/bmc/audit/AuditAsyncClient.java +++ b/bmc-audit/src/main/java/com/oracle/bmc/audit/AuditAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.audit; diff --git a/bmc-audit/src/main/java/com/oracle/bmc/audit/AuditClient.java b/bmc-audit/src/main/java/com/oracle/bmc/audit/AuditClient.java index 8074824ab66..60da5de983d 100644 --- a/bmc-audit/src/main/java/com/oracle/bmc/audit/AuditClient.java +++ b/bmc-audit/src/main/java/com/oracle/bmc/audit/AuditClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.audit; diff --git a/bmc-audit/src/main/java/com/oracle/bmc/audit/AuditPaginators.java b/bmc-audit/src/main/java/com/oracle/bmc/audit/AuditPaginators.java index fa4e280577c..3d0d9b23427 100644 --- a/bmc-audit/src/main/java/com/oracle/bmc/audit/AuditPaginators.java +++ b/bmc-audit/src/main/java/com/oracle/bmc/audit/AuditPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.audit; diff --git a/bmc-audit/src/main/java/com/oracle/bmc/audit/model/AuditEvent.java b/bmc-audit/src/main/java/com/oracle/bmc/audit/model/AuditEvent.java index 19af559d084..7cf51d35f2a 100644 --- a/bmc-audit/src/main/java/com/oracle/bmc/audit/model/AuditEvent.java +++ b/bmc-audit/src/main/java/com/oracle/bmc/audit/model/AuditEvent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.audit.model; diff --git a/bmc-audit/src/main/java/com/oracle/bmc/audit/model/Configuration.java b/bmc-audit/src/main/java/com/oracle/bmc/audit/model/Configuration.java index cbcd84e9321..a4b8b3e5534 100644 --- a/bmc-audit/src/main/java/com/oracle/bmc/audit/model/Configuration.java +++ b/bmc-audit/src/main/java/com/oracle/bmc/audit/model/Configuration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.audit.model; diff --git a/bmc-audit/src/main/java/com/oracle/bmc/audit/model/Data.java b/bmc-audit/src/main/java/com/oracle/bmc/audit/model/Data.java index 9c50ed46253..6ef80ac6c89 100644 --- a/bmc-audit/src/main/java/com/oracle/bmc/audit/model/Data.java +++ b/bmc-audit/src/main/java/com/oracle/bmc/audit/model/Data.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.audit.model; diff --git a/bmc-audit/src/main/java/com/oracle/bmc/audit/model/Identity.java b/bmc-audit/src/main/java/com/oracle/bmc/audit/model/Identity.java index fd1e3e62d7f..841fe1a8604 100644 --- a/bmc-audit/src/main/java/com/oracle/bmc/audit/model/Identity.java +++ b/bmc-audit/src/main/java/com/oracle/bmc/audit/model/Identity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.audit.model; diff --git a/bmc-audit/src/main/java/com/oracle/bmc/audit/model/Request.java b/bmc-audit/src/main/java/com/oracle/bmc/audit/model/Request.java index 56617d10f34..2ffc2fc1149 100644 --- a/bmc-audit/src/main/java/com/oracle/bmc/audit/model/Request.java +++ b/bmc-audit/src/main/java/com/oracle/bmc/audit/model/Request.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.audit.model; diff --git a/bmc-audit/src/main/java/com/oracle/bmc/audit/model/Response.java b/bmc-audit/src/main/java/com/oracle/bmc/audit/model/Response.java index b3c602fee42..5b6caa3df8c 100644 --- a/bmc-audit/src/main/java/com/oracle/bmc/audit/model/Response.java +++ b/bmc-audit/src/main/java/com/oracle/bmc/audit/model/Response.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.audit.model; diff --git a/bmc-audit/src/main/java/com/oracle/bmc/audit/model/StateChange.java b/bmc-audit/src/main/java/com/oracle/bmc/audit/model/StateChange.java index cfc09c0ffe2..ad7c7aee8d0 100644 --- a/bmc-audit/src/main/java/com/oracle/bmc/audit/model/StateChange.java +++ b/bmc-audit/src/main/java/com/oracle/bmc/audit/model/StateChange.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.audit.model; diff --git a/bmc-audit/src/main/java/com/oracle/bmc/audit/model/UpdateConfigurationDetails.java b/bmc-audit/src/main/java/com/oracle/bmc/audit/model/UpdateConfigurationDetails.java index d3f012e737a..7aded94e470 100644 --- a/bmc-audit/src/main/java/com/oracle/bmc/audit/model/UpdateConfigurationDetails.java +++ b/bmc-audit/src/main/java/com/oracle/bmc/audit/model/UpdateConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.audit.model; diff --git a/bmc-audit/src/main/java/com/oracle/bmc/audit/requests/GetConfigurationRequest.java b/bmc-audit/src/main/java/com/oracle/bmc/audit/requests/GetConfigurationRequest.java index 5cf10774303..056dc76947d 100644 --- a/bmc-audit/src/main/java/com/oracle/bmc/audit/requests/GetConfigurationRequest.java +++ b/bmc-audit/src/main/java/com/oracle/bmc/audit/requests/GetConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.audit.requests; diff --git a/bmc-audit/src/main/java/com/oracle/bmc/audit/requests/ListEventsRequest.java b/bmc-audit/src/main/java/com/oracle/bmc/audit/requests/ListEventsRequest.java index e49aeba6651..6b43e0504d1 100644 --- a/bmc-audit/src/main/java/com/oracle/bmc/audit/requests/ListEventsRequest.java +++ b/bmc-audit/src/main/java/com/oracle/bmc/audit/requests/ListEventsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.audit.requests; diff --git a/bmc-audit/src/main/java/com/oracle/bmc/audit/requests/UpdateConfigurationRequest.java b/bmc-audit/src/main/java/com/oracle/bmc/audit/requests/UpdateConfigurationRequest.java index 1130e385bd5..f6b3c200168 100644 --- a/bmc-audit/src/main/java/com/oracle/bmc/audit/requests/UpdateConfigurationRequest.java +++ b/bmc-audit/src/main/java/com/oracle/bmc/audit/requests/UpdateConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.audit.requests; diff --git a/bmc-audit/src/main/java/com/oracle/bmc/audit/responses/GetConfigurationResponse.java b/bmc-audit/src/main/java/com/oracle/bmc/audit/responses/GetConfigurationResponse.java index f3de1762792..01bcf5cd64d 100644 --- a/bmc-audit/src/main/java/com/oracle/bmc/audit/responses/GetConfigurationResponse.java +++ b/bmc-audit/src/main/java/com/oracle/bmc/audit/responses/GetConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.audit.responses; diff --git a/bmc-audit/src/main/java/com/oracle/bmc/audit/responses/ListEventsResponse.java b/bmc-audit/src/main/java/com/oracle/bmc/audit/responses/ListEventsResponse.java index a45e7ecb5dd..0efcfdbbff5 100644 --- a/bmc-audit/src/main/java/com/oracle/bmc/audit/responses/ListEventsResponse.java +++ b/bmc-audit/src/main/java/com/oracle/bmc/audit/responses/ListEventsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.audit.responses; diff --git a/bmc-audit/src/main/java/com/oracle/bmc/audit/responses/UpdateConfigurationResponse.java b/bmc-audit/src/main/java/com/oracle/bmc/audit/responses/UpdateConfigurationResponse.java index 12627c066cf..21db4fc1f4b 100644 --- a/bmc-audit/src/main/java/com/oracle/bmc/audit/responses/UpdateConfigurationResponse.java +++ b/bmc-audit/src/main/java/com/oracle/bmc/audit/responses/UpdateConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.audit.responses; diff --git a/bmc-audit/src/main/resources/com/oracle/bmc/audit/client.properties b/bmc-audit/src/main/resources/com/oracle/bmc/audit/client.properties index 287074ced44..cb48a79abfc 100644 --- a/bmc-audit/src/main/resources/com/oracle/bmc/audit/client.properties +++ b/bmc-audit/src/main/resources/com/oracle/bmc/audit/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-autoscaling/pom.xml b/bmc-autoscaling/pom.xml index 188abe45261..2e0c37b6e1a 100644 --- a/bmc-autoscaling/pom.xml +++ b/bmc-autoscaling/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-autoscaling @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/AutoScaling.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/AutoScaling.java index ef555e8b4dd..4e459456390 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/AutoScaling.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/AutoScaling.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/AutoScalingAsync.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/AutoScalingAsync.java index 9c400a56942..3e8124234d9 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/AutoScalingAsync.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/AutoScalingAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/AutoScalingAsyncClient.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/AutoScalingAsyncClient.java index 3a4e290f3c8..3550d61cfd0 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/AutoScalingAsyncClient.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/AutoScalingAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/AutoScalingClient.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/AutoScalingClient.java index cc38a79a018..4d7c14b7efe 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/AutoScalingClient.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/AutoScalingClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/AutoScalingPaginators.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/AutoScalingPaginators.java index cc973e653fe..d1965dc713a 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/AutoScalingPaginators.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/AutoScalingPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Action.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Action.java index 0ec2cbc1478..c0a1a6f6ae6 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Action.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Action.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/AutoScalingConfiguration.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/AutoScalingConfiguration.java index 55cc1574cab..4239094e118 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/AutoScalingConfiguration.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/AutoScalingConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/AutoScalingConfigurationSummary.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/AutoScalingConfigurationSummary.java index 1baf6c15abb..ec28007a877 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/AutoScalingConfigurationSummary.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/AutoScalingConfigurationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/AutoScalingPolicy.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/AutoScalingPolicy.java index 55a87235ea4..337b6117149 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/AutoScalingPolicy.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/AutoScalingPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/AutoScalingPolicySummary.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/AutoScalingPolicySummary.java index f093d781a05..a1f209cb60a 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/AutoScalingPolicySummary.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/AutoScalingPolicySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Capacity.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Capacity.java index b436256dfcb..0a815b6fea1 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Capacity.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Capacity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ChangeAutoScalingCompartmentDetails.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ChangeAutoScalingCompartmentDetails.java index 5bc7191b1f4..ff999b0f924 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ChangeAutoScalingCompartmentDetails.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ChangeAutoScalingCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Condition.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Condition.java index 425829a6749..f7af2cb7194 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Condition.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Condition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CreateAutoScalingConfigurationDetails.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CreateAutoScalingConfigurationDetails.java index 88c04a4563d..f277f7153d7 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CreateAutoScalingConfigurationDetails.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CreateAutoScalingConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CreateAutoScalingPolicyDetails.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CreateAutoScalingPolicyDetails.java index a02e7b60439..4b75d877fc0 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CreateAutoScalingPolicyDetails.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CreateAutoScalingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CreateConditionDetails.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CreateConditionDetails.java index 79d7c18a606..0fa814e2426 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CreateConditionDetails.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CreateConditionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CreateScheduledPolicyDetails.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CreateScheduledPolicyDetails.java index 166f27b4ec9..6ece7ae0a42 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CreateScheduledPolicyDetails.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CreateScheduledPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CreateThresholdPolicyDetails.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CreateThresholdPolicyDetails.java index b5116da99b2..1b92e2d8048 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CreateThresholdPolicyDetails.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CreateThresholdPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CronExecutionSchedule.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CronExecutionSchedule.java index 0308533164d..9d48f726663 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CronExecutionSchedule.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CronExecutionSchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CustomMetric.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CustomMetric.java index a0d46de8da3..9d11265c90a 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CustomMetric.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/CustomMetric.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ExecutionSchedule.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ExecutionSchedule.java index 6a46a220a3e..0f9b68ba3d4 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ExecutionSchedule.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ExecutionSchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/InstancePoolResource.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/InstancePoolResource.java index c45a834e5c9..9ff66b9bec0 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/InstancePoolResource.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/InstancePoolResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Metric.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Metric.java index 6c94fbaedf4..88bd8768f0d 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Metric.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Metric.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/MetricBase.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/MetricBase.java index 20bdfcd9584..a90fb9ebfce 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/MetricBase.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/MetricBase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Resource.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Resource.java index 6a7bd8f4bc0..8bb2cc0432c 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Resource.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Resource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ResourceAction.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ResourceAction.java index f8023434a4a..f63286cad6c 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ResourceAction.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ResourceAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ResourcePowerAction.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ResourcePowerAction.java index b0ea958bcee..3cdf1ff80ae 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ResourcePowerAction.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ResourcePowerAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ScheduledPolicy.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ScheduledPolicy.java index 87e0fffddf5..4a440518926 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ScheduledPolicy.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ScheduledPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Threshold.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Threshold.java index 6f6b5ac7a31..4db2f6148d2 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Threshold.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/Threshold.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ThresholdPolicy.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ThresholdPolicy.java index aaea686614e..e366a058b99 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ThresholdPolicy.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/ThresholdPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/UpdateAutoScalingConfigurationDetails.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/UpdateAutoScalingConfigurationDetails.java index e922d3a485a..dd6157032f4 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/UpdateAutoScalingConfigurationDetails.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/UpdateAutoScalingConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/UpdateAutoScalingPolicyDetails.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/UpdateAutoScalingPolicyDetails.java index 9392e7ad247..e64ebaf7674 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/UpdateAutoScalingPolicyDetails.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/UpdateAutoScalingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/UpdateConditionDetails.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/UpdateConditionDetails.java index b0a94a10459..589ac6d0d70 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/UpdateConditionDetails.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/UpdateConditionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/UpdateScheduledPolicyDetails.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/UpdateScheduledPolicyDetails.java index 18445a1f2f0..93a2d5586a9 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/UpdateScheduledPolicyDetails.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/UpdateScheduledPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/UpdateThresholdPolicyDetails.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/UpdateThresholdPolicyDetails.java index 91ae53fbeab..4d9110bceae 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/UpdateThresholdPolicyDetails.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/model/UpdateThresholdPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.model; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/ChangeAutoScalingConfigurationCompartmentRequest.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/ChangeAutoScalingConfigurationCompartmentRequest.java index 0ab06c0ad20..94e07eef137 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/ChangeAutoScalingConfigurationCompartmentRequest.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/ChangeAutoScalingConfigurationCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.requests; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/CreateAutoScalingConfigurationRequest.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/CreateAutoScalingConfigurationRequest.java index 0d6dc9e777e..69f1fb73cc7 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/CreateAutoScalingConfigurationRequest.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/CreateAutoScalingConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.requests; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/CreateAutoScalingPolicyRequest.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/CreateAutoScalingPolicyRequest.java index 24c51c5bf63..ccc8af506c9 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/CreateAutoScalingPolicyRequest.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/CreateAutoScalingPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.requests; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/DeleteAutoScalingConfigurationRequest.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/DeleteAutoScalingConfigurationRequest.java index 6ad3a243472..f0c563f5120 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/DeleteAutoScalingConfigurationRequest.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/DeleteAutoScalingConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.requests; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/DeleteAutoScalingPolicyRequest.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/DeleteAutoScalingPolicyRequest.java index c414bbd39b8..6847f18be2e 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/DeleteAutoScalingPolicyRequest.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/DeleteAutoScalingPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.requests; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/GetAutoScalingConfigurationRequest.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/GetAutoScalingConfigurationRequest.java index 3e005173657..823608cc27f 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/GetAutoScalingConfigurationRequest.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/GetAutoScalingConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.requests; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/GetAutoScalingPolicyRequest.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/GetAutoScalingPolicyRequest.java index af4ccd11547..d564df5aba1 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/GetAutoScalingPolicyRequest.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/GetAutoScalingPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.requests; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/ListAutoScalingConfigurationsRequest.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/ListAutoScalingConfigurationsRequest.java index 7fcf6ce5966..b56541236c2 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/ListAutoScalingConfigurationsRequest.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/ListAutoScalingConfigurationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.requests; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/ListAutoScalingPoliciesRequest.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/ListAutoScalingPoliciesRequest.java index 07fae538031..86512532e4d 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/ListAutoScalingPoliciesRequest.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/ListAutoScalingPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.requests; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/UpdateAutoScalingConfigurationRequest.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/UpdateAutoScalingConfigurationRequest.java index fa15bd8baca..fae5c05ad88 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/UpdateAutoScalingConfigurationRequest.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/UpdateAutoScalingConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.requests; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/UpdateAutoScalingPolicyRequest.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/UpdateAutoScalingPolicyRequest.java index a401132c4d8..003c4e45ce5 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/UpdateAutoScalingPolicyRequest.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/requests/UpdateAutoScalingPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.requests; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/ChangeAutoScalingConfigurationCompartmentResponse.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/ChangeAutoScalingConfigurationCompartmentResponse.java index b766da1bb42..4eddf27c487 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/ChangeAutoScalingConfigurationCompartmentResponse.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/ChangeAutoScalingConfigurationCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.responses; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/CreateAutoScalingConfigurationResponse.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/CreateAutoScalingConfigurationResponse.java index 22f5acd7bf7..ce78d259124 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/CreateAutoScalingConfigurationResponse.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/CreateAutoScalingConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.responses; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/CreateAutoScalingPolicyResponse.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/CreateAutoScalingPolicyResponse.java index 7e99283e310..7bcf4a8bab7 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/CreateAutoScalingPolicyResponse.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/CreateAutoScalingPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.responses; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/DeleteAutoScalingConfigurationResponse.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/DeleteAutoScalingConfigurationResponse.java index 52bdde85818..ee8961fd291 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/DeleteAutoScalingConfigurationResponse.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/DeleteAutoScalingConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.responses; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/DeleteAutoScalingPolicyResponse.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/DeleteAutoScalingPolicyResponse.java index 10aea2afd13..a74697a1b2e 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/DeleteAutoScalingPolicyResponse.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/DeleteAutoScalingPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.responses; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/GetAutoScalingConfigurationResponse.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/GetAutoScalingConfigurationResponse.java index b35154d2af8..a46243a3d1c 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/GetAutoScalingConfigurationResponse.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/GetAutoScalingConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.responses; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/GetAutoScalingPolicyResponse.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/GetAutoScalingPolicyResponse.java index df1969bb7bd..e7a37c0be29 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/GetAutoScalingPolicyResponse.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/GetAutoScalingPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.responses; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/ListAutoScalingConfigurationsResponse.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/ListAutoScalingConfigurationsResponse.java index fd962b45434..c323b5da19c 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/ListAutoScalingConfigurationsResponse.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/ListAutoScalingConfigurationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.responses; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/ListAutoScalingPoliciesResponse.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/ListAutoScalingPoliciesResponse.java index beffd99ef49..7825b364fe2 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/ListAutoScalingPoliciesResponse.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/ListAutoScalingPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.responses; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/UpdateAutoScalingConfigurationResponse.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/UpdateAutoScalingConfigurationResponse.java index b16b4dfb90a..cccf7c216a2 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/UpdateAutoScalingConfigurationResponse.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/UpdateAutoScalingConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.responses; diff --git a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/UpdateAutoScalingPolicyResponse.java b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/UpdateAutoScalingPolicyResponse.java index 6591bfb4172..9fb178880f7 100644 --- a/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/UpdateAutoScalingPolicyResponse.java +++ b/bmc-autoscaling/src/main/java/com/oracle/bmc/autoscaling/responses/UpdateAutoScalingPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.autoscaling.responses; diff --git a/bmc-autoscaling/src/main/resources/com/oracle/bmc/autoscaling/client.properties b/bmc-autoscaling/src/main/resources/com/oracle/bmc/autoscaling/client.properties index 9088e85753f..2e8976d0c65 100644 --- a/bmc-autoscaling/src/main/resources/com/oracle/bmc/autoscaling/client.properties +++ b/bmc-autoscaling/src/main/resources/com/oracle/bmc/autoscaling/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-bastion/pom.xml b/bmc-bastion/pom.xml index c710aa8bef2..c8fa5ba5f98 100644 --- a/bmc-bastion/pom.xml +++ b/bmc-bastion/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-bastion @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/Bastion.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/Bastion.java index cae9c9c496d..926df01a303 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/Bastion.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/Bastion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/BastionAsync.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/BastionAsync.java index ec21ea48411..f6f4ff0a174 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/BastionAsync.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/BastionAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/BastionAsyncClient.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/BastionAsyncClient.java index 962c12a9166..e48de6c67d9 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/BastionAsyncClient.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/BastionAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/BastionClient.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/BastionClient.java index 80e34e1946f..6c3a7425189 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/BastionClient.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/BastionClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/BastionPaginators.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/BastionPaginators.java index 2e9683fae4d..c440f4b28bd 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/BastionPaginators.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/BastionPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/BastionWaiters.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/BastionWaiters.java index 289ba43af74..8e50bbf67a1 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/BastionWaiters.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/BastionWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/ActionType.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/ActionType.java index 9fcf1d2f86a..35fff896204 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/ActionType.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/Bastion.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/Bastion.java index d81fa211dd0..2edeab241ca 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/Bastion.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/Bastion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/BastionDnsProxyStatus.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/BastionDnsProxyStatus.java index 7144dc61728..0e3ef8f7fd8 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/BastionDnsProxyStatus.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/BastionDnsProxyStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/BastionLifecycleState.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/BastionLifecycleState.java index 20838f746bf..3e43c81ff3e 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/BastionLifecycleState.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/BastionLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/BastionSummary.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/BastionSummary.java index d0d25c5d86c..1069e03d26b 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/BastionSummary.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/BastionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/ChangeBastionCompartmentDetails.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/ChangeBastionCompartmentDetails.java index d54c66fadbd..ab7b692cb66 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/ChangeBastionCompartmentDetails.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/ChangeBastionCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreateBastionDetails.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreateBastionDetails.java index 86a69b90ce2..fcf9220ce02 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreateBastionDetails.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreateBastionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreateDynamicPortForwardingSessionTargetResourceDetails.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreateDynamicPortForwardingSessionTargetResourceDetails.java index d0d08c746e5..7d0ffff1d0a 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreateDynamicPortForwardingSessionTargetResourceDetails.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreateDynamicPortForwardingSessionTargetResourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreateManagedSshSessionTargetResourceDetails.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreateManagedSshSessionTargetResourceDetails.java index bd08d32f0e3..f17aa507ca0 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreateManagedSshSessionTargetResourceDetails.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreateManagedSshSessionTargetResourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreatePortForwardingSessionTargetResourceDetails.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreatePortForwardingSessionTargetResourceDetails.java index 755faf47abb..632356af601 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreatePortForwardingSessionTargetResourceDetails.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreatePortForwardingSessionTargetResourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreateSessionDetails.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreateSessionDetails.java index 8d8d959bb66..09ca0f17c21 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreateSessionDetails.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreateSessionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreateSessionTargetResourceDetails.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreateSessionTargetResourceDetails.java index 8ac0e634918..52623aec56c 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreateSessionTargetResourceDetails.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/CreateSessionTargetResourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/DynamicPortForwardingSessionTargetResourceDetails.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/DynamicPortForwardingSessionTargetResourceDetails.java index 545f5058fb4..b6ff007bd30 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/DynamicPortForwardingSessionTargetResourceDetails.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/DynamicPortForwardingSessionTargetResourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/ManagedSshSessionTargetResourceDetails.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/ManagedSshSessionTargetResourceDetails.java index 5739dddb233..d7c1ed675d9 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/ManagedSshSessionTargetResourceDetails.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/ManagedSshSessionTargetResourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/OperationStatus.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/OperationStatus.java index f73d8e4f0bd..7fa72136d6f 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/OperationStatus.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/OperationType.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/OperationType.java index 8baec14c97c..b115881abe9 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/OperationType.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/PortForwardingSessionTargetResourceDetails.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/PortForwardingSessionTargetResourceDetails.java index 947ad3352af..a748bb77286 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/PortForwardingSessionTargetResourceDetails.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/PortForwardingSessionTargetResourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/PublicKeyDetails.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/PublicKeyDetails.java index 504db52c387..f3d0a77d0a3 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/PublicKeyDetails.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/PublicKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/Session.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/Session.java index 3d42f06bae2..73241c2dae5 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/Session.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/Session.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/SessionLifecycleState.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/SessionLifecycleState.java index b366ccdbc69..2d0eefcfccc 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/SessionLifecycleState.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/SessionLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/SessionSummary.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/SessionSummary.java index 57be6523083..6a88d18be5a 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/SessionSummary.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/SessionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/SessionType.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/SessionType.java index fe49efd6045..9fec3135bdf 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/SessionType.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/SessionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/SortOrder.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/SortOrder.java index 4056b817dbc..fe0f96fb914 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/SortOrder.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/TargetResourceDetails.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/TargetResourceDetails.java index 9efdb157174..e4d317220c7 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/TargetResourceDetails.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/TargetResourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/UpdateBastionDetails.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/UpdateBastionDetails.java index f4d88bd19c7..d8ba71ec03b 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/UpdateBastionDetails.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/UpdateBastionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/UpdateSessionDetails.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/UpdateSessionDetails.java index 49c593042a5..4214e4d3618 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/UpdateSessionDetails.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/UpdateSessionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/WorkRequest.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/WorkRequest.java index 365bed2f3e7..c9076defbbb 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/WorkRequest.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/WorkRequestError.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/WorkRequestError.java index 465f6340760..a72695d2a77 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/WorkRequestError.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/WorkRequestLogEntry.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/WorkRequestLogEntry.java index 1b3b0e6f725..56401dd6468 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/WorkRequestLogEntry.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/WorkRequestResource.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/WorkRequestResource.java index 7ce9788f24a..1924ba47bac 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/WorkRequestResource.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/WorkRequestSummary.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/WorkRequestSummary.java index 43e88f3a172..32f2a705c40 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/WorkRequestSummary.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.model; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ChangeBastionCompartmentRequest.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ChangeBastionCompartmentRequest.java index a48850facb8..cea1250dd0c 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ChangeBastionCompartmentRequest.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ChangeBastionCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.requests; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/CreateBastionRequest.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/CreateBastionRequest.java index bb5e2e7862c..f39f71e4200 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/CreateBastionRequest.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/CreateBastionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.requests; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/CreateSessionRequest.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/CreateSessionRequest.java index 13f19b8b78d..3510f2e1948 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/CreateSessionRequest.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/CreateSessionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.requests; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/DeleteBastionRequest.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/DeleteBastionRequest.java index 33118260be3..c21a838eb67 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/DeleteBastionRequest.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/DeleteBastionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.requests; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/DeleteSessionRequest.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/DeleteSessionRequest.java index 795ebcfcd63..66b5eeda637 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/DeleteSessionRequest.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/DeleteSessionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.requests; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/GetBastionRequest.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/GetBastionRequest.java index c86b348f589..5a554136963 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/GetBastionRequest.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/GetBastionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.requests; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/GetSessionRequest.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/GetSessionRequest.java index d2a12a15003..4276a2ac546 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/GetSessionRequest.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/GetSessionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.requests; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/GetWorkRequestRequest.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/GetWorkRequestRequest.java index 6e9e8bbf7d8..bea50789700 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/GetWorkRequestRequest.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.requests; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ListBastionsRequest.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ListBastionsRequest.java index f5cbc99e776..92c38276350 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ListBastionsRequest.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ListBastionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.requests; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ListSessionsRequest.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ListSessionsRequest.java index 64cfdeb68d3..48b2c7ff65e 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ListSessionsRequest.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ListSessionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.requests; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ListWorkRequestErrorsRequest.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ListWorkRequestErrorsRequest.java index a691d3020ab..7408ef9453d 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.requests; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ListWorkRequestLogsRequest.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ListWorkRequestLogsRequest.java index c80a0c4841b..ef1545a2750 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ListWorkRequestLogsRequest.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.requests; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ListWorkRequestsRequest.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ListWorkRequestsRequest.java index 50432e0bcff..39d491b4e32 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ListWorkRequestsRequest.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.requests; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/UpdateBastionRequest.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/UpdateBastionRequest.java index 5b7f1c72163..5ba4b44dfe1 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/UpdateBastionRequest.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/UpdateBastionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.requests; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/UpdateSessionRequest.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/UpdateSessionRequest.java index 07ef5cfb298..2482d718f4c 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/UpdateSessionRequest.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/requests/UpdateSessionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.requests; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ChangeBastionCompartmentResponse.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ChangeBastionCompartmentResponse.java index 56a3a0d517a..a27c615eac7 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ChangeBastionCompartmentResponse.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ChangeBastionCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.responses; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/CreateBastionResponse.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/CreateBastionResponse.java index 5b02291c7a1..b67e4e1971e 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/CreateBastionResponse.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/CreateBastionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.responses; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/CreateSessionResponse.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/CreateSessionResponse.java index 6a9a5a2300e..c617963721b 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/CreateSessionResponse.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/CreateSessionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.responses; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/DeleteBastionResponse.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/DeleteBastionResponse.java index b94fe971320..27e6163ca3f 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/DeleteBastionResponse.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/DeleteBastionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.responses; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/DeleteSessionResponse.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/DeleteSessionResponse.java index 2c1a1f05600..7cd1589616d 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/DeleteSessionResponse.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/DeleteSessionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.responses; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/GetBastionResponse.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/GetBastionResponse.java index 57eb5afbb36..81298c34aae 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/GetBastionResponse.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/GetBastionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.responses; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/GetSessionResponse.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/GetSessionResponse.java index 0a6963b4ec6..cadc62acd7b 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/GetSessionResponse.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/GetSessionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.responses; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/GetWorkRequestResponse.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/GetWorkRequestResponse.java index 28a5e95fcfc..da1ede58add 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/GetWorkRequestResponse.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.responses; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ListBastionsResponse.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ListBastionsResponse.java index ec4f3be0bb4..d2878fa1469 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ListBastionsResponse.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ListBastionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.responses; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ListSessionsResponse.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ListSessionsResponse.java index a1ff2085db2..3b66bb033ad 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ListSessionsResponse.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ListSessionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.responses; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ListWorkRequestErrorsResponse.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ListWorkRequestErrorsResponse.java index eaf8321a0db..35fa5788032 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.responses; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ListWorkRequestLogsResponse.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ListWorkRequestLogsResponse.java index bbabdcfec89..89c70046aa9 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ListWorkRequestLogsResponse.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.responses; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ListWorkRequestsResponse.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ListWorkRequestsResponse.java index 6b0eb1ee3bb..88b7446eac8 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ListWorkRequestsResponse.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.responses; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/UpdateBastionResponse.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/UpdateBastionResponse.java index 77c6d76276f..d86924a732c 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/UpdateBastionResponse.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/UpdateBastionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.responses; diff --git a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/UpdateSessionResponse.java b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/UpdateSessionResponse.java index b2e9e2a7258..fd0f0887683 100644 --- a/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/UpdateSessionResponse.java +++ b/bmc-bastion/src/main/java/com/oracle/bmc/bastion/responses/UpdateSessionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bastion.responses; diff --git a/bmc-bastion/src/main/resources/com/oracle/bmc/bastion/client.properties b/bmc-bastion/src/main/resources/com/oracle/bmc/bastion/client.properties index 6b04fc2c98b..7aa65eb7911 100644 --- a/bmc-bastion/src/main/resources/com/oracle/bmc/bastion/client.properties +++ b/bmc-bastion/src/main/resources/com/oracle/bmc/bastion/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-batch/pom.xml b/bmc-batch/pom.xml index fe59f2937e5..214e7c63edd 100644 --- a/bmc-batch/pom.xml +++ b/bmc-batch/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-batch @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputing.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputing.java index d4dcaa0ac99..25ad1453c09 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputing.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputing.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputingAsync.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputingAsync.java index 473eea8608f..a54663b16a6 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputingAsync.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputingAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputingAsyncClient.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputingAsyncClient.java index 711c4ed767c..c5c481cc811 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputingAsyncClient.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputingAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputingClient.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputingClient.java index 9583171db76..262a686b6ec 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputingClient.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputingClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputingPaginators.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputingPaginators.java index 38c19466571..7ff1e172998 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputingPaginators.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputingPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputingWaiters.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputingWaiters.java index e9336d7a72f..78d5681ef34 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputingWaiters.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/BatchComputingWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ActionType.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ActionType.java index e142a5aba28..c9e55311a94 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ActionType.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchContext.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchContext.java index b6e15b584eb..097dcedff6d 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchContext.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchContext.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchContextCollection.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchContextCollection.java index 66d4db3ada2..0c2f650f0e4 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchContextCollection.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchContextCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchContextShapeCollection.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchContextShapeCollection.java index 9f01ff3d0d7..c6f5e7b89d0 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchContextShapeCollection.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchContextShapeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchContextShapeSummary.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchContextShapeSummary.java index cf5c438986b..27bf5697cc0 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchContextShapeSummary.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchContextShapeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchContextSummary.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchContextSummary.java index 43e560e0a35..0e83bd6ca72 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchContextSummary.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchContextSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJob.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJob.java index 8d53ca620d2..e2aea0bb65f 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJob.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJobCollection.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJobCollection.java index 850bffddfa1..9a11bd8c05f 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJobCollection.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJobCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJobPool.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJobPool.java index fc143c6ca85..68316f8b2e2 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJobPool.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJobPool.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJobPoolCollection.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJobPoolCollection.java index ebbc9fb280c..7f31d6f9fe2 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJobPoolCollection.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJobPoolCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJobPoolSummary.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJobPoolSummary.java index 9815dc7c373..3db16c77ae3 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJobPoolSummary.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJobPoolSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJobSummary.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJobSummary.java index 4fc3d3f2cf1..3b40ec91390 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJobSummary.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchJobSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTask.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTask.java index 1dd0bd990e6..a22bb7d7400 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTask.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskCollection.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskCollection.java index 8b7a36cdf05..139ad07e93e 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskCollection.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskEnvironment.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskEnvironment.java index a7b76419778..d5987a8ded7 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskEnvironment.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskEnvironment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskEnvironmentCollection.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskEnvironmentCollection.java index 0c34acd2ea1..53aa22e630f 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskEnvironmentCollection.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskEnvironmentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskEnvironmentSummary.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskEnvironmentSummary.java index 0750186e93c..d585c652ef9 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskEnvironmentSummary.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskEnvironmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskEnvironmentVolume.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskEnvironmentVolume.java index 5a8f777c3df..ca0698d7dcb 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskEnvironmentVolume.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskEnvironmentVolume.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskProfile.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskProfile.java index dd82130046e..a458185d1b1 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskProfile.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskProfile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskProfileCollection.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskProfileCollection.java index 9c95a0bd84a..b1c498ed80a 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskProfileCollection.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskProfileCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskProfileSummary.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskProfileSummary.java index 3aab820fa5a..9317afc2c38 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskProfileSummary.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskProfileSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskSortBy.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskSortBy.java index cfa71da73db..809a3d5d48c 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskSortBy.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskSummary.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskSummary.java index 70eca612f2f..c6513a20311 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskSummary.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BatchTaskSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BestFitFleetAssignmentPolicy.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BestFitFleetAssignmentPolicy.java index 64e50004023..99693d16c3e 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BestFitFleetAssignmentPolicy.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/BestFitFleetAssignmentPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ChangeBatchContextCompartmentDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ChangeBatchContextCompartmentDetails.java index 321743ba297..c47113f35ef 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ChangeBatchContextCompartmentDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ChangeBatchContextCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ChangeBatchJobCompartmentDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ChangeBatchJobCompartmentDetails.java index 4e6a10219cc..8221556322c 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ChangeBatchJobCompartmentDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ChangeBatchJobCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ChangeBatchJobPoolCompartmentDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ChangeBatchJobPoolCompartmentDetails.java index 3aafbcebe9e..7d3bffe22a2 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ChangeBatchJobPoolCompartmentDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ChangeBatchJobPoolCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ChangeBatchTaskEnvironmentCompartmentDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ChangeBatchTaskEnvironmentCompartmentDetails.java index b13a2c08c2a..33475e078f7 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ChangeBatchTaskEnvironmentCompartmentDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ChangeBatchTaskEnvironmentCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ChangeBatchTaskProfileCompartmentDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ChangeBatchTaskProfileCompartmentDetails.java index 80ab62d94e8..47ccff27eec 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ChangeBatchTaskProfileCompartmentDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ChangeBatchTaskProfileCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ComputeTask.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ComputeTask.java index 9bbb1a72ec9..00a39e7a733 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ComputeTask.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ComputeTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ComputeTaskSummary.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ComputeTaskSummary.java index 6e0ba1de320..4a35a88343f 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ComputeTaskSummary.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ComputeTaskSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchContextDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchContextDetails.java index b0af3f5392d..7852e6050c9 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchContextDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchContextDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchJobDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchJobDetails.java index d488aa0fd2f..63242d6655c 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchJobDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchJobPoolDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchJobPoolDetails.java index e40a6f3aa65..2b43c74446b 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchJobPoolDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchJobPoolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchTaskDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchTaskDetails.java index ef63eed45fb..5f1a26aa875 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchTaskDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchTaskEnvironmentDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchTaskEnvironmentDetails.java index e1a8e793e90..aa04d1f583b 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchTaskEnvironmentDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchTaskEnvironmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchTaskProfileDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchTaskProfileDetails.java index 1c08ec44cb4..e46981c93da 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchTaskProfileDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateBatchTaskProfileDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateComputeTaskDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateComputeTaskDetails.java index 1fdc7c606d7..6c2ebb37e11 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateComputeTaskDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateComputeTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateFleetDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateFleetDetails.java index b0f622e3517..0319ace6cb6 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateFleetDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateFleetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateNetworkDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateNetworkDetails.java index 48d7333048f..c25c0159bcb 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateNetworkDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateNetworkDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateServiceManagedFleetDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateServiceManagedFleetDetails.java index fff151b8ef7..18b9ff62125 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateServiceManagedFleetDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/CreateServiceManagedFleetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/EnvironmentVariable.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/EnvironmentVariable.java index b805118431a..ac6b35cb3b7 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/EnvironmentVariable.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/EnvironmentVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/Fleet.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/Fleet.java index 2eac3640798..b59814a8016 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/Fleet.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/Fleet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/FleetAssignmentPolicy.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/FleetAssignmentPolicy.java index fc7b24992b2..abc1e06814d 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/FleetAssignmentPolicy.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/FleetAssignmentPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/FleetShape.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/FleetShape.java index 409cded6235..75fbbd64e52 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/FleetShape.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/FleetShape.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/FlexFitFleetAssignmentPolicy.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/FlexFitFleetAssignmentPolicy.java index 970c27ce4df..8b2ee2cfb2e 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/FlexFitFleetAssignmentPolicy.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/FlexFitFleetAssignmentPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/JobPriorityConfiguration.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/JobPriorityConfiguration.java index a74812a51ab..d56635f02d2 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/JobPriorityConfiguration.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/JobPriorityConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/LoggingConfiguration.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/LoggingConfiguration.java index f71f40c6280..d53bf8e4bae 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/LoggingConfiguration.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/LoggingConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/Network.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/Network.java index 1fa886d84db..0a986b65a3c 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/Network.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/Network.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/NetworkSecurityGroup.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/NetworkSecurityGroup.java index 5808e8576b3..27d8fe421e6 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/NetworkSecurityGroup.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/NetworkSecurityGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/NfsVolume.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/NfsVolume.java index 450ec977cc1..d46b2bdca5e 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/NfsVolume.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/NfsVolume.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/OciLoggingConfiguration.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/OciLoggingConfiguration.java index 8a6f18875ce..ddc69e03a2f 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/OciLoggingConfiguration.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/OciLoggingConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/OperationStatus.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/OperationStatus.java index 10a9a6aaaf6..ed05d0e32b9 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/OperationStatus.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/OperationType.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/OperationType.java index 3f2c54454d4..431b1f09acd 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/OperationType.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/PauseBatchJobDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/PauseBatchJobDetails.java index 7290e14f8d2..d07edf5c607 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/PauseBatchJobDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/PauseBatchJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/PrivateIp.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/PrivateIp.java index 1cbd93e331d..edd4cd524d8 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/PrivateIp.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/PrivateIp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/SecurityContext.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/SecurityContext.java index b7e7cf3294a..1c4c21ba1df 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/SecurityContext.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/SecurityContext.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ServiceManagedFleet.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ServiceManagedFleet.java index 3a4a9de1282..e72d50a7e39 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ServiceManagedFleet.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ServiceManagedFleet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ShapeMemoryOptions.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ShapeMemoryOptions.java index 21f51313a98..ceac2874d08 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ShapeMemoryOptions.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ShapeMemoryOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ShapeNetworkingBandwidthOptions.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ShapeNetworkingBandwidthOptions.java index 373779ca60c..345ee098af7 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ShapeNetworkingBandwidthOptions.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ShapeNetworkingBandwidthOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ShapeOcpuOptions.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ShapeOcpuOptions.java index e8e76f7a61f..a79244a160c 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ShapeOcpuOptions.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/ShapeOcpuOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/SortBy.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/SortBy.java index c480e837d6b..63127c750bd 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/SortBy.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/SortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/SortOrder.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/SortOrder.java index 32abad5036a..9bfe33bf683 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/SortOrder.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/StartBatchContextDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/StartBatchContextDetails.java index 1e014690718..5b221433dc2 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/StartBatchContextDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/StartBatchContextDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/StartBatchJobPoolDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/StartBatchJobPoolDetails.java index 13428685a72..63b6e19a404 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/StartBatchJobPoolDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/StartBatchJobPoolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/StopBatchContextDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/StopBatchContextDetails.java index 04074e96513..455894685b3 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/StopBatchContextDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/StopBatchContextDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/StopBatchJobPoolDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/StopBatchJobPoolDetails.java index ca293d9374a..777f8b37818 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/StopBatchJobPoolDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/StopBatchJobPoolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/Subnet.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/Subnet.java index 36b77a48afd..9a024dda315 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/Subnet.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/Subnet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UnpauseBatchJobDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UnpauseBatchJobDetails.java index 1b5bd8ab186..34818f727ca 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UnpauseBatchJobDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UnpauseBatchJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UpdateBatchContextDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UpdateBatchContextDetails.java index 1778aea47fe..959080d31ca 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UpdateBatchContextDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UpdateBatchContextDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UpdateBatchJobDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UpdateBatchJobDetails.java index e41fb161446..9825d59b905 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UpdateBatchJobDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UpdateBatchJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UpdateBatchJobPoolDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UpdateBatchJobPoolDetails.java index a7c060d60df..59f39412809 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UpdateBatchJobPoolDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UpdateBatchJobPoolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UpdateBatchTaskEnvironmentDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UpdateBatchTaskEnvironmentDetails.java index 2e85f817e0a..ecbd7081380 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UpdateBatchTaskEnvironmentDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UpdateBatchTaskEnvironmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UpdateBatchTaskProfileDetails.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UpdateBatchTaskProfileDetails.java index 1ec9397509f..6553e91dd26 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UpdateBatchTaskProfileDetails.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/UpdateBatchTaskProfileDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/VirtualNetworkVnic.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/VirtualNetworkVnic.java index 687795afeaa..3e700934187 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/VirtualNetworkVnic.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/VirtualNetworkVnic.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/Vnic.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/Vnic.java index 0fcf945030c..2d2d148cfb0 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/Vnic.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/Vnic.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequest.java index a6a12afe1e0..eaf56138927 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestError.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestError.java index b80d7013359..285b00aa8e6 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestError.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestErrorCollection.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestErrorCollection.java index b5efacfacdf..9f481babe36 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestErrorCollection.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestLogAndErrorSortBy.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestLogAndErrorSortBy.java index 24b88cd3cf5..7ffb7d6f175 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestLogAndErrorSortBy.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestLogAndErrorSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestLogEntry.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestLogEntry.java index 52cbce3129c..5402bb78db7 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestLogEntry.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestLogEntryCollection.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestLogEntryCollection.java index 0d458daa3e5..db7eabfb4e9 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestLogEntryCollection.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestResource.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestResource.java index 2f3864abfba..4ac6170454c 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestResource.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestResourceMetadataKey.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestResourceMetadataKey.java index deb7333cde0..4fb49bed68c 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestResourceMetadataKey.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestSortBy.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestSortBy.java index 52519e947c4..b899270a351 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestSortBy.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestSummary.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestSummary.java index 47790501392..00c962d9064 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestSummary.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestSummaryCollection.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestSummaryCollection.java index 843a06edb90..293619dbc91 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestSummaryCollection.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.model; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CancelBatchJobRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CancelBatchJobRequest.java index b22f6fcfc4b..0902ed95e30 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CancelBatchJobRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CancelBatchJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ChangeBatchContextCompartmentRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ChangeBatchContextCompartmentRequest.java index bc51d4221e1..9cab4397213 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ChangeBatchContextCompartmentRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ChangeBatchContextCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ChangeBatchJobCompartmentRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ChangeBatchJobCompartmentRequest.java index 935ba7ae83a..fc9657c9bc7 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ChangeBatchJobCompartmentRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ChangeBatchJobCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ChangeBatchJobPoolCompartmentRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ChangeBatchJobPoolCompartmentRequest.java index ef25ebd45d6..1f023d784d1 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ChangeBatchJobPoolCompartmentRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ChangeBatchJobPoolCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ChangeBatchTaskEnvironmentCompartmentRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ChangeBatchTaskEnvironmentCompartmentRequest.java index 1ba9865aeb8..0c09a7be1a0 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ChangeBatchTaskEnvironmentCompartmentRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ChangeBatchTaskEnvironmentCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ChangeBatchTaskProfileCompartmentRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ChangeBatchTaskProfileCompartmentRequest.java index 6a1b9a5f587..ed2717b817e 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ChangeBatchTaskProfileCompartmentRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ChangeBatchTaskProfileCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CreateBatchContextRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CreateBatchContextRequest.java index 56dec099f9f..870b6d446ad 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CreateBatchContextRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CreateBatchContextRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CreateBatchJobPoolRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CreateBatchJobPoolRequest.java index aff2d2dfd8e..01bc56e4a9f 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CreateBatchJobPoolRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CreateBatchJobPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CreateBatchJobRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CreateBatchJobRequest.java index bdf022e6834..a9072efaa2c 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CreateBatchJobRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CreateBatchJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CreateBatchTaskEnvironmentRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CreateBatchTaskEnvironmentRequest.java index 8fd05149c33..9c70b6b3aea 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CreateBatchTaskEnvironmentRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CreateBatchTaskEnvironmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CreateBatchTaskProfileRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CreateBatchTaskProfileRequest.java index 5e54c402dd7..d12c62e537f 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CreateBatchTaskProfileRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/CreateBatchTaskProfileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/DeleteBatchContextRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/DeleteBatchContextRequest.java index c9a9ab8def1..ba68e74ac46 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/DeleteBatchContextRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/DeleteBatchContextRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/DeleteBatchJobPoolRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/DeleteBatchJobPoolRequest.java index 600d39e119f..b607c7f3493 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/DeleteBatchJobPoolRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/DeleteBatchJobPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/DeleteBatchTaskEnvironmentRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/DeleteBatchTaskEnvironmentRequest.java index 866c247444b..e6181c99286 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/DeleteBatchTaskEnvironmentRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/DeleteBatchTaskEnvironmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/DeleteBatchTaskProfileRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/DeleteBatchTaskProfileRequest.java index 2902ca4f874..260ef1428ba 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/DeleteBatchTaskProfileRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/DeleteBatchTaskProfileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchContextRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchContextRequest.java index 576d44f8475..9e735c0fbce 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchContextRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchContextRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchJobPoolRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchJobPoolRequest.java index fc554a13889..9613d8ac66b 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchJobPoolRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchJobPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchJobRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchJobRequest.java index df532ba7210..893664a3a80 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchJobRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchTaskEnvironmentRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchTaskEnvironmentRequest.java index 2b29e9f59cd..1b488f0f441 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchTaskEnvironmentRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchTaskEnvironmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchTaskProfileRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchTaskProfileRequest.java index 66db0fb7a5f..a8ef79c9505 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchTaskProfileRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchTaskProfileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchTaskRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchTaskRequest.java index 2292943d288..442862cb41b 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchTaskRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetBatchTaskRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetWorkRequestRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetWorkRequestRequest.java index a0d1181fe8e..69a5c7b087b 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetWorkRequestRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchContextShapesRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchContextShapesRequest.java index 29c1789a860..83ab8d623c5 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchContextShapesRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchContextShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchContextsRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchContextsRequest.java index 9baf695011d..3e18ef73dea 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchContextsRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchContextsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchJobPoolsRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchJobPoolsRequest.java index ea933dabdc1..3c267796ebe 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchJobPoolsRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchJobPoolsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchJobTasksRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchJobTasksRequest.java index aac2cb6ef03..69f6b292847 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchJobTasksRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchJobTasksRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchJobsRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchJobsRequest.java index 2f86f87dcdb..98e74a942cd 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchJobsRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchJobsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchTaskEnvironmentsRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchTaskEnvironmentsRequest.java index a44325a0b31..cfcb538b7f3 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchTaskEnvironmentsRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchTaskEnvironmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchTaskProfilesRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchTaskProfilesRequest.java index 949f3cfaea7..9927673a2ba 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchTaskProfilesRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchTaskProfilesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchTasksRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchTasksRequest.java index 661a49ec60b..4f2792a520d 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchTasksRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListBatchTasksRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListWorkRequestErrorsRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListWorkRequestErrorsRequest.java index 65fce67ccd2..cb3ef5c7699 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListWorkRequestLogsRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListWorkRequestLogsRequest.java index 8c72734ffe1..bd4df8d883b 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListWorkRequestLogsRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListWorkRequestsRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListWorkRequestsRequest.java index 8eb2fb162d2..f3805080ba0 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListWorkRequestsRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/PauseBatchJobRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/PauseBatchJobRequest.java index dd82380108b..026b2cbb9f9 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/PauseBatchJobRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/PauseBatchJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/StartBatchContextRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/StartBatchContextRequest.java index 366435cee5b..5edef8b4bdf 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/StartBatchContextRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/StartBatchContextRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/StartBatchJobPoolRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/StartBatchJobPoolRequest.java index 08c5ac43970..e5d4ce57d00 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/StartBatchJobPoolRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/StartBatchJobPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/StopBatchContextRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/StopBatchContextRequest.java index 7301f4454b4..137073dcae0 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/StopBatchContextRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/StopBatchContextRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/StopBatchJobPoolRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/StopBatchJobPoolRequest.java index b97f6ef2d46..c2b20968898 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/StopBatchJobPoolRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/StopBatchJobPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UnpauseBatchJobRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UnpauseBatchJobRequest.java index f591b66171b..39adbf6ee81 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UnpauseBatchJobRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UnpauseBatchJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UpdateBatchContextRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UpdateBatchContextRequest.java index ddab110cc7b..62db25911a5 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UpdateBatchContextRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UpdateBatchContextRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UpdateBatchJobPoolRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UpdateBatchJobPoolRequest.java index 36d0c7a3c6b..4e6a7e9fd2f 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UpdateBatchJobPoolRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UpdateBatchJobPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UpdateBatchJobRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UpdateBatchJobRequest.java index cbee7eb6a42..adfa52c98e6 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UpdateBatchJobRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UpdateBatchJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UpdateBatchTaskEnvironmentRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UpdateBatchTaskEnvironmentRequest.java index 38ff4b520eb..205118d4207 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UpdateBatchTaskEnvironmentRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UpdateBatchTaskEnvironmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UpdateBatchTaskProfileRequest.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UpdateBatchTaskProfileRequest.java index a68407116d2..d3d9bfa7e6c 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UpdateBatchTaskProfileRequest.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/requests/UpdateBatchTaskProfileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.requests; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CancelBatchJobResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CancelBatchJobResponse.java index c013d7beb36..b80c7fdc363 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CancelBatchJobResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CancelBatchJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ChangeBatchContextCompartmentResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ChangeBatchContextCompartmentResponse.java index 7d33abd5975..7c8e5097235 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ChangeBatchContextCompartmentResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ChangeBatchContextCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ChangeBatchJobCompartmentResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ChangeBatchJobCompartmentResponse.java index bbd450e6996..a076d10e100 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ChangeBatchJobCompartmentResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ChangeBatchJobCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ChangeBatchJobPoolCompartmentResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ChangeBatchJobPoolCompartmentResponse.java index c7038aa216f..c13c1d956e2 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ChangeBatchJobPoolCompartmentResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ChangeBatchJobPoolCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ChangeBatchTaskEnvironmentCompartmentResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ChangeBatchTaskEnvironmentCompartmentResponse.java index 45d8121a237..56a0b487b2b 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ChangeBatchTaskEnvironmentCompartmentResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ChangeBatchTaskEnvironmentCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ChangeBatchTaskProfileCompartmentResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ChangeBatchTaskProfileCompartmentResponse.java index ca151f2196b..68a33e0e79f 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ChangeBatchTaskProfileCompartmentResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ChangeBatchTaskProfileCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CreateBatchContextResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CreateBatchContextResponse.java index c0062063282..cb02f2b54e6 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CreateBatchContextResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CreateBatchContextResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CreateBatchJobPoolResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CreateBatchJobPoolResponse.java index 026019ddf47..6f3bf925469 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CreateBatchJobPoolResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CreateBatchJobPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CreateBatchJobResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CreateBatchJobResponse.java index 80d8111e37e..cb94f0d8896 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CreateBatchJobResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CreateBatchJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CreateBatchTaskEnvironmentResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CreateBatchTaskEnvironmentResponse.java index ac8e10c3271..860fb0d0a49 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CreateBatchTaskEnvironmentResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CreateBatchTaskEnvironmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CreateBatchTaskProfileResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CreateBatchTaskProfileResponse.java index b79cc4080da..406f95fb509 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CreateBatchTaskProfileResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/CreateBatchTaskProfileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/DeleteBatchContextResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/DeleteBatchContextResponse.java index 564dd918209..38c4d533094 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/DeleteBatchContextResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/DeleteBatchContextResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/DeleteBatchJobPoolResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/DeleteBatchJobPoolResponse.java index 7dbc055474e..38e75ec7bf1 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/DeleteBatchJobPoolResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/DeleteBatchJobPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/DeleteBatchTaskEnvironmentResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/DeleteBatchTaskEnvironmentResponse.java index bdfaae90340..e3a85af9f58 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/DeleteBatchTaskEnvironmentResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/DeleteBatchTaskEnvironmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/DeleteBatchTaskProfileResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/DeleteBatchTaskProfileResponse.java index 2c469186b38..f353e5f57a2 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/DeleteBatchTaskProfileResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/DeleteBatchTaskProfileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchContextResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchContextResponse.java index cf8eb587c1d..740927a7d85 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchContextResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchContextResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchJobPoolResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchJobPoolResponse.java index b25184ed39b..69a0c03c1d0 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchJobPoolResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchJobPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchJobResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchJobResponse.java index 46f3f8aa16d..76e6c018f86 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchJobResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchTaskEnvironmentResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchTaskEnvironmentResponse.java index 24d973c6259..a49536ffd00 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchTaskEnvironmentResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchTaskEnvironmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchTaskProfileResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchTaskProfileResponse.java index bbedfb03b66..fa096059f31 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchTaskProfileResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchTaskProfileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchTaskResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchTaskResponse.java index 5320c6ee606..386d0cbe656 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchTaskResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetBatchTaskResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetWorkRequestResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetWorkRequestResponse.java index 66b12d8b03b..1f9ca4896e4 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetWorkRequestResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchContextShapesResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchContextShapesResponse.java index 6ecf4fec6af..93e14b268a3 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchContextShapesResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchContextShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchContextsResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchContextsResponse.java index ea3dabd451c..da32668a57a 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchContextsResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchContextsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchJobPoolsResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchJobPoolsResponse.java index 1b1e27e73af..b81a528e48f 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchJobPoolsResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchJobPoolsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchJobTasksResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchJobTasksResponse.java index 3c1cf3a07e9..f9919ee6a77 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchJobTasksResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchJobTasksResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchJobsResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchJobsResponse.java index def4301dee7..2ee381b4713 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchJobsResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchJobsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchTaskEnvironmentsResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchTaskEnvironmentsResponse.java index 71061709eba..20ad69a8a1f 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchTaskEnvironmentsResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchTaskEnvironmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchTaskProfilesResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchTaskProfilesResponse.java index a13fb482ae2..3df47ab283f 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchTaskProfilesResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchTaskProfilesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchTasksResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchTasksResponse.java index 3f7400c7216..4fbc17cd143 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchTasksResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListBatchTasksResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListWorkRequestErrorsResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListWorkRequestErrorsResponse.java index 6c4ad1b309d..88a0988cd04 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListWorkRequestLogsResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListWorkRequestLogsResponse.java index 811abf925ef..9bc80667065 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListWorkRequestLogsResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListWorkRequestsResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListWorkRequestsResponse.java index b71ab2197f0..085e415bb2e 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListWorkRequestsResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/PauseBatchJobResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/PauseBatchJobResponse.java index 6d26fb9a7ec..cc0a3087ca6 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/PauseBatchJobResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/PauseBatchJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/StartBatchContextResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/StartBatchContextResponse.java index c18a57ecd71..da853f99963 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/StartBatchContextResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/StartBatchContextResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/StartBatchJobPoolResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/StartBatchJobPoolResponse.java index 52c7f675fc0..a486ceebbe4 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/StartBatchJobPoolResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/StartBatchJobPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/StopBatchContextResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/StopBatchContextResponse.java index b4c1fac68cb..7194063b30e 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/StopBatchContextResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/StopBatchContextResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/StopBatchJobPoolResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/StopBatchJobPoolResponse.java index 5023f1abb0c..20fddd4c06b 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/StopBatchJobPoolResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/StopBatchJobPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UnpauseBatchJobResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UnpauseBatchJobResponse.java index 80194c501a6..057a4e59ee5 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UnpauseBatchJobResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UnpauseBatchJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UpdateBatchContextResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UpdateBatchContextResponse.java index 70338aa0379..9d2aa5ab849 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UpdateBatchContextResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UpdateBatchContextResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UpdateBatchJobPoolResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UpdateBatchJobPoolResponse.java index 1530dff4839..b8c442c097f 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UpdateBatchJobPoolResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UpdateBatchJobPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UpdateBatchJobResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UpdateBatchJobResponse.java index 9edba633acb..8024abb4c9e 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UpdateBatchJobResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UpdateBatchJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UpdateBatchTaskEnvironmentResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UpdateBatchTaskEnvironmentResponse.java index 8bdbba906d7..87dd6453791 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UpdateBatchTaskEnvironmentResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UpdateBatchTaskEnvironmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UpdateBatchTaskProfileResponse.java b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UpdateBatchTaskProfileResponse.java index 65362b03298..086b2ef5736 100644 --- a/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UpdateBatchTaskProfileResponse.java +++ b/bmc-batch/src/main/java/com/oracle/bmc/batch/responses/UpdateBatchTaskProfileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.batch.responses; diff --git a/bmc-batch/src/main/resources/com/oracle/bmc/batch/client.properties b/bmc-batch/src/main/resources/com/oracle/bmc/batch/client.properties index 0d8e9a2567b..4b014c64bd6 100644 --- a/bmc-batch/src/main/resources/com/oracle/bmc/batch/client.properties +++ b/bmc-batch/src/main/resources/com/oracle/bmc/batch/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-bds/pom.xml b/bmc-bds/pom.xml index 795ea256c49..3050cac04f3 100644 --- a/bmc-bds/pom.xml +++ b/bmc-bds/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-bds @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/Bds.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/Bds.java index adabc911563..94d099636a8 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/Bds.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/Bds.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/BdsAsync.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/BdsAsync.java index bab87e188bd..0f08812c824 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/BdsAsync.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/BdsAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/BdsAsyncClient.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/BdsAsyncClient.java index a2a33c1602f..0a6f4223c40 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/BdsAsyncClient.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/BdsAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/BdsClient.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/BdsClient.java index 7ac0b9b2f89..5b817c1cfc9 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/BdsClient.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/BdsClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/BdsPaginators.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/BdsPaginators.java index f16568c4a5b..3458cf9caad 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/BdsPaginators.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/BdsPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/BdsWaiters.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/BdsWaiters.java index b539f4c1257..089fecfb534 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/BdsWaiters.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/BdsWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ActionTypes.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ActionTypes.java index 2e74ef34fba..b408db0e921 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ActionTypes.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ActionTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ActivateBdsMetastoreConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ActivateBdsMetastoreConfigurationDetails.java index 9e06236cccc..e909caab8e5 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ActivateBdsMetastoreConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ActivateBdsMetastoreConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ActivateIamUserSyncConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ActivateIamUserSyncConfigurationDetails.java index 96841e9e749..1f512582a8a 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ActivateIamUserSyncConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ActivateIamUserSyncConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ActivateUpstConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ActivateUpstConfigurationDetails.java index 08ded80d067..d047b2e1a07 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ActivateUpstConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ActivateUpstConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddAutoScalePolicyDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddAutoScalePolicyDetails.java index 76ffe43180a..cddaf760c8b 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddAutoScalePolicyDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddAutoScalePolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddAutoScalingConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddAutoScalingConfigurationDetails.java index 5640bec63c2..8644da83aa7 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddAutoScalingConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddAutoScalingConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddBlockStorageDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddBlockStorageDetails.java index 89165bd1be5..28e15fd4073 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddBlockStorageDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddBlockStorageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddCloudSqlDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddCloudSqlDetails.java index 1c0aa287890..cc415a4edb8 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddCloudSqlDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddCloudSqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddKafkaDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddKafkaDetails.java index cb3dc48a239..a0b430cb7b3 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddKafkaDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddKafkaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddMasterNodesDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddMasterNodesDetails.java index 8dd0400c7be..6573c889bf9 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddMasterNodesDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddMasterNodesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddMetricBasedHorizontalScalingPolicyDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddMetricBasedHorizontalScalingPolicyDetails.java index d40839c324b..df4ae730f16 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddMetricBasedHorizontalScalingPolicyDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddMetricBasedHorizontalScalingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddMetricBasedVerticalScalingPolicyDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddMetricBasedVerticalScalingPolicyDetails.java index 0964fecf58f..02c16a1add8 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddMetricBasedVerticalScalingPolicyDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddMetricBasedVerticalScalingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddScheduleBasedHorizontalScalingPolicyDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddScheduleBasedHorizontalScalingPolicyDetails.java index 9cef91c6268..cd0335398f5 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddScheduleBasedHorizontalScalingPolicyDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddScheduleBasedHorizontalScalingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddScheduleBasedVerticalScalingPolicyDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddScheduleBasedVerticalScalingPolicyDetails.java index a7913287815..4e99a736803 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddScheduleBasedVerticalScalingPolicyDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddScheduleBasedVerticalScalingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddUtilityNodesDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddUtilityNodesDetails.java index 8e41a72a5b4..4688a91ad28 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddUtilityNodesDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddUtilityNodesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddWorkerNodesDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddWorkerNodesDetails.java index e43831e3f67..802f89e25c5 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddWorkerNodesDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AddWorkerNodesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalePolicy.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalePolicy.java index c1f65ce7e23..14d887a8a11 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalePolicy.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalePolicyDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalePolicyDetails.java index 6df07f6a6a5..63e9245d816 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalePolicyDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalePolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalePolicyMetricRule.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalePolicyMetricRule.java index ddce616702c..fb5bd95e738 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalePolicyMetricRule.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalePolicyMetricRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalePolicyRule.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalePolicyRule.java index be043c32cd3..20f7653d5eb 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalePolicyRule.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalePolicyRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalingConfiguration.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalingConfiguration.java index 45533b8a39d..ee68296ae3b 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalingConfiguration.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalingConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalingConfigurationSummary.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalingConfigurationSummary.java index 4f63f5702dd..962017635b8 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalingConfigurationSummary.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AutoScalingConfigurationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AvailabilityStatus.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AvailabilityStatus.java index 007a93d955b..1579c6f8bb1 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AvailabilityStatus.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/AvailabilityStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BackupNodeDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BackupNodeDetails.java index 16f87ba527e..60393a0fdb5 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BackupNodeDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BackupNodeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BatchingBasedOdhPatchingConfig.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BatchingBasedOdhPatchingConfig.java index 0faf96f8338..d6f4deccebb 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BatchingBasedOdhPatchingConfig.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BatchingBasedOdhPatchingConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BatchingBasedPatchingConfigs.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BatchingBasedPatchingConfigs.java index 0ecdf0f41a5..8fce760e2b4 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BatchingBasedPatchingConfigs.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BatchingBasedPatchingConfigs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsApiKey.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsApiKey.java index ddfde742cc6..7ceeb473d16 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsApiKey.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsApiKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsApiKeySummary.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsApiKeySummary.java index 60acb106e81..561e9f60d78 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsApiKeySummary.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsApiKeySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsCapacityReport.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsCapacityReport.java index a4964808237..6da1a382f21 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsCapacityReport.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsCapacityReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsClusterVersionSummary.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsClusterVersionSummary.java index 9e65e316ccb..4f75cba36c7 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsClusterVersionSummary.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsClusterVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsInstance.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsInstance.java index abd0a037c3d..6e830bafb77 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsInstance.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsInstanceSummary.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsInstanceSummary.java index ca73637cf96..9d5555e6846 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsInstanceSummary.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsInstanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsMetastoreConfiguration.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsMetastoreConfiguration.java index 2a3ad5c6478..2cf2c1ea723 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsMetastoreConfiguration.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsMetastoreConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsMetastoreConfigurationSummary.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsMetastoreConfigurationSummary.java index 8674790337d..434f4f7909f 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsMetastoreConfigurationSummary.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsMetastoreConfigurationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsSoftwareUpdate.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsSoftwareUpdate.java index 9c583571643..a3d61155c59 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsSoftwareUpdate.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/BdsSoftwareUpdate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CapacityAvailability.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CapacityAvailability.java index 6c155e8f7a1..eb60322e9de 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CapacityAvailability.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CapacityAvailability.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CapacityReportShapeAvailability.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CapacityReportShapeAvailability.java index 9f275451a9e..65c31bc5de5 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CapacityReportShapeAvailability.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CapacityReportShapeAvailability.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CertificateServiceInfoDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CertificateServiceInfoDetails.java index 39321aa46f4..6f32be8d988 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CertificateServiceInfoDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CertificateServiceInfoDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CertificateServiceInfoSummary.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CertificateServiceInfoSummary.java index 2c870232298..ed6d85a03e3 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CertificateServiceInfoSummary.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CertificateServiceInfoSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ChangeBdsInstanceCompartmentDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ChangeBdsInstanceCompartmentDetails.java index 1b61982e5b9..8f3030f1c56 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ChangeBdsInstanceCompartmentDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ChangeBdsInstanceCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ChangeShapeDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ChangeShapeDetails.java index 5ba6dc4a568..932a1094fc5 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ChangeShapeDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ChangeShapeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ChangeShapeNodes.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ChangeShapeNodes.java index e1731f8e081..5e0c6d4c475 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ChangeShapeNodes.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ChangeShapeNodes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CloudSqlDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CloudSqlDetails.java index a5e99686799..19826da7881 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CloudSqlDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CloudSqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ClusterDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ClusterDetails.java index 9d35ceaa14f..b84e9d27a94 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ClusterDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateBdsApiKeyDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateBdsApiKeyDetails.java index d554400b517..f69c74c1e09 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateBdsApiKeyDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateBdsApiKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateBdsCapacityReportDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateBdsCapacityReportDetails.java index 8453353fac0..2e5b84b53a7 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateBdsCapacityReportDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateBdsCapacityReportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateBdsInstanceDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateBdsInstanceDetails.java index 6d562149aa5..8238bcde612 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateBdsInstanceDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateBdsInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateBdsMetastoreConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateBdsMetastoreConfigurationDetails.java index e11ad365bed..0aa945fac79 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateBdsMetastoreConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateBdsMetastoreConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateCapacityReportShapeAvailabilityDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateCapacityReportShapeAvailabilityDetails.java index 4811915c2aa..c0c6715d15e 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateCapacityReportShapeAvailabilityDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateCapacityReportShapeAvailabilityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateIdentityConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateIdentityConfigurationDetails.java index 44f91dce81b..8c5d0f5a423 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateIdentityConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateIdentityConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateNodeBackupConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateNodeBackupConfigurationDetails.java index e7e94031477..2e2c5310aef 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateNodeBackupConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateNodeBackupConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateNodeDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateNodeDetails.java index a093b01e1fd..c4f5e7f6016 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateNodeDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateNodeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateNodeReplaceConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateNodeReplaceConfigurationDetails.java index 8171facea6d..a1014ddb295 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateNodeReplaceConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateNodeReplaceConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateResourcePrincipalConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateResourcePrincipalConfigurationDetails.java index 27b01cfb54e..757ee9dac78 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateResourcePrincipalConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/CreateResourcePrincipalConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DayBasedHorizontalScalingScheduleDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DayBasedHorizontalScalingScheduleDetails.java index 5c8aa0f59dc..50bfa3ae4a7 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DayBasedHorizontalScalingScheduleDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DayBasedHorizontalScalingScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DayBasedVerticalScalingScheduleDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DayBasedVerticalScalingScheduleDetails.java index c35e0df238e..8bf736b9137 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DayBasedVerticalScalingScheduleDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DayBasedVerticalScalingScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DeactivateIamUserSyncConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DeactivateIamUserSyncConfigurationDetails.java index c8ddaacab99..ce2da217871 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DeactivateIamUserSyncConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DeactivateIamUserSyncConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DeactivateUpstConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DeactivateUpstConfigurationDetails.java index 953a926a8a4..f16a09e4806 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DeactivateUpstConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DeactivateUpstConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DefaultError.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DefaultError.java index e2e964c503c..a1d5196b8f5 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DefaultError.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DefaultError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DisableCertificateDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DisableCertificateDetails.java index e31cb5c64c2..c8232549af8 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DisableCertificateDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DisableCertificateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DomainBasedOdhPatchingConfig.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DomainBasedOdhPatchingConfig.java index 9314374ed5d..466990068f9 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DomainBasedOdhPatchingConfig.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DomainBasedOdhPatchingConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DomainBasedPatchingConfigs.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DomainBasedPatchingConfigs.java index 2b8413203d7..b4373e6528a 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DomainBasedPatchingConfigs.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DomainBasedPatchingConfigs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DomainTypeCapacityReport.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DomainTypeCapacityReport.java index b679d4eb568..7ceeb03a857 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DomainTypeCapacityReport.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DomainTypeCapacityReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DowntimeBasedOdhPatchingConfig.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DowntimeBasedOdhPatchingConfig.java index 3131b42b3e5..38515f60012 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DowntimeBasedOdhPatchingConfig.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DowntimeBasedOdhPatchingConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DowntimeBasedPatchingConfigs.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DowntimeBasedPatchingConfigs.java index f6a07a46c53..24477a2217a 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DowntimeBasedPatchingConfigs.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/DowntimeBasedPatchingConfigs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/EnableCertificateDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/EnableCertificateDetails.java index df37c4203d1..6ca593337f9 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/EnableCertificateDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/EnableCertificateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ExecuteBootstrapScriptDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ExecuteBootstrapScriptDetails.java index 721230ddb31..000f0163988 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ExecuteBootstrapScriptDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ExecuteBootstrapScriptDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ForceRefreshResourcePrincipalDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ForceRefreshResourcePrincipalDetails.java index 0631c11d831..8cbbc20c798 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ForceRefreshResourcePrincipalDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ForceRefreshResourcePrincipalDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/HorizontalScalingScheduleDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/HorizontalScalingScheduleDetails.java index 26e05feafbb..b59cf2202a8 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/HorizontalScalingScheduleDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/HorizontalScalingScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/HostCertDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/HostCertDetails.java index d3c914150b9..e1c77f482fc 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/HostCertDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/HostCertDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/HostSpecificCertificateDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/HostSpecificCertificateDetails.java index 6838527d1e5..0c61dff6992 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/HostSpecificCertificateDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/HostSpecificCertificateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/IamUserSyncConfiguration.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/IamUserSyncConfiguration.java index 06eefcc4a0c..6ba86208d71 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/IamUserSyncConfiguration.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/IamUserSyncConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/IamUserSyncConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/IamUserSyncConfigurationDetails.java index 0af3c47488c..fdd078b67e5 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/IamUserSyncConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/IamUserSyncConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/IdentityConfiguration.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/IdentityConfiguration.java index 5fb76fd04c5..b5057ac0377 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/IdentityConfiguration.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/IdentityConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/IdentityConfigurationSummary.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/IdentityConfigurationSummary.java index e6b2e774910..33122283cd8 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/IdentityConfigurationSummary.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/IdentityConfigurationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/InstallOsPatchDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/InstallOsPatchDetails.java index 64c14d7db0b..1f57abbd030 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/InstallOsPatchDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/InstallOsPatchDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/InstallPatchDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/InstallPatchDetails.java index 70a64098739..b7d9294518c 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/InstallPatchDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/InstallPatchDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/InstallSoftwareUpdatesDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/InstallSoftwareUpdatesDetails.java index 499ebe2386d..35055ebe81b 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/InstallSoftwareUpdatesDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/InstallSoftwareUpdatesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/KerberosDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/KerberosDetails.java index 2e9d81922f1..fd17d51b5ff 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/KerberosDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/KerberosDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/LevelTypeDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/LevelTypeDetails.java index 6dc54f85c3b..49d237c5e11 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/LevelTypeDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/LevelTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedHorizontalScaleInConfig.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedHorizontalScaleInConfig.java index 6ce75aa7aba..e8456088a36 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedHorizontalScaleInConfig.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedHorizontalScaleInConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedHorizontalScaleOutConfig.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedHorizontalScaleOutConfig.java index f42911a3737..8c8b068db53 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedHorizontalScaleOutConfig.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedHorizontalScaleOutConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedHorizontalScalingPolicyDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedHorizontalScalingPolicyDetails.java index 02516027fd0..d0e5f6e09cf 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedHorizontalScalingPolicyDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedHorizontalScalingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedVerticalScaleDownConfig.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedVerticalScaleDownConfig.java index d52de8a9c8a..454b54c65ae 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedVerticalScaleDownConfig.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedVerticalScaleDownConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedVerticalScaleUpConfig.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedVerticalScaleUpConfig.java index 042380691af..87518fa91f4 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedVerticalScaleUpConfig.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedVerticalScaleUpConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedVerticalScalingPolicyDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedVerticalScalingPolicyDetails.java index 935f3d6e382..2baa1b49767 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedVerticalScalingPolicyDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricBasedVerticalScalingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricThresholdRule.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricThresholdRule.java index 71b49d02d19..712a77e3213 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricThresholdRule.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MetricThresholdRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MultiAdCapacityReport.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MultiAdCapacityReport.java index 07d9f61abca..67f1f21ccab 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MultiAdCapacityReport.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/MultiAdCapacityReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NetworkConfig.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NetworkConfig.java index 299544ca628..f408e6d80e5 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NetworkConfig.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NetworkConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/Node.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/Node.java index 49f6d9ae09d..0da43e2ca5a 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/Node.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/Node.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeBackup.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeBackup.java index c59a98384d3..c8f5f8a3107 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeBackup.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeBackup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeBackupConfiguration.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeBackupConfiguration.java index e3d311f892d..dd6be99a82c 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeBackupConfiguration.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeBackupConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeBackupConfigurationSummary.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeBackupConfigurationSummary.java index 2b5f5578054..062d8868248 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeBackupConfigurationSummary.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeBackupConfigurationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeBackupSummary.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeBackupSummary.java index 3e361fe96d9..01da5141b59 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeBackupSummary.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeBackupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeLevelDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeLevelDetails.java index fef886b5abf..c698a45b256 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeLevelDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeLevelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeReplaceConfiguration.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeReplaceConfiguration.java index 82372be4bc7..6a7785df20a 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeReplaceConfiguration.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeReplaceConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeReplaceConfigurationSummary.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeReplaceConfigurationSummary.java index 345f436bdb1..897eb2ffa7e 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeReplaceConfigurationSummary.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeReplaceConfigurationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeTypeLevelDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeTypeLevelDetails.java index b28dac8ca6b..2169a87aae3 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeTypeLevelDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeTypeLevelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeTypeShapeConfig.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeTypeShapeConfig.java index 59e849216da..9e8a972c527 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeTypeShapeConfig.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/NodeTypeShapeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OdhPatchingConfig.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OdhPatchingConfig.java index cd78156f964..7a4e6c17fae 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OdhPatchingConfig.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OdhPatchingConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OperationStatus.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OperationStatus.java index 00f9acedf12..72beeab13b3 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OperationStatus.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OperationTypes.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OperationTypes.java index c95da350d49..0ef6e3532e4 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OperationTypes.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OperationTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OsPatchDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OsPatchDetails.java index b625eb64bd0..cb1a8e76d84 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OsPatchDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OsPatchDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OsPatchPackageSummary.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OsPatchPackageSummary.java index 2f81d7a62ae..b12801e0c4c 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OsPatchPackageSummary.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OsPatchPackageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OsPatchSummary.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OsPatchSummary.java index aec04b63b3b..dddda08a765 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OsPatchSummary.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/OsPatchSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/PatchHistorySummary.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/PatchHistorySummary.java index f3d4cd39091..b080c1d9a30 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/PatchHistorySummary.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/PatchHistorySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/PatchSummary.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/PatchSummary.java index 7d790d1561a..c6232b5b391 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/PatchSummary.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/PatchSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/PatchingConfigs.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/PatchingConfigs.java index 3e87411721a..1f1a19a3502 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/PatchingConfigs.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/PatchingConfigs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RefreshConfidentialApplicationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RefreshConfidentialApplicationDetails.java index c11ed59b51e..508ea7c3b50 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RefreshConfidentialApplicationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RefreshConfidentialApplicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RefreshUpstTokenExchangeKeytabDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RefreshUpstTokenExchangeKeytabDetails.java index 0c57819f0b1..248c157a66e 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RefreshUpstTokenExchangeKeytabDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RefreshUpstTokenExchangeKeytabDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveAutoScalingConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveAutoScalingConfigurationDetails.java index 2b0b3c6d1a0..7c5364bf769 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveAutoScalingConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveAutoScalingConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveCloudSqlDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveCloudSqlDetails.java index 9ea04ebc227..2928d5e0f1a 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveCloudSqlDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveCloudSqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveKafkaDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveKafkaDetails.java index 079261f8a9c..43b82640af5 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveKafkaDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveKafkaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveNodeDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveNodeDetails.java index 6ddd55285d2..8cae8e5052b 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveNodeDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveNodeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveNodeReplaceConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveNodeReplaceConfigurationDetails.java index c31855c51d5..29ddd8ff321 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveNodeReplaceConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveNodeReplaceConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveResourcePrincipalConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveResourcePrincipalConfigurationDetails.java index 052d384e671..22703a5f5fe 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveResourcePrincipalConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RemoveResourcePrincipalConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RenewCertificateDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RenewCertificateDetails.java index d5f0a4170af..3f84fff9cdd 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RenewCertificateDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RenewCertificateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ReplaceNodeDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ReplaceNodeDetails.java index 086f6863f34..ce224a1561f 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ReplaceNodeDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ReplaceNodeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ResourcePrincipalConfiguration.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ResourcePrincipalConfiguration.java index c1d1d05291a..70a465a8bc8 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ResourcePrincipalConfiguration.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ResourcePrincipalConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ResourcePrincipalConfigurationSummary.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ResourcePrincipalConfigurationSummary.java index 0222f3296cd..9e049e4a99e 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ResourcePrincipalConfigurationSummary.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ResourcePrincipalConfigurationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RestartNodeDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RestartNodeDetails.java index 048aa3f7f95..3c118987d50 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RestartNodeDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/RestartNodeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ScheduleBasedHorizontalScalingPolicyDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ScheduleBasedHorizontalScalingPolicyDetails.java index 653709a8f39..951414cd6e8 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ScheduleBasedHorizontalScalingPolicyDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ScheduleBasedHorizontalScalingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ScheduleBasedVerticalScalingPolicyDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ScheduleBasedVerticalScalingPolicyDetails.java index 83bf98f8849..5163224024e 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ScheduleBasedVerticalScalingPolicyDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ScheduleBasedVerticalScalingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ScheduleType.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ScheduleType.java index db15de9ad14..8cb61489958 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ScheduleType.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ScheduleType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/Service.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/Service.java index 4cf0cf0a3cd..12e32f173e7 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/Service.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/Service.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ShapeConfigDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ShapeConfigDetails.java index abd44adf4de..09d92c11fc0 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ShapeConfigDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/ShapeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/SingleAdCapacityReport.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/SingleAdCapacityReport.java index b596cf80e3b..ebf13faa0be 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/SingleAdCapacityReport.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/SingleAdCapacityReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/SoftwareUpdate.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/SoftwareUpdate.java index 9ad32cbf3d2..76ff6aed353 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/SoftwareUpdate.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/SoftwareUpdate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/SoftwareUpdateCollection.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/SoftwareUpdateCollection.java index f7e77b3b66f..2a0d48e4003 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/SoftwareUpdateCollection.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/SoftwareUpdateCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/SoftwareUpdateSummary.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/SoftwareUpdateSummary.java index a38d550a59c..2336bdd3aa2 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/SoftwareUpdateSummary.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/SoftwareUpdateSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/SortOrders.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/SortOrders.java index 6f12feb745c..a7a9054b278 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/SortOrders.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/SortOrders.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/StartBdsInstanceDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/StartBdsInstanceDetails.java index 937208f52ad..34fd292131f 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/StartBdsInstanceDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/StartBdsInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/StartClusterShapeConfigs.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/StartClusterShapeConfigs.java index 5e8e3e1e043..b267d5eb3f0 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/StartClusterShapeConfigs.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/StartClusterShapeConfigs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/StopBdsInstanceDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/StopBdsInstanceDetails.java index 5b033882d3b..fd4d04497f7 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/StopBdsInstanceDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/StopBdsInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/TestBdsMetastoreConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/TestBdsMetastoreConfigurationDetails.java index 4c4c9e949c5..ce497a37d26 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/TestBdsMetastoreConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/TestBdsMetastoreConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/TestBdsObjectStorageConnectionDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/TestBdsObjectStorageConnectionDetails.java index 2b96b2386a2..299d8753c00 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/TestBdsObjectStorageConnectionDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/TestBdsObjectStorageConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/TimeAndHorizontalScalingConfig.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/TimeAndHorizontalScalingConfig.java index b21a6e152e2..b2d2d1077b4 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/TimeAndHorizontalScalingConfig.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/TimeAndHorizontalScalingConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/TimeAndVerticalScalingConfig.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/TimeAndVerticalScalingConfig.java index f74db6a6248..868ac08989d 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/TimeAndVerticalScalingConfig.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/TimeAndVerticalScalingConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateAutoScalePolicyDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateAutoScalePolicyDetails.java index cc3d6fcdfc3..21d35e31757 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateAutoScalePolicyDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateAutoScalePolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateAutoScalingConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateAutoScalingConfigurationDetails.java index 0a0341a8a67..905fb3ec5ed 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateAutoScalingConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateAutoScalingConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateBdsInstanceDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateBdsInstanceDetails.java index 954d6801ce5..8ce911ab97d 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateBdsInstanceDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateBdsInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateBdsMetastoreConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateBdsMetastoreConfigurationDetails.java index d7c2ca48481..b26c459e15a 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateBdsMetastoreConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateBdsMetastoreConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateIdentityConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateIdentityConfigurationDetails.java index 15972f55f34..167e3d83038 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateIdentityConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateIdentityConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateMetricBasedHorizontalScalingPolicyDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateMetricBasedHorizontalScalingPolicyDetails.java index f392207ff12..d9d1d1c4b0a 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateMetricBasedHorizontalScalingPolicyDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateMetricBasedHorizontalScalingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateMetricBasedVerticalScalingPolicyDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateMetricBasedVerticalScalingPolicyDetails.java index 8b2a55e66cb..eca5870736b 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateMetricBasedVerticalScalingPolicyDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateMetricBasedVerticalScalingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateNodeBackupConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateNodeBackupConfigurationDetails.java index 66c7de54003..6714c33fc52 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateNodeBackupConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateNodeBackupConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateNodeReplaceConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateNodeReplaceConfigurationDetails.java index 65e65602285..2d9a18821d0 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateNodeReplaceConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateNodeReplaceConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateResourcePrincipalConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateResourcePrincipalConfigurationDetails.java index 9d883f9600e..38418d5d6f1 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateResourcePrincipalConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateResourcePrincipalConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateScheduleBasedHorizontalScalingPolicyDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateScheduleBasedHorizontalScalingPolicyDetails.java index f9297a6d853..5edf5cd9131 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateScheduleBasedHorizontalScalingPolicyDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateScheduleBasedHorizontalScalingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateScheduleBasedVerticalScalingPolicyDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateScheduleBasedVerticalScalingPolicyDetails.java index a3d583d7e57..3d3b1dcb2a4 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateScheduleBasedVerticalScalingPolicyDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpdateScheduleBasedVerticalScalingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpstConfiguration.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpstConfiguration.java index ea69890dcc6..e4b4c170dc2 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpstConfiguration.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpstConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpstConfigurationDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpstConfigurationDetails.java index 8edc4396528..2fe17ddd81c 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpstConfigurationDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/UpstConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/VerticalScalingScheduleDetails.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/VerticalScalingScheduleDetails.java index 91b5d43053f..5ee471652f5 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/VerticalScalingScheduleDetails.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/VerticalScalingScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/VolumeAttachmentDetail.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/VolumeAttachmentDetail.java index e4766785d80..477c9b7680a 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/VolumeAttachmentDetail.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/VolumeAttachmentDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/WorkRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/WorkRequest.java index f61c78cc1ca..3b4b26c61cc 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/WorkRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/WorkRequestError.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/WorkRequestError.java index bd9bd2edbab..2e7ffe5bb00 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/WorkRequestError.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/WorkRequestLogEntry.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/WorkRequestLogEntry.java index 93119f655b2..190ad2e0dfb 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/WorkRequestLogEntry.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/WorkRequestResource.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/WorkRequestResource.java index e3295ef4f5b..9a4537741b9 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/model/WorkRequestResource.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.model; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ActivateBdsMetastoreConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ActivateBdsMetastoreConfigurationRequest.java index c83589aea73..ec0e737790e 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ActivateBdsMetastoreConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ActivateBdsMetastoreConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ActivateIamUserSyncConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ActivateIamUserSyncConfigurationRequest.java index ce0b626bd68..2f01f422af9 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ActivateIamUserSyncConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ActivateIamUserSyncConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ActivateUpstConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ActivateUpstConfigurationRequest.java index b55209b1d49..438a43301c8 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ActivateUpstConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ActivateUpstConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddAutoScalingConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddAutoScalingConfigurationRequest.java index d71e5d510fa..603cbc051c3 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddAutoScalingConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddAutoScalingConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddBlockStorageRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddBlockStorageRequest.java index 8b12e1735c2..c4ba1d35b7e 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddBlockStorageRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddBlockStorageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddCloudSqlRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddCloudSqlRequest.java index 99b975de64e..8638fe3d0c4 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddCloudSqlRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddCloudSqlRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddKafkaRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddKafkaRequest.java index 94352512176..2525b785da6 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddKafkaRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddKafkaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddMasterNodesRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddMasterNodesRequest.java index e2f8a4390bb..25078b500c8 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddMasterNodesRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddMasterNodesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddUtilityNodesRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddUtilityNodesRequest.java index 51c25810b5a..daf509a160e 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddUtilityNodesRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddUtilityNodesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddWorkerNodesRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddWorkerNodesRequest.java index f91e9dbd9fd..c2adedd8dd7 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddWorkerNodesRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/AddWorkerNodesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/BackupNodeRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/BackupNodeRequest.java index d2a8efc910e..204f592d115 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/BackupNodeRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/BackupNodeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CertificateServiceInfoRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CertificateServiceInfoRequest.java index 6e3f400abbe..af5dd103201 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CertificateServiceInfoRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CertificateServiceInfoRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ChangeBdsInstanceCompartmentRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ChangeBdsInstanceCompartmentRequest.java index c41a2de80e7..18027815910 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ChangeBdsInstanceCompartmentRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ChangeBdsInstanceCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ChangeShapeRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ChangeShapeRequest.java index fde7f6f0f0b..bea8f539f5f 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ChangeShapeRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ChangeShapeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateBdsApiKeyRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateBdsApiKeyRequest.java index 61edf9717ec..600a102fe12 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateBdsApiKeyRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateBdsApiKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateBdsCapacityReportRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateBdsCapacityReportRequest.java index 0169d0d0170..e28384ca755 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateBdsCapacityReportRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateBdsCapacityReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateBdsInstanceRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateBdsInstanceRequest.java index c4be78fbf6e..f318e8d368c 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateBdsInstanceRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateBdsInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateBdsMetastoreConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateBdsMetastoreConfigurationRequest.java index 2c29f7cd7fa..e6b977ad3ca 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateBdsMetastoreConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateBdsMetastoreConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateIdentityConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateIdentityConfigurationRequest.java index 2745726d199..0b13edaa67b 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateIdentityConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateIdentityConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateNodeBackupConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateNodeBackupConfigurationRequest.java index 46c9627fb2b..89d77f616d3 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateNodeBackupConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateNodeBackupConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateNodeReplaceConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateNodeReplaceConfigurationRequest.java index afe2eb005b9..18eb8d62bb2 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateNodeReplaceConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateNodeReplaceConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateResourcePrincipalConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateResourcePrincipalConfigurationRequest.java index 396b6740cf3..a420558d208 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateResourcePrincipalConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/CreateResourcePrincipalConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeactivateIamUserSyncConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeactivateIamUserSyncConfigurationRequest.java index 0e03c662138..edbf8149c72 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeactivateIamUserSyncConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeactivateIamUserSyncConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeactivateUpstConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeactivateUpstConfigurationRequest.java index f42367ac43d..43d7c48378e 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeactivateUpstConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeactivateUpstConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteBdsApiKeyRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteBdsApiKeyRequest.java index db19f7f815c..14b910b8540 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteBdsApiKeyRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteBdsApiKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteBdsInstanceRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteBdsInstanceRequest.java index f99df616c15..c1820750d42 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteBdsInstanceRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteBdsInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteBdsMetastoreConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteBdsMetastoreConfigurationRequest.java index ac5b34973bc..420ed5fb4f4 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteBdsMetastoreConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteBdsMetastoreConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteIdentityConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteIdentityConfigurationRequest.java index 1e663160f09..6375d95dc36 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteIdentityConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteIdentityConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteNodeBackupConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteNodeBackupConfigurationRequest.java index ccf6a924176..24efaadebf9 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteNodeBackupConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteNodeBackupConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteNodeBackupRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteNodeBackupRequest.java index 6d8bd09297c..2563e926f3a 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteNodeBackupRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DeleteNodeBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DisableCertificateRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DisableCertificateRequest.java index 5828f5630ac..94cd43ff1ad 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DisableCertificateRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/DisableCertificateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/EnableCertificateRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/EnableCertificateRequest.java index 6ce6827464c..c30a4ca4f4c 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/EnableCertificateRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/EnableCertificateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ExecuteBootstrapScriptRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ExecuteBootstrapScriptRequest.java index cd3ebc2297d..61c25ae6dd2 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ExecuteBootstrapScriptRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ExecuteBootstrapScriptRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ForceRefreshResourcePrincipalRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ForceRefreshResourcePrincipalRequest.java index fff9b34bfa7..9b14452c301 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ForceRefreshResourcePrincipalRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ForceRefreshResourcePrincipalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetAutoScalingConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetAutoScalingConfigurationRequest.java index 0ba08936a6a..f9e9ec6084e 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetAutoScalingConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetAutoScalingConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetBdsApiKeyRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetBdsApiKeyRequest.java index 346ae0b2a19..3c68185d972 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetBdsApiKeyRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetBdsApiKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetBdsInstanceRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetBdsInstanceRequest.java index 8907ee86e45..9b7e95943f2 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetBdsInstanceRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetBdsInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetBdsMetastoreConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetBdsMetastoreConfigurationRequest.java index fe31cf799c5..ee82d65e74b 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetBdsMetastoreConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetBdsMetastoreConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetIdentityConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetIdentityConfigurationRequest.java index bc695c4a5d4..85215decbc6 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetIdentityConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetIdentityConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetNodeBackupConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetNodeBackupConfigurationRequest.java index ce63505f3bf..b02541a2dea 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetNodeBackupConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetNodeBackupConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetNodeBackupRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetNodeBackupRequest.java index e7f0a5cf9b3..472966a9e65 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetNodeBackupRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetNodeBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetNodeReplaceConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetNodeReplaceConfigurationRequest.java index f9bd972bb86..1cd23919dff 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetNodeReplaceConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetNodeReplaceConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetOsPatchDetailsRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetOsPatchDetailsRequest.java index f5c0e9eb06d..b8f70c7c56f 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetOsPatchDetailsRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetOsPatchDetailsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetResourcePrincipalConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetResourcePrincipalConfigurationRequest.java index 8a06e4ca24d..651f3e077ad 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetResourcePrincipalConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetResourcePrincipalConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetSoftwareUpdateRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetSoftwareUpdateRequest.java index 965cb024ed1..6fb7fa54748 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetSoftwareUpdateRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetSoftwareUpdateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetWorkRequestRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetWorkRequestRequest.java index f9cfe8b2838..2a427b69c6d 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetWorkRequestRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/InstallOsPatchRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/InstallOsPatchRequest.java index 62f49b4c508..1f2eaf01de1 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/InstallOsPatchRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/InstallOsPatchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/InstallPatchRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/InstallPatchRequest.java index 486be629c0b..deab7b5c693 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/InstallPatchRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/InstallPatchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/InstallSoftwareUpdatesRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/InstallSoftwareUpdatesRequest.java index caca2c3c670..50a2093c24a 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/InstallSoftwareUpdatesRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/InstallSoftwareUpdatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListAutoScalingConfigurationsRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListAutoScalingConfigurationsRequest.java index 2b7cdbadce3..b3ba52d0a02 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListAutoScalingConfigurationsRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListAutoScalingConfigurationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListBdsApiKeysRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListBdsApiKeysRequest.java index 96feb544441..3c15bc923dd 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListBdsApiKeysRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListBdsApiKeysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListBdsClusterVersionsRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListBdsClusterVersionsRequest.java index 41d402717b1..49b24f0e130 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListBdsClusterVersionsRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListBdsClusterVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListBdsInstancesRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListBdsInstancesRequest.java index ed369c4620b..e0cd2a41f08 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListBdsInstancesRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListBdsInstancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListBdsMetastoreConfigurationsRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListBdsMetastoreConfigurationsRequest.java index 51309eea306..9c86d657b05 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListBdsMetastoreConfigurationsRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListBdsMetastoreConfigurationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListIdentityConfigurationsRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListIdentityConfigurationsRequest.java index e743a499ba0..4a926a39fd3 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListIdentityConfigurationsRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListIdentityConfigurationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListNodeBackupConfigurationsRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListNodeBackupConfigurationsRequest.java index f62fcf2baa5..285008b3b00 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListNodeBackupConfigurationsRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListNodeBackupConfigurationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListNodeBackupsRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListNodeBackupsRequest.java index bbbc128be2a..e6144938baa 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListNodeBackupsRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListNodeBackupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListNodeReplaceConfigurationsRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListNodeReplaceConfigurationsRequest.java index f0e5c9992f4..0ec48e8bfd0 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListNodeReplaceConfigurationsRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListNodeReplaceConfigurationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListOsPatchesRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListOsPatchesRequest.java index 5fef4477589..5c3ed51234a 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListOsPatchesRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListOsPatchesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListPatchHistoriesRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListPatchHistoriesRequest.java index 5f0eea56ab2..7368acbd6dc 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListPatchHistoriesRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListPatchHistoriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListPatchesRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListPatchesRequest.java index 3149a2fc993..8df569a8b63 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListPatchesRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListPatchesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListResourcePrincipalConfigurationsRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListResourcePrincipalConfigurationsRequest.java index 0dab1884004..456958d096a 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListResourcePrincipalConfigurationsRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListResourcePrincipalConfigurationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListSoftwareUpdatesRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListSoftwareUpdatesRequest.java index d3575a0e524..a46839033e2 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListSoftwareUpdatesRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListSoftwareUpdatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListWorkRequestErrorsRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListWorkRequestErrorsRequest.java index 34332d34150..6318d94648b 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListWorkRequestLogsRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListWorkRequestLogsRequest.java index 3a21229544a..3f8c26df7b8 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListWorkRequestLogsRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListWorkRequestsRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListWorkRequestsRequest.java index 74388c9b2fd..fbbd4f9cc00 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListWorkRequestsRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RefreshConfidentialApplicationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RefreshConfidentialApplicationRequest.java index 6f29e640a90..af205c75809 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RefreshConfidentialApplicationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RefreshConfidentialApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RefreshUpstTokenExchangeKeytabRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RefreshUpstTokenExchangeKeytabRequest.java index b192732213f..4ab3721c318 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RefreshUpstTokenExchangeKeytabRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RefreshUpstTokenExchangeKeytabRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveAutoScalingConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveAutoScalingConfigurationRequest.java index 7dc872b77f0..cf99e46c2e6 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveAutoScalingConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveAutoScalingConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveCloudSqlRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveCloudSqlRequest.java index 4f42698540f..a7b83a01f46 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveCloudSqlRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveCloudSqlRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveKafkaRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveKafkaRequest.java index b6d5d28956e..340bbeaf621 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveKafkaRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveKafkaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveNodeReplaceConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveNodeReplaceConfigurationRequest.java index 071d4af7186..65e38ce1926 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveNodeReplaceConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveNodeReplaceConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveNodeRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveNodeRequest.java index 565feda2ec1..7156b24336e 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveNodeRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveNodeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveResourcePrincipalConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveResourcePrincipalConfigurationRequest.java index 86fe706ca76..b2ad36a512a 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveResourcePrincipalConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RemoveResourcePrincipalConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RenewCertificateRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RenewCertificateRequest.java index a92ea7c6dda..64a5e48f8ef 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RenewCertificateRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RenewCertificateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ReplaceNodeRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ReplaceNodeRequest.java index 46de54d2dd3..ff688bfed4e 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ReplaceNodeRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/ReplaceNodeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RestartNodeRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RestartNodeRequest.java index d76c98bdef3..07ac3d28cf5 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RestartNodeRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/RestartNodeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/StartBdsInstanceRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/StartBdsInstanceRequest.java index eb69af66f60..f56227cab97 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/StartBdsInstanceRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/StartBdsInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/StopBdsInstanceRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/StopBdsInstanceRequest.java index cc708238611..57565591fba 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/StopBdsInstanceRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/StopBdsInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/TestBdsMetastoreConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/TestBdsMetastoreConfigurationRequest.java index 0df160412db..7fda2148556 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/TestBdsMetastoreConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/TestBdsMetastoreConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/TestBdsObjectStorageConnectionRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/TestBdsObjectStorageConnectionRequest.java index 1246015a112..14205cbc59a 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/TestBdsObjectStorageConnectionRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/TestBdsObjectStorageConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateAutoScalingConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateAutoScalingConfigurationRequest.java index 44f43b9f3b2..f514f9221e1 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateAutoScalingConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateAutoScalingConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateBdsInstanceRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateBdsInstanceRequest.java index 9bb2804b5b2..78cb3674fe0 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateBdsInstanceRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateBdsInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateBdsMetastoreConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateBdsMetastoreConfigurationRequest.java index 7bb8c5c3847..6f8ae5ff8b5 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateBdsMetastoreConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateBdsMetastoreConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateIdentityConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateIdentityConfigurationRequest.java index 709cc571e1b..be4489d9b82 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateIdentityConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateIdentityConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateNodeBackupConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateNodeBackupConfigurationRequest.java index 7006c8d9fe0..7bb3dab3539 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateNodeBackupConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateNodeBackupConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateNodeReplaceConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateNodeReplaceConfigurationRequest.java index ae86ad5c649..7e1d1f461b5 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateNodeReplaceConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateNodeReplaceConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateResourcePrincipalConfigurationRequest.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateResourcePrincipalConfigurationRequest.java index e6f07fa0662..7ccb2f4cf91 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateResourcePrincipalConfigurationRequest.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/requests/UpdateResourcePrincipalConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.requests; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ActivateBdsMetastoreConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ActivateBdsMetastoreConfigurationResponse.java index 5d17b9b8004..4991652cb57 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ActivateBdsMetastoreConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ActivateBdsMetastoreConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ActivateIamUserSyncConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ActivateIamUserSyncConfigurationResponse.java index f1ec33feab4..b336b792c58 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ActivateIamUserSyncConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ActivateIamUserSyncConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ActivateUpstConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ActivateUpstConfigurationResponse.java index 66e8d73ba2c..68e2067bdd3 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ActivateUpstConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ActivateUpstConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddAutoScalingConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddAutoScalingConfigurationResponse.java index ee673b89cec..80c45596d73 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddAutoScalingConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddAutoScalingConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddBlockStorageResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddBlockStorageResponse.java index 3d2b81e2de8..0aa7f28a814 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddBlockStorageResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddBlockStorageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddCloudSqlResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddCloudSqlResponse.java index 57a39907371..a7439cee181 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddCloudSqlResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddCloudSqlResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddKafkaResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddKafkaResponse.java index afaa7acc161..92b37478396 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddKafkaResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddKafkaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddMasterNodesResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddMasterNodesResponse.java index 4b452b81cc8..324fa1f5349 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddMasterNodesResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddMasterNodesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddUtilityNodesResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddUtilityNodesResponse.java index 545881a852a..3014142a56b 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddUtilityNodesResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddUtilityNodesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddWorkerNodesResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddWorkerNodesResponse.java index 4d3191d4050..012f5ae8b62 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddWorkerNodesResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/AddWorkerNodesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/BackupNodeResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/BackupNodeResponse.java index f8b8f262b1b..fafc2238b7d 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/BackupNodeResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/BackupNodeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CertificateServiceInfoResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CertificateServiceInfoResponse.java index 25d1448ddc7..190761cc1e5 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CertificateServiceInfoResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CertificateServiceInfoResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ChangeBdsInstanceCompartmentResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ChangeBdsInstanceCompartmentResponse.java index 439618d21cc..9d07f7bbc44 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ChangeBdsInstanceCompartmentResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ChangeBdsInstanceCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ChangeShapeResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ChangeShapeResponse.java index a767b75c23e..df64501d7a0 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ChangeShapeResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ChangeShapeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateBdsApiKeyResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateBdsApiKeyResponse.java index 0e6bd8bd947..f5a8bfc2f37 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateBdsApiKeyResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateBdsApiKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateBdsCapacityReportResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateBdsCapacityReportResponse.java index b5803191345..a3ffb3c55a6 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateBdsCapacityReportResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateBdsCapacityReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateBdsInstanceResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateBdsInstanceResponse.java index e45118f19a5..0bfbe071a8a 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateBdsInstanceResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateBdsInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateBdsMetastoreConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateBdsMetastoreConfigurationResponse.java index 238c7a3cb35..68352e96a5a 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateBdsMetastoreConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateBdsMetastoreConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateIdentityConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateIdentityConfigurationResponse.java index 1e3ebea6ff0..af087a503e9 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateIdentityConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateIdentityConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateNodeBackupConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateNodeBackupConfigurationResponse.java index c672bc38255..c6e652a3376 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateNodeBackupConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateNodeBackupConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateNodeReplaceConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateNodeReplaceConfigurationResponse.java index 88b070111b6..a28e50b71d2 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateNodeReplaceConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateNodeReplaceConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateResourcePrincipalConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateResourcePrincipalConfigurationResponse.java index 69589ab21c3..7ecc56906a6 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateResourcePrincipalConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/CreateResourcePrincipalConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeactivateIamUserSyncConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeactivateIamUserSyncConfigurationResponse.java index e8b6da2dac6..f094409a4b6 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeactivateIamUserSyncConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeactivateIamUserSyncConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeactivateUpstConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeactivateUpstConfigurationResponse.java index 6c4dc05c3ba..a18873e9d50 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeactivateUpstConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeactivateUpstConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteBdsApiKeyResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteBdsApiKeyResponse.java index 263520fd534..0c47e2c4f3e 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteBdsApiKeyResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteBdsApiKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteBdsInstanceResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteBdsInstanceResponse.java index e5fed7af6ae..8e10961d1eb 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteBdsInstanceResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteBdsInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteBdsMetastoreConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteBdsMetastoreConfigurationResponse.java index 885f993c68b..0a8bbf73c6a 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteBdsMetastoreConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteBdsMetastoreConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteIdentityConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteIdentityConfigurationResponse.java index 96c82a4f31a..19a878a75ad 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteIdentityConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteIdentityConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteNodeBackupConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteNodeBackupConfigurationResponse.java index 5ce65f127e4..7587a748aa5 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteNodeBackupConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteNodeBackupConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteNodeBackupResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteNodeBackupResponse.java index a9351064847..db9c74f9742 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteNodeBackupResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DeleteNodeBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DisableCertificateResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DisableCertificateResponse.java index d84e9e98a65..9786ee2e327 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DisableCertificateResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/DisableCertificateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/EnableCertificateResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/EnableCertificateResponse.java index 14ba92be9e0..cc8241e7808 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/EnableCertificateResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/EnableCertificateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ExecuteBootstrapScriptResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ExecuteBootstrapScriptResponse.java index 8bc0d92ba06..4295cba0ac6 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ExecuteBootstrapScriptResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ExecuteBootstrapScriptResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ForceRefreshResourcePrincipalResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ForceRefreshResourcePrincipalResponse.java index 72985eac6d2..95ab5e2d5f0 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ForceRefreshResourcePrincipalResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ForceRefreshResourcePrincipalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetAutoScalingConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetAutoScalingConfigurationResponse.java index 38263c98c68..449544811de 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetAutoScalingConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetAutoScalingConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetBdsApiKeyResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetBdsApiKeyResponse.java index d14b2b878bb..867aa26f116 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetBdsApiKeyResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetBdsApiKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetBdsInstanceResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetBdsInstanceResponse.java index e124ced2b00..dfe643ae20a 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetBdsInstanceResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetBdsInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetBdsMetastoreConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetBdsMetastoreConfigurationResponse.java index c440c01833e..84d7a876dde 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetBdsMetastoreConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetBdsMetastoreConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetIdentityConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetIdentityConfigurationResponse.java index e8658fcf9e9..5a11f7b8205 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetIdentityConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetIdentityConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetNodeBackupConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetNodeBackupConfigurationResponse.java index 6db89f958e1..1e52a9679e1 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetNodeBackupConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetNodeBackupConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetNodeBackupResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetNodeBackupResponse.java index c6dac5c5160..f93efc438c9 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetNodeBackupResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetNodeBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetNodeReplaceConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetNodeReplaceConfigurationResponse.java index 8e301c5a51f..856dbacf6a0 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetNodeReplaceConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetNodeReplaceConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetOsPatchDetailsResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetOsPatchDetailsResponse.java index 32481de9b21..8fbd982a7a6 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetOsPatchDetailsResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetOsPatchDetailsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetResourcePrincipalConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetResourcePrincipalConfigurationResponse.java index 9b247b8f6e8..28a845a5320 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetResourcePrincipalConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetResourcePrincipalConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetSoftwareUpdateResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetSoftwareUpdateResponse.java index 50893b48049..fa080a2765c 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetSoftwareUpdateResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetSoftwareUpdateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetWorkRequestResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetWorkRequestResponse.java index 0b348a5edb9..ced34f1397d 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetWorkRequestResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/InstallOsPatchResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/InstallOsPatchResponse.java index bfb6c51197a..9a9cb4a5eb0 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/InstallOsPatchResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/InstallOsPatchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/InstallPatchResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/InstallPatchResponse.java index c2a5f968b36..18e4fe650e1 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/InstallPatchResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/InstallPatchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/InstallSoftwareUpdatesResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/InstallSoftwareUpdatesResponse.java index f9d1cdcae25..567c32d2ecf 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/InstallSoftwareUpdatesResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/InstallSoftwareUpdatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListAutoScalingConfigurationsResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListAutoScalingConfigurationsResponse.java index 54482ed147b..f3f4838c611 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListAutoScalingConfigurationsResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListAutoScalingConfigurationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListBdsApiKeysResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListBdsApiKeysResponse.java index ac1d96a1ed2..9215800db8d 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListBdsApiKeysResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListBdsApiKeysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListBdsClusterVersionsResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListBdsClusterVersionsResponse.java index e29c1063ed4..f5795fbfc91 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListBdsClusterVersionsResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListBdsClusterVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListBdsInstancesResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListBdsInstancesResponse.java index 89feee3afa5..72c80290b5c 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListBdsInstancesResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListBdsInstancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListBdsMetastoreConfigurationsResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListBdsMetastoreConfigurationsResponse.java index 586d5ff25ff..f04e8ca10ab 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListBdsMetastoreConfigurationsResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListBdsMetastoreConfigurationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListIdentityConfigurationsResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListIdentityConfigurationsResponse.java index 9747433da8a..debe155fba9 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListIdentityConfigurationsResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListIdentityConfigurationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListNodeBackupConfigurationsResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListNodeBackupConfigurationsResponse.java index ec62c25ed8f..37a4bc844db 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListNodeBackupConfigurationsResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListNodeBackupConfigurationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListNodeBackupsResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListNodeBackupsResponse.java index 2cf8cafe05f..5f655349d10 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListNodeBackupsResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListNodeBackupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListNodeReplaceConfigurationsResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListNodeReplaceConfigurationsResponse.java index bdc13f3bb50..f885337992f 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListNodeReplaceConfigurationsResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListNodeReplaceConfigurationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListOsPatchesResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListOsPatchesResponse.java index c3fe0cee737..56d6ef16e46 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListOsPatchesResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListOsPatchesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListPatchHistoriesResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListPatchHistoriesResponse.java index a372ae06075..f6c9211314d 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListPatchHistoriesResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListPatchHistoriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListPatchesResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListPatchesResponse.java index 0c8996ad750..6dd8723e23c 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListPatchesResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListPatchesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListResourcePrincipalConfigurationsResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListResourcePrincipalConfigurationsResponse.java index 16f76be033f..639c0733224 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListResourcePrincipalConfigurationsResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListResourcePrincipalConfigurationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListSoftwareUpdatesResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListSoftwareUpdatesResponse.java index caa7d4d52c9..1d6cb645105 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListSoftwareUpdatesResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListSoftwareUpdatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListWorkRequestErrorsResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListWorkRequestErrorsResponse.java index e0062f2d62a..c233caeba17 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListWorkRequestLogsResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListWorkRequestLogsResponse.java index 0370bb78bbc..70554799379 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListWorkRequestLogsResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListWorkRequestsResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListWorkRequestsResponse.java index 05b3b6b8546..1196d4fe7a6 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListWorkRequestsResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RefreshConfidentialApplicationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RefreshConfidentialApplicationResponse.java index 782f9752c2e..e5aa0a184cc 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RefreshConfidentialApplicationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RefreshConfidentialApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RefreshUpstTokenExchangeKeytabResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RefreshUpstTokenExchangeKeytabResponse.java index 967dad4c50a..a4983ac4f0a 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RefreshUpstTokenExchangeKeytabResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RefreshUpstTokenExchangeKeytabResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveAutoScalingConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveAutoScalingConfigurationResponse.java index 93623550351..a0e2c57c457 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveAutoScalingConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveAutoScalingConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveCloudSqlResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveCloudSqlResponse.java index 451332389b1..a4957f8ee98 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveCloudSqlResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveCloudSqlResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveKafkaResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveKafkaResponse.java index 5873e47be4f..9df71eadce7 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveKafkaResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveKafkaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveNodeReplaceConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveNodeReplaceConfigurationResponse.java index f64aeeb70dd..ee73d1a9943 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveNodeReplaceConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveNodeReplaceConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveNodeResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveNodeResponse.java index e8597d1d0ab..1149d437c74 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveNodeResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveNodeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveResourcePrincipalConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveResourcePrincipalConfigurationResponse.java index 98e88635925..0bfb22663d8 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveResourcePrincipalConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RemoveResourcePrincipalConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RenewCertificateResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RenewCertificateResponse.java index 187ea391f83..fa6d3c6c48f 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RenewCertificateResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RenewCertificateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ReplaceNodeResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ReplaceNodeResponse.java index b37897cd4d5..96cd8149fb9 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ReplaceNodeResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/ReplaceNodeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RestartNodeResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RestartNodeResponse.java index cb3270a77c7..cfd549b66f4 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RestartNodeResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/RestartNodeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/StartBdsInstanceResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/StartBdsInstanceResponse.java index 79f516886f6..9b6d9ea16f9 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/StartBdsInstanceResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/StartBdsInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/StopBdsInstanceResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/StopBdsInstanceResponse.java index d24cffd3ebc..f9a8d899f75 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/StopBdsInstanceResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/StopBdsInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/TestBdsMetastoreConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/TestBdsMetastoreConfigurationResponse.java index c0f42a2f510..229bb4146c0 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/TestBdsMetastoreConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/TestBdsMetastoreConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/TestBdsObjectStorageConnectionResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/TestBdsObjectStorageConnectionResponse.java index f400537a541..b7a12be7dab 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/TestBdsObjectStorageConnectionResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/TestBdsObjectStorageConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateAutoScalingConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateAutoScalingConfigurationResponse.java index 2c5dd899c4f..eab8bd27300 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateAutoScalingConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateAutoScalingConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateBdsInstanceResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateBdsInstanceResponse.java index 844147435c3..71ae438613b 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateBdsInstanceResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateBdsInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateBdsMetastoreConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateBdsMetastoreConfigurationResponse.java index 4a2b6c3efed..4005cc22d97 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateBdsMetastoreConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateBdsMetastoreConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateIdentityConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateIdentityConfigurationResponse.java index 6670fdc3184..929a644ddc5 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateIdentityConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateIdentityConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateNodeBackupConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateNodeBackupConfigurationResponse.java index 5c83b6a1c3b..2a0ce339f39 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateNodeBackupConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateNodeBackupConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateNodeReplaceConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateNodeReplaceConfigurationResponse.java index 68c5fff1b22..3b825f0b3e2 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateNodeReplaceConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateNodeReplaceConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateResourcePrincipalConfigurationResponse.java b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateResourcePrincipalConfigurationResponse.java index 3b632ff77fc..b5ab4a0755d 100644 --- a/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateResourcePrincipalConfigurationResponse.java +++ b/bmc-bds/src/main/java/com/oracle/bmc/bds/responses/UpdateResourcePrincipalConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.bds.responses; diff --git a/bmc-bds/src/main/resources/com/oracle/bmc/bds/client.properties b/bmc-bds/src/main/resources/com/oracle/bmc/bds/client.properties index ecf62cbdc3a..cf6b911f33f 100644 --- a/bmc-bds/src/main/resources/com/oracle/bmc/bds/client.properties +++ b/bmc-bds/src/main/resources/com/oracle/bmc/bds/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-blockchain/pom.xml b/bmc-blockchain/pom.xml index df64be82a8a..3105b318052 100644 --- a/bmc-blockchain/pom.xml +++ b/bmc-blockchain/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-blockchain @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatform.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatform.java index c81cc59a775..2b28ff82c41 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatform.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatform.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatformAsync.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatformAsync.java index f404a38cc60..b63ace5982f 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatformAsync.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatformAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatformAsyncClient.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatformAsyncClient.java index b12569a0382..174570f8d6e 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatformAsyncClient.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatformAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatformClient.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatformClient.java index edc2d048121..4d4b31136df 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatformClient.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatformClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatformPaginators.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatformPaginators.java index 99cffd169b3..f13cc30eaa0 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatformPaginators.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatformPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatformWaiters.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatformWaiters.java index 03f51dcef7b..1b6d12ea6ea 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatformWaiters.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/BlockchainPlatformWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/AvailabilityDomain.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/AvailabilityDomain.java index 056ee6baa71..b4e970e331d 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/AvailabilityDomain.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/AvailabilityDomain.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatform.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatform.java index d163bf76b62..95a6a9d3332 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatform.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatform.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformByHostname.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformByHostname.java index cfb1fe2e396..86f84404870 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformByHostname.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformByHostname.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformCollection.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformCollection.java index 2f86776c465..b527a705da9 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformCollection.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformComponentDetails.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformComponentDetails.java index a155c3dc600..c5dffda9c67 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformComponentDetails.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformComponentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformPatchCollection.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformPatchCollection.java index d1a5ad6e9a2..07e85ebc4ab 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformPatchCollection.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformPatchCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformPatchSummary.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformPatchSummary.java index 5b81b928f5d..019afe18fa6 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformPatchSummary.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformPatchSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformSummary.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformSummary.java index a5e8e9b8e67..f7ea880f6dc 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformSummary.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/BlockchainPlatformSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ChangeBlockchainPlatformCompartmentDetails.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ChangeBlockchainPlatformCompartmentDetails.java index 2fdffd425e5..947be9ebc8e 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ChangeBlockchainPlatformCompartmentDetails.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ChangeBlockchainPlatformCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/CreateBlockchainPlatformDetails.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/CreateBlockchainPlatformDetails.java index 55da764a5e2..39c309686f1 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/CreateBlockchainPlatformDetails.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/CreateBlockchainPlatformDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/CreateOsnDetails.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/CreateOsnDetails.java index 2346d93938e..7e239b3ee64 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/CreateOsnDetails.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/CreateOsnDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/CreatePeerDetails.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/CreatePeerDetails.java index cc7638636ad..00f0b44acdc 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/CreatePeerDetails.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/CreatePeerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/MetadataDetails.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/MetadataDetails.java index 815ec54ba27..7bf476f50a8 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/MetadataDetails.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/MetadataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ModifyPeerDetails.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ModifyPeerDetails.java index d45185470f7..65f32dc836a 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ModifyPeerDetails.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ModifyPeerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/OcpuAllocationNumberParam.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/OcpuAllocationNumberParam.java index 713aabeb938..9c527d08fb5 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/OcpuAllocationNumberParam.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/OcpuAllocationNumberParam.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/OcpuUtilizationInfo.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/OcpuUtilizationInfo.java index 8c80b8f9cf2..cbbbbae4177 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/OcpuUtilizationInfo.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/OcpuUtilizationInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/Osn.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/Osn.java index cb2decd195e..f980e6494b5 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/Osn.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/Osn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/OsnCollection.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/OsnCollection.java index baaa50266af..7315d2e5d90 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/OsnCollection.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/OsnCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/OsnSummary.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/OsnSummary.java index c37906bd8c3..6972f145b57 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/OsnSummary.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/OsnSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/Peer.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/Peer.java index 14ff15cad03..e008e1bbda9 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/Peer.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/Peer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/PeerCollection.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/PeerCollection.java index 5411f5a82f3..8a5438b8cbe 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/PeerCollection.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/PeerCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/PeerRole.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/PeerRole.java index 41926bd308f..795b47895df 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/PeerRole.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/PeerRole.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/PeerSummary.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/PeerSummary.java index f9d987223ea..12e28f97d98 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/PeerSummary.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/PeerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ReplicaDetails.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ReplicaDetails.java index 1e5b695ede0..38449cf3ae8 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ReplicaDetails.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ReplicaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ScaleBlockchainPlatformDetails.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ScaleBlockchainPlatformDetails.java index 551ff4c776d..2442df65288 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ScaleBlockchainPlatformDetails.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ScaleBlockchainPlatformDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ScaleStorageDetails.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ScaleStorageDetails.java index 2c6ac6ee988..2bfde927741 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ScaleStorageDetails.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ScaleStorageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ScaledBlockchainPlatformPreview.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ScaledBlockchainPlatformPreview.java index 8ea85619fc7..99fda3e3b9a 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ScaledBlockchainPlatformPreview.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ScaledBlockchainPlatformPreview.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ScaledPlatformMeteringPreview.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ScaledPlatformMeteringPreview.java index a22716903c7..8ffd89b92ae 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ScaledPlatformMeteringPreview.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/ScaledPlatformMeteringPreview.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/UpdateBlockchainPlatformDetails.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/UpdateBlockchainPlatformDetails.java index 603832ad0dc..15e00620d01 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/UpdateBlockchainPlatformDetails.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/UpdateBlockchainPlatformDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/UpdateOsnDetails.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/UpdateOsnDetails.java index 61c6987f6db..0385d792292 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/UpdateOsnDetails.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/UpdateOsnDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/UpdatePeerDetails.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/UpdatePeerDetails.java index 092127b1700..c761803965e 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/UpdatePeerDetails.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/UpdatePeerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/UpgradeBlockchainPlatformDetails.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/UpgradeBlockchainPlatformDetails.java index c631a9b5867..1726d22e44a 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/UpgradeBlockchainPlatformDetails.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/UpgradeBlockchainPlatformDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequest.java index bf855228117..19a851a214d 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestCollection.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestCollection.java index 234d9809aca..e3a83e911c6 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestCollection.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestError.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestError.java index 9e33658a290..73cbe86021a 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestError.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestErrorCollection.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestErrorCollection.java index 6317da67dd4..f11f169f170 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestErrorCollection.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestLogEntry.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestLogEntry.java index fd9eb00b5b6..36bbefe382c 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestLogEntry.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestLogEntryCollection.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestLogEntryCollection.java index 4e6c96a8519..920e57a4eec 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestLogEntryCollection.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestResource.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestResource.java index 475d16c6a01..f79b37c9739 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestResource.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestResourceSubTypeDetail.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestResourceSubTypeDetail.java index fedaba250b1..8edf8da3518 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestResourceSubTypeDetail.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestResourceSubTypeDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestSummary.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestSummary.java index 563c18b7d72..ba1e9499d64 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestSummary.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.model; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ChangeBlockchainPlatformCompartmentRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ChangeBlockchainPlatformCompartmentRequest.java index 0e0d446d341..91fdde66bef 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ChangeBlockchainPlatformCompartmentRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ChangeBlockchainPlatformCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/CreateBlockchainPlatformRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/CreateBlockchainPlatformRequest.java index f825325114a..ded6ca25b39 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/CreateBlockchainPlatformRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/CreateBlockchainPlatformRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/CreateOsnRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/CreateOsnRequest.java index 7dc68b5147d..573ab8c8ddf 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/CreateOsnRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/CreateOsnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/CreatePeerRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/CreatePeerRequest.java index bb28a1da4e4..7fe8bf2cfcd 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/CreatePeerRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/CreatePeerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/DeleteBlockchainPlatformRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/DeleteBlockchainPlatformRequest.java index b4d8062e699..735595cbeeb 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/DeleteBlockchainPlatformRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/DeleteBlockchainPlatformRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/DeleteOsnRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/DeleteOsnRequest.java index 39bb90eee69..3aa04865ec4 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/DeleteOsnRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/DeleteOsnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/DeletePeerRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/DeletePeerRequest.java index 6f6e077d319..700048fb10b 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/DeletePeerRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/DeletePeerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/DeleteWorkRequestRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/DeleteWorkRequestRequest.java index f4595b886b0..27a0ef31909 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/DeleteWorkRequestRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/DeleteWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/GetBlockchainPlatformRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/GetBlockchainPlatformRequest.java index 1e07c6ad304..8e7c4df4451 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/GetBlockchainPlatformRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/GetBlockchainPlatformRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/GetOsnRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/GetOsnRequest.java index 004f173fec1..962afb720d6 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/GetOsnRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/GetOsnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/GetPeerRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/GetPeerRequest.java index 4d2ee7bdbf5..9820c087232 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/GetPeerRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/GetPeerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/GetWorkRequestRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/GetWorkRequestRequest.java index e30f7d5c9f6..98da49b3f33 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/GetWorkRequestRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListBlockchainPlatformPatchesRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListBlockchainPlatformPatchesRequest.java index 0eaed5ef835..0f642359ddb 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListBlockchainPlatformPatchesRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListBlockchainPlatformPatchesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListBlockchainPlatformsRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListBlockchainPlatformsRequest.java index b2994263fcc..181b3d2defd 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListBlockchainPlatformsRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListBlockchainPlatformsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListOsnsRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListOsnsRequest.java index e7d91d55bd3..ff367503302 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListOsnsRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListOsnsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListPeersRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListPeersRequest.java index c21bcff8ca6..8db430eb30a 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListPeersRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListPeersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListWorkRequestErrorsRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListWorkRequestErrorsRequest.java index de1c6557861..ed7fb388ea0 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListWorkRequestLogsRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListWorkRequestLogsRequest.java index 1d53e6701ef..e5887775c8f 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListWorkRequestLogsRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListWorkRequestsRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListWorkRequestsRequest.java index cf104c4fde5..284449aa7a0 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListWorkRequestsRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/PreviewScaleBlockchainPlatformRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/PreviewScaleBlockchainPlatformRequest.java index 2c499a2e6fd..ac9b2d7ad86 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/PreviewScaleBlockchainPlatformRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/PreviewScaleBlockchainPlatformRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ScaleBlockchainPlatformRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ScaleBlockchainPlatformRequest.java index d53106314bd..510601dad76 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ScaleBlockchainPlatformRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/ScaleBlockchainPlatformRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/StartBlockchainPlatformRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/StartBlockchainPlatformRequest.java index 4ed2f2b8c7d..d2e40e3c7b9 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/StartBlockchainPlatformRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/StartBlockchainPlatformRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/StopBlockchainPlatformRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/StopBlockchainPlatformRequest.java index afd028ea09c..21c58c90b1a 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/StopBlockchainPlatformRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/StopBlockchainPlatformRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/UpdateBlockchainPlatformRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/UpdateBlockchainPlatformRequest.java index 87d5e42a310..34f80c153b6 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/UpdateBlockchainPlatformRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/UpdateBlockchainPlatformRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/UpdateOsnRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/UpdateOsnRequest.java index 21e2d36d17a..fb5a8b16c4a 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/UpdateOsnRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/UpdateOsnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/UpdatePeerRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/UpdatePeerRequest.java index abe5f91791d..54dabd2d104 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/UpdatePeerRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/UpdatePeerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/UpgradeBlockchainPlatformRequest.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/UpgradeBlockchainPlatformRequest.java index dabcf7b8f25..762dea56455 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/UpgradeBlockchainPlatformRequest.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/requests/UpgradeBlockchainPlatformRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.requests; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ChangeBlockchainPlatformCompartmentResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ChangeBlockchainPlatformCompartmentResponse.java index 62b9a3dcfb8..cfbf3cdc225 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ChangeBlockchainPlatformCompartmentResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ChangeBlockchainPlatformCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/CreateBlockchainPlatformResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/CreateBlockchainPlatformResponse.java index 321f3d154c0..97f08994518 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/CreateBlockchainPlatformResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/CreateBlockchainPlatformResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/CreateOsnResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/CreateOsnResponse.java index b29df55975d..b8976c7f6b4 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/CreateOsnResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/CreateOsnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/CreatePeerResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/CreatePeerResponse.java index 18d56a58f9b..791fdb95e8c 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/CreatePeerResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/CreatePeerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/DeleteBlockchainPlatformResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/DeleteBlockchainPlatformResponse.java index f2f0363b085..f8a6435e98a 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/DeleteBlockchainPlatformResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/DeleteBlockchainPlatformResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/DeleteOsnResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/DeleteOsnResponse.java index ea288fb6397..da8542769a4 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/DeleteOsnResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/DeleteOsnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/DeletePeerResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/DeletePeerResponse.java index 79799b275c1..572910ca9fe 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/DeletePeerResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/DeletePeerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/DeleteWorkRequestResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/DeleteWorkRequestResponse.java index 8bd5ae0d3ed..1f7c5d9d43b 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/DeleteWorkRequestResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/DeleteWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/GetBlockchainPlatformResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/GetBlockchainPlatformResponse.java index 6f47bc987d7..7a423586ce4 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/GetBlockchainPlatformResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/GetBlockchainPlatformResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/GetOsnResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/GetOsnResponse.java index d076f5ba468..b699a8d292a 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/GetOsnResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/GetOsnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/GetPeerResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/GetPeerResponse.java index d7cac5258c5..33cf7d384ee 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/GetPeerResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/GetPeerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/GetWorkRequestResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/GetWorkRequestResponse.java index 7c40738edff..b3673bccc8e 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/GetWorkRequestResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListBlockchainPlatformPatchesResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListBlockchainPlatformPatchesResponse.java index cf3d8e5fc9c..34a5f896e2a 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListBlockchainPlatformPatchesResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListBlockchainPlatformPatchesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListBlockchainPlatformsResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListBlockchainPlatformsResponse.java index ecfd7a7ec6d..6fcc03919bf 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListBlockchainPlatformsResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListBlockchainPlatformsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListOsnsResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListOsnsResponse.java index c28079959d4..64ebaf1d13f 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListOsnsResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListOsnsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListPeersResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListPeersResponse.java index 61da0d03915..8475deb789e 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListPeersResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListPeersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListWorkRequestErrorsResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListWorkRequestErrorsResponse.java index 584e3165e18..0aa157deaf0 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListWorkRequestLogsResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListWorkRequestLogsResponse.java index 0e1e22346f4..d6fe01ea65a 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListWorkRequestLogsResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListWorkRequestsResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListWorkRequestsResponse.java index f45f192d0eb..58a44d53269 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListWorkRequestsResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/PreviewScaleBlockchainPlatformResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/PreviewScaleBlockchainPlatformResponse.java index bee67398b06..011166d64b8 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/PreviewScaleBlockchainPlatformResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/PreviewScaleBlockchainPlatformResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ScaleBlockchainPlatformResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ScaleBlockchainPlatformResponse.java index 6c3ef77a4c3..245ead48247 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ScaleBlockchainPlatformResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/ScaleBlockchainPlatformResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/StartBlockchainPlatformResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/StartBlockchainPlatformResponse.java index bf8d909fc9c..174b802ca72 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/StartBlockchainPlatformResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/StartBlockchainPlatformResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/StopBlockchainPlatformResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/StopBlockchainPlatformResponse.java index 652db522b2f..3d362880f1d 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/StopBlockchainPlatformResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/StopBlockchainPlatformResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/UpdateBlockchainPlatformResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/UpdateBlockchainPlatformResponse.java index cb83467adc0..ef53c4dc674 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/UpdateBlockchainPlatformResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/UpdateBlockchainPlatformResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/UpdateOsnResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/UpdateOsnResponse.java index d1135966020..083c7fc950a 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/UpdateOsnResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/UpdateOsnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/UpdatePeerResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/UpdatePeerResponse.java index fc38f17c8d4..d7833c28e8f 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/UpdatePeerResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/UpdatePeerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/UpgradeBlockchainPlatformResponse.java b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/UpgradeBlockchainPlatformResponse.java index e530359b67c..218cbd22d4b 100644 --- a/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/UpgradeBlockchainPlatformResponse.java +++ b/bmc-blockchain/src/main/java/com/oracle/bmc/blockchain/responses/UpgradeBlockchainPlatformResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.blockchain.responses; diff --git a/bmc-blockchain/src/main/resources/com/oracle/bmc/blockchain/client.properties b/bmc-blockchain/src/main/resources/com/oracle/bmc/blockchain/client.properties index 567aa586428..4a35aaf424f 100644 --- a/bmc-blockchain/src/main/resources/com/oracle/bmc/blockchain/client.properties +++ b/bmc-blockchain/src/main/resources/com/oracle/bmc/blockchain/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-bom/pom.xml b/bmc-bom/pom.xml index 7f0af6fb32b..ffd9542ddae 100644 --- a/bmc-bom/pom.xml +++ b/bmc-bom/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.oracle.oci.sdk - 3.77.2 + 3.78.0 oci-java-sdk-bom pom Oracle Cloud Infrastructure SDK - BOM @@ -38,1075 +38,1075 @@ com.oracle.oci.sdk oci-java-sdk-circuitbreaker - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-common-httpclient - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-common-httpclient-jersey - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-common-httpclient-jersey3 - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-enforcer-rules - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-shaded-full - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-audit - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-containerengine - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-core - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-database - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-dns - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-email - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-objectstorage-generated - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-objectstorage-extensions - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-filestorage - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-identity - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-loadbalancer - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-objectstorage - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-addons-apache-configurator-jersey - 3.77.2 + 3.78.0 com.oracle.oci.sdk oci-java-sdk-addons-apache-configurator-jersey3 - 3.77.2 + 3.78.0 com.oracle.oci.sdk oci-java-sdk-addons-resteasy-client-configurator - 3.77.2 + 3.78.0 com.oracle.oci.sdk oci-java-sdk-addons-sasl - 3.77.2 + 3.78.0 com.oracle.oci.sdk oci-java-sdk-addons-oke-workload-identity - 3.77.2 + 3.78.0 com.oracle.oci.sdk oci-java-sdk-addons-sasl-oke-workload-identity - 3.77.2 + 3.78.0 com.oracle.oci.sdk oci-java-sdk-addons-aispeech-realtime - 3.77.2 + 3.78.0 com.oracle.oci.sdk oci-java-sdk-resourcesearch - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-addons-apache - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-keymanagement - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-announcementsservice - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-healthchecks - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-waas - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-streaming - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-resourcemanager - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-monitoring - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-ons - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-autoscaling - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-budget - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-workrequests - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-limits - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-functions - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-events - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-oce - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-oda - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-analytics - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-integration - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-marketplace - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-apigateway - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-datacatalog - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-dataflow - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-datascience - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-nosql - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-secrets - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-vault - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-bds - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-encryption - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-cims - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-datasafe - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-mysql - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-dataintegration - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-ocvp - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-usageapi - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-blockchain - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-loggingingestion - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-logging - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-loganalytics - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-managementdashboard - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-sch - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-loggingsearch - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-managementagent - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-cloudguard - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-opsi - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-computeinstanceagent - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-optimizer - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-tenantmanagercontrolplane - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-rover - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-databasemanagement - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-artifacts - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-apmsynthetics - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-goldengate - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-apmcontrolplane - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-apmtraces - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-networkloadbalancer - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-vulnerabilityscanning - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-databasemigration - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-servicecatalog - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-ailanguage - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-operatoraccesscontrol - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-bastion - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-genericartifactscontent - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-jms - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-devops - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-datalabelingservice - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-datalabelingservicedataplane - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-apmconfig - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-waf - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-certificates - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-certificatesmanagement - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-usage - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-databasetools - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-servicemanagerproxy - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-appmgmtcontrol - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-ospgateway - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-identitydataplane - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-visualbuilder - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-osubusage - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-osubsubscription - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-osuborganizationsubscription - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-osubbillingschedule - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-dashboardservice - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-threatintelligence - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-aivision - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-aispeech - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-stackmonitoring - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-adm - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-licensemanager - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-onesubscription - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-governancerulescontrolplane - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-waa - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-networkfirewall - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-vnmonitoring - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-emwarehouse - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-lockbox - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-fusionapps - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-mediaservices - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-opa - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-opensearch - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-cloudmigrations - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-cloudbridge - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-disasterrecovery - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-containerinstances - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-aidocument - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-queue - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-recovery - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-vbsinst - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-identitydomains - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-accessgovernancecp - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-ocicontrolcenter - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-osmanagementhub - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-fleetsoftwareupdate - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-computecloudatcustomer - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-marketplacepublisher - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-redis - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-jmsjavadownloads - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-psql - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-generativeai - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-generativeaiinference - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-capacitymanagement - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-globallydistributeddatabase - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-desktops - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-emaildataplane - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-clusterplacementgroups - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-marketplaceprivateoffer - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-resourcescheduler - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-demandsignal - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-fleetappsmanagement - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-delegateaccesscontrol - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-generativeaiagent - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-generativeaiagentruntime - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-securityattribute - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-zpr - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-dblm - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-mngdmac - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-lustrefilestorage - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-modeldeployment - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-distributeddatabase - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-apiaccesscontrol - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-wlms - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-addons-adk - 3.77.2 + 3.78.0 com.oracle.oci.sdk oci-java-sdk-dbmulticloud - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-apiplatform - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-managedkafka - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-aidataplatform - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-multicloud - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-resourceanalytics - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-jmsutils - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-iot - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-psa - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-dif - 3.77.2 + 3.78.0 false com.oracle.oci.sdk oci-java-sdk-batch - 3.77.2 + 3.78.0 false diff --git a/bmc-budget/pom.xml b/bmc-budget/pom.xml index 09af4956d22..6f25ca15d3c 100644 --- a/bmc-budget/pom.xml +++ b/bmc-budget/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-budget @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/Budget.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/Budget.java index c9c234f49b1..a148de793f8 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/Budget.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/Budget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/BudgetAsync.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/BudgetAsync.java index b3c5a42e7f6..b657190b46f 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/BudgetAsync.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/BudgetAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/BudgetAsyncClient.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/BudgetAsyncClient.java index 2274ca735b9..636b9457a59 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/BudgetAsyncClient.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/BudgetAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/BudgetClient.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/BudgetClient.java index e055a58cdc1..b778d40bb1b 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/BudgetClient.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/BudgetClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/BudgetPaginators.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/BudgetPaginators.java index df508c416cc..c48a5762fef 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/BudgetPaginators.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/BudgetPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/BudgetWaiters.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/BudgetWaiters.java index 2e5124be4b4..88835769a11 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/BudgetWaiters.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/BudgetWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/CostAd.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/CostAd.java new file mode 100644 index 00000000000..74158f96539 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/CostAd.java @@ -0,0 +1,353 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget; + +import com.oracle.bmc.budget.requests.*; +import com.oracle.bmc.budget.responses.*; + +/** + * Use the Budgets API to manage budgets and budget alerts. For more information, see [Budgets + * Overview](https://docs.oracle.com/iaas/Content/Billing/Concepts/budgetsoverview.htm). This + * service client uses CircuitBreakerUtils.DEFAULT_CIRCUIT_BREAKER for all the operations by default + * if no circuit breaker configuration is defined by the user. + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public interface CostAd extends AutoCloseable { + + /** Rebuilds the client from scratch. Useful to refresh certificates. */ + void refreshClient(); + + /** + * Sets the endpoint to call (ex, https://www.example.com). + * + * @param endpoint The endpoint of the service. + */ + void setEndpoint(String endpoint); + + /** Gets the set endpoint for REST call (ex, https://www.example.com) */ + String getEndpoint(); + + /** + * Sets the region to call (ex, Region.US_PHOENIX_1). + * + *

Note, this will call {@link #setEndpoint(String) setEndpoint} after resolving the + * endpoint. If the service is not available in this Region, however, an + * IllegalArgumentException will be raised. + * + * @param region The region of the service. + */ + void setRegion(com.oracle.bmc.Region region); + + /** + * Sets the region to call (ex, 'us-phoenix-1'). + * + *

Note, this will first try to map the region ID to a known Region and call {@link + * #setRegion(Region) setRegion}. + * + *

If no known Region could be determined, it will create an endpoint based on the default + * endpoint format ({@link com.oracle.bmc.Region#formatDefaultRegionEndpoint(Service, String)} + * and then call {@link #setEndpoint(String) setEndpoint}. + * + * @param regionId The public region ID. + */ + void setRegion(String regionId); + + /** + * Determines whether realm specific endpoint should be used or not. Set + * realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm + * specific endpoint template, otherwise set it to "false" + * + * @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint + * template + */ + void useRealmSpecificEndpointTemplate(boolean realmSpecificEndpointTemplateEnabled); + + /** + * Creates a new CostAlert Subscription. + * + * @param request The request object containing the details to send + * @return A response object containing details about the completed operation + * @throws BmcException when an error occurs. This operation uses + * RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is + * provided. The specifics of the default retry strategy are described here + * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries + *

Example: Click here to see how to use + * CreateCostAlertSubscription API. + */ + CreateCostAlertSubscriptionResponse createCostAlertSubscription( + CreateCostAlertSubscriptionRequest request); + + /** + * Creates a new costAnomaly Monitor. + * + * @param request The request object containing the details to send + * @return A response object containing details about the completed operation + * @throws BmcException when an error occurs. This operation uses + * RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is + * provided. The specifics of the default retry strategy are described here + * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries + *

Example: Click here to see how to use + * CreateCostAnomalyMonitor API. + */ + CreateCostAnomalyMonitorResponse createCostAnomalyMonitor( + CreateCostAnomalyMonitorRequest request); + + /** + * Deletes a specified CostAlertSubscription resource. + * + * @param request The request object containing the details to send + * @return A response object containing details about the completed operation + * @throws BmcException when an error occurs. This operation uses + * RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is + * provided. The specifics of the default retry strategy are described here + * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries + *

Example: Click here to see how to use + * DeleteCostAlertSubscription API. + */ + DeleteCostAlertSubscriptionResponse deleteCostAlertSubscription( + DeleteCostAlertSubscriptionRequest request); + + /** + * Deletes a specified CostAnomalyMonitor resource. + * + * @param request The request object containing the details to send + * @return A response object containing details about the completed operation + * @throws BmcException when an error occurs. This operation uses + * RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is + * provided. The specifics of the default retry strategy are described here + * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries + *

Example: Click here to see how to use + * DeleteCostAnomalyMonitor API. + */ + DeleteCostAnomalyMonitorResponse deleteCostAnomalyMonitor( + DeleteCostAnomalyMonitorRequest request); + + /** + * Disables the cost anomaly monitor. This stops cost anomaly detection for targeted + * resource(s). + * + * @param request The request object containing the details to send + * @return A response object containing details about the completed operation + * @throws BmcException when an error occurs. This operation uses + * RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is + * provided. The specifics of the default retry strategy are described here + * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries + *

Example: Click here to see how to use + * DisableCostAnomalyMonitor API. + */ + DisableCostAnomalyMonitorResponse disableCostAnomalyMonitor( + DisableCostAnomalyMonitorRequest request); + + /** + * Enables the cost anomaly monitor. This (re)starts the cost anomaly detection for targeted + * resource(s). + * + * @param request The request object containing the details to send + * @return A response object containing details about the completed operation + * @throws BmcException when an error occurs. This operation uses + * RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is + * provided. The specifics of the default retry strategy are described here + * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries + *

Example: Click here to see how to use + * EnableCostAnomalyMonitor API. + */ + EnableCostAnomalyMonitorResponse enableCostAnomalyMonitor( + EnableCostAnomalyMonitorRequest request); + + /** + * Gets a CostAlertSubscription by the identifier. + * + * @param request The request object containing the details to send + * @return A response object containing details about the completed operation + * @throws BmcException when an error occurs. This operation uses + * RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is + * provided. The specifics of the default retry strategy are described here + * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries + *

Example: Click here to see how to use + * GetCostAlertSubscription API. + */ + GetCostAlertSubscriptionResponse getCostAlertSubscription( + GetCostAlertSubscriptionRequest request); + + /** + * Gets a CostAnomalyEvent by the identifier. + * + * @param request The request object containing the details to send + * @return A response object containing details about the completed operation + * @throws BmcException when an error occurs. This operation uses + * RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is + * provided. The specifics of the default retry strategy are described here + * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries + *

Example: Click here to see how to use GetCostAnomalyEvent + * API. + */ + GetCostAnomalyEventResponse getCostAnomalyEvent(GetCostAnomalyEventRequest request); + + /** + * Gets a CostAnomalyMonitor by the identifier. + * + * @param request The request object containing the details to send + * @return A response object containing details about the completed operation + * @throws BmcException when an error occurs. This operation uses + * RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is + * provided. The specifics of the default retry strategy are described here + * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries + *

Example: Click here to see how to use + * GetCostAnomalyMonitor API. + */ + GetCostAnomalyMonitorResponse getCostAnomalyMonitor(GetCostAnomalyMonitorRequest request); + + /** + * Gets a list of Cost Alert Subscription in a compartment. + * + * @param request The request object containing the details to send + * @return A response object containing details about the completed operation + * @throws BmcException when an error occurs. This operation uses + * RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is + * provided. The specifics of the default retry strategy are described here + * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries + *

Example: Click here to see how to use + * ListCostAlertSubscriptions API. + */ + ListCostAlertSubscriptionsResponse listCostAlertSubscriptions( + ListCostAlertSubscriptionsRequest request); + + /** + * Gets a list of Cost Anomaly Event in a compartment. + * + * @param request The request object containing the details to send + * @return A response object containing details about the completed operation + * @throws BmcException when an error occurs. This operation uses + * RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is + * provided. The specifics of the default retry strategy are described here + * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries + *

Example: Click here to see how to use + * ListCostAnomalyEvents API. + */ + ListCostAnomalyEventsResponse listCostAnomalyEvents(ListCostAnomalyEventsRequest request); + + /** + * Gets a list of Cost Anomaly Monitors in a compartment. + * + * @param request The request object containing the details to send + * @return A response object containing details about the completed operation + * @throws BmcException when an error occurs. This operation uses + * RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is + * provided. The specifics of the default retry strategy are described here + * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries + *

Example: Click here to see how to use + * ListCostAnomalyMonitors API. + */ + ListCostAnomalyMonitorsResponse listCostAnomalyMonitors(ListCostAnomalyMonitorsRequest request); + + /** + * Gets a list of Cost Anomaly Events analytics summary - aggregated metrics for a given time + * period. + * + * @param request The request object containing the details to send + * @return A response object containing details about the completed operation + * @throws BmcException when an error occurs. This operation uses + * RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is + * provided. The specifics of the default retry strategy are described here + * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries + *

Example: Click here to see how to use + * SummarizeCostAnomalyEventAnalytics API. + */ + SummarizeCostAnomalyEventAnalyticsResponse summarizeCostAnomalyEventAnalytics( + SummarizeCostAnomalyEventAnalyticsRequest request); + + /** + * Update a CostAlertSubscription identified by the OCID. + * + * @param request The request object containing the details to send + * @return A response object containing details about the completed operation + * @throws BmcException when an error occurs. This operation uses + * RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is + * provided. The specifics of the default retry strategy are described here + * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries + *

Example: Click here to see how to use + * UpdateCostAlertSubscription API. + */ + UpdateCostAlertSubscriptionResponse updateCostAlertSubscription( + UpdateCostAlertSubscriptionRequest request); + + /** + * Update a CostAnomalyEvent identified by the OCID. + * + * @param request The request object containing the details to send + * @return A response object containing details about the completed operation + * @throws BmcException when an error occurs. This operation uses + * RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is + * provided. The specifics of the default retry strategy are described here + * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries + *

Example: Click here to see how to use + * UpdateCostAnomalyEvent API. + */ + UpdateCostAnomalyEventResponse updateCostAnomalyEvent(UpdateCostAnomalyEventRequest request); + + /** + * Update a CostAnomalyMonitor identified by the OCID. + * + * @param request The request object containing the details to send + * @return A response object containing details about the completed operation + * @throws BmcException when an error occurs. This operation uses + * RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is + * provided. The specifics of the default retry strategy are described here + * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries + *

Example: Click here to see how to use + * UpdateCostAnomalyMonitor API. + */ + UpdateCostAnomalyMonitorResponse updateCostAnomalyMonitor( + UpdateCostAnomalyMonitorRequest request); + + /** + * Gets the pre-configured waiters available for resources for this service. + * + * @return The service waiters. + */ + CostAdWaiters getWaiters(); + + /** + * Gets the pre-configured paginators available for list operations in this service which may + * return multiple pages of data. These paginators provide an {@link java.lang.Iterable} + * interface so that service responses, or resources/records, can be iterated through without + * having to manually deal with pagination and page tokens. + * + * @return The service paginators. + */ + CostAdPaginators getPaginators(); +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/CostAdAsync.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/CostAdAsync.java new file mode 100644 index 00000000000..b5582ab2d57 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/CostAdAsync.java @@ -0,0 +1,325 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget; + +import com.oracle.bmc.budget.requests.*; +import com.oracle.bmc.budget.responses.*; + +/** + * Use the Budgets API to manage budgets and budget alerts. For more information, see [Budgets + * Overview](https://docs.oracle.com/iaas/Content/Billing/Concepts/budgetsoverview.htm). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public interface CostAdAsync extends AutoCloseable { + + /** Rebuilds the client from scratch. Useful to refresh certificates. */ + void refreshClient(); + + /** + * Sets the endpoint to call (ex, https://www.example.com). + * + * @param endpoint The endpoint of the serice. + */ + void setEndpoint(String endpoint); + + /** Gets the set endpoint for REST call (ex, https://www.example.com) */ + String getEndpoint(); + + /** + * Sets the region to call (ex, Region.US_PHOENIX_1). + * + *

Note, this will call {@link #setEndpoint(String) setEndpoint} after resolving the + * endpoint. If the service is not available in this region, however, an + * IllegalArgumentException will be raised. + * + * @param region The region of the service. + */ + void setRegion(com.oracle.bmc.Region region); + + /** + * Sets the region to call (ex, 'us-phoenix-1'). + * + *

Note, this will first try to map the region ID to a known Region and call {@link + * #setRegion(Region) setRegion}. + * + *

If no known Region could be determined, it will create an endpoint based on the default + * endpoint format ({@link com.oracle.bmc.Region#formatDefaultRegionEndpoint(Service, String)} + * and then call {@link #setEndpoint(String) setEndpoint}. + * + * @param regionId The public region ID. + */ + void setRegion(String regionId); + + /** + * Determines whether realm specific endpoint should be used or not. Set + * realmSpecificEndpointTemplateEnabled to "true" if the user wants to enable use of realm + * specific endpoint template, otherwise set it to "false" + * + * @param realmSpecificEndpointTemplateEnabled flag to enable the use of realm specific endpoint + * template + */ + void useRealmSpecificEndpointTemplate(boolean realmSpecificEndpointTemplateEnabled); + + /** + * Creates a new CostAlert Subscription. + * + * @param request The request object containing the details to send + * @param handler The request handler to invoke upon completion, may be null. + * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, + * if you provide an AsyncHandler and use the Future, some types of responses (like + * java.io.InputStream) may not be able to be read in both places as the underlying stream + * may only be consumed once. + */ + java.util.concurrent.Future createCostAlertSubscription( + CreateCostAlertSubscriptionRequest request, + com.oracle.bmc.responses.AsyncHandler< + CreateCostAlertSubscriptionRequest, CreateCostAlertSubscriptionResponse> + handler); + + /** + * Creates a new costAnomaly Monitor. + * + * @param request The request object containing the details to send + * @param handler The request handler to invoke upon completion, may be null. + * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, + * if you provide an AsyncHandler and use the Future, some types of responses (like + * java.io.InputStream) may not be able to be read in both places as the underlying stream + * may only be consumed once. + */ + java.util.concurrent.Future createCostAnomalyMonitor( + CreateCostAnomalyMonitorRequest request, + com.oracle.bmc.responses.AsyncHandler< + CreateCostAnomalyMonitorRequest, CreateCostAnomalyMonitorResponse> + handler); + + /** + * Deletes a specified CostAlertSubscription resource. + * + * @param request The request object containing the details to send + * @param handler The request handler to invoke upon completion, may be null. + * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, + * if you provide an AsyncHandler and use the Future, some types of responses (like + * java.io.InputStream) may not be able to be read in both places as the underlying stream + * may only be consumed once. + */ + java.util.concurrent.Future deleteCostAlertSubscription( + DeleteCostAlertSubscriptionRequest request, + com.oracle.bmc.responses.AsyncHandler< + DeleteCostAlertSubscriptionRequest, DeleteCostAlertSubscriptionResponse> + handler); + + /** + * Deletes a specified CostAnomalyMonitor resource. + * + * @param request The request object containing the details to send + * @param handler The request handler to invoke upon completion, may be null. + * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, + * if you provide an AsyncHandler and use the Future, some types of responses (like + * java.io.InputStream) may not be able to be read in both places as the underlying stream + * may only be consumed once. + */ + java.util.concurrent.Future deleteCostAnomalyMonitor( + DeleteCostAnomalyMonitorRequest request, + com.oracle.bmc.responses.AsyncHandler< + DeleteCostAnomalyMonitorRequest, DeleteCostAnomalyMonitorResponse> + handler); + + /** + * Disables the cost anomaly monitor. This stops cost anomaly detection for targeted + * resource(s). + * + * @param request The request object containing the details to send + * @param handler The request handler to invoke upon completion, may be null. + * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, + * if you provide an AsyncHandler and use the Future, some types of responses (like + * java.io.InputStream) may not be able to be read in both places as the underlying stream + * may only be consumed once. + */ + java.util.concurrent.Future disableCostAnomalyMonitor( + DisableCostAnomalyMonitorRequest request, + com.oracle.bmc.responses.AsyncHandler< + DisableCostAnomalyMonitorRequest, DisableCostAnomalyMonitorResponse> + handler); + + /** + * Enables the cost anomaly monitor. This (re)starts the cost anomaly detection for targeted + * resource(s). + * + * @param request The request object containing the details to send + * @param handler The request handler to invoke upon completion, may be null. + * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, + * if you provide an AsyncHandler and use the Future, some types of responses (like + * java.io.InputStream) may not be able to be read in both places as the underlying stream + * may only be consumed once. + */ + java.util.concurrent.Future enableCostAnomalyMonitor( + EnableCostAnomalyMonitorRequest request, + com.oracle.bmc.responses.AsyncHandler< + EnableCostAnomalyMonitorRequest, EnableCostAnomalyMonitorResponse> + handler); + + /** + * Gets a CostAlertSubscription by the identifier. + * + * @param request The request object containing the details to send + * @param handler The request handler to invoke upon completion, may be null. + * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, + * if you provide an AsyncHandler and use the Future, some types of responses (like + * java.io.InputStream) may not be able to be read in both places as the underlying stream + * may only be consumed once. + */ + java.util.concurrent.Future getCostAlertSubscription( + GetCostAlertSubscriptionRequest request, + com.oracle.bmc.responses.AsyncHandler< + GetCostAlertSubscriptionRequest, GetCostAlertSubscriptionResponse> + handler); + + /** + * Gets a CostAnomalyEvent by the identifier. + * + * @param request The request object containing the details to send + * @param handler The request handler to invoke upon completion, may be null. + * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, + * if you provide an AsyncHandler and use the Future, some types of responses (like + * java.io.InputStream) may not be able to be read in both places as the underlying stream + * may only be consumed once. + */ + java.util.concurrent.Future getCostAnomalyEvent( + GetCostAnomalyEventRequest request, + com.oracle.bmc.responses.AsyncHandler< + GetCostAnomalyEventRequest, GetCostAnomalyEventResponse> + handler); + + /** + * Gets a CostAnomalyMonitor by the identifier. + * + * @param request The request object containing the details to send + * @param handler The request handler to invoke upon completion, may be null. + * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, + * if you provide an AsyncHandler and use the Future, some types of responses (like + * java.io.InputStream) may not be able to be read in both places as the underlying stream + * may only be consumed once. + */ + java.util.concurrent.Future getCostAnomalyMonitor( + GetCostAnomalyMonitorRequest request, + com.oracle.bmc.responses.AsyncHandler< + GetCostAnomalyMonitorRequest, GetCostAnomalyMonitorResponse> + handler); + + /** + * Gets a list of Cost Alert Subscription in a compartment. + * + * @param request The request object containing the details to send + * @param handler The request handler to invoke upon completion, may be null. + * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, + * if you provide an AsyncHandler and use the Future, some types of responses (like + * java.io.InputStream) may not be able to be read in both places as the underlying stream + * may only be consumed once. + */ + java.util.concurrent.Future listCostAlertSubscriptions( + ListCostAlertSubscriptionsRequest request, + com.oracle.bmc.responses.AsyncHandler< + ListCostAlertSubscriptionsRequest, ListCostAlertSubscriptionsResponse> + handler); + + /** + * Gets a list of Cost Anomaly Event in a compartment. + * + * @param request The request object containing the details to send + * @param handler The request handler to invoke upon completion, may be null. + * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, + * if you provide an AsyncHandler and use the Future, some types of responses (like + * java.io.InputStream) may not be able to be read in both places as the underlying stream + * may only be consumed once. + */ + java.util.concurrent.Future listCostAnomalyEvents( + ListCostAnomalyEventsRequest request, + com.oracle.bmc.responses.AsyncHandler< + ListCostAnomalyEventsRequest, ListCostAnomalyEventsResponse> + handler); + + /** + * Gets a list of Cost Anomaly Monitors in a compartment. + * + * @param request The request object containing the details to send + * @param handler The request handler to invoke upon completion, may be null. + * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, + * if you provide an AsyncHandler and use the Future, some types of responses (like + * java.io.InputStream) may not be able to be read in both places as the underlying stream + * may only be consumed once. + */ + java.util.concurrent.Future listCostAnomalyMonitors( + ListCostAnomalyMonitorsRequest request, + com.oracle.bmc.responses.AsyncHandler< + ListCostAnomalyMonitorsRequest, ListCostAnomalyMonitorsResponse> + handler); + + /** + * Gets a list of Cost Anomaly Events analytics summary - aggregated metrics for a given time + * period. + * + * @param request The request object containing the details to send + * @param handler The request handler to invoke upon completion, may be null. + * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, + * if you provide an AsyncHandler and use the Future, some types of responses (like + * java.io.InputStream) may not be able to be read in both places as the underlying stream + * may only be consumed once. + */ + java.util.concurrent.Future + summarizeCostAnomalyEventAnalytics( + SummarizeCostAnomalyEventAnalyticsRequest request, + com.oracle.bmc.responses.AsyncHandler< + SummarizeCostAnomalyEventAnalyticsRequest, + SummarizeCostAnomalyEventAnalyticsResponse> + handler); + + /** + * Update a CostAlertSubscription identified by the OCID. + * + * @param request The request object containing the details to send + * @param handler The request handler to invoke upon completion, may be null. + * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, + * if you provide an AsyncHandler and use the Future, some types of responses (like + * java.io.InputStream) may not be able to be read in both places as the underlying stream + * may only be consumed once. + */ + java.util.concurrent.Future updateCostAlertSubscription( + UpdateCostAlertSubscriptionRequest request, + com.oracle.bmc.responses.AsyncHandler< + UpdateCostAlertSubscriptionRequest, UpdateCostAlertSubscriptionResponse> + handler); + + /** + * Update a CostAnomalyEvent identified by the OCID. + * + * @param request The request object containing the details to send + * @param handler The request handler to invoke upon completion, may be null. + * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, + * if you provide an AsyncHandler and use the Future, some types of responses (like + * java.io.InputStream) may not be able to be read in both places as the underlying stream + * may only be consumed once. + */ + java.util.concurrent.Future updateCostAnomalyEvent( + UpdateCostAnomalyEventRequest request, + com.oracle.bmc.responses.AsyncHandler< + UpdateCostAnomalyEventRequest, UpdateCostAnomalyEventResponse> + handler); + + /** + * Update a CostAnomalyMonitor identified by the OCID. + * + * @param request The request object containing the details to send + * @param handler The request handler to invoke upon completion, may be null. + * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, + * if you provide an AsyncHandler and use the Future, some types of responses (like + * java.io.InputStream) may not be able to be read in both places as the underlying stream + * may only be consumed once. + */ + java.util.concurrent.Future updateCostAnomalyMonitor( + UpdateCostAnomalyMonitorRequest request, + com.oracle.bmc.responses.AsyncHandler< + UpdateCostAnomalyMonitorRequest, UpdateCostAnomalyMonitorResponse> + handler); +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/CostAdAsyncClient.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/CostAdAsyncClient.java new file mode 100644 index 00000000000..5cf7a28b951 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/CostAdAsyncClient.java @@ -0,0 +1,853 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget; + +import com.oracle.bmc.util.internal.Validate; +import com.oracle.bmc.budget.requests.*; +import com.oracle.bmc.budget.responses.*; + +import java.util.Objects; + +/** + * Async client implementation for CostAd service.
+ * There are two ways to use async client: 1. Use AsyncHandler: using AsyncHandler, if the response + * to the call is an {@link java.io.InputStream}, like getObject Api in object storage service, + * developers need to process the stream in AsyncHandler, and not anywhere else, because the stream + * will be closed right after the AsyncHandler is invoked.
+ * 2. Use Java Future: using Java Future, developers need to close the stream after they are done + * with the Java Future.
+ * Accessing the result should be done in a mutually exclusive manner, either through the Future or + * the AsyncHandler, but not both. If the Future is used, the caller should pass in null as the + * AsyncHandler. If the AsyncHandler is used, it is still safe to use the Future to determine + * whether or not the request was completed via Future.isDone/isCancelled.
+ * Please refer to + * https://github.com/oracle/oci-java-sdk/blob/master/bmc-examples/src/main/java/ResteasyClientWithObjectStorageExample.java + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class CostAdAsyncClient extends com.oracle.bmc.http.internal.BaseAsyncClient + implements CostAdAsync { + /** Service instance for CostAd. */ + public static final com.oracle.bmc.Service SERVICE = + com.oracle.bmc.Services.serviceBuilder() + .serviceName(CostAdClient.class.getName()) + .serviceEndpointPrefix("") + .serviceEndpointTemplate("https://usage.{region}.oci.{secondLevelDomain}") + .build(); + + private static final org.slf4j.Logger LOG = + org.slf4j.LoggerFactory.getLogger(CostAdAsyncClient.class); + + CostAdAsyncClient( + com.oracle.bmc.common.ClientBuilderBase builder, + com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider + authenticationDetailsProvider) { + super(builder, authenticationDetailsProvider); + } + + /** + * Create a builder for this client. + * + * @return builder + */ + public static Builder builder() { + return new Builder(SERVICE); + } + + /** + * Builder class for this client. The "authenticationDetailsProvider" is required and must be + * passed to the {@link #build(AbstractAuthenticationDetailsProvider)} method. + */ + public static class Builder + extends com.oracle.bmc.common.RegionalClientBuilder { + private Builder(com.oracle.bmc.Service service) { + super(service); + final String packageName = "budget"; + com.oracle.bmc.internal.Alloy.throwDisabledServiceExceptionIfAppropriate(packageName); + requestSignerFactory = + new com.oracle.bmc.http.signing.internal.DefaultRequestSignerFactory( + com.oracle.bmc.http.signing.SigningStrategy.STANDARD); + } + + /** + * Build the client. + * + * @param authenticationDetailsProvider authentication details provider + * @return the client + */ + public CostAdAsyncClient build( + @jakarta.annotation.Nonnull + com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider + authenticationDetailsProvider) { + return new CostAdAsyncClient(this, authenticationDetailsProvider); + } + } + + @Override + public void setRegion(com.oracle.bmc.Region region) { + super.setRegion(region); + } + + @Override + public void setRegion(String regionId) { + super.setRegion(regionId); + } + + @Override + public java.util.concurrent.Future + createCostAlertSubscription( + CreateCostAlertSubscriptionRequest request, + final com.oracle.bmc.responses.AsyncHandler< + CreateCostAlertSubscriptionRequest, + CreateCostAlertSubscriptionResponse> + handler) { + Objects.requireNonNull( + request.getCreateCostAlertSubscriptionDetails(), + "createCostAlertSubscriptionDetails is required"); + + return clientCall(request, CreateCostAlertSubscriptionResponse::builder) + .logger(LOG, "createCostAlertSubscription") + .serviceDetails( + "CostAd", + "CreateCostAlertSubscription", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAlertSubscription/CreateCostAlertSubscription") + .method(com.oracle.bmc.http.client.Method.POST) + .requestBuilder(CreateCostAlertSubscriptionRequest::builder) + .basePath("/20190111") + .appendPathParam("costAlertSubscriptions") + .accept("application/json") + .appendHeader("opc-retry-token", request.getOpcRetryToken()) + .appendHeader("opc-request-id", request.getOpcRequestId()) + .hasBody() + .handleBody( + com.oracle.bmc.budget.model.CostAlertSubscription.class, + CreateCostAlertSubscriptionResponse.Builder::costAlertSubscription) + .handleResponseHeaderString( + "opc-request-id", CreateCostAlertSubscriptionResponse.Builder::opcRequestId) + .handleResponseHeaderString( + "etag", CreateCostAlertSubscriptionResponse.Builder::etag) + .callAsync(handler); + } + + @Override + public java.util.concurrent.Future createCostAnomalyMonitor( + CreateCostAnomalyMonitorRequest request, + final com.oracle.bmc.responses.AsyncHandler< + CreateCostAnomalyMonitorRequest, CreateCostAnomalyMonitorResponse> + handler) { + Objects.requireNonNull( + request.getCreateCostAnomalyMonitorDetails(), + "createCostAnomalyMonitorDetails is required"); + + return clientCall(request, CreateCostAnomalyMonitorResponse::builder) + .logger(LOG, "createCostAnomalyMonitor") + .serviceDetails( + "CostAd", + "CreateCostAnomalyMonitor", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyMonitor/CreateCostAnomalyMonitor") + .method(com.oracle.bmc.http.client.Method.POST) + .requestBuilder(CreateCostAnomalyMonitorRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyMonitors") + .accept("application/json") + .appendHeader("opc-retry-token", request.getOpcRetryToken()) + .appendHeader("opc-request-id", request.getOpcRequestId()) + .hasBody() + .handleBody( + com.oracle.bmc.budget.model.CostAnomalyMonitor.class, + CreateCostAnomalyMonitorResponse.Builder::costAnomalyMonitor) + .handleResponseHeaderString( + "opc-request-id", CreateCostAnomalyMonitorResponse.Builder::opcRequestId) + .handleResponseHeaderString("etag", CreateCostAnomalyMonitorResponse.Builder::etag) + .callAsync(handler); + } + + @Override + public java.util.concurrent.Future + deleteCostAlertSubscription( + DeleteCostAlertSubscriptionRequest request, + final com.oracle.bmc.responses.AsyncHandler< + DeleteCostAlertSubscriptionRequest, + DeleteCostAlertSubscriptionResponse> + handler) { + + Validate.notBlank( + request.getCostAlertSubscriptionId(), "costAlertSubscriptionId must not be blank"); + + return clientCall(request, DeleteCostAlertSubscriptionResponse::builder) + .logger(LOG, "deleteCostAlertSubscription") + .serviceDetails( + "CostAd", + "DeleteCostAlertSubscription", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAlertSubscription/DeleteCostAlertSubscription") + .method(com.oracle.bmc.http.client.Method.DELETE) + .requestBuilder(DeleteCostAlertSubscriptionRequest::builder) + .basePath("/20190111") + .appendPathParam("costAlertSubscriptions") + .appendPathParam(request.getCostAlertSubscriptionId()) + .accept("application/json") + .appendHeader("if-match", request.getIfMatch()) + .appendHeader("opc-request-id", request.getOpcRequestId()) + .handleResponseHeaderString( + "opc-request-id", DeleteCostAlertSubscriptionResponse.Builder::opcRequestId) + .callAsync(handler); + } + + @Override + public java.util.concurrent.Future deleteCostAnomalyMonitor( + DeleteCostAnomalyMonitorRequest request, + final com.oracle.bmc.responses.AsyncHandler< + DeleteCostAnomalyMonitorRequest, DeleteCostAnomalyMonitorResponse> + handler) { + + Validate.notBlank( + request.getCostAnomalyMonitorId(), "costAnomalyMonitorId must not be blank"); + + return clientCall(request, DeleteCostAnomalyMonitorResponse::builder) + .logger(LOG, "deleteCostAnomalyMonitor") + .serviceDetails( + "CostAd", + "DeleteCostAnomalyMonitor", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyMonitor/DeleteCostAnomalyMonitor") + .method(com.oracle.bmc.http.client.Method.DELETE) + .requestBuilder(DeleteCostAnomalyMonitorRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyMonitors") + .appendPathParam(request.getCostAnomalyMonitorId()) + .accept("application/json") + .appendHeader("if-match", request.getIfMatch()) + .appendHeader("opc-request-id", request.getOpcRequestId()) + .handleResponseHeaderString( + "opc-request-id", DeleteCostAnomalyMonitorResponse.Builder::opcRequestId) + .callAsync(handler); + } + + @Override + public java.util.concurrent.Future disableCostAnomalyMonitor( + DisableCostAnomalyMonitorRequest request, + final com.oracle.bmc.responses.AsyncHandler< + DisableCostAnomalyMonitorRequest, DisableCostAnomalyMonitorResponse> + handler) { + + Validate.notBlank( + request.getCostAnomalyMonitorId(), "costAnomalyMonitorId must not be blank"); + + return clientCall(request, DisableCostAnomalyMonitorResponse::builder) + .logger(LOG, "disableCostAnomalyMonitor") + .serviceDetails( + "CostAd", + "DisableCostAnomalyMonitor", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyMonitor/DisableCostAnomalyMonitor") + .method(com.oracle.bmc.http.client.Method.POST) + .requestBuilder(DisableCostAnomalyMonitorRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyMonitors") + .appendPathParam(request.getCostAnomalyMonitorId()) + .appendPathParam("actions") + .appendPathParam("disable") + .accept("application/json") + .appendHeader("if-match", request.getIfMatch()) + .appendHeader("opc-request-id", request.getOpcRequestId()) + .appendHeader("opc-retry-token", request.getOpcRetryToken()) + .handleBody( + com.oracle.bmc.budget.model.CostAnomalyMonitor.class, + DisableCostAnomalyMonitorResponse.Builder::costAnomalyMonitor) + .handleResponseHeaderString("etag", DisableCostAnomalyMonitorResponse.Builder::etag) + .handleResponseHeaderString( + "opc-request-id", DisableCostAnomalyMonitorResponse.Builder::opcRequestId) + .callAsync(handler); + } + + @Override + public java.util.concurrent.Future enableCostAnomalyMonitor( + EnableCostAnomalyMonitorRequest request, + final com.oracle.bmc.responses.AsyncHandler< + EnableCostAnomalyMonitorRequest, EnableCostAnomalyMonitorResponse> + handler) { + + Validate.notBlank( + request.getCostAnomalyMonitorId(), "costAnomalyMonitorId must not be blank"); + + return clientCall(request, EnableCostAnomalyMonitorResponse::builder) + .logger(LOG, "enableCostAnomalyMonitor") + .serviceDetails( + "CostAd", + "EnableCostAnomalyMonitor", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyMonitor/EnableCostAnomalyMonitor") + .method(com.oracle.bmc.http.client.Method.POST) + .requestBuilder(EnableCostAnomalyMonitorRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyMonitors") + .appendPathParam(request.getCostAnomalyMonitorId()) + .appendPathParam("actions") + .appendPathParam("enable") + .accept("application/json") + .appendHeader("if-match", request.getIfMatch()) + .appendHeader("opc-request-id", request.getOpcRequestId()) + .appendHeader("opc-retry-token", request.getOpcRetryToken()) + .handleBody( + com.oracle.bmc.budget.model.CostAnomalyMonitor.class, + EnableCostAnomalyMonitorResponse.Builder::costAnomalyMonitor) + .handleResponseHeaderString("etag", EnableCostAnomalyMonitorResponse.Builder::etag) + .handleResponseHeaderString( + "opc-request-id", EnableCostAnomalyMonitorResponse.Builder::opcRequestId) + .callAsync(handler); + } + + @Override + public java.util.concurrent.Future getCostAlertSubscription( + GetCostAlertSubscriptionRequest request, + final com.oracle.bmc.responses.AsyncHandler< + GetCostAlertSubscriptionRequest, GetCostAlertSubscriptionResponse> + handler) { + + Validate.notBlank( + request.getCostAlertSubscriptionId(), "costAlertSubscriptionId must not be blank"); + + return clientCall(request, GetCostAlertSubscriptionResponse::builder) + .logger(LOG, "getCostAlertSubscription") + .serviceDetails( + "CostAd", + "GetCostAlertSubscription", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAlertSubscription/GetCostAlertSubscription") + .method(com.oracle.bmc.http.client.Method.GET) + .requestBuilder(GetCostAlertSubscriptionRequest::builder) + .basePath("/20190111") + .appendPathParam("costAlertSubscriptions") + .appendPathParam(request.getCostAlertSubscriptionId()) + .accept("application/json") + .appendHeader("opc-request-id", request.getOpcRequestId()) + .handleBody( + com.oracle.bmc.budget.model.CostAlertSubscription.class, + GetCostAlertSubscriptionResponse.Builder::costAlertSubscription) + .handleResponseHeaderString( + "opc-request-id", GetCostAlertSubscriptionResponse.Builder::opcRequestId) + .handleResponseHeaderString("etag", GetCostAlertSubscriptionResponse.Builder::etag) + .callAsync(handler); + } + + @Override + public java.util.concurrent.Future getCostAnomalyEvent( + GetCostAnomalyEventRequest request, + final com.oracle.bmc.responses.AsyncHandler< + GetCostAnomalyEventRequest, GetCostAnomalyEventResponse> + handler) { + + Validate.notBlank(request.getCostAnomalyEventId(), "costAnomalyEventId must not be blank"); + + return clientCall(request, GetCostAnomalyEventResponse::builder) + .logger(LOG, "getCostAnomalyEvent") + .serviceDetails( + "CostAd", + "GetCostAnomalyEvent", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyEvent/GetCostAnomalyEvent") + .method(com.oracle.bmc.http.client.Method.GET) + .requestBuilder(GetCostAnomalyEventRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyEvents") + .appendPathParam(request.getCostAnomalyEventId()) + .accept("application/json") + .appendHeader("opc-request-id", request.getOpcRequestId()) + .handleBody( + com.oracle.bmc.budget.model.CostAnomalyEvent.class, + GetCostAnomalyEventResponse.Builder::costAnomalyEvent) + .handleResponseHeaderString( + "opc-request-id", GetCostAnomalyEventResponse.Builder::opcRequestId) + .handleResponseHeaderString("etag", GetCostAnomalyEventResponse.Builder::etag) + .callAsync(handler); + } + + @Override + public java.util.concurrent.Future getCostAnomalyMonitor( + GetCostAnomalyMonitorRequest request, + final com.oracle.bmc.responses.AsyncHandler< + GetCostAnomalyMonitorRequest, GetCostAnomalyMonitorResponse> + handler) { + + Validate.notBlank( + request.getCostAnomalyMonitorId(), "costAnomalyMonitorId must not be blank"); + + return clientCall(request, GetCostAnomalyMonitorResponse::builder) + .logger(LOG, "getCostAnomalyMonitor") + .serviceDetails( + "CostAd", + "GetCostAnomalyMonitor", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyMonitor/GetCostAnomalyMonitor") + .method(com.oracle.bmc.http.client.Method.GET) + .requestBuilder(GetCostAnomalyMonitorRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyMonitors") + .appendPathParam(request.getCostAnomalyMonitorId()) + .accept("application/json") + .appendHeader("opc-request-id", request.getOpcRequestId()) + .handleBody( + com.oracle.bmc.budget.model.CostAnomalyMonitor.class, + GetCostAnomalyMonitorResponse.Builder::costAnomalyMonitor) + .handleResponseHeaderString( + "opc-request-id", GetCostAnomalyMonitorResponse.Builder::opcRequestId) + .handleResponseHeaderString("etag", GetCostAnomalyMonitorResponse.Builder::etag) + .callAsync(handler); + } + + @Override + public java.util.concurrent.Future + listCostAlertSubscriptions( + ListCostAlertSubscriptionsRequest request, + final com.oracle.bmc.responses.AsyncHandler< + ListCostAlertSubscriptionsRequest, + ListCostAlertSubscriptionsResponse> + handler) { + Objects.requireNonNull(request.getCompartmentId(), "compartmentId is required"); + + return clientCall(request, ListCostAlertSubscriptionsResponse::builder) + .logger(LOG, "listCostAlertSubscriptions") + .serviceDetails( + "CostAd", + "ListCostAlertSubscriptions", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAlertSubscriptionCollection/ListCostAlertSubscriptions") + .method(com.oracle.bmc.http.client.Method.GET) + .requestBuilder(ListCostAlertSubscriptionsRequest::builder) + .basePath("/20190111") + .appendPathParam("costAlertSubscriptions") + .appendQueryParam("compartmentId", request.getCompartmentId()) + .appendQueryParam("limit", request.getLimit()) + .appendQueryParam("page", request.getPage()) + .appendEnumQueryParam("sortOrder", request.getSortOrder()) + .appendEnumQueryParam("sortBy", request.getSortBy()) + .appendQueryParam("name", request.getName()) + .appendEnumQueryParam("lifecycleState", request.getLifecycleState()) + .accept("application/json") + .appendHeader("opc-request-id", request.getOpcRequestId()) + .handleBody( + com.oracle.bmc.budget.model.CostAlertSubscriptionCollection.class, + ListCostAlertSubscriptionsResponse.Builder::costAlertSubscriptionCollection) + .handleResponseHeaderString( + "opc-request-id", ListCostAlertSubscriptionsResponse.Builder::opcRequestId) + .handleResponseHeaderString( + "opc-next-page", ListCostAlertSubscriptionsResponse.Builder::opcNextPage) + .callAsync(handler); + } + + @Override + public java.util.concurrent.Future listCostAnomalyEvents( + ListCostAnomalyEventsRequest request, + final com.oracle.bmc.responses.AsyncHandler< + ListCostAnomalyEventsRequest, ListCostAnomalyEventsResponse> + handler) { + Objects.requireNonNull(request.getCompartmentId(), "compartmentId is required"); + + return clientCall(request, ListCostAnomalyEventsResponse::builder) + .logger(LOG, "listCostAnomalyEvents") + .serviceDetails( + "CostAd", + "ListCostAnomalyEvents", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyEventCollection/ListCostAnomalyEvents") + .method(com.oracle.bmc.http.client.Method.GET) + .requestBuilder(ListCostAnomalyEventsRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyEvents") + .appendQueryParam("compartmentId", request.getCompartmentId()) + .appendQueryParam("limit", request.getLimit()) + .appendQueryParam("page", request.getPage()) + .appendEnumQueryParam("sortOrder", request.getSortOrder()) + .appendEnumQueryParam("sortBy", request.getSortBy()) + .appendQueryParam("name", request.getName()) + .appendQueryParam("costAnomalyMonitorId", request.getCostAnomalyMonitorId()) + .appendListQueryParam( + "targetTenantId", + request.getTargetTenantId(), + com.oracle.bmc.util.internal.CollectionFormatType.CommaSeparated) + .appendQueryParam( + "timeAnomalyEventStartDate", request.getTimeAnomalyEventStartDate()) + .appendQueryParam("timeAnomalyEventEndDate", request.getTimeAnomalyEventEndDate()) + .appendListQueryParam( + "region", + request.getRegion(), + com.oracle.bmc.util.internal.CollectionFormatType.CommaSeparated) + .appendQueryParam("costImpact", request.getCostImpact()) + .appendQueryParam("costImpactPercentage", request.getCostImpactPercentage()) + .accept("application/json") + .appendHeader("opc-request-id", request.getOpcRequestId()) + .handleBody( + com.oracle.bmc.budget.model.CostAnomalyEventCollection.class, + ListCostAnomalyEventsResponse.Builder::costAnomalyEventCollection) + .handleResponseHeaderString( + "opc-request-id", ListCostAnomalyEventsResponse.Builder::opcRequestId) + .handleResponseHeaderString( + "opc-next-page", ListCostAnomalyEventsResponse.Builder::opcNextPage) + .callAsync(handler); + } + + @Override + public java.util.concurrent.Future listCostAnomalyMonitors( + ListCostAnomalyMonitorsRequest request, + final com.oracle.bmc.responses.AsyncHandler< + ListCostAnomalyMonitorsRequest, ListCostAnomalyMonitorsResponse> + handler) { + Objects.requireNonNull(request.getCompartmentId(), "compartmentId is required"); + + return clientCall(request, ListCostAnomalyMonitorsResponse::builder) + .logger(LOG, "listCostAnomalyMonitors") + .serviceDetails( + "CostAd", + "ListCostAnomalyMonitors", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyMonitorCollection/ListCostAnomalyMonitors") + .method(com.oracle.bmc.http.client.Method.GET) + .requestBuilder(ListCostAnomalyMonitorsRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyMonitors") + .appendQueryParam("compartmentId", request.getCompartmentId()) + .appendQueryParam("limit", request.getLimit()) + .appendQueryParam("page", request.getPage()) + .appendEnumQueryParam("sortOrder", request.getSortOrder()) + .appendEnumQueryParam("sortBy", request.getSortBy()) + .appendEnumQueryParam("lifecycleState", request.getLifecycleState()) + .appendQueryParam("name", request.getName()) + .appendListQueryParam( + "targetTenantId", + request.getTargetTenantId(), + com.oracle.bmc.util.internal.CollectionFormatType.CommaSeparated) + .appendListQueryParam( + "region", + request.getRegion(), + com.oracle.bmc.util.internal.CollectionFormatType.CommaSeparated) + .accept("application/json") + .appendHeader("opc-request-id", request.getOpcRequestId()) + .handleBody( + com.oracle.bmc.budget.model.CostAnomalyMonitorCollection.class, + ListCostAnomalyMonitorsResponse.Builder::costAnomalyMonitorCollection) + .handleResponseHeaderString( + "opc-request-id", ListCostAnomalyMonitorsResponse.Builder::opcRequestId) + .handleResponseHeaderString( + "opc-next-page", ListCostAnomalyMonitorsResponse.Builder::opcNextPage) + .callAsync(handler); + } + + @Override + public java.util.concurrent.Future + summarizeCostAnomalyEventAnalytics( + SummarizeCostAnomalyEventAnalyticsRequest request, + final com.oracle.bmc.responses.AsyncHandler< + SummarizeCostAnomalyEventAnalyticsRequest, + SummarizeCostAnomalyEventAnalyticsResponse> + handler) { + Objects.requireNonNull(request.getCompartmentId(), "compartmentId is required"); + + return clientCall(request, SummarizeCostAnomalyEventAnalyticsResponse::builder) + .logger(LOG, "summarizeCostAnomalyEventAnalytics") + .serviceDetails( + "CostAd", + "SummarizeCostAnomalyEventAnalytics", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyEvent/SummarizeCostAnomalyEventAnalytics") + .method(com.oracle.bmc.http.client.Method.GET) + .requestBuilder(SummarizeCostAnomalyEventAnalyticsRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyEventAnalytics") + .appendQueryParam("compartmentId", request.getCompartmentId()) + .appendQueryParam("limit", request.getLimit()) + .appendQueryParam("page", request.getPage()) + .appendEnumQueryParam("sortOrder", request.getSortOrder()) + .appendEnumQueryParam("sortBy", request.getSortBy()) + .appendQueryParam("name", request.getName()) + .appendQueryParam("costAnomalyMonitorId", request.getCostAnomalyMonitorId()) + .appendListQueryParam( + "targetTenantId", + request.getTargetTenantId(), + com.oracle.bmc.util.internal.CollectionFormatType.CommaSeparated) + .appendQueryParam( + "timeAnomalyEventStartDate", request.getTimeAnomalyEventStartDate()) + .appendQueryParam("timeAnomalyEventEndDate", request.getTimeAnomalyEventEndDate()) + .appendListQueryParam( + "region", + request.getRegion(), + com.oracle.bmc.util.internal.CollectionFormatType.CommaSeparated) + .appendQueryParam("costImpact", request.getCostImpact()) + .appendQueryParam("costImpactPercentage", request.getCostImpactPercentage()) + .accept("application/json") + .appendHeader("opc-request-id", request.getOpcRequestId()) + .handleBody( + com.oracle.bmc.budget.model.CostAnomalyEventAnalyticCollection.class, + SummarizeCostAnomalyEventAnalyticsResponse.Builder + ::costAnomalyEventAnalyticCollection) + .handleResponseHeaderString( + "opc-request-id", + SummarizeCostAnomalyEventAnalyticsResponse.Builder::opcRequestId) + .handleResponseHeaderString( + "opc-next-page", + SummarizeCostAnomalyEventAnalyticsResponse.Builder::opcNextPage) + .callAsync(handler); + } + + @Override + public java.util.concurrent.Future + updateCostAlertSubscription( + UpdateCostAlertSubscriptionRequest request, + final com.oracle.bmc.responses.AsyncHandler< + UpdateCostAlertSubscriptionRequest, + UpdateCostAlertSubscriptionResponse> + handler) { + + Validate.notBlank( + request.getCostAlertSubscriptionId(), "costAlertSubscriptionId must not be blank"); + Objects.requireNonNull( + request.getUpdateCostAlertSubscriptionDetails(), + "updateCostAlertSubscriptionDetails is required"); + + return clientCall(request, UpdateCostAlertSubscriptionResponse::builder) + .logger(LOG, "updateCostAlertSubscription") + .serviceDetails( + "CostAd", + "UpdateCostAlertSubscription", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAlertSubscription/UpdateCostAlertSubscription") + .method(com.oracle.bmc.http.client.Method.PUT) + .requestBuilder(UpdateCostAlertSubscriptionRequest::builder) + .basePath("/20190111") + .appendPathParam("costAlertSubscriptions") + .appendPathParam(request.getCostAlertSubscriptionId()) + .accept("application/json") + .appendHeader("if-match", request.getIfMatch()) + .appendHeader("opc-request-id", request.getOpcRequestId()) + .hasBody() + .handleBody( + com.oracle.bmc.budget.model.CostAlertSubscription.class, + UpdateCostAlertSubscriptionResponse.Builder::costAlertSubscription) + .handleResponseHeaderString( + "opc-request-id", UpdateCostAlertSubscriptionResponse.Builder::opcRequestId) + .handleResponseHeaderString( + "etag", UpdateCostAlertSubscriptionResponse.Builder::etag) + .callAsync(handler); + } + + @Override + public java.util.concurrent.Future updateCostAnomalyEvent( + UpdateCostAnomalyEventRequest request, + final com.oracle.bmc.responses.AsyncHandler< + UpdateCostAnomalyEventRequest, UpdateCostAnomalyEventResponse> + handler) { + + Validate.notBlank(request.getCostAnomalyEventId(), "costAnomalyEventId must not be blank"); + Objects.requireNonNull( + request.getUpdateCostAnomalyEventDetails(), + "updateCostAnomalyEventDetails is required"); + + return clientCall(request, UpdateCostAnomalyEventResponse::builder) + .logger(LOG, "updateCostAnomalyEvent") + .serviceDetails( + "CostAd", + "UpdateCostAnomalyEvent", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyEvent/UpdateCostAnomalyEvent") + .method(com.oracle.bmc.http.client.Method.PUT) + .requestBuilder(UpdateCostAnomalyEventRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyEvents") + .appendPathParam(request.getCostAnomalyEventId()) + .accept("application/json") + .appendHeader("if-match", request.getIfMatch()) + .appendHeader("opc-request-id", request.getOpcRequestId()) + .hasBody() + .handleBody( + com.oracle.bmc.budget.model.CostAnomalyEvent.class, + UpdateCostAnomalyEventResponse.Builder::costAnomalyEvent) + .handleResponseHeaderString( + "opc-request-id", UpdateCostAnomalyEventResponse.Builder::opcRequestId) + .handleResponseHeaderString("etag", UpdateCostAnomalyEventResponse.Builder::etag) + .callAsync(handler); + } + + @Override + public java.util.concurrent.Future updateCostAnomalyMonitor( + UpdateCostAnomalyMonitorRequest request, + final com.oracle.bmc.responses.AsyncHandler< + UpdateCostAnomalyMonitorRequest, UpdateCostAnomalyMonitorResponse> + handler) { + + Validate.notBlank( + request.getCostAnomalyMonitorId(), "costAnomalyMonitorId must not be blank"); + Objects.requireNonNull( + request.getUpdateCostAnomalyMonitorDetails(), + "updateCostAnomalyMonitorDetails is required"); + + return clientCall(request, UpdateCostAnomalyMonitorResponse::builder) + .logger(LOG, "updateCostAnomalyMonitor") + .serviceDetails( + "CostAd", + "UpdateCostAnomalyMonitor", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyMonitor/UpdateCostAnomalyMonitor") + .method(com.oracle.bmc.http.client.Method.PUT) + .requestBuilder(UpdateCostAnomalyMonitorRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyMonitors") + .appendPathParam(request.getCostAnomalyMonitorId()) + .accept("application/json") + .appendHeader("if-match", request.getIfMatch()) + .appendHeader("opc-request-id", request.getOpcRequestId()) + .hasBody() + .handleBody( + com.oracle.bmc.budget.model.CostAnomalyMonitor.class, + UpdateCostAnomalyMonitorResponse.Builder::costAnomalyMonitor) + .handleResponseHeaderString( + "opc-request-id", UpdateCostAnomalyMonitorResponse.Builder::opcRequestId) + .handleResponseHeaderString("etag", UpdateCostAnomalyMonitorResponse.Builder::etag) + .callAsync(handler); + } + + /** + * Create a new client instance. + * + * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) + * @deprecated Use the {@link #builder() builder} instead. + */ + @Deprecated + public CostAdAsyncClient( + com.oracle.bmc.auth.BasicAuthenticationDetailsProvider authenticationDetailsProvider) { + this(builder(), authenticationDetailsProvider); + } + + /** + * Create a new client instance. + * + * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) + * @param configuration {@link Builder#configuration} + * @deprecated Use the {@link #builder() builder} instead. + */ + @Deprecated + public CostAdAsyncClient( + com.oracle.bmc.auth.BasicAuthenticationDetailsProvider authenticationDetailsProvider, + com.oracle.bmc.ClientConfiguration configuration) { + this(builder().configuration(configuration), authenticationDetailsProvider); + } + + /** + * Create a new client instance. + * + * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) + * @param configuration {@link Builder#configuration} + * @param clientConfigurator {@link Builder#clientConfigurator} + * @deprecated Use the {@link #builder() builder} instead. + */ + @Deprecated + public CostAdAsyncClient( + com.oracle.bmc.auth.BasicAuthenticationDetailsProvider authenticationDetailsProvider, + com.oracle.bmc.ClientConfiguration configuration, + com.oracle.bmc.http.ClientConfigurator clientConfigurator) { + this( + builder().configuration(configuration).clientConfigurator(clientConfigurator), + authenticationDetailsProvider); + } + + /** + * Create a new client instance. + * + * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) + * @param configuration {@link Builder#configuration} + * @param clientConfigurator {@link Builder#clientConfigurator} + * @param defaultRequestSignerFactory {@link Builder#requestSignerFactory} + * @deprecated Use the {@link #builder() builder} instead. + */ + @Deprecated + public CostAdAsyncClient( + com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider authenticationDetailsProvider, + com.oracle.bmc.ClientConfiguration configuration, + com.oracle.bmc.http.ClientConfigurator clientConfigurator, + com.oracle.bmc.http.signing.RequestSignerFactory defaultRequestSignerFactory) { + this( + builder() + .configuration(configuration) + .clientConfigurator(clientConfigurator) + .requestSignerFactory(defaultRequestSignerFactory), + authenticationDetailsProvider); + } + + /** + * Create a new client instance. + * + * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) + * @param configuration {@link Builder#configuration} + * @param clientConfigurator {@link Builder#clientConfigurator} + * @param defaultRequestSignerFactory {@link Builder#requestSignerFactory} + * @param additionalClientConfigurators {@link Builder#additionalClientConfigurators} + * @deprecated Use the {@link #builder() builder} instead. + */ + @Deprecated + public CostAdAsyncClient( + com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider authenticationDetailsProvider, + com.oracle.bmc.ClientConfiguration configuration, + com.oracle.bmc.http.ClientConfigurator clientConfigurator, + com.oracle.bmc.http.signing.RequestSignerFactory defaultRequestSignerFactory, + java.util.List additionalClientConfigurators) { + this( + builder() + .configuration(configuration) + .clientConfigurator(clientConfigurator) + .requestSignerFactory(defaultRequestSignerFactory) + .additionalClientConfigurators(additionalClientConfigurators), + authenticationDetailsProvider); + } + + /** + * Create a new client instance. + * + * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) + * @param configuration {@link Builder#configuration} + * @param clientConfigurator {@link Builder#clientConfigurator} + * @param defaultRequestSignerFactory {@link Builder#requestSignerFactory} + * @param additionalClientConfigurators {@link Builder#additionalClientConfigurators} + * @param endpoint {@link Builder#endpoint} + * @deprecated Use the {@link #builder() builder} instead. + */ + @Deprecated + public CostAdAsyncClient( + com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider authenticationDetailsProvider, + com.oracle.bmc.ClientConfiguration configuration, + com.oracle.bmc.http.ClientConfigurator clientConfigurator, + com.oracle.bmc.http.signing.RequestSignerFactory defaultRequestSignerFactory, + java.util.List additionalClientConfigurators, + String endpoint) { + this( + builder() + .configuration(configuration) + .clientConfigurator(clientConfigurator) + .requestSignerFactory(defaultRequestSignerFactory) + .additionalClientConfigurators(additionalClientConfigurators) + .endpoint(endpoint), + authenticationDetailsProvider); + } + + /** + * Create a new client instance. + * + * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) + * @param configuration {@link Builder#configuration} + * @param clientConfigurator {@link Builder#clientConfigurator} + * @param defaultRequestSignerFactory {@link Builder#requestSignerFactory} + * @param additionalClientConfigurators {@link Builder#additionalClientConfigurators} + * @param endpoint {@link Builder#endpoint} + * @param signingStrategyRequestSignerFactories {@link + * Builder#signingStrategyRequestSignerFactories} + * @deprecated Use the {@link #builder() builder} instead. + */ + @Deprecated + public CostAdAsyncClient( + com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider authenticationDetailsProvider, + com.oracle.bmc.ClientConfiguration configuration, + com.oracle.bmc.http.ClientConfigurator clientConfigurator, + com.oracle.bmc.http.signing.RequestSignerFactory defaultRequestSignerFactory, + java.util.Map< + com.oracle.bmc.http.signing.SigningStrategy, + com.oracle.bmc.http.signing.RequestSignerFactory> + signingStrategyRequestSignerFactories, + java.util.List additionalClientConfigurators, + String endpoint) { + this( + builder() + .configuration(configuration) + .clientConfigurator(clientConfigurator) + .requestSignerFactory(defaultRequestSignerFactory) + .additionalClientConfigurators(additionalClientConfigurators) + .endpoint(endpoint) + .signingStrategyRequestSignerFactories( + signingStrategyRequestSignerFactories), + authenticationDetailsProvider); + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/CostAdClient.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/CostAdClient.java new file mode 100644 index 00000000000..0a9162486d4 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/CostAdClient.java @@ -0,0 +1,892 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget; + +import com.oracle.bmc.util.internal.Validate; +import com.oracle.bmc.budget.requests.*; +import com.oracle.bmc.budget.responses.*; +import com.oracle.bmc.circuitbreaker.CircuitBreakerConfiguration; +import com.oracle.bmc.util.CircuitBreakerUtils; + +import java.util.Objects; + +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class CostAdClient extends com.oracle.bmc.http.internal.BaseSyncClient implements CostAd { + /** Service instance for CostAd. */ + public static final com.oracle.bmc.Service SERVICE = + com.oracle.bmc.Services.serviceBuilder() + .serviceName(CostAdClient.class.getName()) + .serviceEndpointPrefix("") + .serviceEndpointTemplate("https://usage.{region}.oci.{secondLevelDomain}") + .build(); + + private static final org.slf4j.Logger LOG = + org.slf4j.LoggerFactory.getLogger(CostAdClient.class); + + private final CostAdWaiters waiters; + + private final CostAdPaginators paginators; + + CostAdClient( + com.oracle.bmc.common.ClientBuilderBase builder, + com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider authenticationDetailsProvider, + java.util.concurrent.ExecutorService executorService) { + super( + builder, + authenticationDetailsProvider, + CircuitBreakerUtils.DEFAULT_CIRCUIT_BREAKER_CONFIGURATION); + + if (executorService == null) { + // up to 50 (core) threads, time out after 60s idle, all daemon + java.util.concurrent.ThreadPoolExecutor threadPoolExecutor = + new java.util.concurrent.ThreadPoolExecutor( + 50, + 50, + 60L, + java.util.concurrent.TimeUnit.SECONDS, + new java.util.concurrent.LinkedBlockingQueue(), + com.oracle.bmc.internal.ClientThreadFactory.builder() + .isDaemon(true) + .nameFormat("CostAd-waiters-%d") + .build()); + threadPoolExecutor.allowCoreThreadTimeOut(true); + + executorService = threadPoolExecutor; + } + this.waiters = new CostAdWaiters(executorService, this); + + this.paginators = new CostAdPaginators(this); + } + + /** + * Create a builder for this client. + * + * @return builder + */ + public static Builder builder() { + return new Builder(SERVICE); + } + + /** + * Builder class for this client. The "authenticationDetailsProvider" is required and must be + * passed to the {@link #build(AbstractAuthenticationDetailsProvider)} method. + */ + public static class Builder + extends com.oracle.bmc.common.RegionalClientBuilder { + private java.util.concurrent.ExecutorService executorService; + + private Builder(com.oracle.bmc.Service service) { + super(service); + final String packageName = "budget"; + com.oracle.bmc.internal.Alloy.throwDisabledServiceExceptionIfAppropriate(packageName); + requestSignerFactory = + new com.oracle.bmc.http.signing.internal.DefaultRequestSignerFactory( + com.oracle.bmc.http.signing.SigningStrategy.STANDARD); + } + + /** + * Set the ExecutorService for the client to be created. + * + * @param executorService executorService + * @return this builder + */ + public Builder executorService(java.util.concurrent.ExecutorService executorService) { + this.executorService = executorService; + return this; + } + + /** + * Build the client. + * + * @param authenticationDetailsProvider authentication details provider + * @return the client + */ + public CostAdClient build( + @jakarta.annotation.Nonnull + com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider + authenticationDetailsProvider) { + return new CostAdClient(this, authenticationDetailsProvider, executorService); + } + } + + @Override + public void setRegion(com.oracle.bmc.Region region) { + super.setRegion(region); + } + + @Override + public void setRegion(String regionId) { + super.setRegion(regionId); + } + + @Override + public CreateCostAlertSubscriptionResponse createCostAlertSubscription( + CreateCostAlertSubscriptionRequest request) { + Objects.requireNonNull( + request.getCreateCostAlertSubscriptionDetails(), + "createCostAlertSubscriptionDetails is required"); + + return clientCall(request, CreateCostAlertSubscriptionResponse::builder) + .logger(LOG, "createCostAlertSubscription") + .serviceDetails( + "CostAd", + "CreateCostAlertSubscription", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAlertSubscription/CreateCostAlertSubscription") + .method(com.oracle.bmc.http.client.Method.POST) + .requestBuilder(CreateCostAlertSubscriptionRequest::builder) + .basePath("/20190111") + .appendPathParam("costAlertSubscriptions") + .accept("application/json") + .appendHeader("opc-retry-token", request.getOpcRetryToken()) + .appendHeader("opc-request-id", request.getOpcRequestId()) + .operationUsesDefaultRetries() + .hasBody() + .handleBody( + com.oracle.bmc.budget.model.CostAlertSubscription.class, + CreateCostAlertSubscriptionResponse.Builder::costAlertSubscription) + .handleResponseHeaderString( + "opc-request-id", CreateCostAlertSubscriptionResponse.Builder::opcRequestId) + .handleResponseHeaderString( + "etag", CreateCostAlertSubscriptionResponse.Builder::etag) + .callSync(); + } + + @Override + public CreateCostAnomalyMonitorResponse createCostAnomalyMonitor( + CreateCostAnomalyMonitorRequest request) { + Objects.requireNonNull( + request.getCreateCostAnomalyMonitorDetails(), + "createCostAnomalyMonitorDetails is required"); + + return clientCall(request, CreateCostAnomalyMonitorResponse::builder) + .logger(LOG, "createCostAnomalyMonitor") + .serviceDetails( + "CostAd", + "CreateCostAnomalyMonitor", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyMonitor/CreateCostAnomalyMonitor") + .method(com.oracle.bmc.http.client.Method.POST) + .requestBuilder(CreateCostAnomalyMonitorRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyMonitors") + .accept("application/json") + .appendHeader("opc-retry-token", request.getOpcRetryToken()) + .appendHeader("opc-request-id", request.getOpcRequestId()) + .operationUsesDefaultRetries() + .hasBody() + .handleBody( + com.oracle.bmc.budget.model.CostAnomalyMonitor.class, + CreateCostAnomalyMonitorResponse.Builder::costAnomalyMonitor) + .handleResponseHeaderString( + "opc-request-id", CreateCostAnomalyMonitorResponse.Builder::opcRequestId) + .handleResponseHeaderString("etag", CreateCostAnomalyMonitorResponse.Builder::etag) + .callSync(); + } + + @Override + public DeleteCostAlertSubscriptionResponse deleteCostAlertSubscription( + DeleteCostAlertSubscriptionRequest request) { + + Validate.notBlank( + request.getCostAlertSubscriptionId(), "costAlertSubscriptionId must not be blank"); + + return clientCall(request, DeleteCostAlertSubscriptionResponse::builder) + .logger(LOG, "deleteCostAlertSubscription") + .serviceDetails( + "CostAd", + "DeleteCostAlertSubscription", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAlertSubscription/DeleteCostAlertSubscription") + .method(com.oracle.bmc.http.client.Method.DELETE) + .requestBuilder(DeleteCostAlertSubscriptionRequest::builder) + .basePath("/20190111") + .appendPathParam("costAlertSubscriptions") + .appendPathParam(request.getCostAlertSubscriptionId()) + .accept("application/json") + .appendHeader("if-match", request.getIfMatch()) + .appendHeader("opc-request-id", request.getOpcRequestId()) + .operationUsesDefaultRetries() + .handleResponseHeaderString( + "opc-request-id", DeleteCostAlertSubscriptionResponse.Builder::opcRequestId) + .callSync(); + } + + @Override + public DeleteCostAnomalyMonitorResponse deleteCostAnomalyMonitor( + DeleteCostAnomalyMonitorRequest request) { + + Validate.notBlank( + request.getCostAnomalyMonitorId(), "costAnomalyMonitorId must not be blank"); + + return clientCall(request, DeleteCostAnomalyMonitorResponse::builder) + .logger(LOG, "deleteCostAnomalyMonitor") + .serviceDetails( + "CostAd", + "DeleteCostAnomalyMonitor", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyMonitor/DeleteCostAnomalyMonitor") + .method(com.oracle.bmc.http.client.Method.DELETE) + .requestBuilder(DeleteCostAnomalyMonitorRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyMonitors") + .appendPathParam(request.getCostAnomalyMonitorId()) + .accept("application/json") + .appendHeader("if-match", request.getIfMatch()) + .appendHeader("opc-request-id", request.getOpcRequestId()) + .operationUsesDefaultRetries() + .handleResponseHeaderString( + "opc-request-id", DeleteCostAnomalyMonitorResponse.Builder::opcRequestId) + .callSync(); + } + + @Override + public DisableCostAnomalyMonitorResponse disableCostAnomalyMonitor( + DisableCostAnomalyMonitorRequest request) { + + Validate.notBlank( + request.getCostAnomalyMonitorId(), "costAnomalyMonitorId must not be blank"); + + return clientCall(request, DisableCostAnomalyMonitorResponse::builder) + .logger(LOG, "disableCostAnomalyMonitor") + .serviceDetails( + "CostAd", + "DisableCostAnomalyMonitor", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyMonitor/DisableCostAnomalyMonitor") + .method(com.oracle.bmc.http.client.Method.POST) + .requestBuilder(DisableCostAnomalyMonitorRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyMonitors") + .appendPathParam(request.getCostAnomalyMonitorId()) + .appendPathParam("actions") + .appendPathParam("disable") + .accept("application/json") + .appendHeader("if-match", request.getIfMatch()) + .appendHeader("opc-request-id", request.getOpcRequestId()) + .appendHeader("opc-retry-token", request.getOpcRetryToken()) + .operationUsesDefaultRetries() + .handleBody( + com.oracle.bmc.budget.model.CostAnomalyMonitor.class, + DisableCostAnomalyMonitorResponse.Builder::costAnomalyMonitor) + .handleResponseHeaderString("etag", DisableCostAnomalyMonitorResponse.Builder::etag) + .handleResponseHeaderString( + "opc-request-id", DisableCostAnomalyMonitorResponse.Builder::opcRequestId) + .callSync(); + } + + @Override + public EnableCostAnomalyMonitorResponse enableCostAnomalyMonitor( + EnableCostAnomalyMonitorRequest request) { + + Validate.notBlank( + request.getCostAnomalyMonitorId(), "costAnomalyMonitorId must not be blank"); + + return clientCall(request, EnableCostAnomalyMonitorResponse::builder) + .logger(LOG, "enableCostAnomalyMonitor") + .serviceDetails( + "CostAd", + "EnableCostAnomalyMonitor", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyMonitor/EnableCostAnomalyMonitor") + .method(com.oracle.bmc.http.client.Method.POST) + .requestBuilder(EnableCostAnomalyMonitorRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyMonitors") + .appendPathParam(request.getCostAnomalyMonitorId()) + .appendPathParam("actions") + .appendPathParam("enable") + .accept("application/json") + .appendHeader("if-match", request.getIfMatch()) + .appendHeader("opc-request-id", request.getOpcRequestId()) + .appendHeader("opc-retry-token", request.getOpcRetryToken()) + .operationUsesDefaultRetries() + .handleBody( + com.oracle.bmc.budget.model.CostAnomalyMonitor.class, + EnableCostAnomalyMonitorResponse.Builder::costAnomalyMonitor) + .handleResponseHeaderString("etag", EnableCostAnomalyMonitorResponse.Builder::etag) + .handleResponseHeaderString( + "opc-request-id", EnableCostAnomalyMonitorResponse.Builder::opcRequestId) + .callSync(); + } + + @Override + public GetCostAlertSubscriptionResponse getCostAlertSubscription( + GetCostAlertSubscriptionRequest request) { + + Validate.notBlank( + request.getCostAlertSubscriptionId(), "costAlertSubscriptionId must not be blank"); + + return clientCall(request, GetCostAlertSubscriptionResponse::builder) + .logger(LOG, "getCostAlertSubscription") + .serviceDetails( + "CostAd", + "GetCostAlertSubscription", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAlertSubscription/GetCostAlertSubscription") + .method(com.oracle.bmc.http.client.Method.GET) + .requestBuilder(GetCostAlertSubscriptionRequest::builder) + .basePath("/20190111") + .appendPathParam("costAlertSubscriptions") + .appendPathParam(request.getCostAlertSubscriptionId()) + .accept("application/json") + .appendHeader("opc-request-id", request.getOpcRequestId()) + .operationUsesDefaultRetries() + .handleBody( + com.oracle.bmc.budget.model.CostAlertSubscription.class, + GetCostAlertSubscriptionResponse.Builder::costAlertSubscription) + .handleResponseHeaderString( + "opc-request-id", GetCostAlertSubscriptionResponse.Builder::opcRequestId) + .handleResponseHeaderString("etag", GetCostAlertSubscriptionResponse.Builder::etag) + .callSync(); + } + + @Override + public GetCostAnomalyEventResponse getCostAnomalyEvent(GetCostAnomalyEventRequest request) { + + Validate.notBlank(request.getCostAnomalyEventId(), "costAnomalyEventId must not be blank"); + + return clientCall(request, GetCostAnomalyEventResponse::builder) + .logger(LOG, "getCostAnomalyEvent") + .serviceDetails( + "CostAd", + "GetCostAnomalyEvent", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyEvent/GetCostAnomalyEvent") + .method(com.oracle.bmc.http.client.Method.GET) + .requestBuilder(GetCostAnomalyEventRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyEvents") + .appendPathParam(request.getCostAnomalyEventId()) + .accept("application/json") + .appendHeader("opc-request-id", request.getOpcRequestId()) + .operationUsesDefaultRetries() + .handleBody( + com.oracle.bmc.budget.model.CostAnomalyEvent.class, + GetCostAnomalyEventResponse.Builder::costAnomalyEvent) + .handleResponseHeaderString( + "opc-request-id", GetCostAnomalyEventResponse.Builder::opcRequestId) + .handleResponseHeaderString("etag", GetCostAnomalyEventResponse.Builder::etag) + .callSync(); + } + + @Override + public GetCostAnomalyMonitorResponse getCostAnomalyMonitor( + GetCostAnomalyMonitorRequest request) { + + Validate.notBlank( + request.getCostAnomalyMonitorId(), "costAnomalyMonitorId must not be blank"); + + return clientCall(request, GetCostAnomalyMonitorResponse::builder) + .logger(LOG, "getCostAnomalyMonitor") + .serviceDetails( + "CostAd", + "GetCostAnomalyMonitor", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyMonitor/GetCostAnomalyMonitor") + .method(com.oracle.bmc.http.client.Method.GET) + .requestBuilder(GetCostAnomalyMonitorRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyMonitors") + .appendPathParam(request.getCostAnomalyMonitorId()) + .accept("application/json") + .appendHeader("opc-request-id", request.getOpcRequestId()) + .operationUsesDefaultRetries() + .handleBody( + com.oracle.bmc.budget.model.CostAnomalyMonitor.class, + GetCostAnomalyMonitorResponse.Builder::costAnomalyMonitor) + .handleResponseHeaderString( + "opc-request-id", GetCostAnomalyMonitorResponse.Builder::opcRequestId) + .handleResponseHeaderString("etag", GetCostAnomalyMonitorResponse.Builder::etag) + .callSync(); + } + + @Override + public ListCostAlertSubscriptionsResponse listCostAlertSubscriptions( + ListCostAlertSubscriptionsRequest request) { + Objects.requireNonNull(request.getCompartmentId(), "compartmentId is required"); + + return clientCall(request, ListCostAlertSubscriptionsResponse::builder) + .logger(LOG, "listCostAlertSubscriptions") + .serviceDetails( + "CostAd", + "ListCostAlertSubscriptions", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAlertSubscriptionCollection/ListCostAlertSubscriptions") + .method(com.oracle.bmc.http.client.Method.GET) + .requestBuilder(ListCostAlertSubscriptionsRequest::builder) + .basePath("/20190111") + .appendPathParam("costAlertSubscriptions") + .appendQueryParam("compartmentId", request.getCompartmentId()) + .appendQueryParam("limit", request.getLimit()) + .appendQueryParam("page", request.getPage()) + .appendEnumQueryParam("sortOrder", request.getSortOrder()) + .appendEnumQueryParam("sortBy", request.getSortBy()) + .appendQueryParam("name", request.getName()) + .appendEnumQueryParam("lifecycleState", request.getLifecycleState()) + .accept("application/json") + .appendHeader("opc-request-id", request.getOpcRequestId()) + .operationUsesDefaultRetries() + .handleBody( + com.oracle.bmc.budget.model.CostAlertSubscriptionCollection.class, + ListCostAlertSubscriptionsResponse.Builder::costAlertSubscriptionCollection) + .handleResponseHeaderString( + "opc-request-id", ListCostAlertSubscriptionsResponse.Builder::opcRequestId) + .handleResponseHeaderString( + "opc-next-page", ListCostAlertSubscriptionsResponse.Builder::opcNextPage) + .callSync(); + } + + @Override + public ListCostAnomalyEventsResponse listCostAnomalyEvents( + ListCostAnomalyEventsRequest request) { + Objects.requireNonNull(request.getCompartmentId(), "compartmentId is required"); + + return clientCall(request, ListCostAnomalyEventsResponse::builder) + .logger(LOG, "listCostAnomalyEvents") + .serviceDetails( + "CostAd", + "ListCostAnomalyEvents", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyEventCollection/ListCostAnomalyEvents") + .method(com.oracle.bmc.http.client.Method.GET) + .requestBuilder(ListCostAnomalyEventsRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyEvents") + .appendQueryParam("compartmentId", request.getCompartmentId()) + .appendQueryParam("limit", request.getLimit()) + .appendQueryParam("page", request.getPage()) + .appendEnumQueryParam("sortOrder", request.getSortOrder()) + .appendEnumQueryParam("sortBy", request.getSortBy()) + .appendQueryParam("name", request.getName()) + .appendQueryParam("costAnomalyMonitorId", request.getCostAnomalyMonitorId()) + .appendListQueryParam( + "targetTenantId", + request.getTargetTenantId(), + com.oracle.bmc.util.internal.CollectionFormatType.CommaSeparated) + .appendQueryParam( + "timeAnomalyEventStartDate", request.getTimeAnomalyEventStartDate()) + .appendQueryParam("timeAnomalyEventEndDate", request.getTimeAnomalyEventEndDate()) + .appendListQueryParam( + "region", + request.getRegion(), + com.oracle.bmc.util.internal.CollectionFormatType.CommaSeparated) + .appendQueryParam("costImpact", request.getCostImpact()) + .appendQueryParam("costImpactPercentage", request.getCostImpactPercentage()) + .accept("application/json") + .appendHeader("opc-request-id", request.getOpcRequestId()) + .operationUsesDefaultRetries() + .handleBody( + com.oracle.bmc.budget.model.CostAnomalyEventCollection.class, + ListCostAnomalyEventsResponse.Builder::costAnomalyEventCollection) + .handleResponseHeaderString( + "opc-request-id", ListCostAnomalyEventsResponse.Builder::opcRequestId) + .handleResponseHeaderString( + "opc-next-page", ListCostAnomalyEventsResponse.Builder::opcNextPage) + .callSync(); + } + + @Override + public ListCostAnomalyMonitorsResponse listCostAnomalyMonitors( + ListCostAnomalyMonitorsRequest request) { + Objects.requireNonNull(request.getCompartmentId(), "compartmentId is required"); + + return clientCall(request, ListCostAnomalyMonitorsResponse::builder) + .logger(LOG, "listCostAnomalyMonitors") + .serviceDetails( + "CostAd", + "ListCostAnomalyMonitors", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyMonitorCollection/ListCostAnomalyMonitors") + .method(com.oracle.bmc.http.client.Method.GET) + .requestBuilder(ListCostAnomalyMonitorsRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyMonitors") + .appendQueryParam("compartmentId", request.getCompartmentId()) + .appendQueryParam("limit", request.getLimit()) + .appendQueryParam("page", request.getPage()) + .appendEnumQueryParam("sortOrder", request.getSortOrder()) + .appendEnumQueryParam("sortBy", request.getSortBy()) + .appendEnumQueryParam("lifecycleState", request.getLifecycleState()) + .appendQueryParam("name", request.getName()) + .appendListQueryParam( + "targetTenantId", + request.getTargetTenantId(), + com.oracle.bmc.util.internal.CollectionFormatType.CommaSeparated) + .appendListQueryParam( + "region", + request.getRegion(), + com.oracle.bmc.util.internal.CollectionFormatType.CommaSeparated) + .accept("application/json") + .appendHeader("opc-request-id", request.getOpcRequestId()) + .operationUsesDefaultRetries() + .handleBody( + com.oracle.bmc.budget.model.CostAnomalyMonitorCollection.class, + ListCostAnomalyMonitorsResponse.Builder::costAnomalyMonitorCollection) + .handleResponseHeaderString( + "opc-request-id", ListCostAnomalyMonitorsResponse.Builder::opcRequestId) + .handleResponseHeaderString( + "opc-next-page", ListCostAnomalyMonitorsResponse.Builder::opcNextPage) + .callSync(); + } + + @Override + public SummarizeCostAnomalyEventAnalyticsResponse summarizeCostAnomalyEventAnalytics( + SummarizeCostAnomalyEventAnalyticsRequest request) { + Objects.requireNonNull(request.getCompartmentId(), "compartmentId is required"); + + return clientCall(request, SummarizeCostAnomalyEventAnalyticsResponse::builder) + .logger(LOG, "summarizeCostAnomalyEventAnalytics") + .serviceDetails( + "CostAd", + "SummarizeCostAnomalyEventAnalytics", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyEvent/SummarizeCostAnomalyEventAnalytics") + .method(com.oracle.bmc.http.client.Method.GET) + .requestBuilder(SummarizeCostAnomalyEventAnalyticsRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyEventAnalytics") + .appendQueryParam("compartmentId", request.getCompartmentId()) + .appendQueryParam("limit", request.getLimit()) + .appendQueryParam("page", request.getPage()) + .appendEnumQueryParam("sortOrder", request.getSortOrder()) + .appendEnumQueryParam("sortBy", request.getSortBy()) + .appendQueryParam("name", request.getName()) + .appendQueryParam("costAnomalyMonitorId", request.getCostAnomalyMonitorId()) + .appendListQueryParam( + "targetTenantId", + request.getTargetTenantId(), + com.oracle.bmc.util.internal.CollectionFormatType.CommaSeparated) + .appendQueryParam( + "timeAnomalyEventStartDate", request.getTimeAnomalyEventStartDate()) + .appendQueryParam("timeAnomalyEventEndDate", request.getTimeAnomalyEventEndDate()) + .appendListQueryParam( + "region", + request.getRegion(), + com.oracle.bmc.util.internal.CollectionFormatType.CommaSeparated) + .appendQueryParam("costImpact", request.getCostImpact()) + .appendQueryParam("costImpactPercentage", request.getCostImpactPercentage()) + .accept("application/json") + .appendHeader("opc-request-id", request.getOpcRequestId()) + .operationUsesDefaultRetries() + .handleBody( + com.oracle.bmc.budget.model.CostAnomalyEventAnalyticCollection.class, + SummarizeCostAnomalyEventAnalyticsResponse.Builder + ::costAnomalyEventAnalyticCollection) + .handleResponseHeaderString( + "opc-request-id", + SummarizeCostAnomalyEventAnalyticsResponse.Builder::opcRequestId) + .handleResponseHeaderString( + "opc-next-page", + SummarizeCostAnomalyEventAnalyticsResponse.Builder::opcNextPage) + .callSync(); + } + + @Override + public UpdateCostAlertSubscriptionResponse updateCostAlertSubscription( + UpdateCostAlertSubscriptionRequest request) { + + Validate.notBlank( + request.getCostAlertSubscriptionId(), "costAlertSubscriptionId must not be blank"); + Objects.requireNonNull( + request.getUpdateCostAlertSubscriptionDetails(), + "updateCostAlertSubscriptionDetails is required"); + + return clientCall(request, UpdateCostAlertSubscriptionResponse::builder) + .logger(LOG, "updateCostAlertSubscription") + .serviceDetails( + "CostAd", + "UpdateCostAlertSubscription", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAlertSubscription/UpdateCostAlertSubscription") + .method(com.oracle.bmc.http.client.Method.PUT) + .requestBuilder(UpdateCostAlertSubscriptionRequest::builder) + .basePath("/20190111") + .appendPathParam("costAlertSubscriptions") + .appendPathParam(request.getCostAlertSubscriptionId()) + .accept("application/json") + .appendHeader("if-match", request.getIfMatch()) + .appendHeader("opc-request-id", request.getOpcRequestId()) + .operationUsesDefaultRetries() + .hasBody() + .handleBody( + com.oracle.bmc.budget.model.CostAlertSubscription.class, + UpdateCostAlertSubscriptionResponse.Builder::costAlertSubscription) + .handleResponseHeaderString( + "opc-request-id", UpdateCostAlertSubscriptionResponse.Builder::opcRequestId) + .handleResponseHeaderString( + "etag", UpdateCostAlertSubscriptionResponse.Builder::etag) + .callSync(); + } + + @Override + public UpdateCostAnomalyEventResponse updateCostAnomalyEvent( + UpdateCostAnomalyEventRequest request) { + + Validate.notBlank(request.getCostAnomalyEventId(), "costAnomalyEventId must not be blank"); + Objects.requireNonNull( + request.getUpdateCostAnomalyEventDetails(), + "updateCostAnomalyEventDetails is required"); + + return clientCall(request, UpdateCostAnomalyEventResponse::builder) + .logger(LOG, "updateCostAnomalyEvent") + .serviceDetails( + "CostAd", + "UpdateCostAnomalyEvent", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyEvent/UpdateCostAnomalyEvent") + .method(com.oracle.bmc.http.client.Method.PUT) + .requestBuilder(UpdateCostAnomalyEventRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyEvents") + .appendPathParam(request.getCostAnomalyEventId()) + .accept("application/json") + .appendHeader("if-match", request.getIfMatch()) + .appendHeader("opc-request-id", request.getOpcRequestId()) + .operationUsesDefaultRetries() + .hasBody() + .handleBody( + com.oracle.bmc.budget.model.CostAnomalyEvent.class, + UpdateCostAnomalyEventResponse.Builder::costAnomalyEvent) + .handleResponseHeaderString( + "opc-request-id", UpdateCostAnomalyEventResponse.Builder::opcRequestId) + .handleResponseHeaderString("etag", UpdateCostAnomalyEventResponse.Builder::etag) + .callSync(); + } + + @Override + public UpdateCostAnomalyMonitorResponse updateCostAnomalyMonitor( + UpdateCostAnomalyMonitorRequest request) { + + Validate.notBlank( + request.getCostAnomalyMonitorId(), "costAnomalyMonitorId must not be blank"); + Objects.requireNonNull( + request.getUpdateCostAnomalyMonitorDetails(), + "updateCostAnomalyMonitorDetails is required"); + + return clientCall(request, UpdateCostAnomalyMonitorResponse::builder) + .logger(LOG, "updateCostAnomalyMonitor") + .serviceDetails( + "CostAd", + "UpdateCostAnomalyMonitor", + "https://docs.oracle.com/iaas/api/#/en/budgets/20190111/CostAnomalyMonitor/UpdateCostAnomalyMonitor") + .method(com.oracle.bmc.http.client.Method.PUT) + .requestBuilder(UpdateCostAnomalyMonitorRequest::builder) + .basePath("/20190111") + .appendPathParam("costAnomalyMonitors") + .appendPathParam(request.getCostAnomalyMonitorId()) + .accept("application/json") + .appendHeader("if-match", request.getIfMatch()) + .appendHeader("opc-request-id", request.getOpcRequestId()) + .operationUsesDefaultRetries() + .hasBody() + .handleBody( + com.oracle.bmc.budget.model.CostAnomalyMonitor.class, + UpdateCostAnomalyMonitorResponse.Builder::costAnomalyMonitor) + .handleResponseHeaderString( + "opc-request-id", UpdateCostAnomalyMonitorResponse.Builder::opcRequestId) + .handleResponseHeaderString("etag", UpdateCostAnomalyMonitorResponse.Builder::etag) + .callSync(); + } + + @Override + public CostAdWaiters getWaiters() { + return waiters; + } + + @Override + public CostAdPaginators getPaginators() { + return paginators; + } + + /** + * Create a new client instance. + * + * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) + * @deprecated Use the {@link #builder() builder} instead. + */ + @Deprecated + public CostAdClient( + com.oracle.bmc.auth.BasicAuthenticationDetailsProvider authenticationDetailsProvider) { + this(builder(), authenticationDetailsProvider, null); + } + + /** + * Create a new client instance. + * + * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) + * @param configuration {@link Builder#configuration} + * @deprecated Use the {@link #builder() builder} instead. + */ + @Deprecated + public CostAdClient( + com.oracle.bmc.auth.BasicAuthenticationDetailsProvider authenticationDetailsProvider, + com.oracle.bmc.ClientConfiguration configuration) { + this(builder().configuration(configuration), authenticationDetailsProvider, null); + } + + /** + * Create a new client instance. + * + * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) + * @param configuration {@link Builder#configuration} + * @param clientConfigurator {@link Builder#clientConfigurator} + * @deprecated Use the {@link #builder() builder} instead. + */ + @Deprecated + public CostAdClient( + com.oracle.bmc.auth.BasicAuthenticationDetailsProvider authenticationDetailsProvider, + com.oracle.bmc.ClientConfiguration configuration, + com.oracle.bmc.http.ClientConfigurator clientConfigurator) { + this( + builder().configuration(configuration).clientConfigurator(clientConfigurator), + authenticationDetailsProvider, + null); + } + + /** + * Create a new client instance. + * + * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) + * @param configuration {@link Builder#configuration} + * @param clientConfigurator {@link Builder#clientConfigurator} + * @param defaultRequestSignerFactory {@link Builder#requestSignerFactory} + * @deprecated Use the {@link #builder() builder} instead. + */ + @Deprecated + public CostAdClient( + com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider authenticationDetailsProvider, + com.oracle.bmc.ClientConfiguration configuration, + com.oracle.bmc.http.ClientConfigurator clientConfigurator, + com.oracle.bmc.http.signing.RequestSignerFactory defaultRequestSignerFactory) { + this( + builder() + .configuration(configuration) + .clientConfigurator(clientConfigurator) + .requestSignerFactory(defaultRequestSignerFactory), + authenticationDetailsProvider, + null); + } + + /** + * Create a new client instance. + * + * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) + * @param configuration {@link Builder#configuration} + * @param clientConfigurator {@link Builder#clientConfigurator} + * @param defaultRequestSignerFactory {@link Builder#requestSignerFactory} + * @param additionalClientConfigurators {@link Builder#additionalClientConfigurators} + * @deprecated Use the {@link #builder() builder} instead. + */ + @Deprecated + public CostAdClient( + com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider authenticationDetailsProvider, + com.oracle.bmc.ClientConfiguration configuration, + com.oracle.bmc.http.ClientConfigurator clientConfigurator, + com.oracle.bmc.http.signing.RequestSignerFactory defaultRequestSignerFactory, + java.util.List additionalClientConfigurators) { + this( + builder() + .configuration(configuration) + .clientConfigurator(clientConfigurator) + .requestSignerFactory(defaultRequestSignerFactory) + .additionalClientConfigurators(additionalClientConfigurators), + authenticationDetailsProvider, + null); + } + + /** + * Create a new client instance. + * + * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) + * @param configuration {@link Builder#configuration} + * @param clientConfigurator {@link Builder#clientConfigurator} + * @param defaultRequestSignerFactory {@link Builder#requestSignerFactory} + * @param additionalClientConfigurators {@link Builder#additionalClientConfigurators} + * @param endpoint {@link Builder#endpoint} + * @deprecated Use the {@link #builder() builder} instead. + */ + @Deprecated + public CostAdClient( + com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider authenticationDetailsProvider, + com.oracle.bmc.ClientConfiguration configuration, + com.oracle.bmc.http.ClientConfigurator clientConfigurator, + com.oracle.bmc.http.signing.RequestSignerFactory defaultRequestSignerFactory, + java.util.List additionalClientConfigurators, + String endpoint) { + this( + builder() + .configuration(configuration) + .clientConfigurator(clientConfigurator) + .requestSignerFactory(defaultRequestSignerFactory) + .additionalClientConfigurators(additionalClientConfigurators) + .endpoint(endpoint), + authenticationDetailsProvider, + null); + } + + /** + * Create a new client instance. + * + * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) + * @param configuration {@link Builder#configuration} + * @param clientConfigurator {@link Builder#clientConfigurator} + * @param defaultRequestSignerFactory {@link Builder#requestSignerFactory} + * @param additionalClientConfigurators {@link Builder#additionalClientConfigurators} + * @param endpoint {@link Builder#endpoint} + * @param signingStrategyRequestSignerFactories {@link + * Builder#signingStrategyRequestSignerFactories} + * @deprecated Use the {@link #builder() builder} instead. + */ + @Deprecated + public CostAdClient( + com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider authenticationDetailsProvider, + com.oracle.bmc.ClientConfiguration configuration, + com.oracle.bmc.http.ClientConfigurator clientConfigurator, + com.oracle.bmc.http.signing.RequestSignerFactory defaultRequestSignerFactory, + java.util.Map< + com.oracle.bmc.http.signing.SigningStrategy, + com.oracle.bmc.http.signing.RequestSignerFactory> + signingStrategyRequestSignerFactories, + java.util.List additionalClientConfigurators, + String endpoint) { + this( + builder() + .configuration(configuration) + .clientConfigurator(clientConfigurator) + .requestSignerFactory(defaultRequestSignerFactory) + .additionalClientConfigurators(additionalClientConfigurators) + .endpoint(endpoint) + .signingStrategyRequestSignerFactories( + signingStrategyRequestSignerFactories), + authenticationDetailsProvider, + null); + } + + /** + * Create a new client instance. + * + * @param authenticationDetailsProvider The authentication details (see {@link Builder#build}) + * @param configuration {@link Builder#configuration} + * @param clientConfigurator {@link Builder#clientConfigurator} + * @param defaultRequestSignerFactory {@link Builder#requestSignerFactory} + * @param additionalClientConfigurators {@link Builder#additionalClientConfigurators} + * @param endpoint {@link Builder#endpoint} + * @param signingStrategyRequestSignerFactories {@link + * Builder#signingStrategyRequestSignerFactories} + * @param executorService {@link Builder#executorService} + * @deprecated Use the {@link #builder() builder} instead. + */ + @Deprecated + public CostAdClient( + com.oracle.bmc.auth.AbstractAuthenticationDetailsProvider authenticationDetailsProvider, + com.oracle.bmc.ClientConfiguration configuration, + com.oracle.bmc.http.ClientConfigurator clientConfigurator, + com.oracle.bmc.http.signing.RequestSignerFactory defaultRequestSignerFactory, + java.util.Map< + com.oracle.bmc.http.signing.SigningStrategy, + com.oracle.bmc.http.signing.RequestSignerFactory> + signingStrategyRequestSignerFactories, + java.util.List additionalClientConfigurators, + String endpoint, + java.util.concurrent.ExecutorService executorService) { + this( + builder() + .configuration(configuration) + .clientConfigurator(clientConfigurator) + .requestSignerFactory(defaultRequestSignerFactory) + .additionalClientConfigurators(additionalClientConfigurators) + .endpoint(endpoint) + .signingStrategyRequestSignerFactories( + signingStrategyRequestSignerFactories), + authenticationDetailsProvider, + executorService); + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/CostAdPaginators.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/CostAdPaginators.java new file mode 100644 index 00000000000..676f5948910 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/CostAdPaginators.java @@ -0,0 +1,411 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget; + +import com.oracle.bmc.budget.requests.*; +import com.oracle.bmc.budget.responses.*; + +/** + * Collection of helper methods that can be used to provide an {@link java.lang.Iterable} interface + * to any list operations of CostAd where multiple pages of data may be fetched. Two styles of + * iteration are supported: + * + *

+ * + * These iterables abstract away the need to write code to manually handle pagination via looping + * and using the page tokens. They will automatically fetch more data from the service when + * required. + * + *

As an example, if we were using the ListUsers operation in IdentityService, then the {@link + * java.lang.Iterable} returned by calling a ResponseIterator method would iterate over the + * ListUsersResponse objects returned by each ListUsers call, whereas the {@link java.lang.Iterable} + * returned by calling a RecordIterator method would iterate over the User records and we don't have + * to deal with ListUsersResponse objects at all. In either case, pagination will be automatically + * handled so we can iterate until there are no more responses or no more resources/records + * available. + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class CostAdPaginators { + private final CostAd client; + + public CostAdPaginators(CostAd client) { + this.client = client; + } + + /** + * Creates a new iterable which will iterate over the responses received from the + * listCostAlertSubscriptions operation. This iterable will fetch more data from the server as + * needed. + * + * @param request a request which can be sent to the service operation + * @return an {@link java.lang.Iterable} which can be used to iterate over the responses + * received from the service. + */ + public Iterable listCostAlertSubscriptionsResponseIterator( + final ListCostAlertSubscriptionsRequest request) { + return new com.oracle.bmc.paginator.internal.ResponseIterable< + ListCostAlertSubscriptionsRequest.Builder, + ListCostAlertSubscriptionsRequest, + ListCostAlertSubscriptionsResponse>( + new java.util.function.Supplier() { + @Override + public ListCostAlertSubscriptionsRequest.Builder get() { + return ListCostAlertSubscriptionsRequest.builder().copy(request); + } + }, + new java.util.function.Function() { + @Override + public String apply(ListCostAlertSubscriptionsResponse response) { + return response.getOpcNextPage(); + } + }, + new java.util.function.Function< + com.oracle.bmc.paginator.internal.RequestBuilderAndToken< + ListCostAlertSubscriptionsRequest.Builder>, + ListCostAlertSubscriptionsRequest>() { + @Override + public ListCostAlertSubscriptionsRequest apply( + com.oracle.bmc.paginator.internal.RequestBuilderAndToken< + ListCostAlertSubscriptionsRequest.Builder> + input) { + if (input.getNextPageToken() == null) { + return input.getRequestBuilder().build(); + } else { + return input.getRequestBuilder() + .page(input.getNextPageToken().orElse(null)) + .build(); + } + } + }, + new java.util.function.Function< + ListCostAlertSubscriptionsRequest, ListCostAlertSubscriptionsResponse>() { + @Override + public ListCostAlertSubscriptionsResponse apply( + ListCostAlertSubscriptionsRequest request) { + return client.listCostAlertSubscriptions(request); + } + }); + } + + /** + * Creates a new iterable which will iterate over the {@link + * com.oracle.bmc.budget.model.CostAlertSubscriptionSummary} objects contained in responses from + * the listCostAlertSubscriptions operation. This iterable will fetch more data from the server + * as needed. + * + * @param request a request which can be sent to the service operation + * @return an {@link java.lang.Iterable} which can be used to iterate over the {@link + * com.oracle.bmc.budget.model.CostAlertSubscriptionSummary} objects contained in responses + * received from the service. + */ + public Iterable + listCostAlertSubscriptionsRecordIterator( + final ListCostAlertSubscriptionsRequest request) { + return new com.oracle.bmc.paginator.internal.ResponseRecordIterable< + ListCostAlertSubscriptionsRequest.Builder, + ListCostAlertSubscriptionsRequest, + ListCostAlertSubscriptionsResponse, + com.oracle.bmc.budget.model.CostAlertSubscriptionSummary>( + new java.util.function.Supplier() { + @Override + public ListCostAlertSubscriptionsRequest.Builder get() { + return ListCostAlertSubscriptionsRequest.builder().copy(request); + } + }, + new java.util.function.Function() { + @Override + public String apply(ListCostAlertSubscriptionsResponse response) { + return response.getOpcNextPage(); + } + }, + new java.util.function.Function< + com.oracle.bmc.paginator.internal.RequestBuilderAndToken< + ListCostAlertSubscriptionsRequest.Builder>, + ListCostAlertSubscriptionsRequest>() { + @Override + public ListCostAlertSubscriptionsRequest apply( + com.oracle.bmc.paginator.internal.RequestBuilderAndToken< + ListCostAlertSubscriptionsRequest.Builder> + input) { + if (input.getNextPageToken() == null) { + return input.getRequestBuilder().build(); + } else { + return input.getRequestBuilder() + .page(input.getNextPageToken().orElse(null)) + .build(); + } + } + }, + new java.util.function.Function< + ListCostAlertSubscriptionsRequest, ListCostAlertSubscriptionsResponse>() { + @Override + public ListCostAlertSubscriptionsResponse apply( + ListCostAlertSubscriptionsRequest request) { + return client.listCostAlertSubscriptions(request); + } + }, + new java.util.function.Function< + ListCostAlertSubscriptionsResponse, + java.util.List< + com.oracle.bmc.budget.model.CostAlertSubscriptionSummary>>() { + @Override + public java.util.List + apply(ListCostAlertSubscriptionsResponse response) { + return response.getCostAlertSubscriptionCollection().getItems(); + } + }); + } + + /** + * Creates a new iterable which will iterate over the responses received from the + * listCostAnomalyEvents operation. This iterable will fetch more data from the server as + * needed. + * + * @param request a request which can be sent to the service operation + * @return an {@link java.lang.Iterable} which can be used to iterate over the responses + * received from the service. + */ + public Iterable listCostAnomalyEventsResponseIterator( + final ListCostAnomalyEventsRequest request) { + return new com.oracle.bmc.paginator.internal.ResponseIterable< + ListCostAnomalyEventsRequest.Builder, + ListCostAnomalyEventsRequest, + ListCostAnomalyEventsResponse>( + new java.util.function.Supplier() { + @Override + public ListCostAnomalyEventsRequest.Builder get() { + return ListCostAnomalyEventsRequest.builder().copy(request); + } + }, + new java.util.function.Function() { + @Override + public String apply(ListCostAnomalyEventsResponse response) { + return response.getOpcNextPage(); + } + }, + new java.util.function.Function< + com.oracle.bmc.paginator.internal.RequestBuilderAndToken< + ListCostAnomalyEventsRequest.Builder>, + ListCostAnomalyEventsRequest>() { + @Override + public ListCostAnomalyEventsRequest apply( + com.oracle.bmc.paginator.internal.RequestBuilderAndToken< + ListCostAnomalyEventsRequest.Builder> + input) { + if (input.getNextPageToken() == null) { + return input.getRequestBuilder().build(); + } else { + return input.getRequestBuilder() + .page(input.getNextPageToken().orElse(null)) + .build(); + } + } + }, + new java.util.function.Function< + ListCostAnomalyEventsRequest, ListCostAnomalyEventsResponse>() { + @Override + public ListCostAnomalyEventsResponse apply( + ListCostAnomalyEventsRequest request) { + return client.listCostAnomalyEvents(request); + } + }); + } + + /** + * Creates a new iterable which will iterate over the {@link + * com.oracle.bmc.budget.model.CostAnomalyEventSummary} objects contained in responses from the + * listCostAnomalyEvents operation. This iterable will fetch more data from the server as + * needed. + * + * @param request a request which can be sent to the service operation + * @return an {@link java.lang.Iterable} which can be used to iterate over the {@link + * com.oracle.bmc.budget.model.CostAnomalyEventSummary} objects contained in responses + * received from the service. + */ + public Iterable + listCostAnomalyEventsRecordIterator(final ListCostAnomalyEventsRequest request) { + return new com.oracle.bmc.paginator.internal.ResponseRecordIterable< + ListCostAnomalyEventsRequest.Builder, + ListCostAnomalyEventsRequest, + ListCostAnomalyEventsResponse, + com.oracle.bmc.budget.model.CostAnomalyEventSummary>( + new java.util.function.Supplier() { + @Override + public ListCostAnomalyEventsRequest.Builder get() { + return ListCostAnomalyEventsRequest.builder().copy(request); + } + }, + new java.util.function.Function() { + @Override + public String apply(ListCostAnomalyEventsResponse response) { + return response.getOpcNextPage(); + } + }, + new java.util.function.Function< + com.oracle.bmc.paginator.internal.RequestBuilderAndToken< + ListCostAnomalyEventsRequest.Builder>, + ListCostAnomalyEventsRequest>() { + @Override + public ListCostAnomalyEventsRequest apply( + com.oracle.bmc.paginator.internal.RequestBuilderAndToken< + ListCostAnomalyEventsRequest.Builder> + input) { + if (input.getNextPageToken() == null) { + return input.getRequestBuilder().build(); + } else { + return input.getRequestBuilder() + .page(input.getNextPageToken().orElse(null)) + .build(); + } + } + }, + new java.util.function.Function< + ListCostAnomalyEventsRequest, ListCostAnomalyEventsResponse>() { + @Override + public ListCostAnomalyEventsResponse apply( + ListCostAnomalyEventsRequest request) { + return client.listCostAnomalyEvents(request); + } + }, + new java.util.function.Function< + ListCostAnomalyEventsResponse, + java.util.List>() { + @Override + public java.util.List + apply(ListCostAnomalyEventsResponse response) { + return response.getCostAnomalyEventCollection().getItems(); + } + }); + } + + /** + * Creates a new iterable which will iterate over the responses received from the + * listCostAnomalyMonitors operation. This iterable will fetch more data from the server as + * needed. + * + * @param request a request which can be sent to the service operation + * @return an {@link java.lang.Iterable} which can be used to iterate over the responses + * received from the service. + */ + public Iterable listCostAnomalyMonitorsResponseIterator( + final ListCostAnomalyMonitorsRequest request) { + return new com.oracle.bmc.paginator.internal.ResponseIterable< + ListCostAnomalyMonitorsRequest.Builder, + ListCostAnomalyMonitorsRequest, + ListCostAnomalyMonitorsResponse>( + new java.util.function.Supplier() { + @Override + public ListCostAnomalyMonitorsRequest.Builder get() { + return ListCostAnomalyMonitorsRequest.builder().copy(request); + } + }, + new java.util.function.Function() { + @Override + public String apply(ListCostAnomalyMonitorsResponse response) { + return response.getOpcNextPage(); + } + }, + new java.util.function.Function< + com.oracle.bmc.paginator.internal.RequestBuilderAndToken< + ListCostAnomalyMonitorsRequest.Builder>, + ListCostAnomalyMonitorsRequest>() { + @Override + public ListCostAnomalyMonitorsRequest apply( + com.oracle.bmc.paginator.internal.RequestBuilderAndToken< + ListCostAnomalyMonitorsRequest.Builder> + input) { + if (input.getNextPageToken() == null) { + return input.getRequestBuilder().build(); + } else { + return input.getRequestBuilder() + .page(input.getNextPageToken().orElse(null)) + .build(); + } + } + }, + new java.util.function.Function< + ListCostAnomalyMonitorsRequest, ListCostAnomalyMonitorsResponse>() { + @Override + public ListCostAnomalyMonitorsResponse apply( + ListCostAnomalyMonitorsRequest request) { + return client.listCostAnomalyMonitors(request); + } + }); + } + + /** + * Creates a new iterable which will iterate over the {@link + * com.oracle.bmc.budget.model.CostAnomalyMonitorSummary} objects contained in responses from + * the listCostAnomalyMonitors operation. This iterable will fetch more data from the server as + * needed. + * + * @param request a request which can be sent to the service operation + * @return an {@link java.lang.Iterable} which can be used to iterate over the {@link + * com.oracle.bmc.budget.model.CostAnomalyMonitorSummary} objects contained in responses + * received from the service. + */ + public Iterable + listCostAnomalyMonitorsRecordIterator(final ListCostAnomalyMonitorsRequest request) { + return new com.oracle.bmc.paginator.internal.ResponseRecordIterable< + ListCostAnomalyMonitorsRequest.Builder, + ListCostAnomalyMonitorsRequest, + ListCostAnomalyMonitorsResponse, + com.oracle.bmc.budget.model.CostAnomalyMonitorSummary>( + new java.util.function.Supplier() { + @Override + public ListCostAnomalyMonitorsRequest.Builder get() { + return ListCostAnomalyMonitorsRequest.builder().copy(request); + } + }, + new java.util.function.Function() { + @Override + public String apply(ListCostAnomalyMonitorsResponse response) { + return response.getOpcNextPage(); + } + }, + new java.util.function.Function< + com.oracle.bmc.paginator.internal.RequestBuilderAndToken< + ListCostAnomalyMonitorsRequest.Builder>, + ListCostAnomalyMonitorsRequest>() { + @Override + public ListCostAnomalyMonitorsRequest apply( + com.oracle.bmc.paginator.internal.RequestBuilderAndToken< + ListCostAnomalyMonitorsRequest.Builder> + input) { + if (input.getNextPageToken() == null) { + return input.getRequestBuilder().build(); + } else { + return input.getRequestBuilder() + .page(input.getNextPageToken().orElse(null)) + .build(); + } + } + }, + new java.util.function.Function< + ListCostAnomalyMonitorsRequest, ListCostAnomalyMonitorsResponse>() { + @Override + public ListCostAnomalyMonitorsResponse apply( + ListCostAnomalyMonitorsRequest request) { + return client.listCostAnomalyMonitors(request); + } + }, + new java.util.function.Function< + ListCostAnomalyMonitorsResponse, + java.util.List>() { + @Override + public java.util.List + apply(ListCostAnomalyMonitorsResponse response) { + return response.getCostAnomalyMonitorCollection().getItems(); + } + }); + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/CostAdWaiters.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/CostAdWaiters.java new file mode 100644 index 00000000000..1b964127e45 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/CostAdWaiters.java @@ -0,0 +1,351 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget; + +import com.oracle.bmc.budget.requests.*; +import com.oracle.bmc.budget.responses.*; + +/** + * Collection of helper methods to produce {@link com.oracle.bmc.waiter.Waiter}s for different + * resources of CostAd. + * + *

The default configuration used is defined by {@link + * com.oracle.bmc.waiter.Waiters.Waiters#DEFAULT_POLLING_WAITER}. + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class CostAdWaiters { + private final java.util.concurrent.ExecutorService executorService; + private final CostAd client; + + public CostAdWaiters(java.util.concurrent.ExecutorService executorService, CostAd client) { + this.executorService = executorService; + this.client = client; + } + + /** + * Creates a new {@link com.oracle.bmc.waiter.Waiter} using the default configuration. + * + * @param request the request to send + * @param targetStates the desired states to wait for. If multiple states are provided then the + * waiter will return once the resource reaches any of the provided states + * @return a new {@code Waiter} instance + */ + public com.oracle.bmc.waiter.Waiter< + GetCostAlertSubscriptionRequest, GetCostAlertSubscriptionResponse> + forCostAlertSubscription( + GetCostAlertSubscriptionRequest request, + com.oracle.bmc.budget.model.CostAlertSubscription.LifecycleState... + targetStates) { + com.oracle.bmc.util.internal.Validate.notEmpty( + targetStates, "At least one targetState must be provided"); + com.oracle.bmc.util.internal.Validate.noNullElements( + targetStates, "Null targetState values are not permitted"); + + return forCostAlertSubscription( + com.oracle.bmc.waiter.Waiters.DEFAULT_POLLING_WAITER, request, targetStates); + } + + /** + * Creates a new {@link com.oracle.bmc.waiter.Waiter} using the provided configuration. + * + * @param request the request to send + * @param targetState the desired state to wait for + * @param terminationStrategy the {@link com.oracle.bmc.waiter.TerminationStrategy} to use + * @param delayStrategy the {@link com.oracle.bmc.waiter.DelayStrategy} to use + * @return a new {@code com.oracle.bmc.waiter.Waiter} instance + */ + public com.oracle.bmc.waiter.Waiter< + GetCostAlertSubscriptionRequest, GetCostAlertSubscriptionResponse> + forCostAlertSubscription( + GetCostAlertSubscriptionRequest request, + com.oracle.bmc.budget.model.CostAlertSubscription.LifecycleState targetState, + com.oracle.bmc.waiter.TerminationStrategy terminationStrategy, + com.oracle.bmc.waiter.DelayStrategy delayStrategy) { + com.oracle.bmc.util.internal.Validate.notNull( + targetState, "The targetState cannot be null"); + + return forCostAlertSubscription( + com.oracle.bmc.waiter.Waiters.newWaiter(terminationStrategy, delayStrategy), + request, + targetState); + } + + /** + * Creates a new {@link com.oracle.bmc.waiter.Waiter} using the provided configuration. + * + * @param request the request to send + * @param terminationStrategy the {@link com.oracle.bmc.waiter.TerminationStrategy} to use + * @param delayStrategy the {@link com.oracle.bmc.waiter.DelayStrategy} to use + * @param targetStates the desired states to wait for. The waiter will return once the resource + * reaches any of the provided states + * @return a new {@code com.oracle.bmc.waiter.Waiter} instance + */ + public com.oracle.bmc.waiter.Waiter< + GetCostAlertSubscriptionRequest, GetCostAlertSubscriptionResponse> + forCostAlertSubscription( + GetCostAlertSubscriptionRequest request, + com.oracle.bmc.waiter.TerminationStrategy terminationStrategy, + com.oracle.bmc.waiter.DelayStrategy delayStrategy, + com.oracle.bmc.budget.model.CostAlertSubscription.LifecycleState... + targetStates) { + com.oracle.bmc.util.internal.Validate.notEmpty( + targetStates, "At least one target state must be provided"); + com.oracle.bmc.util.internal.Validate.noNullElements( + targetStates, "Null target states are not permitted"); + + return forCostAlertSubscription( + com.oracle.bmc.waiter.Waiters.newWaiter(terminationStrategy, delayStrategy), + request, + targetStates); + } + + // Helper method to create a new Waiter for CostAlertSubscription. + private com.oracle.bmc.waiter.Waiter< + GetCostAlertSubscriptionRequest, GetCostAlertSubscriptionResponse> + forCostAlertSubscription( + com.oracle.bmc.waiter.BmcGenericWaiter waiter, + final GetCostAlertSubscriptionRequest request, + final com.oracle.bmc.budget.model.CostAlertSubscription.LifecycleState... + targetStates) { + final java.util.Set + targetStatesSet = new java.util.HashSet<>(java.util.Arrays.asList(targetStates)); + + return new com.oracle.bmc.waiter.internal.SimpleWaiterImpl<>( + executorService, + waiter.toCallable( + () -> request, + new java.util.function.Function< + GetCostAlertSubscriptionRequest, + GetCostAlertSubscriptionResponse>() { + @Override + public GetCostAlertSubscriptionResponse apply( + GetCostAlertSubscriptionRequest request) { + return client.getCostAlertSubscription(request); + } + }, + new java.util.function.Predicate() { + @Override + public boolean test(GetCostAlertSubscriptionResponse response) { + return targetStatesSet.contains( + response.getCostAlertSubscription().getLifecycleState()); + } + }, + false), + request); + } + + /** + * Creates a new {@link com.oracle.bmc.waiter.Waiter} using the default configuration. + * + * @param request the request to send + * @param targetStates the desired states to wait for. If multiple states are provided then the + * waiter will return once the resource reaches any of the provided states + * @return a new {@code Waiter} instance + */ + public com.oracle.bmc.waiter.Waiter + forCostAnomalyEvent( + GetCostAnomalyEventRequest request, + com.oracle.bmc.budget.model.CostAnomalyEvent.LifecycleState... targetStates) { + com.oracle.bmc.util.internal.Validate.notEmpty( + targetStates, "At least one targetState must be provided"); + com.oracle.bmc.util.internal.Validate.noNullElements( + targetStates, "Null targetState values are not permitted"); + + return forCostAnomalyEvent( + com.oracle.bmc.waiter.Waiters.DEFAULT_POLLING_WAITER, request, targetStates); + } + + /** + * Creates a new {@link com.oracle.bmc.waiter.Waiter} using the provided configuration. + * + * @param request the request to send + * @param targetState the desired state to wait for + * @param terminationStrategy the {@link com.oracle.bmc.waiter.TerminationStrategy} to use + * @param delayStrategy the {@link com.oracle.bmc.waiter.DelayStrategy} to use + * @return a new {@code com.oracle.bmc.waiter.Waiter} instance + */ + public com.oracle.bmc.waiter.Waiter + forCostAnomalyEvent( + GetCostAnomalyEventRequest request, + com.oracle.bmc.budget.model.CostAnomalyEvent.LifecycleState targetState, + com.oracle.bmc.waiter.TerminationStrategy terminationStrategy, + com.oracle.bmc.waiter.DelayStrategy delayStrategy) { + com.oracle.bmc.util.internal.Validate.notNull( + targetState, "The targetState cannot be null"); + + return forCostAnomalyEvent( + com.oracle.bmc.waiter.Waiters.newWaiter(terminationStrategy, delayStrategy), + request, + targetState); + } + + /** + * Creates a new {@link com.oracle.bmc.waiter.Waiter} using the provided configuration. + * + * @param request the request to send + * @param terminationStrategy the {@link com.oracle.bmc.waiter.TerminationStrategy} to use + * @param delayStrategy the {@link com.oracle.bmc.waiter.DelayStrategy} to use + * @param targetStates the desired states to wait for. The waiter will return once the resource + * reaches any of the provided states + * @return a new {@code com.oracle.bmc.waiter.Waiter} instance + */ + public com.oracle.bmc.waiter.Waiter + forCostAnomalyEvent( + GetCostAnomalyEventRequest request, + com.oracle.bmc.waiter.TerminationStrategy terminationStrategy, + com.oracle.bmc.waiter.DelayStrategy delayStrategy, + com.oracle.bmc.budget.model.CostAnomalyEvent.LifecycleState... targetStates) { + com.oracle.bmc.util.internal.Validate.notEmpty( + targetStates, "At least one target state must be provided"); + com.oracle.bmc.util.internal.Validate.noNullElements( + targetStates, "Null target states are not permitted"); + + return forCostAnomalyEvent( + com.oracle.bmc.waiter.Waiters.newWaiter(terminationStrategy, delayStrategy), + request, + targetStates); + } + + // Helper method to create a new Waiter for CostAnomalyEvent. + private com.oracle.bmc.waiter.Waiter + forCostAnomalyEvent( + com.oracle.bmc.waiter.BmcGenericWaiter waiter, + final GetCostAnomalyEventRequest request, + final com.oracle.bmc.budget.model.CostAnomalyEvent.LifecycleState... + targetStates) { + final java.util.Set + targetStatesSet = new java.util.HashSet<>(java.util.Arrays.asList(targetStates)); + + return new com.oracle.bmc.waiter.internal.SimpleWaiterImpl<>( + executorService, + waiter.toCallable( + () -> request, + new java.util.function.Function< + GetCostAnomalyEventRequest, GetCostAnomalyEventResponse>() { + @Override + public GetCostAnomalyEventResponse apply( + GetCostAnomalyEventRequest request) { + return client.getCostAnomalyEvent(request); + } + }, + new java.util.function.Predicate() { + @Override + public boolean test(GetCostAnomalyEventResponse response) { + return targetStatesSet.contains( + response.getCostAnomalyEvent().getLifecycleState()); + } + }, + false), + request); + } + + /** + * Creates a new {@link com.oracle.bmc.waiter.Waiter} using the default configuration. + * + * @param request the request to send + * @param targetStates the desired states to wait for. If multiple states are provided then the + * waiter will return once the resource reaches any of the provided states + * @return a new {@code Waiter} instance + */ + public com.oracle.bmc.waiter.Waiter + forCostAnomalyMonitor( + GetCostAnomalyMonitorRequest request, + com.oracle.bmc.budget.model.CostAnomalyMonitor.LifecycleState... targetStates) { + com.oracle.bmc.util.internal.Validate.notEmpty( + targetStates, "At least one targetState must be provided"); + com.oracle.bmc.util.internal.Validate.noNullElements( + targetStates, "Null targetState values are not permitted"); + + return forCostAnomalyMonitor( + com.oracle.bmc.waiter.Waiters.DEFAULT_POLLING_WAITER, request, targetStates); + } + + /** + * Creates a new {@link com.oracle.bmc.waiter.Waiter} using the provided configuration. + * + * @param request the request to send + * @param targetState the desired state to wait for + * @param terminationStrategy the {@link com.oracle.bmc.waiter.TerminationStrategy} to use + * @param delayStrategy the {@link com.oracle.bmc.waiter.DelayStrategy} to use + * @return a new {@code com.oracle.bmc.waiter.Waiter} instance + */ + public com.oracle.bmc.waiter.Waiter + forCostAnomalyMonitor( + GetCostAnomalyMonitorRequest request, + com.oracle.bmc.budget.model.CostAnomalyMonitor.LifecycleState targetState, + com.oracle.bmc.waiter.TerminationStrategy terminationStrategy, + com.oracle.bmc.waiter.DelayStrategy delayStrategy) { + com.oracle.bmc.util.internal.Validate.notNull( + targetState, "The targetState cannot be null"); + + return forCostAnomalyMonitor( + com.oracle.bmc.waiter.Waiters.newWaiter(terminationStrategy, delayStrategy), + request, + targetState); + } + + /** + * Creates a new {@link com.oracle.bmc.waiter.Waiter} using the provided configuration. + * + * @param request the request to send + * @param terminationStrategy the {@link com.oracle.bmc.waiter.TerminationStrategy} to use + * @param delayStrategy the {@link com.oracle.bmc.waiter.DelayStrategy} to use + * @param targetStates the desired states to wait for. The waiter will return once the resource + * reaches any of the provided states + * @return a new {@code com.oracle.bmc.waiter.Waiter} instance + */ + public com.oracle.bmc.waiter.Waiter + forCostAnomalyMonitor( + GetCostAnomalyMonitorRequest request, + com.oracle.bmc.waiter.TerminationStrategy terminationStrategy, + com.oracle.bmc.waiter.DelayStrategy delayStrategy, + com.oracle.bmc.budget.model.CostAnomalyMonitor.LifecycleState... targetStates) { + com.oracle.bmc.util.internal.Validate.notEmpty( + targetStates, "At least one target state must be provided"); + com.oracle.bmc.util.internal.Validate.noNullElements( + targetStates, "Null target states are not permitted"); + + return forCostAnomalyMonitor( + com.oracle.bmc.waiter.Waiters.newWaiter(terminationStrategy, delayStrategy), + request, + targetStates); + } + + // Helper method to create a new Waiter for CostAnomalyMonitor. + private com.oracle.bmc.waiter.Waiter< + GetCostAnomalyMonitorRequest, GetCostAnomalyMonitorResponse> + forCostAnomalyMonitor( + com.oracle.bmc.waiter.BmcGenericWaiter waiter, + final GetCostAnomalyMonitorRequest request, + final com.oracle.bmc.budget.model.CostAnomalyMonitor.LifecycleState... + targetStates) { + final java.util.Set + targetStatesSet = new java.util.HashSet<>(java.util.Arrays.asList(targetStates)); + + return new com.oracle.bmc.waiter.internal.SimpleWaiterImpl<>( + executorService, + waiter.toCallable( + () -> request, + new java.util.function.Function< + GetCostAnomalyMonitorRequest, GetCostAnomalyMonitorResponse>() { + @Override + public GetCostAnomalyMonitorResponse apply( + GetCostAnomalyMonitorRequest request) { + return client.getCostAnomalyMonitor(request); + } + }, + new java.util.function.Predicate() { + @Override + public boolean test(GetCostAnomalyMonitorResponse response) { + return targetStatesSet.contains( + response.getCostAnomalyMonitor().getLifecycleState()); + } + }, + targetStatesSet.contains( + com.oracle.bmc.budget.model.CostAnomalyMonitor.LifecycleState + .Deleted)), + request); + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/AlertRule.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/AlertRule.java index 3b755387540..7a9f35f1950 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/AlertRule.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/AlertRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.model; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/AlertRuleSummary.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/AlertRuleSummary.java index 8a78609b01a..e4fef7893bc 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/AlertRuleSummary.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/AlertRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.model; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/AlertType.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/AlertType.java index 26e6230456b..1f2dffbf0f7 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/AlertType.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/AlertType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.model; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/Budget.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/Budget.java index d53080858fe..110bbfe8039 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/Budget.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/Budget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.model; @@ -44,7 +44,8 @@ public final class Budget extends com.oracle.bmc.http.client.internal.Explicitly "timeCreated", "timeUpdated", "freeformTags", - "definedTags" + "definedTags", + "systemTags" }) public Budget( String id, @@ -69,7 +70,8 @@ public Budget( java.util.Date timeCreated, java.util.Date timeUpdated, java.util.Map freeformTags, - java.util.Map> definedTags) { + java.util.Map> definedTags, + java.util.Map> systemTags) { super(); this.id = id; this.compartmentId = compartmentId; @@ -94,6 +96,7 @@ public Budget( this.timeUpdated = timeUpdated; this.freeformTags = freeformTags; this.definedTags = definedTags; + this.systemTags = systemTags; } @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") @@ -249,17 +252,17 @@ public Builder processingPeriodType(ProcessingPeriodType processingPeriodType) { return this; } /** - * The date when the one-time budget begins. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date - * provided after being converted to UTC time. + * The date when the one-time budget begins. For example, {@code + * 2023-07-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. */ @com.fasterxml.jackson.annotation.JsonProperty("startDate") private java.util.Date startDate; /** - * The date when the one-time budget begins. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date - * provided after being converted to UTC time. + * The date when the one-time budget begins. For example, {@code + * 2023-07-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. * * @param startDate the value to set * @return this builder @@ -270,17 +273,17 @@ public Builder startDate(java.util.Date startDate) { return this; } /** - * The time when the one-time budget concludes. For example, {@code 2023-03-23}. The - * date-time format conforms to RFC 3339, and will be truncated to the starting point of the - * date provided after being converted to UTC time. + * The time when the one-time budget concludes. For example, {@code + * 2023-08-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. */ @com.fasterxml.jackson.annotation.JsonProperty("endDate") private java.util.Date endDate; /** - * The time when the one-time budget concludes. For example, {@code 2023-03-23}. The - * date-time format conforms to RFC 3339, and will be truncated to the starting point of the - * date provided after being converted to UTC time. + * The time when the one-time budget concludes. For example, {@code + * 2023-08-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. * * @param endDate the value to set * @return this builder @@ -499,6 +502,25 @@ public Builder definedTags( this.__explicitlySet__.add("definedTags"); return this; } + /** + * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {@code + * {"orcl-cloud": {"free-tier-retained": "true"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("systemTags") + private java.util.Map> systemTags; + + /** + * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {@code + * {"orcl-cloud": {"free-tier-retained": "true"}}} + * + * @param systemTags the value to set + * @return this builder + */ + public Builder systemTags(java.util.Map> systemTags) { + this.systemTags = systemTags; + this.__explicitlySet__.add("systemTags"); + return this; + } @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); @@ -528,7 +550,8 @@ public Budget build() { this.timeCreated, this.timeUpdated, this.freeformTags, - this.definedTags); + this.definedTags, + this.systemTags); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } @@ -607,6 +630,9 @@ public Builder copy(Budget model) { if (model.wasPropertyExplicitlySet("definedTags")) { this.definedTags(model.getDefinedTags()); } + if (model.wasPropertyExplicitlySet("systemTags")) { + this.systemTags(model.getSystemTags()); + } return this; } } @@ -752,17 +778,17 @@ public ProcessingPeriodType getProcessingPeriodType() { } /** - * The date when the one-time budget begins. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date provided - * after being converted to UTC time. + * The date when the one-time budget begins. For example, {@code + * 2023-07-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. */ @com.fasterxml.jackson.annotation.JsonProperty("startDate") private final java.util.Date startDate; /** - * The date when the one-time budget begins. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date provided - * after being converted to UTC time. + * The date when the one-time budget begins. For example, {@code + * 2023-07-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. * * @return the value */ @@ -771,17 +797,17 @@ public java.util.Date getStartDate() { } /** - * The time when the one-time budget concludes. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date provided - * after being converted to UTC time. + * The time when the one-time budget concludes. For example, {@code + * 2023-08-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. */ @com.fasterxml.jackson.annotation.JsonProperty("endDate") private final java.util.Date endDate; /** - * The time when the one-time budget concludes. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date provided - * after being converted to UTC time. + * The time when the one-time budget concludes. For example, {@code + * 2023-08-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. * * @return the value */ @@ -973,6 +999,23 @@ public java.util.Map> getDefinedTags() { return definedTags; } + /** + * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {@code + * {"orcl-cloud": {"free-tier-retained": "true"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("systemTags") + private final java.util.Map> systemTags; + + /** + * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {@code + * {"orcl-cloud": {"free-tier-retained": "true"}}} + * + * @return the value + */ + public java.util.Map> getSystemTags() { + return systemTags; + } + @Override public String toString() { return this.toString(true); @@ -1012,6 +1055,7 @@ public String toString(boolean includeByteArrayContents) { sb.append(", timeUpdated=").append(String.valueOf(this.timeUpdated)); sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); sb.append(", definedTags=").append(String.valueOf(this.definedTags)); + sb.append(", systemTags=").append(String.valueOf(this.systemTags)); sb.append(")"); return sb.toString(); } @@ -1051,6 +1095,7 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.timeUpdated, other.timeUpdated) && java.util.Objects.equals(this.freeformTags, other.freeformTags) && java.util.Objects.equals(this.definedTags, other.definedTags) + && java.util.Objects.equals(this.systemTags, other.systemTags) && super.equals(other); } @@ -1103,6 +1148,7 @@ public int hashCode() { result = (result * PRIME) + (this.timeUpdated == null ? 43 : this.timeUpdated.hashCode()); result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); + result = (result * PRIME) + (this.systemTags == null ? 43 : this.systemTags.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/BudgetSummary.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/BudgetSummary.java index 07a5e200799..f50f1f756c7 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/BudgetSummary.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/BudgetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.model; @@ -44,7 +44,8 @@ public final class BudgetSummary extends com.oracle.bmc.http.client.internal.Exp "timeCreated", "timeUpdated", "freeformTags", - "definedTags" + "definedTags", + "systemTags" }) public BudgetSummary( String id, @@ -69,7 +70,8 @@ public BudgetSummary( java.util.Date timeCreated, java.util.Date timeUpdated, java.util.Map freeformTags, - java.util.Map> definedTags) { + java.util.Map> definedTags, + java.util.Map> systemTags) { super(); this.id = id; this.compartmentId = compartmentId; @@ -94,6 +96,7 @@ public BudgetSummary( this.timeUpdated = timeUpdated; this.freeformTags = freeformTags; this.definedTags = definedTags; + this.systemTags = systemTags; } @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") @@ -253,17 +256,17 @@ public Builder processingPeriodType(ProcessingPeriodType processingPeriodType) { return this; } /** - * The date when the one-time budget begins. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date - * provided after being converted to UTC time. + * The date when the one-time budget begins. For example, {@code + * 2023-07-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. */ @com.fasterxml.jackson.annotation.JsonProperty("startDate") private java.util.Date startDate; /** - * The date when the one-time budget begins. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date - * provided after being converted to UTC time. + * The date when the one-time budget begins. For example, {@code + * 2023-07-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. * * @param startDate the value to set * @return this builder @@ -274,17 +277,17 @@ public Builder startDate(java.util.Date startDate) { return this; } /** - * The time when the one-time budget concludes. For example, - {@code 2023-03-23}. The - * date-time format conforms to RFC 3339, and will be truncated to the starting point of the - * date provided after being converted to UTC time. + * The time when the one-time budget concludes. For example, - {@code + * 2023-08-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. */ @com.fasterxml.jackson.annotation.JsonProperty("endDate") private java.util.Date endDate; /** - * The time when the one-time budget concludes. For example, - {@code 2023-03-23}. The - * date-time format conforms to RFC 3339, and will be truncated to the starting point of the - * date provided after being converted to UTC time. + * The time when the one-time budget concludes. For example, - {@code + * 2023-08-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. * * @param endDate the value to set * @return this builder @@ -503,6 +506,25 @@ public Builder definedTags( this.__explicitlySet__.add("definedTags"); return this; } + /** + * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {@code + * {"orcl-cloud": {"free-tier-retained": "true"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("systemTags") + private java.util.Map> systemTags; + + /** + * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {@code + * {"orcl-cloud": {"free-tier-retained": "true"}}} + * + * @param systemTags the value to set + * @return this builder + */ + public Builder systemTags(java.util.Map> systemTags) { + this.systemTags = systemTags; + this.__explicitlySet__.add("systemTags"); + return this; + } @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); @@ -532,7 +554,8 @@ public BudgetSummary build() { this.timeCreated, this.timeUpdated, this.freeformTags, - this.definedTags); + this.definedTags, + this.systemTags); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } @@ -611,6 +634,9 @@ public Builder copy(BudgetSummary model) { if (model.wasPropertyExplicitlySet("definedTags")) { this.definedTags(model.getDefinedTags()); } + if (model.wasPropertyExplicitlySet("systemTags")) { + this.systemTags(model.getSystemTags()); + } return this; } } @@ -758,17 +784,17 @@ public ProcessingPeriodType getProcessingPeriodType() { } /** - * The date when the one-time budget begins. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date provided - * after being converted to UTC time. + * The date when the one-time budget begins. For example, {@code + * 2023-07-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. */ @com.fasterxml.jackson.annotation.JsonProperty("startDate") private final java.util.Date startDate; /** - * The date when the one-time budget begins. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date provided - * after being converted to UTC time. + * The date when the one-time budget begins. For example, {@code + * 2023-07-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. * * @return the value */ @@ -777,17 +803,17 @@ public java.util.Date getStartDate() { } /** - * The time when the one-time budget concludes. For example, - {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date provided - * after being converted to UTC time. + * The time when the one-time budget concludes. For example, - {@code + * 2023-08-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. */ @com.fasterxml.jackson.annotation.JsonProperty("endDate") private final java.util.Date endDate; /** - * The time when the one-time budget concludes. For example, - {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date provided - * after being converted to UTC time. + * The time when the one-time budget concludes. For example, - {@code + * 2023-08-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. * * @return the value */ @@ -979,6 +1005,23 @@ public java.util.Map> getDefinedTags() { return definedTags; } + /** + * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {@code + * {"orcl-cloud": {"free-tier-retained": "true"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("systemTags") + private final java.util.Map> systemTags; + + /** + * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {@code + * {"orcl-cloud": {"free-tier-retained": "true"}}} + * + * @return the value + */ + public java.util.Map> getSystemTags() { + return systemTags; + } + @Override public String toString() { return this.toString(true); @@ -1018,6 +1061,7 @@ public String toString(boolean includeByteArrayContents) { sb.append(", timeUpdated=").append(String.valueOf(this.timeUpdated)); sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); sb.append(", definedTags=").append(String.valueOf(this.definedTags)); + sb.append(", systemTags=").append(String.valueOf(this.systemTags)); sb.append(")"); return sb.toString(); } @@ -1057,6 +1101,7 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.timeUpdated, other.timeUpdated) && java.util.Objects.equals(this.freeformTags, other.freeformTags) && java.util.Objects.equals(this.definedTags, other.definedTags) + && java.util.Objects.equals(this.systemTags, other.systemTags) && super.equals(other); } @@ -1109,6 +1154,7 @@ public int hashCode() { result = (result * PRIME) + (this.timeUpdated == null ? 43 : this.timeUpdated.hashCode()); result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); + result = (result * PRIME) + (this.systemTags == null ? 43 : this.systemTags.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAlertSubscription.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAlertSubscription.java new file mode 100644 index 00000000000..e470ed0d9cd --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAlertSubscription.java @@ -0,0 +1,676 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** + * A CostAlertSubscription.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = CostAlertSubscription.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class CostAlertSubscription + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({ + "id", + "compartmentId", + "name", + "lifecycleState", + "channels", + "description", + "timeCreated", + "timeUpdated", + "costAnomalyMonitors", + "definedTags", + "freeformTags", + "systemTags" + }) + public CostAlertSubscription( + String id, + String compartmentId, + String name, + LifecycleState lifecycleState, + String channels, + String description, + java.util.Date timeCreated, + java.util.Date timeUpdated, + Object costAnomalyMonitors, + java.util.Map> definedTags, + java.util.Map freeformTags, + java.util.Map> systemTags) { + super(); + this.id = id; + this.compartmentId = compartmentId; + this.name = name; + this.lifecycleState = lifecycleState; + this.channels = channels; + this.description = description; + this.timeCreated = timeCreated; + this.timeUpdated = timeUpdated; + this.costAnomalyMonitors = costAnomalyMonitors; + this.definedTags = definedTags; + this.freeformTags = freeformTags; + this.systemTags = systemTags; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** The OCID of the Cost Alert Subscription. */ + @com.fasterxml.jackson.annotation.JsonProperty("id") + private String id; + + /** + * The OCID of the Cost Alert Subscription. + * + * @param id the value to set + * @return this builder + */ + public Builder id(String id) { + this.id = id; + this.__explicitlySet__.add("id"); + return this; + } + /** The OCID of the compartment which hold the cost alert subscription resource. */ + @com.fasterxml.jackson.annotation.JsonProperty("compartmentId") + private String compartmentId; + + /** + * The OCID of the compartment which hold the cost alert subscription resource. + * + * @param compartmentId the value to set + * @return this builder + */ + public Builder compartmentId(String compartmentId) { + this.compartmentId = compartmentId; + this.__explicitlySet__.add("compartmentId"); + return this; + } + /** The name of the cost alert subscription. Avoid entering confidential information. */ + @com.fasterxml.jackson.annotation.JsonProperty("name") + private String name; + + /** + * The name of the cost alert subscription. Avoid entering confidential information. + * + * @param name the value to set + * @return this builder + */ + public Builder name(String name) { + this.name = name; + this.__explicitlySet__.add("name"); + return this; + } + /** The current state of the cost alert subscription. */ + @com.fasterxml.jackson.annotation.JsonProperty("lifecycleState") + private LifecycleState lifecycleState; + + /** + * The current state of the cost alert subscription. + * + * @param lifecycleState the value to set + * @return this builder + */ + public Builder lifecycleState(LifecycleState lifecycleState) { + this.lifecycleState = lifecycleState; + this.__explicitlySet__.add("lifecycleState"); + return this; + } + /** The notification channels string. */ + @com.fasterxml.jackson.annotation.JsonProperty("channels") + private String channels; + + /** + * The notification channels string. + * + * @param channels the value to set + * @return this builder + */ + public Builder channels(String channels) { + this.channels = channels; + this.__explicitlySet__.add("channels"); + return this; + } + /** The description of the cost alert subscription. */ + @com.fasterxml.jackson.annotation.JsonProperty("description") + private String description; + + /** + * The description of the cost alert subscription. + * + * @param description the value to set + * @return this builder + */ + public Builder description(String description) { + this.description = description; + this.__explicitlySet__.add("description"); + return this; + } + /** The time that the cost alert subscription was created. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeCreated") + private java.util.Date timeCreated; + + /** + * The time that the cost alert subscription was created. + * + * @param timeCreated the value to set + * @return this builder + */ + public Builder timeCreated(java.util.Date timeCreated) { + this.timeCreated = timeCreated; + this.__explicitlySet__.add("timeCreated"); + return this; + } + /** The time that the cost alert subscription was updated. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeUpdated") + private java.util.Date timeUpdated; + + /** + * The time that the cost alert subscription was updated. + * + * @param timeUpdated the value to set + * @return this builder + */ + public Builder timeUpdated(java.util.Date timeUpdated) { + this.timeUpdated = timeUpdated; + this.__explicitlySet__.add("timeUpdated"); + return this; + } + /** List of monitor identifiers */ + @com.fasterxml.jackson.annotation.JsonProperty("costAnomalyMonitors") + private Object costAnomalyMonitors; + + /** + * List of monitor identifiers + * + * @param costAnomalyMonitors the value to set + * @return this builder + */ + public Builder costAnomalyMonitors(Object costAnomalyMonitors) { + this.costAnomalyMonitors = costAnomalyMonitors; + this.__explicitlySet__.add("costAnomalyMonitors"); + return this; + } + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @param definedTags the value to set + * @return this builder + */ + public Builder definedTags( + java.util.Map> definedTags) { + this.definedTags = definedTags; + this.__explicitlySet__.add("definedTags"); + return this; + } + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @param freeformTags the value to set + * @return this builder + */ + public Builder freeformTags(java.util.Map freeformTags) { + this.freeformTags = freeformTags; + this.__explicitlySet__.add("freeformTags"); + return this; + } + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System + * tags can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("systemTags") + private java.util.Map> systemTags; + + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System + * tags can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + * + * @param systemTags the value to set + * @return this builder + */ + public Builder systemTags(java.util.Map> systemTags) { + this.systemTags = systemTags; + this.__explicitlySet__.add("systemTags"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public CostAlertSubscription build() { + CostAlertSubscription model = + new CostAlertSubscription( + this.id, + this.compartmentId, + this.name, + this.lifecycleState, + this.channels, + this.description, + this.timeCreated, + this.timeUpdated, + this.costAnomalyMonitors, + this.definedTags, + this.freeformTags, + this.systemTags); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(CostAlertSubscription model) { + if (model.wasPropertyExplicitlySet("id")) { + this.id(model.getId()); + } + if (model.wasPropertyExplicitlySet("compartmentId")) { + this.compartmentId(model.getCompartmentId()); + } + if (model.wasPropertyExplicitlySet("name")) { + this.name(model.getName()); + } + if (model.wasPropertyExplicitlySet("lifecycleState")) { + this.lifecycleState(model.getLifecycleState()); + } + if (model.wasPropertyExplicitlySet("channels")) { + this.channels(model.getChannels()); + } + if (model.wasPropertyExplicitlySet("description")) { + this.description(model.getDescription()); + } + if (model.wasPropertyExplicitlySet("timeCreated")) { + this.timeCreated(model.getTimeCreated()); + } + if (model.wasPropertyExplicitlySet("timeUpdated")) { + this.timeUpdated(model.getTimeUpdated()); + } + if (model.wasPropertyExplicitlySet("costAnomalyMonitors")) { + this.costAnomalyMonitors(model.getCostAnomalyMonitors()); + } + if (model.wasPropertyExplicitlySet("definedTags")) { + this.definedTags(model.getDefinedTags()); + } + if (model.wasPropertyExplicitlySet("freeformTags")) { + this.freeformTags(model.getFreeformTags()); + } + if (model.wasPropertyExplicitlySet("systemTags")) { + this.systemTags(model.getSystemTags()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** The OCID of the Cost Alert Subscription. */ + @com.fasterxml.jackson.annotation.JsonProperty("id") + private final String id; + + /** + * The OCID of the Cost Alert Subscription. + * + * @return the value + */ + public String getId() { + return id; + } + + /** The OCID of the compartment which hold the cost alert subscription resource. */ + @com.fasterxml.jackson.annotation.JsonProperty("compartmentId") + private final String compartmentId; + + /** + * The OCID of the compartment which hold the cost alert subscription resource. + * + * @return the value + */ + public String getCompartmentId() { + return compartmentId; + } + + /** The name of the cost alert subscription. Avoid entering confidential information. */ + @com.fasterxml.jackson.annotation.JsonProperty("name") + private final String name; + + /** + * The name of the cost alert subscription. Avoid entering confidential information. + * + * @return the value + */ + public String getName() { + return name; + } + + /** The current state of the cost alert subscription. */ + public enum LifecycleState implements com.oracle.bmc.http.internal.BmcEnum { + Active("ACTIVE"), + Inactive("INACTIVE"), + + /** + * This value is used if a service returns a value for this enum that is not recognized by + * this version of the SDK. + */ + UnknownEnumValue(null); + + private static final org.slf4j.Logger LOG = + org.slf4j.LoggerFactory.getLogger(LifecycleState.class); + + private final String value; + private static java.util.Map map; + + static { + map = new java.util.HashMap<>(); + for (LifecycleState v : LifecycleState.values()) { + if (v != UnknownEnumValue) { + map.put(v.getValue(), v); + } + } + } + + LifecycleState(String value) { + this.value = value; + } + + @com.fasterxml.jackson.annotation.JsonValue + public String getValue() { + return value; + } + + @com.fasterxml.jackson.annotation.JsonCreator + public static LifecycleState create(String key) { + if (map.containsKey(key)) { + return map.get(key); + } + LOG.warn( + "Received unknown value '{}' for enum 'LifecycleState', returning UnknownEnumValue", + key); + return UnknownEnumValue; + } + }; + /** The current state of the cost alert subscription. */ + @com.fasterxml.jackson.annotation.JsonProperty("lifecycleState") + private final LifecycleState lifecycleState; + + /** + * The current state of the cost alert subscription. + * + * @return the value + */ + public LifecycleState getLifecycleState() { + return lifecycleState; + } + + /** The notification channels string. */ + @com.fasterxml.jackson.annotation.JsonProperty("channels") + private final String channels; + + /** + * The notification channels string. + * + * @return the value + */ + public String getChannels() { + return channels; + } + + /** The description of the cost alert subscription. */ + @com.fasterxml.jackson.annotation.JsonProperty("description") + private final String description; + + /** + * The description of the cost alert subscription. + * + * @return the value + */ + public String getDescription() { + return description; + } + + /** The time that the cost alert subscription was created. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeCreated") + private final java.util.Date timeCreated; + + /** + * The time that the cost alert subscription was created. + * + * @return the value + */ + public java.util.Date getTimeCreated() { + return timeCreated; + } + + /** The time that the cost alert subscription was updated. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeUpdated") + private final java.util.Date timeUpdated; + + /** + * The time that the cost alert subscription was updated. + * + * @return the value + */ + public java.util.Date getTimeUpdated() { + return timeUpdated; + } + + /** List of monitor identifiers */ + @com.fasterxml.jackson.annotation.JsonProperty("costAnomalyMonitors") + private final Object costAnomalyMonitors; + + /** + * List of monitor identifiers + * + * @return the value + */ + public Object getCostAnomalyMonitors() { + return costAnomalyMonitors; + } + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private final java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @return the value + */ + public java.util.Map> getDefinedTags() { + return definedTags; + } + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private final java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @return the value + */ + public java.util.Map getFreeformTags() { + return freeformTags; + } + + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags + * can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("systemTags") + private final java.util.Map> systemTags; + + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags + * can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + * + * @return the value + */ + public java.util.Map> getSystemTags() { + return systemTags; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("CostAlertSubscription("); + sb.append("super=").append(super.toString()); + sb.append("id=").append(String.valueOf(this.id)); + sb.append(", compartmentId=").append(String.valueOf(this.compartmentId)); + sb.append(", name=").append(String.valueOf(this.name)); + sb.append(", lifecycleState=").append(String.valueOf(this.lifecycleState)); + sb.append(", channels=").append(String.valueOf(this.channels)); + sb.append(", description=").append(String.valueOf(this.description)); + sb.append(", timeCreated=").append(String.valueOf(this.timeCreated)); + sb.append(", timeUpdated=").append(String.valueOf(this.timeUpdated)); + sb.append(", costAnomalyMonitors=").append(String.valueOf(this.costAnomalyMonitors)); + sb.append(", definedTags=").append(String.valueOf(this.definedTags)); + sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); + sb.append(", systemTags=").append(String.valueOf(this.systemTags)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CostAlertSubscription)) { + return false; + } + + CostAlertSubscription other = (CostAlertSubscription) o; + return java.util.Objects.equals(this.id, other.id) + && java.util.Objects.equals(this.compartmentId, other.compartmentId) + && java.util.Objects.equals(this.name, other.name) + && java.util.Objects.equals(this.lifecycleState, other.lifecycleState) + && java.util.Objects.equals(this.channels, other.channels) + && java.util.Objects.equals(this.description, other.description) + && java.util.Objects.equals(this.timeCreated, other.timeCreated) + && java.util.Objects.equals(this.timeUpdated, other.timeUpdated) + && java.util.Objects.equals(this.costAnomalyMonitors, other.costAnomalyMonitors) + && java.util.Objects.equals(this.definedTags, other.definedTags) + && java.util.Objects.equals(this.freeformTags, other.freeformTags) + && java.util.Objects.equals(this.systemTags, other.systemTags) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.id == null ? 43 : this.id.hashCode()); + result = + (result * PRIME) + + (this.compartmentId == null ? 43 : this.compartmentId.hashCode()); + result = (result * PRIME) + (this.name == null ? 43 : this.name.hashCode()); + result = + (result * PRIME) + + (this.lifecycleState == null ? 43 : this.lifecycleState.hashCode()); + result = (result * PRIME) + (this.channels == null ? 43 : this.channels.hashCode()); + result = (result * PRIME) + (this.description == null ? 43 : this.description.hashCode()); + result = (result * PRIME) + (this.timeCreated == null ? 43 : this.timeCreated.hashCode()); + result = (result * PRIME) + (this.timeUpdated == null ? 43 : this.timeUpdated.hashCode()); + result = + (result * PRIME) + + (this.costAnomalyMonitors == null + ? 43 + : this.costAnomalyMonitors.hashCode()); + result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); + result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); + result = (result * PRIME) + (this.systemTags == null ? 43 : this.systemTags.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestFileChangeCollection.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAlertSubscriptionCollection.java similarity index 73% rename from bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestFileChangeCollection.java rename to bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAlertSubscriptionCollection.java index 68c0ace936f..187d32fdeea 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestFileChangeCollection.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAlertSubscriptionCollection.java @@ -1,11 +1,12 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ -package com.oracle.bmc.devops.model; +package com.oracle.bmc.budget.model; /** - * Result of Pull Request difference.
+ * Results of a costAlertSubscription search. Contains both CostAlertSubscriptionSummary items and + * other data.
* Note: Objects should always be created or deserialized using the {@link Builder}. This model * distinguishes fields that are {@code null} because they are unset from fields that are explicitly * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a @@ -15,33 +16,33 @@ * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code * null}). */ -@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20210630") +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") @com.fasterxml.jackson.databind.annotation.JsonDeserialize( - builder = PullRequestFileChangeCollection.Builder.class) + builder = CostAlertSubscriptionCollection.Builder.class) @com.fasterxml.jackson.annotation.JsonFilter( com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) -public final class PullRequestFileChangeCollection +public final class CostAlertSubscriptionCollection extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { @Deprecated @java.beans.ConstructorProperties({"items"}) - public PullRequestFileChangeCollection(java.util.List items) { + public CostAlertSubscriptionCollection(java.util.List items) { super(); this.items = items; } @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") public static class Builder { - /** List of objects describing Pull Request differences for changed files. */ + /** A page of CostAnomalyMonitorSummary objects. */ @com.fasterxml.jackson.annotation.JsonProperty("items") - private java.util.List items; + private java.util.List items; /** - * List of objects describing Pull Request differences for changed files. + * A page of CostAnomalyMonitorSummary objects. * * @param items the value to set * @return this builder */ - public Builder items(java.util.List items) { + public Builder items(java.util.List items) { this.items = items; this.__explicitlySet__.add("items"); return this; @@ -50,8 +51,8 @@ public Builder items(java.util.List items) { @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); - public PullRequestFileChangeCollection build() { - PullRequestFileChangeCollection model = new PullRequestFileChangeCollection(this.items); + public CostAlertSubscriptionCollection build() { + CostAlertSubscriptionCollection model = new CostAlertSubscriptionCollection(this.items); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } @@ -59,7 +60,7 @@ public PullRequestFileChangeCollection build() { } @com.fasterxml.jackson.annotation.JsonIgnore - public Builder copy(PullRequestFileChangeCollection model) { + public Builder copy(CostAlertSubscriptionCollection model) { if (model.wasPropertyExplicitlySet("items")) { this.items(model.getItems()); } @@ -76,16 +77,16 @@ public Builder toBuilder() { return new Builder().copy(this); } - /** List of objects describing Pull Request differences for changed files. */ + /** A page of CostAnomalyMonitorSummary objects. */ @com.fasterxml.jackson.annotation.JsonProperty("items") - private final java.util.List items; + private final java.util.List items; /** - * List of objects describing Pull Request differences for changed files. + * A page of CostAnomalyMonitorSummary objects. * * @return the value */ - public java.util.List getItems() { + public java.util.List getItems() { return items; } @@ -102,7 +103,7 @@ public String toString() { */ public String toString(boolean includeByteArrayContents) { java.lang.StringBuilder sb = new java.lang.StringBuilder(); - sb.append("PullRequestFileChangeCollection("); + sb.append("CostAlertSubscriptionCollection("); sb.append("super=").append(super.toString()); sb.append("items=").append(String.valueOf(this.items)); sb.append(")"); @@ -114,11 +115,11 @@ public boolean equals(Object o) { if (this == o) { return true; } - if (!(o instanceof PullRequestFileChangeCollection)) { + if (!(o instanceof CostAlertSubscriptionCollection)) { return false; } - PullRequestFileChangeCollection other = (PullRequestFileChangeCollection) o; + CostAlertSubscriptionCollection other = (CostAlertSubscriptionCollection) o; return java.util.Objects.equals(this.items, other.items) && super.equals(other); } diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAlertSubscriptionMap.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAlertSubscriptionMap.java new file mode 100644 index 00000000000..7ad7d1b38ed --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAlertSubscriptionMap.java @@ -0,0 +1,316 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** + * The mapping of cost monitor to alert subscription along with thresholds.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = CostAlertSubscriptionMap.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class CostAlertSubscriptionMap + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({ + "operator", + "thresholdAbsoluteValue", + "thresholdRelativePercent", + "costAlertSubscriptionId" + }) + public CostAlertSubscriptionMap( + Operator operator, + Integer thresholdAbsoluteValue, + Integer thresholdRelativePercent, + String costAlertSubscriptionId) { + super(); + this.operator = operator; + this.thresholdAbsoluteValue = thresholdAbsoluteValue; + this.thresholdRelativePercent = thresholdRelativePercent; + this.costAlertSubscriptionId = costAlertSubscriptionId; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** The filter operator. Example: 'AND', 'OR'. */ + @com.fasterxml.jackson.annotation.JsonProperty("operator") + private Operator operator; + + /** + * The filter operator. Example: 'AND', 'OR'. + * + * @param operator the value to set + * @return this builder + */ + public Builder operator(Operator operator) { + this.operator = operator; + this.__explicitlySet__.add("operator"); + return this; + } + /** The absolute threshold value. */ + @com.fasterxml.jackson.annotation.JsonProperty("thresholdAbsoluteValue") + private Integer thresholdAbsoluteValue; + + /** + * The absolute threshold value. + * + * @param thresholdAbsoluteValue the value to set + * @return this builder + */ + public Builder thresholdAbsoluteValue(Integer thresholdAbsoluteValue) { + this.thresholdAbsoluteValue = thresholdAbsoluteValue; + this.__explicitlySet__.add("thresholdAbsoluteValue"); + return this; + } + /** The relative percentage threshold value. */ + @com.fasterxml.jackson.annotation.JsonProperty("thresholdRelativePercent") + private Integer thresholdRelativePercent; + + /** + * The relative percentage threshold value. + * + * @param thresholdRelativePercent the value to set + * @return this builder + */ + public Builder thresholdRelativePercent(Integer thresholdRelativePercent) { + this.thresholdRelativePercent = thresholdRelativePercent; + this.__explicitlySet__.add("thresholdRelativePercent"); + return this; + } + /** The costAlertSubscription ocid which the cost monitor alert maps to. */ + @com.fasterxml.jackson.annotation.JsonProperty("costAlertSubscriptionId") + private String costAlertSubscriptionId; + + /** + * The costAlertSubscription ocid which the cost monitor alert maps to. + * + * @param costAlertSubscriptionId the value to set + * @return this builder + */ + public Builder costAlertSubscriptionId(String costAlertSubscriptionId) { + this.costAlertSubscriptionId = costAlertSubscriptionId; + this.__explicitlySet__.add("costAlertSubscriptionId"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public CostAlertSubscriptionMap build() { + CostAlertSubscriptionMap model = + new CostAlertSubscriptionMap( + this.operator, + this.thresholdAbsoluteValue, + this.thresholdRelativePercent, + this.costAlertSubscriptionId); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(CostAlertSubscriptionMap model) { + if (model.wasPropertyExplicitlySet("operator")) { + this.operator(model.getOperator()); + } + if (model.wasPropertyExplicitlySet("thresholdAbsoluteValue")) { + this.thresholdAbsoluteValue(model.getThresholdAbsoluteValue()); + } + if (model.wasPropertyExplicitlySet("thresholdRelativePercent")) { + this.thresholdRelativePercent(model.getThresholdRelativePercent()); + } + if (model.wasPropertyExplicitlySet("costAlertSubscriptionId")) { + this.costAlertSubscriptionId(model.getCostAlertSubscriptionId()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** The filter operator. Example: 'AND', 'OR'. */ + public enum Operator implements com.oracle.bmc.http.internal.BmcEnum { + And("AND"), + Or("OR"), + + /** + * This value is used if a service returns a value for this enum that is not recognized by + * this version of the SDK. + */ + UnknownEnumValue(null); + + private static final org.slf4j.Logger LOG = + org.slf4j.LoggerFactory.getLogger(Operator.class); + + private final String value; + private static java.util.Map map; + + static { + map = new java.util.HashMap<>(); + for (Operator v : Operator.values()) { + if (v != UnknownEnumValue) { + map.put(v.getValue(), v); + } + } + } + + Operator(String value) { + this.value = value; + } + + @com.fasterxml.jackson.annotation.JsonValue + public String getValue() { + return value; + } + + @com.fasterxml.jackson.annotation.JsonCreator + public static Operator create(String key) { + if (map.containsKey(key)) { + return map.get(key); + } + LOG.warn( + "Received unknown value '{}' for enum 'Operator', returning UnknownEnumValue", + key); + return UnknownEnumValue; + } + }; + /** The filter operator. Example: 'AND', 'OR'. */ + @com.fasterxml.jackson.annotation.JsonProperty("operator") + private final Operator operator; + + /** + * The filter operator. Example: 'AND', 'OR'. + * + * @return the value + */ + public Operator getOperator() { + return operator; + } + + /** The absolute threshold value. */ + @com.fasterxml.jackson.annotation.JsonProperty("thresholdAbsoluteValue") + private final Integer thresholdAbsoluteValue; + + /** + * The absolute threshold value. + * + * @return the value + */ + public Integer getThresholdAbsoluteValue() { + return thresholdAbsoluteValue; + } + + /** The relative percentage threshold value. */ + @com.fasterxml.jackson.annotation.JsonProperty("thresholdRelativePercent") + private final Integer thresholdRelativePercent; + + /** + * The relative percentage threshold value. + * + * @return the value + */ + public Integer getThresholdRelativePercent() { + return thresholdRelativePercent; + } + + /** The costAlertSubscription ocid which the cost monitor alert maps to. */ + @com.fasterxml.jackson.annotation.JsonProperty("costAlertSubscriptionId") + private final String costAlertSubscriptionId; + + /** + * The costAlertSubscription ocid which the cost monitor alert maps to. + * + * @return the value + */ + public String getCostAlertSubscriptionId() { + return costAlertSubscriptionId; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("CostAlertSubscriptionMap("); + sb.append("super=").append(super.toString()); + sb.append("operator=").append(String.valueOf(this.operator)); + sb.append(", thresholdAbsoluteValue=").append(String.valueOf(this.thresholdAbsoluteValue)); + sb.append(", thresholdRelativePercent=") + .append(String.valueOf(this.thresholdRelativePercent)); + sb.append(", costAlertSubscriptionId=") + .append(String.valueOf(this.costAlertSubscriptionId)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CostAlertSubscriptionMap)) { + return false; + } + + CostAlertSubscriptionMap other = (CostAlertSubscriptionMap) o; + return java.util.Objects.equals(this.operator, other.operator) + && java.util.Objects.equals( + this.thresholdAbsoluteValue, other.thresholdAbsoluteValue) + && java.util.Objects.equals( + this.thresholdRelativePercent, other.thresholdRelativePercent) + && java.util.Objects.equals( + this.costAlertSubscriptionId, other.costAlertSubscriptionId) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.operator == null ? 43 : this.operator.hashCode()); + result = + (result * PRIME) + + (this.thresholdAbsoluteValue == null + ? 43 + : this.thresholdAbsoluteValue.hashCode()); + result = + (result * PRIME) + + (this.thresholdRelativePercent == null + ? 43 + : this.thresholdRelativePercent.hashCode()); + result = + (result * PRIME) + + (this.costAlertSubscriptionId == null + ? 43 + : this.costAlertSubscriptionId.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAlertSubscriptionSummary.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAlertSubscriptionSummary.java new file mode 100644 index 00000000000..1c4eb14afac --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAlertSubscriptionSummary.java @@ -0,0 +1,512 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** + * A CostAlertSubscription.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = CostAlertSubscriptionSummary.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class CostAlertSubscriptionSummary + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({ + "id", + "compartmentId", + "name", + "channelTypes", + "timeCreated", + "lifecycleState", + "definedTags", + "freeformTags", + "systemTags" + }) + public CostAlertSubscriptionSummary( + String id, + String compartmentId, + String name, + String channelTypes, + java.util.Date timeCreated, + CostAlertSubscription.LifecycleState lifecycleState, + java.util.Map> definedTags, + java.util.Map freeformTags, + java.util.Map> systemTags) { + super(); + this.id = id; + this.compartmentId = compartmentId; + this.name = name; + this.channelTypes = channelTypes; + this.timeCreated = timeCreated; + this.lifecycleState = lifecycleState; + this.definedTags = definedTags; + this.freeformTags = freeformTags; + this.systemTags = systemTags; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** The OCID of the Cost Alert Subscription. */ + @com.fasterxml.jackson.annotation.JsonProperty("id") + private String id; + + /** + * The OCID of the Cost Alert Subscription. + * + * @param id the value to set + * @return this builder + */ + public Builder id(String id) { + this.id = id; + this.__explicitlySet__.add("id"); + return this; + } + /** The OCID of the compartment which hold the cost alert subscription resource. */ + @com.fasterxml.jackson.annotation.JsonProperty("compartmentId") + private String compartmentId; + + /** + * The OCID of the compartment which hold the cost alert subscription resource. + * + * @param compartmentId the value to set + * @return this builder + */ + public Builder compartmentId(String compartmentId) { + this.compartmentId = compartmentId; + this.__explicitlySet__.add("compartmentId"); + return this; + } + /** The name of the cost alert subscription. Avoid entering confidential information. */ + @com.fasterxml.jackson.annotation.JsonProperty("name") + private String name; + + /** + * The name of the cost alert subscription. Avoid entering confidential information. + * + * @param name the value to set + * @return this builder + */ + public Builder name(String name) { + this.name = name; + this.__explicitlySet__.add("name"); + return this; + } + /** The notification channels types string. */ + @com.fasterxml.jackson.annotation.JsonProperty("channelTypes") + private String channelTypes; + + /** + * The notification channels types string. + * + * @param channelTypes the value to set + * @return this builder + */ + public Builder channelTypes(String channelTypes) { + this.channelTypes = channelTypes; + this.__explicitlySet__.add("channelTypes"); + return this; + } + /** The time that the cost alert subscription was created. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeCreated") + private java.util.Date timeCreated; + + /** + * The time that the cost alert subscription was created. + * + * @param timeCreated the value to set + * @return this builder + */ + public Builder timeCreated(java.util.Date timeCreated) { + this.timeCreated = timeCreated; + this.__explicitlySet__.add("timeCreated"); + return this; + } + /** The current state of the cost alert subscription. */ + @com.fasterxml.jackson.annotation.JsonProperty("lifecycleState") + private CostAlertSubscription.LifecycleState lifecycleState; + + /** + * The current state of the cost alert subscription. + * + * @param lifecycleState the value to set + * @return this builder + */ + public Builder lifecycleState(CostAlertSubscription.LifecycleState lifecycleState) { + this.lifecycleState = lifecycleState; + this.__explicitlySet__.add("lifecycleState"); + return this; + } + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @param definedTags the value to set + * @return this builder + */ + public Builder definedTags( + java.util.Map> definedTags) { + this.definedTags = definedTags; + this.__explicitlySet__.add("definedTags"); + return this; + } + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @param freeformTags the value to set + * @return this builder + */ + public Builder freeformTags(java.util.Map freeformTags) { + this.freeformTags = freeformTags; + this.__explicitlySet__.add("freeformTags"); + return this; + } + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System + * tags can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("systemTags") + private java.util.Map> systemTags; + + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System + * tags can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + * + * @param systemTags the value to set + * @return this builder + */ + public Builder systemTags(java.util.Map> systemTags) { + this.systemTags = systemTags; + this.__explicitlySet__.add("systemTags"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public CostAlertSubscriptionSummary build() { + CostAlertSubscriptionSummary model = + new CostAlertSubscriptionSummary( + this.id, + this.compartmentId, + this.name, + this.channelTypes, + this.timeCreated, + this.lifecycleState, + this.definedTags, + this.freeformTags, + this.systemTags); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(CostAlertSubscriptionSummary model) { + if (model.wasPropertyExplicitlySet("id")) { + this.id(model.getId()); + } + if (model.wasPropertyExplicitlySet("compartmentId")) { + this.compartmentId(model.getCompartmentId()); + } + if (model.wasPropertyExplicitlySet("name")) { + this.name(model.getName()); + } + if (model.wasPropertyExplicitlySet("channelTypes")) { + this.channelTypes(model.getChannelTypes()); + } + if (model.wasPropertyExplicitlySet("timeCreated")) { + this.timeCreated(model.getTimeCreated()); + } + if (model.wasPropertyExplicitlySet("lifecycleState")) { + this.lifecycleState(model.getLifecycleState()); + } + if (model.wasPropertyExplicitlySet("definedTags")) { + this.definedTags(model.getDefinedTags()); + } + if (model.wasPropertyExplicitlySet("freeformTags")) { + this.freeformTags(model.getFreeformTags()); + } + if (model.wasPropertyExplicitlySet("systemTags")) { + this.systemTags(model.getSystemTags()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** The OCID of the Cost Alert Subscription. */ + @com.fasterxml.jackson.annotation.JsonProperty("id") + private final String id; + + /** + * The OCID of the Cost Alert Subscription. + * + * @return the value + */ + public String getId() { + return id; + } + + /** The OCID of the compartment which hold the cost alert subscription resource. */ + @com.fasterxml.jackson.annotation.JsonProperty("compartmentId") + private final String compartmentId; + + /** + * The OCID of the compartment which hold the cost alert subscription resource. + * + * @return the value + */ + public String getCompartmentId() { + return compartmentId; + } + + /** The name of the cost alert subscription. Avoid entering confidential information. */ + @com.fasterxml.jackson.annotation.JsonProperty("name") + private final String name; + + /** + * The name of the cost alert subscription. Avoid entering confidential information. + * + * @return the value + */ + public String getName() { + return name; + } + + /** The notification channels types string. */ + @com.fasterxml.jackson.annotation.JsonProperty("channelTypes") + private final String channelTypes; + + /** + * The notification channels types string. + * + * @return the value + */ + public String getChannelTypes() { + return channelTypes; + } + + /** The time that the cost alert subscription was created. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeCreated") + private final java.util.Date timeCreated; + + /** + * The time that the cost alert subscription was created. + * + * @return the value + */ + public java.util.Date getTimeCreated() { + return timeCreated; + } + + /** The current state of the cost alert subscription. */ + @com.fasterxml.jackson.annotation.JsonProperty("lifecycleState") + private final CostAlertSubscription.LifecycleState lifecycleState; + + /** + * The current state of the cost alert subscription. + * + * @return the value + */ + public CostAlertSubscription.LifecycleState getLifecycleState() { + return lifecycleState; + } + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private final java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @return the value + */ + public java.util.Map> getDefinedTags() { + return definedTags; + } + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private final java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @return the value + */ + public java.util.Map getFreeformTags() { + return freeformTags; + } + + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags + * can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("systemTags") + private final java.util.Map> systemTags; + + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags + * can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + * + * @return the value + */ + public java.util.Map> getSystemTags() { + return systemTags; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("CostAlertSubscriptionSummary("); + sb.append("super=").append(super.toString()); + sb.append("id=").append(String.valueOf(this.id)); + sb.append(", compartmentId=").append(String.valueOf(this.compartmentId)); + sb.append(", name=").append(String.valueOf(this.name)); + sb.append(", channelTypes=").append(String.valueOf(this.channelTypes)); + sb.append(", timeCreated=").append(String.valueOf(this.timeCreated)); + sb.append(", lifecycleState=").append(String.valueOf(this.lifecycleState)); + sb.append(", definedTags=").append(String.valueOf(this.definedTags)); + sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); + sb.append(", systemTags=").append(String.valueOf(this.systemTags)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CostAlertSubscriptionSummary)) { + return false; + } + + CostAlertSubscriptionSummary other = (CostAlertSubscriptionSummary) o; + return java.util.Objects.equals(this.id, other.id) + && java.util.Objects.equals(this.compartmentId, other.compartmentId) + && java.util.Objects.equals(this.name, other.name) + && java.util.Objects.equals(this.channelTypes, other.channelTypes) + && java.util.Objects.equals(this.timeCreated, other.timeCreated) + && java.util.Objects.equals(this.lifecycleState, other.lifecycleState) + && java.util.Objects.equals(this.definedTags, other.definedTags) + && java.util.Objects.equals(this.freeformTags, other.freeformTags) + && java.util.Objects.equals(this.systemTags, other.systemTags) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.id == null ? 43 : this.id.hashCode()); + result = + (result * PRIME) + + (this.compartmentId == null ? 43 : this.compartmentId.hashCode()); + result = (result * PRIME) + (this.name == null ? 43 : this.name.hashCode()); + result = (result * PRIME) + (this.channelTypes == null ? 43 : this.channelTypes.hashCode()); + result = (result * PRIME) + (this.timeCreated == null ? 43 : this.timeCreated.hashCode()); + result = + (result * PRIME) + + (this.lifecycleState == null ? 43 : this.lifecycleState.hashCode()); + result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); + result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); + result = (result * PRIME) + (this.systemTags == null ? 43 : this.systemTags.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyEvent.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyEvent.java new file mode 100644 index 00000000000..fbc666d37fd --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyEvent.java @@ -0,0 +1,946 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** + * A CostAnomalyEvent.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize(builder = CostAnomalyEvent.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class CostAnomalyEvent + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({ + "id", + "costAnomalyName", + "compartmentId", + "lifecycleState", + "costMonitorId", + "costMonitorName", + "costMonitorType", + "targetResourceFilter", + "timeAnomalyEventDate", + "costImpact", + "costVariancePercentage", + "rootCauseDetail", + "feedbackResponse", + "timeCreated", + "timeUpdated", + "definedTags", + "freeformTags", + "systemTags" + }) + public CostAnomalyEvent( + String id, + String costAnomalyName, + String compartmentId, + LifecycleState lifecycleState, + String costMonitorId, + String costMonitorName, + MonitorType costMonitorType, + TargetResourceFilter targetResourceFilter, + java.util.Date timeAnomalyEventDate, + Double costImpact, + Double costVariancePercentage, + RootCauseDetail rootCauseDetail, + FeedbackResponse feedbackResponse, + java.util.Date timeCreated, + java.util.Date timeUpdated, + java.util.Map> definedTags, + java.util.Map freeformTags, + java.util.Map> systemTags) { + super(); + this.id = id; + this.costAnomalyName = costAnomalyName; + this.compartmentId = compartmentId; + this.lifecycleState = lifecycleState; + this.costMonitorId = costMonitorId; + this.costMonitorName = costMonitorName; + this.costMonitorType = costMonitorType; + this.targetResourceFilter = targetResourceFilter; + this.timeAnomalyEventDate = timeAnomalyEventDate; + this.costImpact = costImpact; + this.costVariancePercentage = costVariancePercentage; + this.rootCauseDetail = rootCauseDetail; + this.feedbackResponse = feedbackResponse; + this.timeCreated = timeCreated; + this.timeUpdated = timeUpdated; + this.definedTags = definedTags; + this.freeformTags = freeformTags; + this.systemTags = systemTags; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** The OCID of the Cost Anomaly Event. */ + @com.fasterxml.jackson.annotation.JsonProperty("id") + private String id; + + /** + * The OCID of the Cost Anomaly Event. + * + * @param id the value to set + * @return this builder + */ + public Builder id(String id) { + this.id = id; + this.__explicitlySet__.add("id"); + return this; + } + /** The name of the associated cost monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("costAnomalyName") + private String costAnomalyName; + + /** + * The name of the associated cost monitor. + * + * @param costAnomalyName the value to set + * @return this builder + */ + public Builder costAnomalyName(String costAnomalyName) { + this.costAnomalyName = costAnomalyName; + this.__explicitlySet__.add("costAnomalyName"); + return this; + } + /** The OCID of the compartment. */ + @com.fasterxml.jackson.annotation.JsonProperty("compartmentId") + private String compartmentId; + + /** + * The OCID of the compartment. + * + * @param compartmentId the value to set + * @return this builder + */ + public Builder compartmentId(String compartmentId) { + this.compartmentId = compartmentId; + this.__explicitlySet__.add("compartmentId"); + return this; + } + /** The current state of the cost anomaly event. */ + @com.fasterxml.jackson.annotation.JsonProperty("lifecycleState") + private LifecycleState lifecycleState; + + /** + * The current state of the cost anomaly event. + * + * @param lifecycleState the value to set + * @return this builder + */ + public Builder lifecycleState(LifecycleState lifecycleState) { + this.lifecycleState = lifecycleState; + this.__explicitlySet__.add("lifecycleState"); + return this; + } + /** The OCID of the associated cost monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("costMonitorId") + private String costMonitorId; + + /** + * The OCID of the associated cost monitor. + * + * @param costMonitorId the value to set + * @return this builder + */ + public Builder costMonitorId(String costMonitorId) { + this.costMonitorId = costMonitorId; + this.__explicitlySet__.add("costMonitorId"); + return this; + } + /** The name of the associated cost monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("costMonitorName") + private String costMonitorName; + + /** + * The name of the associated cost monitor. + * + * @param costMonitorName the value to set + * @return this builder + */ + public Builder costMonitorName(String costMonitorName) { + this.costMonitorName = costMonitorName; + this.__explicitlySet__.add("costMonitorName"); + return this; + } + /** Type of cost monitor */ + @com.fasterxml.jackson.annotation.JsonProperty("costMonitorType") + private MonitorType costMonitorType; + + /** + * Type of cost monitor + * + * @param costMonitorType the value to set + * @return this builder + */ + public Builder costMonitorType(MonitorType costMonitorType) { + this.costMonitorType = costMonitorType; + this.__explicitlySet__.add("costMonitorType"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("targetResourceFilter") + private TargetResourceFilter targetResourceFilter; + + public Builder targetResourceFilter(TargetResourceFilter targetResourceFilter) { + this.targetResourceFilter = targetResourceFilter; + this.__explicitlySet__.add("targetResourceFilter"); + return this; + } + /** The event date of the anomaly event. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeAnomalyEventDate") + private java.util.Date timeAnomalyEventDate; + + /** + * The event date of the anomaly event. + * + * @param timeAnomalyEventDate the value to set + * @return this builder + */ + public Builder timeAnomalyEventDate(java.util.Date timeAnomalyEventDate) { + this.timeAnomalyEventDate = timeAnomalyEventDate; + this.__explicitlySet__.add("timeAnomalyEventDate"); + return this; + } + /** The cost impact of the detected anomaly. */ + @com.fasterxml.jackson.annotation.JsonProperty("costImpact") + private Double costImpact; + + /** + * The cost impact of the detected anomaly. + * + * @param costImpact the value to set + * @return this builder + */ + public Builder costImpact(Double costImpact) { + this.costImpact = costImpact; + this.__explicitlySet__.add("costImpact"); + return this; + } + /** The cost variance percentage of the detected anomaly. */ + @com.fasterxml.jackson.annotation.JsonProperty("costVariancePercentage") + private Double costVariancePercentage; + + /** + * The cost variance percentage of the detected anomaly. + * + * @param costVariancePercentage the value to set + * @return this builder + */ + public Builder costVariancePercentage(Double costVariancePercentage) { + this.costVariancePercentage = costVariancePercentage; + this.__explicitlySet__.add("costVariancePercentage"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("rootCauseDetail") + private RootCauseDetail rootCauseDetail; + + public Builder rootCauseDetail(RootCauseDetail rootCauseDetail) { + this.rootCauseDetail = rootCauseDetail; + this.__explicitlySet__.add("rootCauseDetail"); + return this; + } + /** The feedback response for the cost anomaly event. */ + @com.fasterxml.jackson.annotation.JsonProperty("feedbackResponse") + private FeedbackResponse feedbackResponse; + + /** + * The feedback response for the cost anomaly event. + * + * @param feedbackResponse the value to set + * @return this builder + */ + public Builder feedbackResponse(FeedbackResponse feedbackResponse) { + this.feedbackResponse = feedbackResponse; + this.__explicitlySet__.add("feedbackResponse"); + return this; + } + /** The created time of the cost anomaly event. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeCreated") + private java.util.Date timeCreated; + + /** + * The created time of the cost anomaly event. + * + * @param timeCreated the value to set + * @return this builder + */ + public Builder timeCreated(java.util.Date timeCreated) { + this.timeCreated = timeCreated; + this.__explicitlySet__.add("timeCreated"); + return this; + } + /** The updated time of the cost anomaly event. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeUpdated") + private java.util.Date timeUpdated; + + /** + * The updated time of the cost anomaly event. + * + * @param timeUpdated the value to set + * @return this builder + */ + public Builder timeUpdated(java.util.Date timeUpdated) { + this.timeUpdated = timeUpdated; + this.__explicitlySet__.add("timeUpdated"); + return this; + } + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @param definedTags the value to set + * @return this builder + */ + public Builder definedTags( + java.util.Map> definedTags) { + this.definedTags = definedTags; + this.__explicitlySet__.add("definedTags"); + return this; + } + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @param freeformTags the value to set + * @return this builder + */ + public Builder freeformTags(java.util.Map freeformTags) { + this.freeformTags = freeformTags; + this.__explicitlySet__.add("freeformTags"); + return this; + } + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System + * tags can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("systemTags") + private java.util.Map> systemTags; + + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System + * tags can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + * + * @param systemTags the value to set + * @return this builder + */ + public Builder systemTags(java.util.Map> systemTags) { + this.systemTags = systemTags; + this.__explicitlySet__.add("systemTags"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public CostAnomalyEvent build() { + CostAnomalyEvent model = + new CostAnomalyEvent( + this.id, + this.costAnomalyName, + this.compartmentId, + this.lifecycleState, + this.costMonitorId, + this.costMonitorName, + this.costMonitorType, + this.targetResourceFilter, + this.timeAnomalyEventDate, + this.costImpact, + this.costVariancePercentage, + this.rootCauseDetail, + this.feedbackResponse, + this.timeCreated, + this.timeUpdated, + this.definedTags, + this.freeformTags, + this.systemTags); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(CostAnomalyEvent model) { + if (model.wasPropertyExplicitlySet("id")) { + this.id(model.getId()); + } + if (model.wasPropertyExplicitlySet("costAnomalyName")) { + this.costAnomalyName(model.getCostAnomalyName()); + } + if (model.wasPropertyExplicitlySet("compartmentId")) { + this.compartmentId(model.getCompartmentId()); + } + if (model.wasPropertyExplicitlySet("lifecycleState")) { + this.lifecycleState(model.getLifecycleState()); + } + if (model.wasPropertyExplicitlySet("costMonitorId")) { + this.costMonitorId(model.getCostMonitorId()); + } + if (model.wasPropertyExplicitlySet("costMonitorName")) { + this.costMonitorName(model.getCostMonitorName()); + } + if (model.wasPropertyExplicitlySet("costMonitorType")) { + this.costMonitorType(model.getCostMonitorType()); + } + if (model.wasPropertyExplicitlySet("targetResourceFilter")) { + this.targetResourceFilter(model.getTargetResourceFilter()); + } + if (model.wasPropertyExplicitlySet("timeAnomalyEventDate")) { + this.timeAnomalyEventDate(model.getTimeAnomalyEventDate()); + } + if (model.wasPropertyExplicitlySet("costImpact")) { + this.costImpact(model.getCostImpact()); + } + if (model.wasPropertyExplicitlySet("costVariancePercentage")) { + this.costVariancePercentage(model.getCostVariancePercentage()); + } + if (model.wasPropertyExplicitlySet("rootCauseDetail")) { + this.rootCauseDetail(model.getRootCauseDetail()); + } + if (model.wasPropertyExplicitlySet("feedbackResponse")) { + this.feedbackResponse(model.getFeedbackResponse()); + } + if (model.wasPropertyExplicitlySet("timeCreated")) { + this.timeCreated(model.getTimeCreated()); + } + if (model.wasPropertyExplicitlySet("timeUpdated")) { + this.timeUpdated(model.getTimeUpdated()); + } + if (model.wasPropertyExplicitlySet("definedTags")) { + this.definedTags(model.getDefinedTags()); + } + if (model.wasPropertyExplicitlySet("freeformTags")) { + this.freeformTags(model.getFreeformTags()); + } + if (model.wasPropertyExplicitlySet("systemTags")) { + this.systemTags(model.getSystemTags()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** The OCID of the Cost Anomaly Event. */ + @com.fasterxml.jackson.annotation.JsonProperty("id") + private final String id; + + /** + * The OCID of the Cost Anomaly Event. + * + * @return the value + */ + public String getId() { + return id; + } + + /** The name of the associated cost monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("costAnomalyName") + private final String costAnomalyName; + + /** + * The name of the associated cost monitor. + * + * @return the value + */ + public String getCostAnomalyName() { + return costAnomalyName; + } + + /** The OCID of the compartment. */ + @com.fasterxml.jackson.annotation.JsonProperty("compartmentId") + private final String compartmentId; + + /** + * The OCID of the compartment. + * + * @return the value + */ + public String getCompartmentId() { + return compartmentId; + } + + /** The current state of the cost anomaly event. */ + public enum LifecycleState implements com.oracle.bmc.http.internal.BmcEnum { + Active("ACTIVE"), + Inactive("INACTIVE"), + + /** + * This value is used if a service returns a value for this enum that is not recognized by + * this version of the SDK. + */ + UnknownEnumValue(null); + + private static final org.slf4j.Logger LOG = + org.slf4j.LoggerFactory.getLogger(LifecycleState.class); + + private final String value; + private static java.util.Map map; + + static { + map = new java.util.HashMap<>(); + for (LifecycleState v : LifecycleState.values()) { + if (v != UnknownEnumValue) { + map.put(v.getValue(), v); + } + } + } + + LifecycleState(String value) { + this.value = value; + } + + @com.fasterxml.jackson.annotation.JsonValue + public String getValue() { + return value; + } + + @com.fasterxml.jackson.annotation.JsonCreator + public static LifecycleState create(String key) { + if (map.containsKey(key)) { + return map.get(key); + } + LOG.warn( + "Received unknown value '{}' for enum 'LifecycleState', returning UnknownEnumValue", + key); + return UnknownEnumValue; + } + }; + /** The current state of the cost anomaly event. */ + @com.fasterxml.jackson.annotation.JsonProperty("lifecycleState") + private final LifecycleState lifecycleState; + + /** + * The current state of the cost anomaly event. + * + * @return the value + */ + public LifecycleState getLifecycleState() { + return lifecycleState; + } + + /** The OCID of the associated cost monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("costMonitorId") + private final String costMonitorId; + + /** + * The OCID of the associated cost monitor. + * + * @return the value + */ + public String getCostMonitorId() { + return costMonitorId; + } + + /** The name of the associated cost monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("costMonitorName") + private final String costMonitorName; + + /** + * The name of the associated cost monitor. + * + * @return the value + */ + public String getCostMonitorName() { + return costMonitorName; + } + + /** Type of cost monitor */ + @com.fasterxml.jackson.annotation.JsonProperty("costMonitorType") + private final MonitorType costMonitorType; + + /** + * Type of cost monitor + * + * @return the value + */ + public MonitorType getCostMonitorType() { + return costMonitorType; + } + + @com.fasterxml.jackson.annotation.JsonProperty("targetResourceFilter") + private final TargetResourceFilter targetResourceFilter; + + public TargetResourceFilter getTargetResourceFilter() { + return targetResourceFilter; + } + + /** The event date of the anomaly event. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeAnomalyEventDate") + private final java.util.Date timeAnomalyEventDate; + + /** + * The event date of the anomaly event. + * + * @return the value + */ + public java.util.Date getTimeAnomalyEventDate() { + return timeAnomalyEventDate; + } + + /** The cost impact of the detected anomaly. */ + @com.fasterxml.jackson.annotation.JsonProperty("costImpact") + private final Double costImpact; + + /** + * The cost impact of the detected anomaly. + * + * @return the value + */ + public Double getCostImpact() { + return costImpact; + } + + /** The cost variance percentage of the detected anomaly. */ + @com.fasterxml.jackson.annotation.JsonProperty("costVariancePercentage") + private final Double costVariancePercentage; + + /** + * The cost variance percentage of the detected anomaly. + * + * @return the value + */ + public Double getCostVariancePercentage() { + return costVariancePercentage; + } + + @com.fasterxml.jackson.annotation.JsonProperty("rootCauseDetail") + private final RootCauseDetail rootCauseDetail; + + public RootCauseDetail getRootCauseDetail() { + return rootCauseDetail; + } + + /** The feedback response for the cost anomaly event. */ + public enum FeedbackResponse implements com.oracle.bmc.http.internal.BmcEnum { + AccurateAnomaly("ACCURATE_ANOMALY"), + ExpectedAnomaly("EXPECTED_ANOMALY"), + + /** + * This value is used if a service returns a value for this enum that is not recognized by + * this version of the SDK. + */ + UnknownEnumValue(null); + + private static final org.slf4j.Logger LOG = + org.slf4j.LoggerFactory.getLogger(FeedbackResponse.class); + + private final String value; + private static java.util.Map map; + + static { + map = new java.util.HashMap<>(); + for (FeedbackResponse v : FeedbackResponse.values()) { + if (v != UnknownEnumValue) { + map.put(v.getValue(), v); + } + } + } + + FeedbackResponse(String value) { + this.value = value; + } + + @com.fasterxml.jackson.annotation.JsonValue + public String getValue() { + return value; + } + + @com.fasterxml.jackson.annotation.JsonCreator + public static FeedbackResponse create(String key) { + if (map.containsKey(key)) { + return map.get(key); + } + LOG.warn( + "Received unknown value '{}' for enum 'FeedbackResponse', returning UnknownEnumValue", + key); + return UnknownEnumValue; + } + }; + /** The feedback response for the cost anomaly event. */ + @com.fasterxml.jackson.annotation.JsonProperty("feedbackResponse") + private final FeedbackResponse feedbackResponse; + + /** + * The feedback response for the cost anomaly event. + * + * @return the value + */ + public FeedbackResponse getFeedbackResponse() { + return feedbackResponse; + } + + /** The created time of the cost anomaly event. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeCreated") + private final java.util.Date timeCreated; + + /** + * The created time of the cost anomaly event. + * + * @return the value + */ + public java.util.Date getTimeCreated() { + return timeCreated; + } + + /** The updated time of the cost anomaly event. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeUpdated") + private final java.util.Date timeUpdated; + + /** + * The updated time of the cost anomaly event. + * + * @return the value + */ + public java.util.Date getTimeUpdated() { + return timeUpdated; + } + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private final java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @return the value + */ + public java.util.Map> getDefinedTags() { + return definedTags; + } + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private final java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @return the value + */ + public java.util.Map getFreeformTags() { + return freeformTags; + } + + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags + * can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("systemTags") + private final java.util.Map> systemTags; + + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags + * can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + * + * @return the value + */ + public java.util.Map> getSystemTags() { + return systemTags; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("CostAnomalyEvent("); + sb.append("super=").append(super.toString()); + sb.append("id=").append(String.valueOf(this.id)); + sb.append(", costAnomalyName=").append(String.valueOf(this.costAnomalyName)); + sb.append(", compartmentId=").append(String.valueOf(this.compartmentId)); + sb.append(", lifecycleState=").append(String.valueOf(this.lifecycleState)); + sb.append(", costMonitorId=").append(String.valueOf(this.costMonitorId)); + sb.append(", costMonitorName=").append(String.valueOf(this.costMonitorName)); + sb.append(", costMonitorType=").append(String.valueOf(this.costMonitorType)); + sb.append(", targetResourceFilter=").append(String.valueOf(this.targetResourceFilter)); + sb.append(", timeAnomalyEventDate=").append(String.valueOf(this.timeAnomalyEventDate)); + sb.append(", costImpact=").append(String.valueOf(this.costImpact)); + sb.append(", costVariancePercentage=").append(String.valueOf(this.costVariancePercentage)); + sb.append(", rootCauseDetail=").append(String.valueOf(this.rootCauseDetail)); + sb.append(", feedbackResponse=").append(String.valueOf(this.feedbackResponse)); + sb.append(", timeCreated=").append(String.valueOf(this.timeCreated)); + sb.append(", timeUpdated=").append(String.valueOf(this.timeUpdated)); + sb.append(", definedTags=").append(String.valueOf(this.definedTags)); + sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); + sb.append(", systemTags=").append(String.valueOf(this.systemTags)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CostAnomalyEvent)) { + return false; + } + + CostAnomalyEvent other = (CostAnomalyEvent) o; + return java.util.Objects.equals(this.id, other.id) + && java.util.Objects.equals(this.costAnomalyName, other.costAnomalyName) + && java.util.Objects.equals(this.compartmentId, other.compartmentId) + && java.util.Objects.equals(this.lifecycleState, other.lifecycleState) + && java.util.Objects.equals(this.costMonitorId, other.costMonitorId) + && java.util.Objects.equals(this.costMonitorName, other.costMonitorName) + && java.util.Objects.equals(this.costMonitorType, other.costMonitorType) + && java.util.Objects.equals(this.targetResourceFilter, other.targetResourceFilter) + && java.util.Objects.equals(this.timeAnomalyEventDate, other.timeAnomalyEventDate) + && java.util.Objects.equals(this.costImpact, other.costImpact) + && java.util.Objects.equals( + this.costVariancePercentage, other.costVariancePercentage) + && java.util.Objects.equals(this.rootCauseDetail, other.rootCauseDetail) + && java.util.Objects.equals(this.feedbackResponse, other.feedbackResponse) + && java.util.Objects.equals(this.timeCreated, other.timeCreated) + && java.util.Objects.equals(this.timeUpdated, other.timeUpdated) + && java.util.Objects.equals(this.definedTags, other.definedTags) + && java.util.Objects.equals(this.freeformTags, other.freeformTags) + && java.util.Objects.equals(this.systemTags, other.systemTags) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.id == null ? 43 : this.id.hashCode()); + result = + (result * PRIME) + + (this.costAnomalyName == null ? 43 : this.costAnomalyName.hashCode()); + result = + (result * PRIME) + + (this.compartmentId == null ? 43 : this.compartmentId.hashCode()); + result = + (result * PRIME) + + (this.lifecycleState == null ? 43 : this.lifecycleState.hashCode()); + result = + (result * PRIME) + + (this.costMonitorId == null ? 43 : this.costMonitorId.hashCode()); + result = + (result * PRIME) + + (this.costMonitorName == null ? 43 : this.costMonitorName.hashCode()); + result = + (result * PRIME) + + (this.costMonitorType == null ? 43 : this.costMonitorType.hashCode()); + result = + (result * PRIME) + + (this.targetResourceFilter == null + ? 43 + : this.targetResourceFilter.hashCode()); + result = + (result * PRIME) + + (this.timeAnomalyEventDate == null + ? 43 + : this.timeAnomalyEventDate.hashCode()); + result = (result * PRIME) + (this.costImpact == null ? 43 : this.costImpact.hashCode()); + result = + (result * PRIME) + + (this.costVariancePercentage == null + ? 43 + : this.costVariancePercentage.hashCode()); + result = + (result * PRIME) + + (this.rootCauseDetail == null ? 43 : this.rootCauseDetail.hashCode()); + result = + (result * PRIME) + + (this.feedbackResponse == null ? 43 : this.feedbackResponse.hashCode()); + result = (result * PRIME) + (this.timeCreated == null ? 43 : this.timeCreated.hashCode()); + result = (result * PRIME) + (this.timeUpdated == null ? 43 : this.timeUpdated.hashCode()); + result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); + result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); + result = (result * PRIME) + (this.systemTags == null ? 43 : this.systemTags.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyEventAnalyticCollection.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyEventAnalyticCollection.java new file mode 100644 index 00000000000..8a8fc3757b4 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyEventAnalyticCollection.java @@ -0,0 +1,135 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** + * Results of a CostAnomalyEventAnalytics search.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = CostAnomalyEventAnalyticCollection.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class CostAnomalyEventAnalyticCollection + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({"items"}) + public CostAnomalyEventAnalyticCollection( + java.util.List items) { + super(); + this.items = items; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** The list of CostAnomalyEvent Analytic summary. */ + @com.fasterxml.jackson.annotation.JsonProperty("items") + private java.util.List items; + + /** + * The list of CostAnomalyEvent Analytic summary. + * + * @param items the value to set + * @return this builder + */ + public Builder items(java.util.List items) { + this.items = items; + this.__explicitlySet__.add("items"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public CostAnomalyEventAnalyticCollection build() { + CostAnomalyEventAnalyticCollection model = + new CostAnomalyEventAnalyticCollection(this.items); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(CostAnomalyEventAnalyticCollection model) { + if (model.wasPropertyExplicitlySet("items")) { + this.items(model.getItems()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** The list of CostAnomalyEvent Analytic summary. */ + @com.fasterxml.jackson.annotation.JsonProperty("items") + private final java.util.List items; + + /** + * The list of CostAnomalyEvent Analytic summary. + * + * @return the value + */ + public java.util.List getItems() { + return items; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("CostAnomalyEventAnalyticCollection("); + sb.append("super=").append(super.toString()); + sb.append("items=").append(String.valueOf(this.items)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CostAnomalyEventAnalyticCollection)) { + return false; + } + + CostAnomalyEventAnalyticCollection other = (CostAnomalyEventAnalyticCollection) o; + return java.util.Objects.equals(this.items, other.items) && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.items == null ? 43 : this.items.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyEventAnalyticSummary.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyEventAnalyticSummary.java new file mode 100644 index 00000000000..54d1ad207e5 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyEventAnalyticSummary.java @@ -0,0 +1,213 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** + * A CostAnomalyEventAnalyticSummary.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = CostAnomalyEventAnalyticSummary.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class CostAnomalyEventAnalyticSummary + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({"count", "averageCostImpact", "averageCostVariance"}) + public CostAnomalyEventAnalyticSummary( + Integer count, Double averageCostImpact, Double averageCostVariance) { + super(); + this.count = count; + this.averageCostImpact = averageCostImpact; + this.averageCostVariance = averageCostVariance; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** The number of cost anomaly events in the given time period. */ + @com.fasterxml.jackson.annotation.JsonProperty("count") + private Integer count; + + /** + * The number of cost anomaly events in the given time period. + * + * @param count the value to set + * @return this builder + */ + public Builder count(Integer count) { + this.count = count; + this.__explicitlySet__.add("count"); + return this; + } + /** The average cost impact of the anomaly events in the given time period. */ + @com.fasterxml.jackson.annotation.JsonProperty("averageCostImpact") + private Double averageCostImpact; + + /** + * The average cost impact of the anomaly events in the given time period. + * + * @param averageCostImpact the value to set + * @return this builder + */ + public Builder averageCostImpact(Double averageCostImpact) { + this.averageCostImpact = averageCostImpact; + this.__explicitlySet__.add("averageCostImpact"); + return this; + } + /** The average cost variance of the anomaly events in the given time period. */ + @com.fasterxml.jackson.annotation.JsonProperty("averageCostVariance") + private Double averageCostVariance; + + /** + * The average cost variance of the anomaly events in the given time period. + * + * @param averageCostVariance the value to set + * @return this builder + */ + public Builder averageCostVariance(Double averageCostVariance) { + this.averageCostVariance = averageCostVariance; + this.__explicitlySet__.add("averageCostVariance"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public CostAnomalyEventAnalyticSummary build() { + CostAnomalyEventAnalyticSummary model = + new CostAnomalyEventAnalyticSummary( + this.count, this.averageCostImpact, this.averageCostVariance); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(CostAnomalyEventAnalyticSummary model) { + if (model.wasPropertyExplicitlySet("count")) { + this.count(model.getCount()); + } + if (model.wasPropertyExplicitlySet("averageCostImpact")) { + this.averageCostImpact(model.getAverageCostImpact()); + } + if (model.wasPropertyExplicitlySet("averageCostVariance")) { + this.averageCostVariance(model.getAverageCostVariance()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** The number of cost anomaly events in the given time period. */ + @com.fasterxml.jackson.annotation.JsonProperty("count") + private final Integer count; + + /** + * The number of cost anomaly events in the given time period. + * + * @return the value + */ + public Integer getCount() { + return count; + } + + /** The average cost impact of the anomaly events in the given time period. */ + @com.fasterxml.jackson.annotation.JsonProperty("averageCostImpact") + private final Double averageCostImpact; + + /** + * The average cost impact of the anomaly events in the given time period. + * + * @return the value + */ + public Double getAverageCostImpact() { + return averageCostImpact; + } + + /** The average cost variance of the anomaly events in the given time period. */ + @com.fasterxml.jackson.annotation.JsonProperty("averageCostVariance") + private final Double averageCostVariance; + + /** + * The average cost variance of the anomaly events in the given time period. + * + * @return the value + */ + public Double getAverageCostVariance() { + return averageCostVariance; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("CostAnomalyEventAnalyticSummary("); + sb.append("super=").append(super.toString()); + sb.append("count=").append(String.valueOf(this.count)); + sb.append(", averageCostImpact=").append(String.valueOf(this.averageCostImpact)); + sb.append(", averageCostVariance=").append(String.valueOf(this.averageCostVariance)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CostAnomalyEventAnalyticSummary)) { + return false; + } + + CostAnomalyEventAnalyticSummary other = (CostAnomalyEventAnalyticSummary) o; + return java.util.Objects.equals(this.count, other.count) + && java.util.Objects.equals(this.averageCostImpact, other.averageCostImpact) + && java.util.Objects.equals(this.averageCostVariance, other.averageCostVariance) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.count == null ? 43 : this.count.hashCode()); + result = + (result * PRIME) + + (this.averageCostImpact == null ? 43 : this.averageCostImpact.hashCode()); + result = + (result * PRIME) + + (this.averageCostVariance == null + ? 43 + : this.averageCostVariance.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyEventCollection.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyEventCollection.java new file mode 100644 index 00000000000..50295bbbcef --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyEventCollection.java @@ -0,0 +1,134 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** + * Results of a costAnomalyEvent search. Contains both CostAnomalyEventSummary items and other data. + *
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = CostAnomalyEventCollection.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class CostAnomalyEventCollection + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({"items"}) + public CostAnomalyEventCollection(java.util.List items) { + super(); + this.items = items; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** A page of CostAnomalyMonitorSummary objects. */ + @com.fasterxml.jackson.annotation.JsonProperty("items") + private java.util.List items; + + /** + * A page of CostAnomalyMonitorSummary objects. + * + * @param items the value to set + * @return this builder + */ + public Builder items(java.util.List items) { + this.items = items; + this.__explicitlySet__.add("items"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public CostAnomalyEventCollection build() { + CostAnomalyEventCollection model = new CostAnomalyEventCollection(this.items); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(CostAnomalyEventCollection model) { + if (model.wasPropertyExplicitlySet("items")) { + this.items(model.getItems()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** A page of CostAnomalyMonitorSummary objects. */ + @com.fasterxml.jackson.annotation.JsonProperty("items") + private final java.util.List items; + + /** + * A page of CostAnomalyMonitorSummary objects. + * + * @return the value + */ + public java.util.List getItems() { + return items; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("CostAnomalyEventCollection("); + sb.append("super=").append(super.toString()); + sb.append("items=").append(String.valueOf(this.items)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CostAnomalyEventCollection)) { + return false; + } + + CostAnomalyEventCollection other = (CostAnomalyEventCollection) o; + return java.util.Objects.equals(this.items, other.items) && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.items == null ? 43 : this.items.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyEventSummary.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyEventSummary.java new file mode 100644 index 00000000000..2655c8d1cfd --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyEventSummary.java @@ -0,0 +1,739 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** + * A CostAnomalyEvent.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = CostAnomalyEventSummary.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class CostAnomalyEventSummary + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({ + "id", + "costAnomalyName", + "compartmentId", + "costMonitorId", + "costMonitorName", + "costMonitorType", + "lifecycleState", + "targetResourceFilter", + "rootCauseDetail", + "timeAnomalyEventDate", + "costImpact", + "costVariancePercentage", + "definedTags", + "freeformTags", + "systemTags" + }) + public CostAnomalyEventSummary( + String id, + String costAnomalyName, + String compartmentId, + String costMonitorId, + String costMonitorName, + MonitorType costMonitorType, + CostAnomalyEvent.LifecycleState lifecycleState, + TargetResourceFilter targetResourceFilter, + RootCauseDetail rootCauseDetail, + java.util.Date timeAnomalyEventDate, + Double costImpact, + Double costVariancePercentage, + java.util.Map> definedTags, + java.util.Map freeformTags, + java.util.Map> systemTags) { + super(); + this.id = id; + this.costAnomalyName = costAnomalyName; + this.compartmentId = compartmentId; + this.costMonitorId = costMonitorId; + this.costMonitorName = costMonitorName; + this.costMonitorType = costMonitorType; + this.lifecycleState = lifecycleState; + this.targetResourceFilter = targetResourceFilter; + this.rootCauseDetail = rootCauseDetail; + this.timeAnomalyEventDate = timeAnomalyEventDate; + this.costImpact = costImpact; + this.costVariancePercentage = costVariancePercentage; + this.definedTags = definedTags; + this.freeformTags = freeformTags; + this.systemTags = systemTags; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** The OCID of the Cost Anomaly Event. */ + @com.fasterxml.jackson.annotation.JsonProperty("id") + private String id; + + /** + * The OCID of the Cost Anomaly Event. + * + * @param id the value to set + * @return this builder + */ + public Builder id(String id) { + this.id = id; + this.__explicitlySet__.add("id"); + return this; + } + /** The name of the associated cost Anomaly. */ + @com.fasterxml.jackson.annotation.JsonProperty("costAnomalyName") + private String costAnomalyName; + + /** + * The name of the associated cost Anomaly. + * + * @param costAnomalyName the value to set + * @return this builder + */ + public Builder costAnomalyName(String costAnomalyName) { + this.costAnomalyName = costAnomalyName; + this.__explicitlySet__.add("costAnomalyName"); + return this; + } + /** The OCID of the compartment. */ + @com.fasterxml.jackson.annotation.JsonProperty("compartmentId") + private String compartmentId; + + /** + * The OCID of the compartment. + * + * @param compartmentId the value to set + * @return this builder + */ + public Builder compartmentId(String compartmentId) { + this.compartmentId = compartmentId; + this.__explicitlySet__.add("compartmentId"); + return this; + } + /** The OCID of the associated cost monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("costMonitorId") + private String costMonitorId; + + /** + * The OCID of the associated cost monitor. + * + * @param costMonitorId the value to set + * @return this builder + */ + public Builder costMonitorId(String costMonitorId) { + this.costMonitorId = costMonitorId; + this.__explicitlySet__.add("costMonitorId"); + return this; + } + /** The name of the associated cost monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("costMonitorName") + private String costMonitorName; + + /** + * The name of the associated cost monitor. + * + * @param costMonitorName the value to set + * @return this builder + */ + public Builder costMonitorName(String costMonitorName) { + this.costMonitorName = costMonitorName; + this.__explicitlySet__.add("costMonitorName"); + return this; + } + /** Type of cost monitor */ + @com.fasterxml.jackson.annotation.JsonProperty("costMonitorType") + private MonitorType costMonitorType; + + /** + * Type of cost monitor + * + * @param costMonitorType the value to set + * @return this builder + */ + public Builder costMonitorType(MonitorType costMonitorType) { + this.costMonitorType = costMonitorType; + this.__explicitlySet__.add("costMonitorType"); + return this; + } + /** The current state of the cost anomaly event. */ + @com.fasterxml.jackson.annotation.JsonProperty("lifecycleState") + private CostAnomalyEvent.LifecycleState lifecycleState; + + /** + * The current state of the cost anomaly event. + * + * @param lifecycleState the value to set + * @return this builder + */ + public Builder lifecycleState(CostAnomalyEvent.LifecycleState lifecycleState) { + this.lifecycleState = lifecycleState; + this.__explicitlySet__.add("lifecycleState"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("targetResourceFilter") + private TargetResourceFilter targetResourceFilter; + + public Builder targetResourceFilter(TargetResourceFilter targetResourceFilter) { + this.targetResourceFilter = targetResourceFilter; + this.__explicitlySet__.add("targetResourceFilter"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("rootCauseDetail") + private RootCauseDetail rootCauseDetail; + + public Builder rootCauseDetail(RootCauseDetail rootCauseDetail) { + this.rootCauseDetail = rootCauseDetail; + this.__explicitlySet__.add("rootCauseDetail"); + return this; + } + /** The event date of the anomaly event. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeAnomalyEventDate") + private java.util.Date timeAnomalyEventDate; + + /** + * The event date of the anomaly event. + * + * @param timeAnomalyEventDate the value to set + * @return this builder + */ + public Builder timeAnomalyEventDate(java.util.Date timeAnomalyEventDate) { + this.timeAnomalyEventDate = timeAnomalyEventDate; + this.__explicitlySet__.add("timeAnomalyEventDate"); + return this; + } + /** The cost impact of the detected anomaly. */ + @com.fasterxml.jackson.annotation.JsonProperty("costImpact") + private Double costImpact; + + /** + * The cost impact of the detected anomaly. + * + * @param costImpact the value to set + * @return this builder + */ + public Builder costImpact(Double costImpact) { + this.costImpact = costImpact; + this.__explicitlySet__.add("costImpact"); + return this; + } + /** The cost variance percentage of the detected anomaly. */ + @com.fasterxml.jackson.annotation.JsonProperty("costVariancePercentage") + private Double costVariancePercentage; + + /** + * The cost variance percentage of the detected anomaly. + * + * @param costVariancePercentage the value to set + * @return this builder + */ + public Builder costVariancePercentage(Double costVariancePercentage) { + this.costVariancePercentage = costVariancePercentage; + this.__explicitlySet__.add("costVariancePercentage"); + return this; + } + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @param definedTags the value to set + * @return this builder + */ + public Builder definedTags( + java.util.Map> definedTags) { + this.definedTags = definedTags; + this.__explicitlySet__.add("definedTags"); + return this; + } + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @param freeformTags the value to set + * @return this builder + */ + public Builder freeformTags(java.util.Map freeformTags) { + this.freeformTags = freeformTags; + this.__explicitlySet__.add("freeformTags"); + return this; + } + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System + * tags can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("systemTags") + private java.util.Map> systemTags; + + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System + * tags can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + * + * @param systemTags the value to set + * @return this builder + */ + public Builder systemTags(java.util.Map> systemTags) { + this.systemTags = systemTags; + this.__explicitlySet__.add("systemTags"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public CostAnomalyEventSummary build() { + CostAnomalyEventSummary model = + new CostAnomalyEventSummary( + this.id, + this.costAnomalyName, + this.compartmentId, + this.costMonitorId, + this.costMonitorName, + this.costMonitorType, + this.lifecycleState, + this.targetResourceFilter, + this.rootCauseDetail, + this.timeAnomalyEventDate, + this.costImpact, + this.costVariancePercentage, + this.definedTags, + this.freeformTags, + this.systemTags); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(CostAnomalyEventSummary model) { + if (model.wasPropertyExplicitlySet("id")) { + this.id(model.getId()); + } + if (model.wasPropertyExplicitlySet("costAnomalyName")) { + this.costAnomalyName(model.getCostAnomalyName()); + } + if (model.wasPropertyExplicitlySet("compartmentId")) { + this.compartmentId(model.getCompartmentId()); + } + if (model.wasPropertyExplicitlySet("costMonitorId")) { + this.costMonitorId(model.getCostMonitorId()); + } + if (model.wasPropertyExplicitlySet("costMonitorName")) { + this.costMonitorName(model.getCostMonitorName()); + } + if (model.wasPropertyExplicitlySet("costMonitorType")) { + this.costMonitorType(model.getCostMonitorType()); + } + if (model.wasPropertyExplicitlySet("lifecycleState")) { + this.lifecycleState(model.getLifecycleState()); + } + if (model.wasPropertyExplicitlySet("targetResourceFilter")) { + this.targetResourceFilter(model.getTargetResourceFilter()); + } + if (model.wasPropertyExplicitlySet("rootCauseDetail")) { + this.rootCauseDetail(model.getRootCauseDetail()); + } + if (model.wasPropertyExplicitlySet("timeAnomalyEventDate")) { + this.timeAnomalyEventDate(model.getTimeAnomalyEventDate()); + } + if (model.wasPropertyExplicitlySet("costImpact")) { + this.costImpact(model.getCostImpact()); + } + if (model.wasPropertyExplicitlySet("costVariancePercentage")) { + this.costVariancePercentage(model.getCostVariancePercentage()); + } + if (model.wasPropertyExplicitlySet("definedTags")) { + this.definedTags(model.getDefinedTags()); + } + if (model.wasPropertyExplicitlySet("freeformTags")) { + this.freeformTags(model.getFreeformTags()); + } + if (model.wasPropertyExplicitlySet("systemTags")) { + this.systemTags(model.getSystemTags()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** The OCID of the Cost Anomaly Event. */ + @com.fasterxml.jackson.annotation.JsonProperty("id") + private final String id; + + /** + * The OCID of the Cost Anomaly Event. + * + * @return the value + */ + public String getId() { + return id; + } + + /** The name of the associated cost Anomaly. */ + @com.fasterxml.jackson.annotation.JsonProperty("costAnomalyName") + private final String costAnomalyName; + + /** + * The name of the associated cost Anomaly. + * + * @return the value + */ + public String getCostAnomalyName() { + return costAnomalyName; + } + + /** The OCID of the compartment. */ + @com.fasterxml.jackson.annotation.JsonProperty("compartmentId") + private final String compartmentId; + + /** + * The OCID of the compartment. + * + * @return the value + */ + public String getCompartmentId() { + return compartmentId; + } + + /** The OCID of the associated cost monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("costMonitorId") + private final String costMonitorId; + + /** + * The OCID of the associated cost monitor. + * + * @return the value + */ + public String getCostMonitorId() { + return costMonitorId; + } + + /** The name of the associated cost monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("costMonitorName") + private final String costMonitorName; + + /** + * The name of the associated cost monitor. + * + * @return the value + */ + public String getCostMonitorName() { + return costMonitorName; + } + + /** Type of cost monitor */ + @com.fasterxml.jackson.annotation.JsonProperty("costMonitorType") + private final MonitorType costMonitorType; + + /** + * Type of cost monitor + * + * @return the value + */ + public MonitorType getCostMonitorType() { + return costMonitorType; + } + + /** The current state of the cost anomaly event. */ + @com.fasterxml.jackson.annotation.JsonProperty("lifecycleState") + private final CostAnomalyEvent.LifecycleState lifecycleState; + + /** + * The current state of the cost anomaly event. + * + * @return the value + */ + public CostAnomalyEvent.LifecycleState getLifecycleState() { + return lifecycleState; + } + + @com.fasterxml.jackson.annotation.JsonProperty("targetResourceFilter") + private final TargetResourceFilter targetResourceFilter; + + public TargetResourceFilter getTargetResourceFilter() { + return targetResourceFilter; + } + + @com.fasterxml.jackson.annotation.JsonProperty("rootCauseDetail") + private final RootCauseDetail rootCauseDetail; + + public RootCauseDetail getRootCauseDetail() { + return rootCauseDetail; + } + + /** The event date of the anomaly event. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeAnomalyEventDate") + private final java.util.Date timeAnomalyEventDate; + + /** + * The event date of the anomaly event. + * + * @return the value + */ + public java.util.Date getTimeAnomalyEventDate() { + return timeAnomalyEventDate; + } + + /** The cost impact of the detected anomaly. */ + @com.fasterxml.jackson.annotation.JsonProperty("costImpact") + private final Double costImpact; + + /** + * The cost impact of the detected anomaly. + * + * @return the value + */ + public Double getCostImpact() { + return costImpact; + } + + /** The cost variance percentage of the detected anomaly. */ + @com.fasterxml.jackson.annotation.JsonProperty("costVariancePercentage") + private final Double costVariancePercentage; + + /** + * The cost variance percentage of the detected anomaly. + * + * @return the value + */ + public Double getCostVariancePercentage() { + return costVariancePercentage; + } + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private final java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @return the value + */ + public java.util.Map> getDefinedTags() { + return definedTags; + } + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private final java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @return the value + */ + public java.util.Map getFreeformTags() { + return freeformTags; + } + + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags + * can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("systemTags") + private final java.util.Map> systemTags; + + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags + * can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + * + * @return the value + */ + public java.util.Map> getSystemTags() { + return systemTags; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("CostAnomalyEventSummary("); + sb.append("super=").append(super.toString()); + sb.append("id=").append(String.valueOf(this.id)); + sb.append(", costAnomalyName=").append(String.valueOf(this.costAnomalyName)); + sb.append(", compartmentId=").append(String.valueOf(this.compartmentId)); + sb.append(", costMonitorId=").append(String.valueOf(this.costMonitorId)); + sb.append(", costMonitorName=").append(String.valueOf(this.costMonitorName)); + sb.append(", costMonitorType=").append(String.valueOf(this.costMonitorType)); + sb.append(", lifecycleState=").append(String.valueOf(this.lifecycleState)); + sb.append(", targetResourceFilter=").append(String.valueOf(this.targetResourceFilter)); + sb.append(", rootCauseDetail=").append(String.valueOf(this.rootCauseDetail)); + sb.append(", timeAnomalyEventDate=").append(String.valueOf(this.timeAnomalyEventDate)); + sb.append(", costImpact=").append(String.valueOf(this.costImpact)); + sb.append(", costVariancePercentage=").append(String.valueOf(this.costVariancePercentage)); + sb.append(", definedTags=").append(String.valueOf(this.definedTags)); + sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); + sb.append(", systemTags=").append(String.valueOf(this.systemTags)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CostAnomalyEventSummary)) { + return false; + } + + CostAnomalyEventSummary other = (CostAnomalyEventSummary) o; + return java.util.Objects.equals(this.id, other.id) + && java.util.Objects.equals(this.costAnomalyName, other.costAnomalyName) + && java.util.Objects.equals(this.compartmentId, other.compartmentId) + && java.util.Objects.equals(this.costMonitorId, other.costMonitorId) + && java.util.Objects.equals(this.costMonitorName, other.costMonitorName) + && java.util.Objects.equals(this.costMonitorType, other.costMonitorType) + && java.util.Objects.equals(this.lifecycleState, other.lifecycleState) + && java.util.Objects.equals(this.targetResourceFilter, other.targetResourceFilter) + && java.util.Objects.equals(this.rootCauseDetail, other.rootCauseDetail) + && java.util.Objects.equals(this.timeAnomalyEventDate, other.timeAnomalyEventDate) + && java.util.Objects.equals(this.costImpact, other.costImpact) + && java.util.Objects.equals( + this.costVariancePercentage, other.costVariancePercentage) + && java.util.Objects.equals(this.definedTags, other.definedTags) + && java.util.Objects.equals(this.freeformTags, other.freeformTags) + && java.util.Objects.equals(this.systemTags, other.systemTags) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.id == null ? 43 : this.id.hashCode()); + result = + (result * PRIME) + + (this.costAnomalyName == null ? 43 : this.costAnomalyName.hashCode()); + result = + (result * PRIME) + + (this.compartmentId == null ? 43 : this.compartmentId.hashCode()); + result = + (result * PRIME) + + (this.costMonitorId == null ? 43 : this.costMonitorId.hashCode()); + result = + (result * PRIME) + + (this.costMonitorName == null ? 43 : this.costMonitorName.hashCode()); + result = + (result * PRIME) + + (this.costMonitorType == null ? 43 : this.costMonitorType.hashCode()); + result = + (result * PRIME) + + (this.lifecycleState == null ? 43 : this.lifecycleState.hashCode()); + result = + (result * PRIME) + + (this.targetResourceFilter == null + ? 43 + : this.targetResourceFilter.hashCode()); + result = + (result * PRIME) + + (this.rootCauseDetail == null ? 43 : this.rootCauseDetail.hashCode()); + result = + (result * PRIME) + + (this.timeAnomalyEventDate == null + ? 43 + : this.timeAnomalyEventDate.hashCode()); + result = (result * PRIME) + (this.costImpact == null ? 43 : this.costImpact.hashCode()); + result = + (result * PRIME) + + (this.costVariancePercentage == null + ? 43 + : this.costVariancePercentage.hashCode()); + result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); + result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); + result = (result * PRIME) + (this.systemTags == null ? 43 : this.systemTags.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyMonitor.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyMonitor.java new file mode 100644 index 00000000000..8e1254d450a --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyMonitor.java @@ -0,0 +1,737 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** + * A CostAnomalyMonitor.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = CostAnomalyMonitor.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class CostAnomalyMonitor + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({ + "id", + "compartmentId", + "name", + "type", + "description", + "lifecycleState", + "lifecycleDetails", + "targetResourceFilter", + "costAlertSubscriptionMap", + "timeCreated", + "timeUpdated", + "definedTags", + "freeformTags", + "systemTags" + }) + public CostAnomalyMonitor( + String id, + String compartmentId, + String name, + MonitorType type, + String description, + LifecycleState lifecycleState, + String lifecycleDetails, + TargetResourceFilter targetResourceFilter, + CostAlertSubscriptionMap costAlertSubscriptionMap, + java.util.Date timeCreated, + java.util.Date timeUpdated, + java.util.Map> definedTags, + java.util.Map freeformTags, + java.util.Map> systemTags) { + super(); + this.id = id; + this.compartmentId = compartmentId; + this.name = name; + this.type = type; + this.description = description; + this.lifecycleState = lifecycleState; + this.lifecycleDetails = lifecycleDetails; + this.targetResourceFilter = targetResourceFilter; + this.costAlertSubscriptionMap = costAlertSubscriptionMap; + this.timeCreated = timeCreated; + this.timeUpdated = timeUpdated; + this.definedTags = definedTags; + this.freeformTags = freeformTags; + this.systemTags = systemTags; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** The OCID of the Cost Anomaly Monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("id") + private String id; + + /** + * The OCID of the Cost Anomaly Monitor. + * + * @param id the value to set + * @return this builder + */ + public Builder id(String id) { + this.id = id; + this.__explicitlySet__.add("id"); + return this; + } + /** The OCID of the compartment. */ + @com.fasterxml.jackson.annotation.JsonProperty("compartmentId") + private String compartmentId; + + /** + * The OCID of the compartment. + * + * @param compartmentId the value to set + * @return this builder + */ + public Builder compartmentId(String compartmentId) { + this.compartmentId = compartmentId; + this.__explicitlySet__.add("compartmentId"); + return this; + } + /** The name of the cost anomaly monitor. Avoid entering confidential information. */ + @com.fasterxml.jackson.annotation.JsonProperty("name") + private String name; + + /** + * The name of the cost anomaly monitor. Avoid entering confidential information. + * + * @param name the value to set + * @return this builder + */ + public Builder name(String name) { + this.name = name; + this.__explicitlySet__.add("name"); + return this; + } + /** Type of cost monitor */ + @com.fasterxml.jackson.annotation.JsonProperty("type") + private MonitorType type; + + /** + * Type of cost monitor + * + * @param type the value to set + * @return this builder + */ + public Builder type(MonitorType type) { + this.type = type; + this.__explicitlySet__.add("type"); + return this; + } + /** The description of the budget. */ + @com.fasterxml.jackson.annotation.JsonProperty("description") + private String description; + + /** + * The description of the budget. + * + * @param description the value to set + * @return this builder + */ + public Builder description(String description) { + this.description = description; + this.__explicitlySet__.add("description"); + return this; + } + /** The current state of the cost monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("lifecycleState") + private LifecycleState lifecycleState; + + /** + * The current state of the cost monitor. + * + * @param lifecycleState the value to set + * @return this builder + */ + public Builder lifecycleState(LifecycleState lifecycleState) { + this.lifecycleState = lifecycleState; + this.__explicitlySet__.add("lifecycleState"); + return this; + } + /** The current state details of the cost monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("lifecycleDetails") + private String lifecycleDetails; + + /** + * The current state details of the cost monitor. + * + * @param lifecycleDetails the value to set + * @return this builder + */ + public Builder lifecycleDetails(String lifecycleDetails) { + this.lifecycleDetails = lifecycleDetails; + this.__explicitlySet__.add("lifecycleDetails"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("targetResourceFilter") + private TargetResourceFilter targetResourceFilter; + + public Builder targetResourceFilter(TargetResourceFilter targetResourceFilter) { + this.targetResourceFilter = targetResourceFilter; + this.__explicitlySet__.add("targetResourceFilter"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("costAlertSubscriptionMap") + private CostAlertSubscriptionMap costAlertSubscriptionMap; + + public Builder costAlertSubscriptionMap(CostAlertSubscriptionMap costAlertSubscriptionMap) { + this.costAlertSubscriptionMap = costAlertSubscriptionMap; + this.__explicitlySet__.add("costAlertSubscriptionMap"); + return this; + } + /** The time that the cost monitor was created. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeCreated") + private java.util.Date timeCreated; + + /** + * The time that the cost monitor was created. + * + * @param timeCreated the value to set + * @return this builder + */ + public Builder timeCreated(java.util.Date timeCreated) { + this.timeCreated = timeCreated; + this.__explicitlySet__.add("timeCreated"); + return this; + } + /** The time that the cost monitor was last updated. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeUpdated") + private java.util.Date timeUpdated; + + /** + * The time that the cost monitor was last updated. + * + * @param timeUpdated the value to set + * @return this builder + */ + public Builder timeUpdated(java.util.Date timeUpdated) { + this.timeUpdated = timeUpdated; + this.__explicitlySet__.add("timeUpdated"); + return this; + } + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @param definedTags the value to set + * @return this builder + */ + public Builder definedTags( + java.util.Map> definedTags) { + this.definedTags = definedTags; + this.__explicitlySet__.add("definedTags"); + return this; + } + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @param freeformTags the value to set + * @return this builder + */ + public Builder freeformTags(java.util.Map freeformTags) { + this.freeformTags = freeformTags; + this.__explicitlySet__.add("freeformTags"); + return this; + } + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System + * tags can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("systemTags") + private java.util.Map> systemTags; + + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System + * tags can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + * + * @param systemTags the value to set + * @return this builder + */ + public Builder systemTags(java.util.Map> systemTags) { + this.systemTags = systemTags; + this.__explicitlySet__.add("systemTags"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public CostAnomalyMonitor build() { + CostAnomalyMonitor model = + new CostAnomalyMonitor( + this.id, + this.compartmentId, + this.name, + this.type, + this.description, + this.lifecycleState, + this.lifecycleDetails, + this.targetResourceFilter, + this.costAlertSubscriptionMap, + this.timeCreated, + this.timeUpdated, + this.definedTags, + this.freeformTags, + this.systemTags); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(CostAnomalyMonitor model) { + if (model.wasPropertyExplicitlySet("id")) { + this.id(model.getId()); + } + if (model.wasPropertyExplicitlySet("compartmentId")) { + this.compartmentId(model.getCompartmentId()); + } + if (model.wasPropertyExplicitlySet("name")) { + this.name(model.getName()); + } + if (model.wasPropertyExplicitlySet("type")) { + this.type(model.getType()); + } + if (model.wasPropertyExplicitlySet("description")) { + this.description(model.getDescription()); + } + if (model.wasPropertyExplicitlySet("lifecycleState")) { + this.lifecycleState(model.getLifecycleState()); + } + if (model.wasPropertyExplicitlySet("lifecycleDetails")) { + this.lifecycleDetails(model.getLifecycleDetails()); + } + if (model.wasPropertyExplicitlySet("targetResourceFilter")) { + this.targetResourceFilter(model.getTargetResourceFilter()); + } + if (model.wasPropertyExplicitlySet("costAlertSubscriptionMap")) { + this.costAlertSubscriptionMap(model.getCostAlertSubscriptionMap()); + } + if (model.wasPropertyExplicitlySet("timeCreated")) { + this.timeCreated(model.getTimeCreated()); + } + if (model.wasPropertyExplicitlySet("timeUpdated")) { + this.timeUpdated(model.getTimeUpdated()); + } + if (model.wasPropertyExplicitlySet("definedTags")) { + this.definedTags(model.getDefinedTags()); + } + if (model.wasPropertyExplicitlySet("freeformTags")) { + this.freeformTags(model.getFreeformTags()); + } + if (model.wasPropertyExplicitlySet("systemTags")) { + this.systemTags(model.getSystemTags()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** The OCID of the Cost Anomaly Monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("id") + private final String id; + + /** + * The OCID of the Cost Anomaly Monitor. + * + * @return the value + */ + public String getId() { + return id; + } + + /** The OCID of the compartment. */ + @com.fasterxml.jackson.annotation.JsonProperty("compartmentId") + private final String compartmentId; + + /** + * The OCID of the compartment. + * + * @return the value + */ + public String getCompartmentId() { + return compartmentId; + } + + /** The name of the cost anomaly monitor. Avoid entering confidential information. */ + @com.fasterxml.jackson.annotation.JsonProperty("name") + private final String name; + + /** + * The name of the cost anomaly monitor. Avoid entering confidential information. + * + * @return the value + */ + public String getName() { + return name; + } + + /** Type of cost monitor */ + @com.fasterxml.jackson.annotation.JsonProperty("type") + private final MonitorType type; + + /** + * Type of cost monitor + * + * @return the value + */ + public MonitorType getType() { + return type; + } + + /** The description of the budget. */ + @com.fasterxml.jackson.annotation.JsonProperty("description") + private final String description; + + /** + * The description of the budget. + * + * @return the value + */ + public String getDescription() { + return description; + } + + /** The current state of the cost monitor. */ + public enum LifecycleState implements com.oracle.bmc.http.internal.BmcEnum { + Active("ACTIVE"), + Inactive("INACTIVE"), + Deleted("DELETED"), + + /** + * This value is used if a service returns a value for this enum that is not recognized by + * this version of the SDK. + */ + UnknownEnumValue(null); + + private static final org.slf4j.Logger LOG = + org.slf4j.LoggerFactory.getLogger(LifecycleState.class); + + private final String value; + private static java.util.Map map; + + static { + map = new java.util.HashMap<>(); + for (LifecycleState v : LifecycleState.values()) { + if (v != UnknownEnumValue) { + map.put(v.getValue(), v); + } + } + } + + LifecycleState(String value) { + this.value = value; + } + + @com.fasterxml.jackson.annotation.JsonValue + public String getValue() { + return value; + } + + @com.fasterxml.jackson.annotation.JsonCreator + public static LifecycleState create(String key) { + if (map.containsKey(key)) { + return map.get(key); + } + LOG.warn( + "Received unknown value '{}' for enum 'LifecycleState', returning UnknownEnumValue", + key); + return UnknownEnumValue; + } + }; + /** The current state of the cost monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("lifecycleState") + private final LifecycleState lifecycleState; + + /** + * The current state of the cost monitor. + * + * @return the value + */ + public LifecycleState getLifecycleState() { + return lifecycleState; + } + + /** The current state details of the cost monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("lifecycleDetails") + private final String lifecycleDetails; + + /** + * The current state details of the cost monitor. + * + * @return the value + */ + public String getLifecycleDetails() { + return lifecycleDetails; + } + + @com.fasterxml.jackson.annotation.JsonProperty("targetResourceFilter") + private final TargetResourceFilter targetResourceFilter; + + public TargetResourceFilter getTargetResourceFilter() { + return targetResourceFilter; + } + + @com.fasterxml.jackson.annotation.JsonProperty("costAlertSubscriptionMap") + private final CostAlertSubscriptionMap costAlertSubscriptionMap; + + public CostAlertSubscriptionMap getCostAlertSubscriptionMap() { + return costAlertSubscriptionMap; + } + + /** The time that the cost monitor was created. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeCreated") + private final java.util.Date timeCreated; + + /** + * The time that the cost monitor was created. + * + * @return the value + */ + public java.util.Date getTimeCreated() { + return timeCreated; + } + + /** The time that the cost monitor was last updated. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeUpdated") + private final java.util.Date timeUpdated; + + /** + * The time that the cost monitor was last updated. + * + * @return the value + */ + public java.util.Date getTimeUpdated() { + return timeUpdated; + } + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private final java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @return the value + */ + public java.util.Map> getDefinedTags() { + return definedTags; + } + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private final java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @return the value + */ + public java.util.Map getFreeformTags() { + return freeformTags; + } + + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags + * can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("systemTags") + private final java.util.Map> systemTags; + + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags + * can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + * + * @return the value + */ + public java.util.Map> getSystemTags() { + return systemTags; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("CostAnomalyMonitor("); + sb.append("super=").append(super.toString()); + sb.append("id=").append(String.valueOf(this.id)); + sb.append(", compartmentId=").append(String.valueOf(this.compartmentId)); + sb.append(", name=").append(String.valueOf(this.name)); + sb.append(", type=").append(String.valueOf(this.type)); + sb.append(", description=").append(String.valueOf(this.description)); + sb.append(", lifecycleState=").append(String.valueOf(this.lifecycleState)); + sb.append(", lifecycleDetails=").append(String.valueOf(this.lifecycleDetails)); + sb.append(", targetResourceFilter=").append(String.valueOf(this.targetResourceFilter)); + sb.append(", costAlertSubscriptionMap=") + .append(String.valueOf(this.costAlertSubscriptionMap)); + sb.append(", timeCreated=").append(String.valueOf(this.timeCreated)); + sb.append(", timeUpdated=").append(String.valueOf(this.timeUpdated)); + sb.append(", definedTags=").append(String.valueOf(this.definedTags)); + sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); + sb.append(", systemTags=").append(String.valueOf(this.systemTags)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CostAnomalyMonitor)) { + return false; + } + + CostAnomalyMonitor other = (CostAnomalyMonitor) o; + return java.util.Objects.equals(this.id, other.id) + && java.util.Objects.equals(this.compartmentId, other.compartmentId) + && java.util.Objects.equals(this.name, other.name) + && java.util.Objects.equals(this.type, other.type) + && java.util.Objects.equals(this.description, other.description) + && java.util.Objects.equals(this.lifecycleState, other.lifecycleState) + && java.util.Objects.equals(this.lifecycleDetails, other.lifecycleDetails) + && java.util.Objects.equals(this.targetResourceFilter, other.targetResourceFilter) + && java.util.Objects.equals( + this.costAlertSubscriptionMap, other.costAlertSubscriptionMap) + && java.util.Objects.equals(this.timeCreated, other.timeCreated) + && java.util.Objects.equals(this.timeUpdated, other.timeUpdated) + && java.util.Objects.equals(this.definedTags, other.definedTags) + && java.util.Objects.equals(this.freeformTags, other.freeformTags) + && java.util.Objects.equals(this.systemTags, other.systemTags) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.id == null ? 43 : this.id.hashCode()); + result = + (result * PRIME) + + (this.compartmentId == null ? 43 : this.compartmentId.hashCode()); + result = (result * PRIME) + (this.name == null ? 43 : this.name.hashCode()); + result = (result * PRIME) + (this.type == null ? 43 : this.type.hashCode()); + result = (result * PRIME) + (this.description == null ? 43 : this.description.hashCode()); + result = + (result * PRIME) + + (this.lifecycleState == null ? 43 : this.lifecycleState.hashCode()); + result = + (result * PRIME) + + (this.lifecycleDetails == null ? 43 : this.lifecycleDetails.hashCode()); + result = + (result * PRIME) + + (this.targetResourceFilter == null + ? 43 + : this.targetResourceFilter.hashCode()); + result = + (result * PRIME) + + (this.costAlertSubscriptionMap == null + ? 43 + : this.costAlertSubscriptionMap.hashCode()); + result = (result * PRIME) + (this.timeCreated == null ? 43 : this.timeCreated.hashCode()); + result = (result * PRIME) + (this.timeUpdated == null ? 43 : this.timeUpdated.hashCode()); + result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); + result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); + result = (result * PRIME) + (this.systemTags == null ? 43 : this.systemTags.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyMonitorCollection.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyMonitorCollection.java new file mode 100644 index 00000000000..4df6b921f79 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyMonitorCollection.java @@ -0,0 +1,134 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** + * Results of a costAnomalyMonitor search. Contains both CostAnomalyMonitorSummary items and other + * data.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = CostAnomalyMonitorCollection.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class CostAnomalyMonitorCollection + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({"items"}) + public CostAnomalyMonitorCollection(java.util.List items) { + super(); + this.items = items; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** A page of CostAnomalyMonitorSummary objects. */ + @com.fasterxml.jackson.annotation.JsonProperty("items") + private java.util.List items; + + /** + * A page of CostAnomalyMonitorSummary objects. + * + * @param items the value to set + * @return this builder + */ + public Builder items(java.util.List items) { + this.items = items; + this.__explicitlySet__.add("items"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public CostAnomalyMonitorCollection build() { + CostAnomalyMonitorCollection model = new CostAnomalyMonitorCollection(this.items); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(CostAnomalyMonitorCollection model) { + if (model.wasPropertyExplicitlySet("items")) { + this.items(model.getItems()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** A page of CostAnomalyMonitorSummary objects. */ + @com.fasterxml.jackson.annotation.JsonProperty("items") + private final java.util.List items; + + /** + * A page of CostAnomalyMonitorSummary objects. + * + * @return the value + */ + public java.util.List getItems() { + return items; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("CostAnomalyMonitorCollection("); + sb.append("super=").append(super.toString()); + sb.append("items=").append(String.valueOf(this.items)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CostAnomalyMonitorCollection)) { + return false; + } + + CostAnomalyMonitorCollection other = (CostAnomalyMonitorCollection) o; + return java.util.Objects.equals(this.items, other.items) && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.items == null ? 43 : this.items.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyMonitorSummary.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyMonitorSummary.java new file mode 100644 index 00000000000..b019c29fbaa --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CostAnomalyMonitorSummary.java @@ -0,0 +1,618 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** + * A CostAnomalyMonitor.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = CostAnomalyMonitorSummary.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class CostAnomalyMonitorSummary + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({ + "id", + "compartmentId", + "name", + "type", + "description", + "lifecycleState", + "targetResourceFilter", + "timeCreated", + "timeUpdated", + "definedTags", + "freeformTags", + "systemTags" + }) + public CostAnomalyMonitorSummary( + String id, + String compartmentId, + String name, + MonitorType type, + String description, + CostAnomalyMonitor.LifecycleState lifecycleState, + TargetResourceFilter targetResourceFilter, + java.util.Date timeCreated, + java.util.Date timeUpdated, + java.util.Map> definedTags, + java.util.Map freeformTags, + java.util.Map> systemTags) { + super(); + this.id = id; + this.compartmentId = compartmentId; + this.name = name; + this.type = type; + this.description = description; + this.lifecycleState = lifecycleState; + this.targetResourceFilter = targetResourceFilter; + this.timeCreated = timeCreated; + this.timeUpdated = timeUpdated; + this.definedTags = definedTags; + this.freeformTags = freeformTags; + this.systemTags = systemTags; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** The OCID of the Cost Anomaly Monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("id") + private String id; + + /** + * The OCID of the Cost Anomaly Monitor. + * + * @param id the value to set + * @return this builder + */ + public Builder id(String id) { + this.id = id; + this.__explicitlySet__.add("id"); + return this; + } + /** The OCID of the compartment. */ + @com.fasterxml.jackson.annotation.JsonProperty("compartmentId") + private String compartmentId; + + /** + * The OCID of the compartment. + * + * @param compartmentId the value to set + * @return this builder + */ + public Builder compartmentId(String compartmentId) { + this.compartmentId = compartmentId; + this.__explicitlySet__.add("compartmentId"); + return this; + } + /** The name of the cost anomaly monitor. Avoid entering confidential information. */ + @com.fasterxml.jackson.annotation.JsonProperty("name") + private String name; + + /** + * The name of the cost anomaly monitor. Avoid entering confidential information. + * + * @param name the value to set + * @return this builder + */ + public Builder name(String name) { + this.name = name; + this.__explicitlySet__.add("name"); + return this; + } + /** Type of cost monitor */ + @com.fasterxml.jackson.annotation.JsonProperty("type") + private MonitorType type; + + /** + * Type of cost monitor + * + * @param type the value to set + * @return this builder + */ + public Builder type(MonitorType type) { + this.type = type; + this.__explicitlySet__.add("type"); + return this; + } + /** The description of the budget. */ + @com.fasterxml.jackson.annotation.JsonProperty("description") + private String description; + + /** + * The description of the budget. + * + * @param description the value to set + * @return this builder + */ + public Builder description(String description) { + this.description = description; + this.__explicitlySet__.add("description"); + return this; + } + /** The current state of the cost monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("lifecycleState") + private CostAnomalyMonitor.LifecycleState lifecycleState; + + /** + * The current state of the cost monitor. + * + * @param lifecycleState the value to set + * @return this builder + */ + public Builder lifecycleState(CostAnomalyMonitor.LifecycleState lifecycleState) { + this.lifecycleState = lifecycleState; + this.__explicitlySet__.add("lifecycleState"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("targetResourceFilter") + private TargetResourceFilter targetResourceFilter; + + public Builder targetResourceFilter(TargetResourceFilter targetResourceFilter) { + this.targetResourceFilter = targetResourceFilter; + this.__explicitlySet__.add("targetResourceFilter"); + return this; + } + /** The time that the cost monitor was created. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeCreated") + private java.util.Date timeCreated; + + /** + * The time that the cost monitor was created. + * + * @param timeCreated the value to set + * @return this builder + */ + public Builder timeCreated(java.util.Date timeCreated) { + this.timeCreated = timeCreated; + this.__explicitlySet__.add("timeCreated"); + return this; + } + /** The time that the cost monitor was last updated. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeUpdated") + private java.util.Date timeUpdated; + + /** + * The time that the cost monitor was last updated. + * + * @param timeUpdated the value to set + * @return this builder + */ + public Builder timeUpdated(java.util.Date timeUpdated) { + this.timeUpdated = timeUpdated; + this.__explicitlySet__.add("timeUpdated"); + return this; + } + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @param definedTags the value to set + * @return this builder + */ + public Builder definedTags( + java.util.Map> definedTags) { + this.definedTags = definedTags; + this.__explicitlySet__.add("definedTags"); + return this; + } + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @param freeformTags the value to set + * @return this builder + */ + public Builder freeformTags(java.util.Map freeformTags) { + this.freeformTags = freeformTags; + this.__explicitlySet__.add("freeformTags"); + return this; + } + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System + * tags can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("systemTags") + private java.util.Map> systemTags; + + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System + * tags can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + * + * @param systemTags the value to set + * @return this builder + */ + public Builder systemTags(java.util.Map> systemTags) { + this.systemTags = systemTags; + this.__explicitlySet__.add("systemTags"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public CostAnomalyMonitorSummary build() { + CostAnomalyMonitorSummary model = + new CostAnomalyMonitorSummary( + this.id, + this.compartmentId, + this.name, + this.type, + this.description, + this.lifecycleState, + this.targetResourceFilter, + this.timeCreated, + this.timeUpdated, + this.definedTags, + this.freeformTags, + this.systemTags); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(CostAnomalyMonitorSummary model) { + if (model.wasPropertyExplicitlySet("id")) { + this.id(model.getId()); + } + if (model.wasPropertyExplicitlySet("compartmentId")) { + this.compartmentId(model.getCompartmentId()); + } + if (model.wasPropertyExplicitlySet("name")) { + this.name(model.getName()); + } + if (model.wasPropertyExplicitlySet("type")) { + this.type(model.getType()); + } + if (model.wasPropertyExplicitlySet("description")) { + this.description(model.getDescription()); + } + if (model.wasPropertyExplicitlySet("lifecycleState")) { + this.lifecycleState(model.getLifecycleState()); + } + if (model.wasPropertyExplicitlySet("targetResourceFilter")) { + this.targetResourceFilter(model.getTargetResourceFilter()); + } + if (model.wasPropertyExplicitlySet("timeCreated")) { + this.timeCreated(model.getTimeCreated()); + } + if (model.wasPropertyExplicitlySet("timeUpdated")) { + this.timeUpdated(model.getTimeUpdated()); + } + if (model.wasPropertyExplicitlySet("definedTags")) { + this.definedTags(model.getDefinedTags()); + } + if (model.wasPropertyExplicitlySet("freeformTags")) { + this.freeformTags(model.getFreeformTags()); + } + if (model.wasPropertyExplicitlySet("systemTags")) { + this.systemTags(model.getSystemTags()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** The OCID of the Cost Anomaly Monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("id") + private final String id; + + /** + * The OCID of the Cost Anomaly Monitor. + * + * @return the value + */ + public String getId() { + return id; + } + + /** The OCID of the compartment. */ + @com.fasterxml.jackson.annotation.JsonProperty("compartmentId") + private final String compartmentId; + + /** + * The OCID of the compartment. + * + * @return the value + */ + public String getCompartmentId() { + return compartmentId; + } + + /** The name of the cost anomaly monitor. Avoid entering confidential information. */ + @com.fasterxml.jackson.annotation.JsonProperty("name") + private final String name; + + /** + * The name of the cost anomaly monitor. Avoid entering confidential information. + * + * @return the value + */ + public String getName() { + return name; + } + + /** Type of cost monitor */ + @com.fasterxml.jackson.annotation.JsonProperty("type") + private final MonitorType type; + + /** + * Type of cost monitor + * + * @return the value + */ + public MonitorType getType() { + return type; + } + + /** The description of the budget. */ + @com.fasterxml.jackson.annotation.JsonProperty("description") + private final String description; + + /** + * The description of the budget. + * + * @return the value + */ + public String getDescription() { + return description; + } + + /** The current state of the cost monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("lifecycleState") + private final CostAnomalyMonitor.LifecycleState lifecycleState; + + /** + * The current state of the cost monitor. + * + * @return the value + */ + public CostAnomalyMonitor.LifecycleState getLifecycleState() { + return lifecycleState; + } + + @com.fasterxml.jackson.annotation.JsonProperty("targetResourceFilter") + private final TargetResourceFilter targetResourceFilter; + + public TargetResourceFilter getTargetResourceFilter() { + return targetResourceFilter; + } + + /** The time that the cost monitor was created. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeCreated") + private final java.util.Date timeCreated; + + /** + * The time that the cost monitor was created. + * + * @return the value + */ + public java.util.Date getTimeCreated() { + return timeCreated; + } + + /** The time that the cost monitor was last updated. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeUpdated") + private final java.util.Date timeUpdated; + + /** + * The time that the cost monitor was last updated. + * + * @return the value + */ + public java.util.Date getTimeUpdated() { + return timeUpdated; + } + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private final java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @return the value + */ + public java.util.Map> getDefinedTags() { + return definedTags; + } + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private final java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @return the value + */ + public java.util.Map getFreeformTags() { + return freeformTags; + } + + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags + * can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("systemTags") + private final java.util.Map> systemTags; + + /** + * System tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags + * can be viewed by users, but can only be created by the system. + * + *

Example: {@code {"orcl-cloud": {"free-tier-retained": "true"}}} + * + * @return the value + */ + public java.util.Map> getSystemTags() { + return systemTags; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("CostAnomalyMonitorSummary("); + sb.append("super=").append(super.toString()); + sb.append("id=").append(String.valueOf(this.id)); + sb.append(", compartmentId=").append(String.valueOf(this.compartmentId)); + sb.append(", name=").append(String.valueOf(this.name)); + sb.append(", type=").append(String.valueOf(this.type)); + sb.append(", description=").append(String.valueOf(this.description)); + sb.append(", lifecycleState=").append(String.valueOf(this.lifecycleState)); + sb.append(", targetResourceFilter=").append(String.valueOf(this.targetResourceFilter)); + sb.append(", timeCreated=").append(String.valueOf(this.timeCreated)); + sb.append(", timeUpdated=").append(String.valueOf(this.timeUpdated)); + sb.append(", definedTags=").append(String.valueOf(this.definedTags)); + sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); + sb.append(", systemTags=").append(String.valueOf(this.systemTags)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CostAnomalyMonitorSummary)) { + return false; + } + + CostAnomalyMonitorSummary other = (CostAnomalyMonitorSummary) o; + return java.util.Objects.equals(this.id, other.id) + && java.util.Objects.equals(this.compartmentId, other.compartmentId) + && java.util.Objects.equals(this.name, other.name) + && java.util.Objects.equals(this.type, other.type) + && java.util.Objects.equals(this.description, other.description) + && java.util.Objects.equals(this.lifecycleState, other.lifecycleState) + && java.util.Objects.equals(this.targetResourceFilter, other.targetResourceFilter) + && java.util.Objects.equals(this.timeCreated, other.timeCreated) + && java.util.Objects.equals(this.timeUpdated, other.timeUpdated) + && java.util.Objects.equals(this.definedTags, other.definedTags) + && java.util.Objects.equals(this.freeformTags, other.freeformTags) + && java.util.Objects.equals(this.systemTags, other.systemTags) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.id == null ? 43 : this.id.hashCode()); + result = + (result * PRIME) + + (this.compartmentId == null ? 43 : this.compartmentId.hashCode()); + result = (result * PRIME) + (this.name == null ? 43 : this.name.hashCode()); + result = (result * PRIME) + (this.type == null ? 43 : this.type.hashCode()); + result = (result * PRIME) + (this.description == null ? 43 : this.description.hashCode()); + result = + (result * PRIME) + + (this.lifecycleState == null ? 43 : this.lifecycleState.hashCode()); + result = + (result * PRIME) + + (this.targetResourceFilter == null + ? 43 + : this.targetResourceFilter.hashCode()); + result = (result * PRIME) + (this.timeCreated == null ? 43 : this.timeCreated.hashCode()); + result = (result * PRIME) + (this.timeUpdated == null ? 43 : this.timeUpdated.hashCode()); + result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); + result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); + result = (result * PRIME) + (this.systemTags == null ? 43 : this.systemTags.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CreateAlertRuleDetails.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CreateAlertRuleDetails.java index bb6d997a5d2..9a99998773d 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CreateAlertRuleDetails.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CreateAlertRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.model; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CreateBudgetDetails.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CreateBudgetDetails.java index cddc48e38be..caffe5cd35e 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CreateBudgetDetails.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CreateBudgetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.model; @@ -46,7 +46,8 @@ public final class CreateBudgetDetails "targetType", "targets", "freeformTags", - "definedTags" + "definedTags", + "systemTags" }) public CreateBudgetDetails( String compartmentId, @@ -62,7 +63,8 @@ public CreateBudgetDetails( TargetType targetType, java.util.List targets, java.util.Map freeformTags, - java.util.Map> definedTags) { + java.util.Map> definedTags, + java.util.Map> systemTags) { super(); this.compartmentId = compartmentId; this.targetCompartmentId = targetCompartmentId; @@ -78,6 +80,7 @@ public CreateBudgetDetails( this.targets = targets; this.freeformTags = freeformTags; this.definedTags = definedTags; + this.systemTags = systemTags; } @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") @@ -220,17 +223,17 @@ public Builder processingPeriodType(ProcessingPeriodType processingPeriodType) { return this; } /** - * The date when the one-time budget begins. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date - * provided after being converted to UTC time. + * The date when the one-time budget begins. For example, {@code + * 2023-07-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. */ @com.fasterxml.jackson.annotation.JsonProperty("startDate") private java.util.Date startDate; /** - * The date when the one-time budget begins. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date - * provided after being converted to UTC time. + * The date when the one-time budget begins. For example, {@code + * 2023-07-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. * * @param startDate the value to set * @return this builder @@ -241,17 +244,17 @@ public Builder startDate(java.util.Date startDate) { return this; } /** - * The date when the one-time budget concludes. For example, {@code 2023-03-23}. The - * date-time format conforms to RFC 3339, and will be truncated to the starting point of the - * date provided after being converted to UTC time. + * The date when the one-time budget concludes. For example, {@code + * 2023-08-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. */ @com.fasterxml.jackson.annotation.JsonProperty("endDate") private java.util.Date endDate; /** - * The date when the one-time budget concludes. For example, {@code 2023-03-23}. The - * date-time format conforms to RFC 3339, and will be truncated to the starting point of the - * date provided after being converted to UTC time. + * The date when the one-time budget concludes. For example, {@code + * 2023-08-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. * * @param endDate the value to set * @return this builder @@ -352,6 +355,25 @@ public Builder definedTags( this.__explicitlySet__.add("definedTags"); return this; } + /** + * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {@code + * {"orcl-cloud": {"free-tier-retained": "true"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("systemTags") + private java.util.Map> systemTags; + + /** + * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {@code + * {"orcl-cloud": {"free-tier-retained": "true"}}} + * + * @param systemTags the value to set + * @return this builder + */ + public Builder systemTags(java.util.Map> systemTags) { + this.systemTags = systemTags; + this.__explicitlySet__.add("systemTags"); + return this; + } @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); @@ -372,7 +394,8 @@ public CreateBudgetDetails build() { this.targetType, this.targets, this.freeformTags, - this.definedTags); + this.definedTags, + this.systemTags); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } @@ -424,6 +447,9 @@ public Builder copy(CreateBudgetDetails model) { if (model.wasPropertyExplicitlySet("definedTags")) { this.definedTags(model.getDefinedTags()); } + if (model.wasPropertyExplicitlySet("systemTags")) { + this.systemTags(model.getSystemTags()); + } return this; } } @@ -556,17 +582,17 @@ public ProcessingPeriodType getProcessingPeriodType() { } /** - * The date when the one-time budget begins. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date provided - * after being converted to UTC time. + * The date when the one-time budget begins. For example, {@code + * 2023-07-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. */ @com.fasterxml.jackson.annotation.JsonProperty("startDate") private final java.util.Date startDate; /** - * The date when the one-time budget begins. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date provided - * after being converted to UTC time. + * The date when the one-time budget begins. For example, {@code + * 2023-07-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. * * @return the value */ @@ -575,17 +601,17 @@ public java.util.Date getStartDate() { } /** - * The date when the one-time budget concludes. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date provided - * after being converted to UTC time. + * The date when the one-time budget concludes. For example, {@code + * 2023-08-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. */ @com.fasterxml.jackson.annotation.JsonProperty("endDate") private final java.util.Date endDate; /** - * The date when the one-time budget concludes. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date provided - * after being converted to UTC time. + * The date when the one-time budget concludes. For example, {@code + * 2023-08-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. * * @return the value */ @@ -673,6 +699,23 @@ public java.util.Map> getDefinedTags() { return definedTags; } + /** + * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {@code + * {"orcl-cloud": {"free-tier-retained": "true"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("systemTags") + private final java.util.Map> systemTags; + + /** + * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {@code + * {"orcl-cloud": {"free-tier-retained": "true"}}} + * + * @return the value + */ + public java.util.Map> getSystemTags() { + return systemTags; + } + @Override public String toString() { return this.toString(true); @@ -703,6 +746,7 @@ public String toString(boolean includeByteArrayContents) { sb.append(", targets=").append(String.valueOf(this.targets)); sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); sb.append(", definedTags=").append(String.valueOf(this.definedTags)); + sb.append(", systemTags=").append(String.valueOf(this.systemTags)); sb.append(")"); return sb.toString(); } @@ -733,6 +777,7 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.targets, other.targets) && java.util.Objects.equals(this.freeformTags, other.freeformTags) && java.util.Objects.equals(this.definedTags, other.definedTags) + && java.util.Objects.equals(this.systemTags, other.systemTags) && super.equals(other); } @@ -768,6 +813,7 @@ public int hashCode() { result = (result * PRIME) + (this.targets == null ? 43 : this.targets.hashCode()); result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); + result = (result * PRIME) + (this.systemTags == null ? 43 : this.systemTags.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CreateCostAlertSubscriptionDetails.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CreateCostAlertSubscriptionDetails.java new file mode 100644 index 00000000000..3872e271d23 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CreateCostAlertSubscriptionDetails.java @@ -0,0 +1,373 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** + * The create CostAlertSubscriptionDetails details. The clients should pass compartmentId where the + * resource should belong, description and channels.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = CreateCostAlertSubscriptionDetails.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class CreateCostAlertSubscriptionDetails + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({ + "compartmentId", + "name", + "description", + "channels", + "definedTags", + "freeformTags" + }) + public CreateCostAlertSubscriptionDetails( + String compartmentId, + String name, + String description, + String channels, + java.util.Map> definedTags, + java.util.Map freeformTags) { + super(); + this.compartmentId = compartmentId; + this.name = name; + this.description = description; + this.channels = channels; + this.definedTags = definedTags; + this.freeformTags = freeformTags; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** The OCID of the compartment. */ + @com.fasterxml.jackson.annotation.JsonProperty("compartmentId") + private String compartmentId; + + /** + * The OCID of the compartment. + * + * @param compartmentId the value to set + * @return this builder + */ + public Builder compartmentId(String compartmentId) { + this.compartmentId = compartmentId; + this.__explicitlySet__.add("compartmentId"); + return this; + } + /** The name of the cost alert subscription. Avoid entering confidential information. */ + @com.fasterxml.jackson.annotation.JsonProperty("name") + private String name; + + /** + * The name of the cost alert subscription. Avoid entering confidential information. + * + * @param name the value to set + * @return this builder + */ + public Builder name(String name) { + this.name = name; + this.__explicitlySet__.add("name"); + return this; + } + /** The description of the cost alert subscription. */ + @com.fasterxml.jackson.annotation.JsonProperty("description") + private String description; + + /** + * The description of the cost alert subscription. + * + * @param description the value to set + * @return this builder + */ + public Builder description(String description) { + this.description = description; + this.__explicitlySet__.add("description"); + return this; + } + /** The notification channels string. */ + @com.fasterxml.jackson.annotation.JsonProperty("channels") + private String channels; + + /** + * The notification channels string. + * + * @param channels the value to set + * @return this builder + */ + public Builder channels(String channels) { + this.channels = channels; + this.__explicitlySet__.add("channels"); + return this; + } + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @param definedTags the value to set + * @return this builder + */ + public Builder definedTags( + java.util.Map> definedTags) { + this.definedTags = definedTags; + this.__explicitlySet__.add("definedTags"); + return this; + } + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @param freeformTags the value to set + * @return this builder + */ + public Builder freeformTags(java.util.Map freeformTags) { + this.freeformTags = freeformTags; + this.__explicitlySet__.add("freeformTags"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public CreateCostAlertSubscriptionDetails build() { + CreateCostAlertSubscriptionDetails model = + new CreateCostAlertSubscriptionDetails( + this.compartmentId, + this.name, + this.description, + this.channels, + this.definedTags, + this.freeformTags); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(CreateCostAlertSubscriptionDetails model) { + if (model.wasPropertyExplicitlySet("compartmentId")) { + this.compartmentId(model.getCompartmentId()); + } + if (model.wasPropertyExplicitlySet("name")) { + this.name(model.getName()); + } + if (model.wasPropertyExplicitlySet("description")) { + this.description(model.getDescription()); + } + if (model.wasPropertyExplicitlySet("channels")) { + this.channels(model.getChannels()); + } + if (model.wasPropertyExplicitlySet("definedTags")) { + this.definedTags(model.getDefinedTags()); + } + if (model.wasPropertyExplicitlySet("freeformTags")) { + this.freeformTags(model.getFreeformTags()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** The OCID of the compartment. */ + @com.fasterxml.jackson.annotation.JsonProperty("compartmentId") + private final String compartmentId; + + /** + * The OCID of the compartment. + * + * @return the value + */ + public String getCompartmentId() { + return compartmentId; + } + + /** The name of the cost alert subscription. Avoid entering confidential information. */ + @com.fasterxml.jackson.annotation.JsonProperty("name") + private final String name; + + /** + * The name of the cost alert subscription. Avoid entering confidential information. + * + * @return the value + */ + public String getName() { + return name; + } + + /** The description of the cost alert subscription. */ + @com.fasterxml.jackson.annotation.JsonProperty("description") + private final String description; + + /** + * The description of the cost alert subscription. + * + * @return the value + */ + public String getDescription() { + return description; + } + + /** The notification channels string. */ + @com.fasterxml.jackson.annotation.JsonProperty("channels") + private final String channels; + + /** + * The notification channels string. + * + * @return the value + */ + public String getChannels() { + return channels; + } + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private final java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @return the value + */ + public java.util.Map> getDefinedTags() { + return definedTags; + } + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private final java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @return the value + */ + public java.util.Map getFreeformTags() { + return freeformTags; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("CreateCostAlertSubscriptionDetails("); + sb.append("super=").append(super.toString()); + sb.append("compartmentId=").append(String.valueOf(this.compartmentId)); + sb.append(", name=").append(String.valueOf(this.name)); + sb.append(", description=").append(String.valueOf(this.description)); + sb.append(", channels=").append(String.valueOf(this.channels)); + sb.append(", definedTags=").append(String.valueOf(this.definedTags)); + sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CreateCostAlertSubscriptionDetails)) { + return false; + } + + CreateCostAlertSubscriptionDetails other = (CreateCostAlertSubscriptionDetails) o; + return java.util.Objects.equals(this.compartmentId, other.compartmentId) + && java.util.Objects.equals(this.name, other.name) + && java.util.Objects.equals(this.description, other.description) + && java.util.Objects.equals(this.channels, other.channels) + && java.util.Objects.equals(this.definedTags, other.definedTags) + && java.util.Objects.equals(this.freeformTags, other.freeformTags) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = + (result * PRIME) + + (this.compartmentId == null ? 43 : this.compartmentId.hashCode()); + result = (result * PRIME) + (this.name == null ? 43 : this.name.hashCode()); + result = (result * PRIME) + (this.description == null ? 43 : this.description.hashCode()); + result = (result * PRIME) + (this.channels == null ? 43 : this.channels.hashCode()); + result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); + result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CreateCostAnomalyMonitorDetails.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CreateCostAnomalyMonitorDetails.java new file mode 100644 index 00000000000..71ba030381e --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/CreateCostAnomalyMonitorDetails.java @@ -0,0 +1,398 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** + * The create CostAnomalyMonitor details. The clients should pass ocid of the compartmentId for the + * monitor resource to be created. tenantIdFilter and resourceFilter targets resources to monitor in + * a given tenancy.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = CreateCostAnomalyMonitorDetails.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class CreateCostAnomalyMonitorDetails + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({ + "compartmentId", + "name", + "description", + "targetResourceFilter", + "costAlertSubscriptionMap", + "definedTags", + "freeformTags" + }) + public CreateCostAnomalyMonitorDetails( + String compartmentId, + String name, + String description, + TargetResourceFilter targetResourceFilter, + CostAlertSubscriptionMap costAlertSubscriptionMap, + java.util.Map> definedTags, + java.util.Map freeformTags) { + super(); + this.compartmentId = compartmentId; + this.name = name; + this.description = description; + this.targetResourceFilter = targetResourceFilter; + this.costAlertSubscriptionMap = costAlertSubscriptionMap; + this.definedTags = definedTags; + this.freeformTags = freeformTags; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** The OCID of the compartment. */ + @com.fasterxml.jackson.annotation.JsonProperty("compartmentId") + private String compartmentId; + + /** + * The OCID of the compartment. + * + * @param compartmentId the value to set + * @return this builder + */ + public Builder compartmentId(String compartmentId) { + this.compartmentId = compartmentId; + this.__explicitlySet__.add("compartmentId"); + return this; + } + /** The name of the cost anomaly monitor. Avoid entering confidential information. */ + @com.fasterxml.jackson.annotation.JsonProperty("name") + private String name; + + /** + * The name of the cost anomaly monitor. Avoid entering confidential information. + * + * @param name the value to set + * @return this builder + */ + public Builder name(String name) { + this.name = name; + this.__explicitlySet__.add("name"); + return this; + } + /** The description of the cost anomaly monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("description") + private String description; + + /** + * The description of the cost anomaly monitor. + * + * @param description the value to set + * @return this builder + */ + public Builder description(String description) { + this.description = description; + this.__explicitlySet__.add("description"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("targetResourceFilter") + private TargetResourceFilter targetResourceFilter; + + public Builder targetResourceFilter(TargetResourceFilter targetResourceFilter) { + this.targetResourceFilter = targetResourceFilter; + this.__explicitlySet__.add("targetResourceFilter"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("costAlertSubscriptionMap") + private CostAlertSubscriptionMap costAlertSubscriptionMap; + + public Builder costAlertSubscriptionMap(CostAlertSubscriptionMap costAlertSubscriptionMap) { + this.costAlertSubscriptionMap = costAlertSubscriptionMap; + this.__explicitlySet__.add("costAlertSubscriptionMap"); + return this; + } + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @param definedTags the value to set + * @return this builder + */ + public Builder definedTags( + java.util.Map> definedTags) { + this.definedTags = definedTags; + this.__explicitlySet__.add("definedTags"); + return this; + } + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @param freeformTags the value to set + * @return this builder + */ + public Builder freeformTags(java.util.Map freeformTags) { + this.freeformTags = freeformTags; + this.__explicitlySet__.add("freeformTags"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public CreateCostAnomalyMonitorDetails build() { + CreateCostAnomalyMonitorDetails model = + new CreateCostAnomalyMonitorDetails( + this.compartmentId, + this.name, + this.description, + this.targetResourceFilter, + this.costAlertSubscriptionMap, + this.definedTags, + this.freeformTags); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(CreateCostAnomalyMonitorDetails model) { + if (model.wasPropertyExplicitlySet("compartmentId")) { + this.compartmentId(model.getCompartmentId()); + } + if (model.wasPropertyExplicitlySet("name")) { + this.name(model.getName()); + } + if (model.wasPropertyExplicitlySet("description")) { + this.description(model.getDescription()); + } + if (model.wasPropertyExplicitlySet("targetResourceFilter")) { + this.targetResourceFilter(model.getTargetResourceFilter()); + } + if (model.wasPropertyExplicitlySet("costAlertSubscriptionMap")) { + this.costAlertSubscriptionMap(model.getCostAlertSubscriptionMap()); + } + if (model.wasPropertyExplicitlySet("definedTags")) { + this.definedTags(model.getDefinedTags()); + } + if (model.wasPropertyExplicitlySet("freeformTags")) { + this.freeformTags(model.getFreeformTags()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** The OCID of the compartment. */ + @com.fasterxml.jackson.annotation.JsonProperty("compartmentId") + private final String compartmentId; + + /** + * The OCID of the compartment. + * + * @return the value + */ + public String getCompartmentId() { + return compartmentId; + } + + /** The name of the cost anomaly monitor. Avoid entering confidential information. */ + @com.fasterxml.jackson.annotation.JsonProperty("name") + private final String name; + + /** + * The name of the cost anomaly monitor. Avoid entering confidential information. + * + * @return the value + */ + public String getName() { + return name; + } + + /** The description of the cost anomaly monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("description") + private final String description; + + /** + * The description of the cost anomaly monitor. + * + * @return the value + */ + public String getDescription() { + return description; + } + + @com.fasterxml.jackson.annotation.JsonProperty("targetResourceFilter") + private final TargetResourceFilter targetResourceFilter; + + public TargetResourceFilter getTargetResourceFilter() { + return targetResourceFilter; + } + + @com.fasterxml.jackson.annotation.JsonProperty("costAlertSubscriptionMap") + private final CostAlertSubscriptionMap costAlertSubscriptionMap; + + public CostAlertSubscriptionMap getCostAlertSubscriptionMap() { + return costAlertSubscriptionMap; + } + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private final java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @return the value + */ + public java.util.Map> getDefinedTags() { + return definedTags; + } + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private final java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @return the value + */ + public java.util.Map getFreeformTags() { + return freeformTags; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("CreateCostAnomalyMonitorDetails("); + sb.append("super=").append(super.toString()); + sb.append("compartmentId=").append(String.valueOf(this.compartmentId)); + sb.append(", name=").append(String.valueOf(this.name)); + sb.append(", description=").append(String.valueOf(this.description)); + sb.append(", targetResourceFilter=").append(String.valueOf(this.targetResourceFilter)); + sb.append(", costAlertSubscriptionMap=") + .append(String.valueOf(this.costAlertSubscriptionMap)); + sb.append(", definedTags=").append(String.valueOf(this.definedTags)); + sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CreateCostAnomalyMonitorDetails)) { + return false; + } + + CreateCostAnomalyMonitorDetails other = (CreateCostAnomalyMonitorDetails) o; + return java.util.Objects.equals(this.compartmentId, other.compartmentId) + && java.util.Objects.equals(this.name, other.name) + && java.util.Objects.equals(this.description, other.description) + && java.util.Objects.equals(this.targetResourceFilter, other.targetResourceFilter) + && java.util.Objects.equals( + this.costAlertSubscriptionMap, other.costAlertSubscriptionMap) + && java.util.Objects.equals(this.definedTags, other.definedTags) + && java.util.Objects.equals(this.freeformTags, other.freeformTags) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = + (result * PRIME) + + (this.compartmentId == null ? 43 : this.compartmentId.hashCode()); + result = (result * PRIME) + (this.name == null ? 43 : this.name.hashCode()); + result = (result * PRIME) + (this.description == null ? 43 : this.description.hashCode()); + result = + (result * PRIME) + + (this.targetResourceFilter == null + ? 43 + : this.targetResourceFilter.hashCode()); + result = + (result * PRIME) + + (this.costAlertSubscriptionMap == null + ? 43 + : this.costAlertSubscriptionMap.hashCode()); + result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); + result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/Dimension.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/Dimension.java new file mode 100644 index 00000000000..a9bc8b68ccc --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/Dimension.java @@ -0,0 +1,170 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** + * The dimension used for filtering. Available dimensions are: "service", "skuName", + * "skuPartNumber", "unit", "compartmentName", "compartmentPath", "compartmentId", "tenantName, + * "tenantId", "platform", "region", "logicalAd", "resourceId". For example: {@code [{value: + * "COMPUTE", key: "service"}]}
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize(builder = Dimension.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class Dimension extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({"key", "value"}) + public Dimension(String key, String value) { + super(); + this.key = key; + this.value = value; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** The dimension key. */ + @com.fasterxml.jackson.annotation.JsonProperty("key") + private String key; + + /** + * The dimension key. + * + * @param key the value to set + * @return this builder + */ + public Builder key(String key) { + this.key = key; + this.__explicitlySet__.add("key"); + return this; + } + /** The dimension value. */ + @com.fasterxml.jackson.annotation.JsonProperty("value") + private String value; + + /** + * The dimension value. + * + * @param value the value to set + * @return this builder + */ + public Builder value(String value) { + this.value = value; + this.__explicitlySet__.add("value"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public Dimension build() { + Dimension model = new Dimension(this.key, this.value); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(Dimension model) { + if (model.wasPropertyExplicitlySet("key")) { + this.key(model.getKey()); + } + if (model.wasPropertyExplicitlySet("value")) { + this.value(model.getValue()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** The dimension key. */ + @com.fasterxml.jackson.annotation.JsonProperty("key") + private final String key; + + /** + * The dimension key. + * + * @return the value + */ + public String getKey() { + return key; + } + + /** The dimension value. */ + @com.fasterxml.jackson.annotation.JsonProperty("value") + private final String value; + + /** + * The dimension value. + * + * @return the value + */ + public String getValue() { + return value; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("Dimension("); + sb.append("super=").append(super.toString()); + sb.append("key=").append(String.valueOf(this.key)); + sb.append(", value=").append(String.valueOf(this.value)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof Dimension)) { + return false; + } + + Dimension other = (Dimension) o; + return java.util.Objects.equals(this.key, other.key) + && java.util.Objects.equals(this.value, other.value) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.key == null ? 43 : this.key.hashCode()); + result = (result * PRIME) + (this.value == null ? 43 : this.value.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/LifecycleState.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/LifecycleState.java index ece3c86415a..69b4e6a0e4d 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/LifecycleState.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/LifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.model; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/MonitorType.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/MonitorType.java new file mode 100644 index 00000000000..72add72f23b --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/MonitorType.java @@ -0,0 +1,53 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** The reset period for the budget. The valid value is DEFAULT,CUSTOM */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public enum MonitorType implements com.oracle.bmc.http.internal.BmcEnum { + Default("DEFAULT"), + Custom("CUSTOM"), + + /** + * This value is used if a service returns a value for this enum that is not recognized by this + * version of the SDK. + */ + UnknownEnumValue(null); + + private static final org.slf4j.Logger LOG = + org.slf4j.LoggerFactory.getLogger(MonitorType.class); + + private final String value; + private static java.util.Map map; + + static { + map = new java.util.HashMap<>(); + for (MonitorType v : MonitorType.values()) { + if (v != UnknownEnumValue) { + map.put(v.getValue(), v); + } + } + } + + MonitorType(String value) { + this.value = value; + } + + @com.fasterxml.jackson.annotation.JsonValue + public String getValue() { + return value; + } + + @com.fasterxml.jackson.annotation.JsonCreator + public static MonitorType create(String key) { + if (map.containsKey(key)) { + return map.get(key); + } + LOG.warn( + "Received unknown value '{}' for enum 'MonitorType', returning UnknownEnumValue", + key); + return UnknownEnumValue; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/ProcessingPeriodType.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/ProcessingPeriodType.java index b9c55ddd91d..ed91551669c 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/ProcessingPeriodType.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/ProcessingPeriodType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.model; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/ResetPeriod.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/ResetPeriod.java index cc4b3a0c47b..45c05239d21 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/ResetPeriod.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/ResetPeriod.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.model; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/RootCauseDetail.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/RootCauseDetail.java new file mode 100644 index 00000000000..a886f923a28 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/RootCauseDetail.java @@ -0,0 +1,132 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** + * The root cause details of the cost anomaly event.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize(builder = RootCauseDetail.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class RootCauseDetail + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({"value"}) + public RootCauseDetail(Object value) { + super(); + this.value = value; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** The json object representing the root cause details of the anomaly event. */ + @com.fasterxml.jackson.annotation.JsonProperty("value") + private Object value; + + /** + * The json object representing the root cause details of the anomaly event. + * + * @param value the value to set + * @return this builder + */ + public Builder value(Object value) { + this.value = value; + this.__explicitlySet__.add("value"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public RootCauseDetail build() { + RootCauseDetail model = new RootCauseDetail(this.value); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(RootCauseDetail model) { + if (model.wasPropertyExplicitlySet("value")) { + this.value(model.getValue()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** The json object representing the root cause details of the anomaly event. */ + @com.fasterxml.jackson.annotation.JsonProperty("value") + private final Object value; + + /** + * The json object representing the root cause details of the anomaly event. + * + * @return the value + */ + public Object getValue() { + return value; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("RootCauseDetail("); + sb.append("super=").append(super.toString()); + sb.append("value=").append(String.valueOf(this.value)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof RootCauseDetail)) { + return false; + } + + RootCauseDetail other = (RootCauseDetail) o; + return java.util.Objects.equals(this.value, other.value) && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.value == null ? 43 : this.value.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/SortBy.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/SortByForBudget.java similarity index 61% rename from bmc-budget/src/main/java/com/oracle/bmc/budget/model/SortBy.java rename to bmc-budget/src/main/java/com/oracle/bmc/budget/model/SortByForBudget.java index c2714aa182e..81be4395db9 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/SortBy.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/SortByForBudget.java @@ -1,30 +1,27 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.model; -/** - * The field to sort by. If not specified, the default is timeCreated. The default sort order for - * timeCreated is DESC. The default sort order for displayName is ASC in alphanumeric order. - */ +/** The field to sort budgets by. Default is timeCreated (DESC). */ @jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") -public enum SortBy implements com.oracle.bmc.http.internal.BmcEnum { +public enum SortByForBudget implements com.oracle.bmc.http.internal.BmcEnum { TimeCreated("timeCreated"), DisplayName("displayName"), ; private final String value; - private static java.util.Map map; + private static java.util.Map map; static { map = new java.util.HashMap<>(); - for (SortBy v : SortBy.values()) { + for (SortByForBudget v : SortByForBudget.values()) { map.put(v.getValue(), v); } } - SortBy(String value) { + SortByForBudget(String value) { this.value = value; } @@ -34,10 +31,10 @@ public String getValue() { } @com.fasterxml.jackson.annotation.JsonCreator - public static SortBy create(String key) { + public static SortByForBudget create(String key) { if (map.containsKey(key)) { return map.get(key); } - throw new IllegalArgumentException("Invalid SortBy: " + key); + throw new IllegalArgumentException("Invalid SortByForBudget: " + key); } } diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/SortByForCostAd.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/SortByForCostAd.java new file mode 100644 index 00000000000..fc0d4d8a010 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/SortByForCostAd.java @@ -0,0 +1,41 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** The field to sort costAd by. Default is timeCreated (DESC). */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public enum SortByForCostAd implements com.oracle.bmc.http.internal.BmcEnum { + TimeCreated("timeCreated"), + Name("name"), + Id("id"), + ; + + private final String value; + private static java.util.Map map; + + static { + map = new java.util.HashMap<>(); + for (SortByForCostAd v : SortByForCostAd.values()) { + map.put(v.getValue(), v); + } + } + + SortByForCostAd(String value) { + this.value = value; + } + + @com.fasterxml.jackson.annotation.JsonValue + public String getValue() { + return value; + } + + @com.fasterxml.jackson.annotation.JsonCreator + public static SortByForCostAd create(String key) { + if (map.containsKey(key)) { + return map.get(key); + } + throw new IllegalArgumentException("Invalid SortByForCostAd: " + key); + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/SortByForCostAnomalyEvent.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/SortByForCostAnomalyEvent.java new file mode 100644 index 00000000000..f6482e93065 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/SortByForCostAnomalyEvent.java @@ -0,0 +1,41 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** The field to sort costAd by. Default is timeAnomalyEventDate (DESC). */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public enum SortByForCostAnomalyEvent implements com.oracle.bmc.http.internal.BmcEnum { + TimeAnomalyEventDate("timeAnomalyEventDate"), + CostAnomalyName("costAnomalyName"), + Id("id"), + ; + + private final String value; + private static java.util.Map map; + + static { + map = new java.util.HashMap<>(); + for (SortByForCostAnomalyEvent v : SortByForCostAnomalyEvent.values()) { + map.put(v.getValue(), v); + } + } + + SortByForCostAnomalyEvent(String value) { + this.value = value; + } + + @com.fasterxml.jackson.annotation.JsonValue + public String getValue() { + return value; + } + + @com.fasterxml.jackson.annotation.JsonCreator + public static SortByForCostAnomalyEvent create(String key) { + if (map.containsKey(key)) { + return map.get(key); + } + throw new IllegalArgumentException("Invalid SortByForCostAnomalyEvent: " + key); + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/SortOrder.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/SortOrder.java index c7ab9d95772..4aa80fb931f 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/SortOrder.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.model; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/Tag.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/Tag.java new file mode 100644 index 00000000000..520ac827207 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/Tag.java @@ -0,0 +1,202 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** + * The tag used for filtering.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize(builder = Tag.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class Tag extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({"namespace", "key", "value"}) + public Tag(String namespace, String key, String value) { + super(); + this.namespace = namespace; + this.key = key; + this.value = value; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** The tag namespace. */ + @com.fasterxml.jackson.annotation.JsonProperty("namespace") + private String namespace; + + /** + * The tag namespace. + * + * @param namespace the value to set + * @return this builder + */ + public Builder namespace(String namespace) { + this.namespace = namespace; + this.__explicitlySet__.add("namespace"); + return this; + } + /** The tag key. */ + @com.fasterxml.jackson.annotation.JsonProperty("key") + private String key; + + /** + * The tag key. + * + * @param key the value to set + * @return this builder + */ + public Builder key(String key) { + this.key = key; + this.__explicitlySet__.add("key"); + return this; + } + /** The tag value. */ + @com.fasterxml.jackson.annotation.JsonProperty("value") + private String value; + + /** + * The tag value. + * + * @param value the value to set + * @return this builder + */ + public Builder value(String value) { + this.value = value; + this.__explicitlySet__.add("value"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public Tag build() { + Tag model = new Tag(this.namespace, this.key, this.value); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(Tag model) { + if (model.wasPropertyExplicitlySet("namespace")) { + this.namespace(model.getNamespace()); + } + if (model.wasPropertyExplicitlySet("key")) { + this.key(model.getKey()); + } + if (model.wasPropertyExplicitlySet("value")) { + this.value(model.getValue()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** The tag namespace. */ + @com.fasterxml.jackson.annotation.JsonProperty("namespace") + private final String namespace; + + /** + * The tag namespace. + * + * @return the value + */ + public String getNamespace() { + return namespace; + } + + /** The tag key. */ + @com.fasterxml.jackson.annotation.JsonProperty("key") + private final String key; + + /** + * The tag key. + * + * @return the value + */ + public String getKey() { + return key; + } + + /** The tag value. */ + @com.fasterxml.jackson.annotation.JsonProperty("value") + private final String value; + + /** + * The tag value. + * + * @return the value + */ + public String getValue() { + return value; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("Tag("); + sb.append("super=").append(super.toString()); + sb.append("namespace=").append(String.valueOf(this.namespace)); + sb.append(", key=").append(String.valueOf(this.key)); + sb.append(", value=").append(String.valueOf(this.value)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof Tag)) { + return false; + } + + Tag other = (Tag) o; + return java.util.Objects.equals(this.namespace, other.namespace) + && java.util.Objects.equals(this.key, other.key) + && java.util.Objects.equals(this.value, other.value) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.namespace == null ? 43 : this.namespace.hashCode()); + result = (result * PRIME) + (this.key == null ? 43 : this.key.hashCode()); + result = (result * PRIME) + (this.value == null ? 43 : this.value.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/TargetResourceFilter.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/TargetResourceFilter.java new file mode 100644 index 00000000000..06c55a95aaf --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/TargetResourceFilter.java @@ -0,0 +1,292 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** + * The filter object to target resources for cost monitor. Cost generated by one or more resources + * identified by this filter is monitored for anomalous deviations.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = TargetResourceFilter.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class TargetResourceFilter + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({"operator", "dimensions", "tags", "filters"}) + public TargetResourceFilter( + Operator operator, + java.util.List dimensions, + java.util.List tags, + java.util.List filters) { + super(); + this.operator = operator; + this.dimensions = dimensions; + this.tags = tags; + this.filters = filters; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** The filter operator. Example: 'AND', 'OR'. */ + @com.fasterxml.jackson.annotation.JsonProperty("operator") + private Operator operator; + + /** + * The filter operator. Example: 'AND', 'OR'. + * + * @param operator the value to set + * @return this builder + */ + public Builder operator(Operator operator) { + this.operator = operator; + this.__explicitlySet__.add("operator"); + return this; + } + /** The dimensions to filter on. */ + @com.fasterxml.jackson.annotation.JsonProperty("dimensions") + private java.util.List dimensions; + + /** + * The dimensions to filter on. + * + * @param dimensions the value to set + * @return this builder + */ + public Builder dimensions(java.util.List dimensions) { + this.dimensions = dimensions; + this.__explicitlySet__.add("dimensions"); + return this; + } + /** The tags to filter on. */ + @com.fasterxml.jackson.annotation.JsonProperty("tags") + private java.util.List tags; + + /** + * The tags to filter on. + * + * @param tags the value to set + * @return this builder + */ + public Builder tags(java.util.List tags) { + this.tags = tags; + this.__explicitlySet__.add("tags"); + return this; + } + /** The nested filter object. */ + @com.fasterxml.jackson.annotation.JsonProperty("filters") + private java.util.List filters; + + /** + * The nested filter object. + * + * @param filters the value to set + * @return this builder + */ + public Builder filters(java.util.List filters) { + this.filters = filters; + this.__explicitlySet__.add("filters"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public TargetResourceFilter build() { + TargetResourceFilter model = + new TargetResourceFilter( + this.operator, this.dimensions, this.tags, this.filters); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(TargetResourceFilter model) { + if (model.wasPropertyExplicitlySet("operator")) { + this.operator(model.getOperator()); + } + if (model.wasPropertyExplicitlySet("dimensions")) { + this.dimensions(model.getDimensions()); + } + if (model.wasPropertyExplicitlySet("tags")) { + this.tags(model.getTags()); + } + if (model.wasPropertyExplicitlySet("filters")) { + this.filters(model.getFilters()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** The filter operator. Example: 'AND', 'OR'. */ + public enum Operator implements com.oracle.bmc.http.internal.BmcEnum { + And("AND"), + Or("OR"), + + /** + * This value is used if a service returns a value for this enum that is not recognized by + * this version of the SDK. + */ + UnknownEnumValue(null); + + private static final org.slf4j.Logger LOG = + org.slf4j.LoggerFactory.getLogger(Operator.class); + + private final String value; + private static java.util.Map map; + + static { + map = new java.util.HashMap<>(); + for (Operator v : Operator.values()) { + if (v != UnknownEnumValue) { + map.put(v.getValue(), v); + } + } + } + + Operator(String value) { + this.value = value; + } + + @com.fasterxml.jackson.annotation.JsonValue + public String getValue() { + return value; + } + + @com.fasterxml.jackson.annotation.JsonCreator + public static Operator create(String key) { + if (map.containsKey(key)) { + return map.get(key); + } + LOG.warn( + "Received unknown value '{}' for enum 'Operator', returning UnknownEnumValue", + key); + return UnknownEnumValue; + } + }; + /** The filter operator. Example: 'AND', 'OR'. */ + @com.fasterxml.jackson.annotation.JsonProperty("operator") + private final Operator operator; + + /** + * The filter operator. Example: 'AND', 'OR'. + * + * @return the value + */ + public Operator getOperator() { + return operator; + } + + /** The dimensions to filter on. */ + @com.fasterxml.jackson.annotation.JsonProperty("dimensions") + private final java.util.List dimensions; + + /** + * The dimensions to filter on. + * + * @return the value + */ + public java.util.List getDimensions() { + return dimensions; + } + + /** The tags to filter on. */ + @com.fasterxml.jackson.annotation.JsonProperty("tags") + private final java.util.List tags; + + /** + * The tags to filter on. + * + * @return the value + */ + public java.util.List getTags() { + return tags; + } + + /** The nested filter object. */ + @com.fasterxml.jackson.annotation.JsonProperty("filters") + private final java.util.List filters; + + /** + * The nested filter object. + * + * @return the value + */ + public java.util.List getFilters() { + return filters; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("TargetResourceFilter("); + sb.append("super=").append(super.toString()); + sb.append("operator=").append(String.valueOf(this.operator)); + sb.append(", dimensions=").append(String.valueOf(this.dimensions)); + sb.append(", tags=").append(String.valueOf(this.tags)); + sb.append(", filters=").append(String.valueOf(this.filters)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof TargetResourceFilter)) { + return false; + } + + TargetResourceFilter other = (TargetResourceFilter) o; + return java.util.Objects.equals(this.operator, other.operator) + && java.util.Objects.equals(this.dimensions, other.dimensions) + && java.util.Objects.equals(this.tags, other.tags) + && java.util.Objects.equals(this.filters, other.filters) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.operator == null ? 43 : this.operator.hashCode()); + result = (result * PRIME) + (this.dimensions == null ? 43 : this.dimensions.hashCode()); + result = (result * PRIME) + (this.tags == null ? 43 : this.tags.hashCode()); + result = (result * PRIME) + (this.filters == null ? 43 : this.filters.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/TargetType.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/TargetType.java index 5016ca3751f..26d09e0e93e 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/TargetType.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/TargetType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.model; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/ThresholdType.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/ThresholdType.java index 51a298e1406..f6990da8a90 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/ThresholdType.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/ThresholdType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.model; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/UpdateAlertRuleDetails.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/UpdateAlertRuleDetails.java index a4f876df4c6..d105a55f1e2 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/UpdateAlertRuleDetails.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/UpdateAlertRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.model; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/UpdateBudgetDetails.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/UpdateBudgetDetails.java index bb586a47c4e..a0601816ac9 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/UpdateBudgetDetails.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/UpdateBudgetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.model; @@ -33,7 +33,8 @@ public final class UpdateBudgetDetails "endDate", "resetPeriod", "freeformTags", - "definedTags" + "definedTags", + "systemTags" }) public UpdateBudgetDetails( String displayName, @@ -45,7 +46,8 @@ public UpdateBudgetDetails( java.util.Date endDate, ResetPeriod resetPeriod, java.util.Map freeformTags, - java.util.Map> definedTags) { + java.util.Map> definedTags, + java.util.Map> systemTags) { super(); this.displayName = displayName; this.description = description; @@ -57,6 +59,7 @@ public UpdateBudgetDetails( this.resetPeriod = resetPeriod; this.freeformTags = freeformTags; this.definedTags = definedTags; + this.systemTags = systemTags; } @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") @@ -154,17 +157,17 @@ public Builder processingPeriodType(ProcessingPeriodType processingPeriodType) { return this; } /** - * The date when the one-time budget begins. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date - * provided after being converted to UTC time. + * The date when the one-time budget begins. For example, {@code + * 2023-07-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. */ @com.fasterxml.jackson.annotation.JsonProperty("startDate") private java.util.Date startDate; /** - * The date when the one-time budget begins. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date - * provided after being converted to UTC time. + * The date when the one-time budget begins. For example, {@code + * 2023-07-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. * * @param startDate the value to set * @return this builder @@ -175,17 +178,17 @@ public Builder startDate(java.util.Date startDate) { return this; } /** - * The time when the one-time budget concludes. For example, {@code 2023-03-23}. The - * date-time format conforms to RFC 3339, and will be truncated to the starting point of the - * date provided after being converted to UTC time. + * The time when the one-time budget concludes. For example, {@code + * 2023-08-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. */ @com.fasterxml.jackson.annotation.JsonProperty("endDate") private java.util.Date endDate; /** - * The time when the one-time budget concludes. For example, {@code 2023-03-23}. The - * date-time format conforms to RFC 3339, and will be truncated to the starting point of the - * date provided after being converted to UTC time. + * The time when the one-time budget concludes. For example, {@code + * 2023-08-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. * * @param endDate the value to set * @return this builder @@ -261,6 +264,25 @@ public Builder definedTags( this.__explicitlySet__.add("definedTags"); return this; } + /** + * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {@code + * {"orcl-cloud": {"free-tier-retained": "true"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("systemTags") + private java.util.Map> systemTags; + + /** + * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {@code + * {"orcl-cloud": {"free-tier-retained": "true"}}} + * + * @param systemTags the value to set + * @return this builder + */ + public Builder systemTags(java.util.Map> systemTags) { + this.systemTags = systemTags; + this.__explicitlySet__.add("systemTags"); + return this; + } @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); @@ -277,7 +299,8 @@ public UpdateBudgetDetails build() { this.endDate, this.resetPeriod, this.freeformTags, - this.definedTags); + this.definedTags, + this.systemTags); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } @@ -317,6 +340,9 @@ public Builder copy(UpdateBudgetDetails model) { if (model.wasPropertyExplicitlySet("definedTags")) { this.definedTags(model.getDefinedTags()); } + if (model.wasPropertyExplicitlySet("systemTags")) { + this.systemTags(model.getSystemTags()); + } return this; } } @@ -410,17 +436,17 @@ public ProcessingPeriodType getProcessingPeriodType() { } /** - * The date when the one-time budget begins. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date provided - * after being converted to UTC time. + * The date when the one-time budget begins. For example, {@code + * 2023-07-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. */ @com.fasterxml.jackson.annotation.JsonProperty("startDate") private final java.util.Date startDate; /** - * The date when the one-time budget begins. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date provided - * after being converted to UTC time. + * The date when the one-time budget begins. For example, {@code + * 2023-07-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. * * @return the value */ @@ -429,17 +455,17 @@ public java.util.Date getStartDate() { } /** - * The time when the one-time budget concludes. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date provided - * after being converted to UTC time. + * The time when the one-time budget concludes. For example, {@code + * 2023-08-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. */ @com.fasterxml.jackson.annotation.JsonProperty("endDate") private final java.util.Date endDate; /** - * The time when the one-time budget concludes. For example, {@code 2023-03-23}. The date-time - * format conforms to RFC 3339, and will be truncated to the starting point of the date provided - * after being converted to UTC time. + * The time when the one-time budget concludes. For example, {@code + * 2023-08-12T16:01:19.847222+05:30}. The date-time format conforms to RFC 3339, and will be + * truncated to the starting point of the date provided after being converted to UTC time. * * @return the value */ @@ -506,6 +532,23 @@ public java.util.Map> getDefinedTags() { return definedTags; } + /** + * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {@code + * {"orcl-cloud": {"free-tier-retained": "true"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("systemTags") + private final java.util.Map> systemTags; + + /** + * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {@code + * {"orcl-cloud": {"free-tier-retained": "true"}}} + * + * @return the value + */ + public java.util.Map> getSystemTags() { + return systemTags; + } + @Override public String toString() { return this.toString(true); @@ -532,6 +575,7 @@ public String toString(boolean includeByteArrayContents) { sb.append(", resetPeriod=").append(String.valueOf(this.resetPeriod)); sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); sb.append(", definedTags=").append(String.valueOf(this.definedTags)); + sb.append(", systemTags=").append(String.valueOf(this.systemTags)); sb.append(")"); return sb.toString(); } @@ -558,6 +602,7 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.resetPeriod, other.resetPeriod) && java.util.Objects.equals(this.freeformTags, other.freeformTags) && java.util.Objects.equals(this.definedTags, other.definedTags) + && java.util.Objects.equals(this.systemTags, other.systemTags) && super.equals(other); } @@ -583,6 +628,7 @@ public int hashCode() { result = (result * PRIME) + (this.resetPeriod == null ? 43 : this.resetPeriod.hashCode()); result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); + result = (result * PRIME) + (this.systemTags == null ? 43 : this.systemTags.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/UpdateCostAlertSubscriptionDetails.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/UpdateCostAlertSubscriptionDetails.java new file mode 100644 index 00000000000..250a559cedf --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/UpdateCostAlertSubscriptionDetails.java @@ -0,0 +1,286 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** + * The update CostAlertSubscriptionDetails details.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = UpdateCostAlertSubscriptionDetails.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class UpdateCostAlertSubscriptionDetails + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({"description", "channels", "definedTags", "freeformTags"}) + public UpdateCostAlertSubscriptionDetails( + String description, + String channels, + java.util.Map> definedTags, + java.util.Map freeformTags) { + super(); + this.description = description; + this.channels = channels; + this.definedTags = definedTags; + this.freeformTags = freeformTags; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** The description of the cost alert subscription. */ + @com.fasterxml.jackson.annotation.JsonProperty("description") + private String description; + + /** + * The description of the cost alert subscription. + * + * @param description the value to set + * @return this builder + */ + public Builder description(String description) { + this.description = description; + this.__explicitlySet__.add("description"); + return this; + } + /** The notification channels string. */ + @com.fasterxml.jackson.annotation.JsonProperty("channels") + private String channels; + + /** + * The notification channels string. + * + * @param channels the value to set + * @return this builder + */ + public Builder channels(String channels) { + this.channels = channels; + this.__explicitlySet__.add("channels"); + return this; + } + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @param definedTags the value to set + * @return this builder + */ + public Builder definedTags( + java.util.Map> definedTags) { + this.definedTags = definedTags; + this.__explicitlySet__.add("definedTags"); + return this; + } + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @param freeformTags the value to set + * @return this builder + */ + public Builder freeformTags(java.util.Map freeformTags) { + this.freeformTags = freeformTags; + this.__explicitlySet__.add("freeformTags"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public UpdateCostAlertSubscriptionDetails build() { + UpdateCostAlertSubscriptionDetails model = + new UpdateCostAlertSubscriptionDetails( + this.description, this.channels, this.definedTags, this.freeformTags); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(UpdateCostAlertSubscriptionDetails model) { + if (model.wasPropertyExplicitlySet("description")) { + this.description(model.getDescription()); + } + if (model.wasPropertyExplicitlySet("channels")) { + this.channels(model.getChannels()); + } + if (model.wasPropertyExplicitlySet("definedTags")) { + this.definedTags(model.getDefinedTags()); + } + if (model.wasPropertyExplicitlySet("freeformTags")) { + this.freeformTags(model.getFreeformTags()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** The description of the cost alert subscription. */ + @com.fasterxml.jackson.annotation.JsonProperty("description") + private final String description; + + /** + * The description of the cost alert subscription. + * + * @return the value + */ + public String getDescription() { + return description; + } + + /** The notification channels string. */ + @com.fasterxml.jackson.annotation.JsonProperty("channels") + private final String channels; + + /** + * The notification channels string. + * + * @return the value + */ + public String getChannels() { + return channels; + } + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private final java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @return the value + */ + public java.util.Map> getDefinedTags() { + return definedTags; + } + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private final java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @return the value + */ + public java.util.Map getFreeformTags() { + return freeformTags; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("UpdateCostAlertSubscriptionDetails("); + sb.append("super=").append(super.toString()); + sb.append("description=").append(String.valueOf(this.description)); + sb.append(", channels=").append(String.valueOf(this.channels)); + sb.append(", definedTags=").append(String.valueOf(this.definedTags)); + sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof UpdateCostAlertSubscriptionDetails)) { + return false; + } + + UpdateCostAlertSubscriptionDetails other = (UpdateCostAlertSubscriptionDetails) o; + return java.util.Objects.equals(this.description, other.description) + && java.util.Objects.equals(this.channels, other.channels) + && java.util.Objects.equals(this.definedTags, other.definedTags) + && java.util.Objects.equals(this.freeformTags, other.freeformTags) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.description == null ? 43 : this.description.hashCode()); + result = (result * PRIME) + (this.channels == null ? 43 : this.channels.hashCode()); + result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); + result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/UpdateCostAnomalyEventDetails.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/UpdateCostAnomalyEventDetails.java new file mode 100644 index 00000000000..002ddf7987f --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/UpdateCostAnomalyEventDetails.java @@ -0,0 +1,252 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** + * The update CostAnomalyEvent details.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = UpdateCostAnomalyEventDetails.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class UpdateCostAnomalyEventDetails + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({"feedbackResponse", "definedTags", "freeformTags"}) + public UpdateCostAnomalyEventDetails( + CostAnomalyEvent.FeedbackResponse feedbackResponse, + java.util.Map> definedTags, + java.util.Map freeformTags) { + super(); + this.feedbackResponse = feedbackResponse; + this.definedTags = definedTags; + this.freeformTags = freeformTags; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** The feedback response for the cost anomaly event. */ + @com.fasterxml.jackson.annotation.JsonProperty("feedbackResponse") + private CostAnomalyEvent.FeedbackResponse feedbackResponse; + + /** + * The feedback response for the cost anomaly event. + * + * @param feedbackResponse the value to set + * @return this builder + */ + public Builder feedbackResponse(CostAnomalyEvent.FeedbackResponse feedbackResponse) { + this.feedbackResponse = feedbackResponse; + this.__explicitlySet__.add("feedbackResponse"); + return this; + } + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @param definedTags the value to set + * @return this builder + */ + public Builder definedTags( + java.util.Map> definedTags) { + this.definedTags = definedTags; + this.__explicitlySet__.add("definedTags"); + return this; + } + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @param freeformTags the value to set + * @return this builder + */ + public Builder freeformTags(java.util.Map freeformTags) { + this.freeformTags = freeformTags; + this.__explicitlySet__.add("freeformTags"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public UpdateCostAnomalyEventDetails build() { + UpdateCostAnomalyEventDetails model = + new UpdateCostAnomalyEventDetails( + this.feedbackResponse, this.definedTags, this.freeformTags); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(UpdateCostAnomalyEventDetails model) { + if (model.wasPropertyExplicitlySet("feedbackResponse")) { + this.feedbackResponse(model.getFeedbackResponse()); + } + if (model.wasPropertyExplicitlySet("definedTags")) { + this.definedTags(model.getDefinedTags()); + } + if (model.wasPropertyExplicitlySet("freeformTags")) { + this.freeformTags(model.getFreeformTags()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** The feedback response for the cost anomaly event. */ + @com.fasterxml.jackson.annotation.JsonProperty("feedbackResponse") + private final CostAnomalyEvent.FeedbackResponse feedbackResponse; + + /** + * The feedback response for the cost anomaly event. + * + * @return the value + */ + public CostAnomalyEvent.FeedbackResponse getFeedbackResponse() { + return feedbackResponse; + } + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private final java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @return the value + */ + public java.util.Map> getDefinedTags() { + return definedTags; + } + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private final java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @return the value + */ + public java.util.Map getFreeformTags() { + return freeformTags; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("UpdateCostAnomalyEventDetails("); + sb.append("super=").append(super.toString()); + sb.append("feedbackResponse=").append(String.valueOf(this.feedbackResponse)); + sb.append(", definedTags=").append(String.valueOf(this.definedTags)); + sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof UpdateCostAnomalyEventDetails)) { + return false; + } + + UpdateCostAnomalyEventDetails other = (UpdateCostAnomalyEventDetails) o; + return java.util.Objects.equals(this.feedbackResponse, other.feedbackResponse) + && java.util.Objects.equals(this.definedTags, other.definedTags) + && java.util.Objects.equals(this.freeformTags, other.freeformTags) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = + (result * PRIME) + + (this.feedbackResponse == null ? 43 : this.feedbackResponse.hashCode()); + result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); + result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/model/UpdateCostAnomalyMonitorDetails.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/UpdateCostAnomalyMonitorDetails.java new file mode 100644 index 00000000000..cd25bc5b5ab --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/model/UpdateCostAnomalyMonitorDetails.java @@ -0,0 +1,288 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.model; + +/** + * Update CostAnomalyMonitor details.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = UpdateCostAnomalyMonitorDetails.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class UpdateCostAnomalyMonitorDetails + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({ + "description", + "costAlertSubscriptionMap", + "definedTags", + "freeformTags" + }) + public UpdateCostAnomalyMonitorDetails( + String description, + CostAlertSubscriptionMap costAlertSubscriptionMap, + java.util.Map> definedTags, + java.util.Map freeformTags) { + super(); + this.description = description; + this.costAlertSubscriptionMap = costAlertSubscriptionMap; + this.definedTags = definedTags; + this.freeformTags = freeformTags; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** The description of the cost anomaly monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("description") + private String description; + + /** + * The description of the cost anomaly monitor. + * + * @param description the value to set + * @return this builder + */ + public Builder description(String description) { + this.description = description; + this.__explicitlySet__.add("description"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("costAlertSubscriptionMap") + private CostAlertSubscriptionMap costAlertSubscriptionMap; + + public Builder costAlertSubscriptionMap(CostAlertSubscriptionMap costAlertSubscriptionMap) { + this.costAlertSubscriptionMap = costAlertSubscriptionMap; + this.__explicitlySet__.add("costAlertSubscriptionMap"); + return this; + } + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @param definedTags the value to set + * @return this builder + */ + public Builder definedTags( + java.util.Map> definedTags) { + this.definedTags = definedTags; + this.__explicitlySet__.add("definedTags"); + return this; + } + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @param freeformTags the value to set + * @return this builder + */ + public Builder freeformTags(java.util.Map freeformTags) { + this.freeformTags = freeformTags; + this.__explicitlySet__.add("freeformTags"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public UpdateCostAnomalyMonitorDetails build() { + UpdateCostAnomalyMonitorDetails model = + new UpdateCostAnomalyMonitorDetails( + this.description, + this.costAlertSubscriptionMap, + this.definedTags, + this.freeformTags); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(UpdateCostAnomalyMonitorDetails model) { + if (model.wasPropertyExplicitlySet("description")) { + this.description(model.getDescription()); + } + if (model.wasPropertyExplicitlySet("costAlertSubscriptionMap")) { + this.costAlertSubscriptionMap(model.getCostAlertSubscriptionMap()); + } + if (model.wasPropertyExplicitlySet("definedTags")) { + this.definedTags(model.getDefinedTags()); + } + if (model.wasPropertyExplicitlySet("freeformTags")) { + this.freeformTags(model.getFreeformTags()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** The description of the cost anomaly monitor. */ + @com.fasterxml.jackson.annotation.JsonProperty("description") + private final String description; + + /** + * The description of the cost anomaly monitor. + * + * @return the value + */ + public String getDescription() { + return description; + } + + @com.fasterxml.jackson.annotation.JsonProperty("costAlertSubscriptionMap") + private final CostAlertSubscriptionMap costAlertSubscriptionMap; + + public CostAlertSubscriptionMap getCostAlertSubscriptionMap() { + return costAlertSubscriptionMap; + } + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private final java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Operations": {"CostCenter": "42"}}} + * + * @return the value + */ + public java.util.Map> getDefinedTags() { + return definedTags; + } + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private final java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @return the value + */ + public java.util.Map getFreeformTags() { + return freeformTags; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("UpdateCostAnomalyMonitorDetails("); + sb.append("super=").append(super.toString()); + sb.append("description=").append(String.valueOf(this.description)); + sb.append(", costAlertSubscriptionMap=") + .append(String.valueOf(this.costAlertSubscriptionMap)); + sb.append(", definedTags=").append(String.valueOf(this.definedTags)); + sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof UpdateCostAnomalyMonitorDetails)) { + return false; + } + + UpdateCostAnomalyMonitorDetails other = (UpdateCostAnomalyMonitorDetails) o; + return java.util.Objects.equals(this.description, other.description) + && java.util.Objects.equals( + this.costAlertSubscriptionMap, other.costAlertSubscriptionMap) + && java.util.Objects.equals(this.definedTags, other.definedTags) + && java.util.Objects.equals(this.freeformTags, other.freeformTags) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.description == null ? 43 : this.description.hashCode()); + result = + (result * PRIME) + + (this.costAlertSubscriptionMap == null + ? 43 + : this.costAlertSubscriptionMap.hashCode()); + result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); + result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/CreateAlertRuleRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/CreateAlertRuleRequest.java index 479d41641cc..526e777b23f 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/CreateAlertRuleRequest.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/CreateAlertRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.requests; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/CreateBudgetRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/CreateBudgetRequest.java index 2f4344b5834..8f6b392cdf3 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/CreateBudgetRequest.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/CreateBudgetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.requests; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/CreateCostAlertSubscriptionRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/CreateCostAlertSubscriptionRequest.java new file mode 100644 index 00000000000..15aec5855bb --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/CreateCostAlertSubscriptionRequest.java @@ -0,0 +1,283 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.requests; + +import com.oracle.bmc.budget.model.*; +/** + * Example: Click here to see how to use + * CreateCostAlertSubscriptionRequest. + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class CreateCostAlertSubscriptionRequest + extends com.oracle.bmc.requests.BmcRequest< + com.oracle.bmc.budget.model.CreateCostAlertSubscriptionDetails> { + + /** Details for the new subscription. */ + private com.oracle.bmc.budget.model.CreateCostAlertSubscriptionDetails + createCostAlertSubscriptionDetails; + + /** Details for the new subscription. */ + public com.oracle.bmc.budget.model.CreateCostAlertSubscriptionDetails + getCreateCostAlertSubscriptionDetails() { + return createCostAlertSubscriptionDetails; + } + /** + * 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. + */ + private String opcRetryToken; + + /** + * 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. + */ + public String getOpcRetryToken() { + return opcRetryToken; + } + /** The client request ID for tracing. */ + private String opcRequestId; + + /** The client request ID for tracing. */ + public String getOpcRequestId() { + return opcRequestId; + } + + /** + * Alternative accessor for the body parameter. + * + * @return body parameter + */ + @Override + @com.oracle.bmc.InternalSdk + public com.oracle.bmc.budget.model.CreateCostAlertSubscriptionDetails getBody$() { + return createCostAlertSubscriptionDetails; + } + + public static class Builder + implements com.oracle.bmc.requests.BmcRequest.Builder< + CreateCostAlertSubscriptionRequest, + com.oracle.bmc.budget.model.CreateCostAlertSubscriptionDetails> { + private com.oracle.bmc.http.client.RequestInterceptor invocationCallback = null; + private com.oracle.bmc.retrier.RetryConfiguration retryConfiguration = null; + + /** Details for the new subscription. */ + private com.oracle.bmc.budget.model.CreateCostAlertSubscriptionDetails + createCostAlertSubscriptionDetails = null; + + /** + * Details for the new subscription. + * + * @param createCostAlertSubscriptionDetails the value to set + * @return this builder instance + */ + public Builder createCostAlertSubscriptionDetails( + com.oracle.bmc.budget.model.CreateCostAlertSubscriptionDetails + createCostAlertSubscriptionDetails) { + this.createCostAlertSubscriptionDetails = createCostAlertSubscriptionDetails; + return this; + } + + /** + * 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. + */ + private String opcRetryToken = null; + + /** + * 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 opcRetryToken the value to set + * @return this builder instance + */ + public Builder opcRetryToken(String opcRetryToken) { + this.opcRetryToken = opcRetryToken; + return this; + } + + /** The client request ID for tracing. */ + private String opcRequestId = null; + + /** + * The client request ID for tracing. + * + * @param opcRequestId the value to set + * @return this builder instance + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** + * Set the invocation callback for the request to be built. + * + * @param invocationCallback the invocation callback to be set for the request + * @return this builder instance + */ + public Builder invocationCallback( + com.oracle.bmc.http.client.RequestInterceptor invocationCallback) { + this.invocationCallback = invocationCallback; + return this; + } + + /** + * Set the retry configuration for the request to be built. + * + * @param retryConfiguration the retry configuration to be used for the request + * @return this builder instance + */ + public Builder retryConfiguration( + com.oracle.bmc.retrier.RetryConfiguration retryConfiguration) { + this.retryConfiguration = retryConfiguration; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + public Builder copy(CreateCostAlertSubscriptionRequest o) { + createCostAlertSubscriptionDetails(o.getCreateCostAlertSubscriptionDetails()); + opcRetryToken(o.getOpcRetryToken()); + opcRequestId(o.getOpcRequestId()); + invocationCallback(o.getInvocationCallback()); + retryConfiguration(o.getRetryConfiguration()); + return this; + } + + /** + * Build the instance of CreateCostAlertSubscriptionRequest as configured by this builder + * + *

Note that this method takes calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#buildWithoutInvocationCallback} does not. + * + *

This is the preferred method to build an instance. + * + * @return instance of CreateCostAlertSubscriptionRequest + */ + public CreateCostAlertSubscriptionRequest build() { + CreateCostAlertSubscriptionRequest request = buildWithoutInvocationCallback(); + request.setInvocationCallback(invocationCallback); + request.setRetryConfiguration(retryConfiguration); + return request; + } + + /** + * Alternative setter for the body parameter. + * + * @param body the body parameter + * @return this builder instance + */ + @com.oracle.bmc.InternalSdk + public Builder body$(com.oracle.bmc.budget.model.CreateCostAlertSubscriptionDetails body) { + createCostAlertSubscriptionDetails(body); + return this; + } + + /** + * Build the instance of CreateCostAlertSubscriptionRequest as configured by this builder + * + *

Note that this method does not take calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#build} does + * + * @return instance of CreateCostAlertSubscriptionRequest + */ + public CreateCostAlertSubscriptionRequest buildWithoutInvocationCallback() { + CreateCostAlertSubscriptionRequest request = new CreateCostAlertSubscriptionRequest(); + request.createCostAlertSubscriptionDetails = createCostAlertSubscriptionDetails; + request.opcRetryToken = opcRetryToken; + request.opcRequestId = opcRequestId; + return request; + // new CreateCostAlertSubscriptionRequest(createCostAlertSubscriptionDetails, + // opcRetryToken, opcRequestId); + } + } + + /** + * Return an instance of {@link Builder} that allows you to modify request properties. + * + * @return instance of {@link Builder} that allows you to modify request properties. + */ + public Builder toBuilder() { + return new Builder() + .createCostAlertSubscriptionDetails(createCostAlertSubscriptionDetails) + .opcRetryToken(opcRetryToken) + .opcRequestId(opcRequestId); + } + + /** + * Return a new builder for this request object. + * + * @return builder for the request object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",createCostAlertSubscriptionDetails=") + .append(String.valueOf(this.createCostAlertSubscriptionDetails)); + sb.append(",opcRetryToken=").append(String.valueOf(this.opcRetryToken)); + sb.append(",opcRequestId=").append(String.valueOf(this.opcRequestId)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CreateCostAlertSubscriptionRequest)) { + return false; + } + + CreateCostAlertSubscriptionRequest other = (CreateCostAlertSubscriptionRequest) o; + return super.equals(o) + && java.util.Objects.equals( + this.createCostAlertSubscriptionDetails, + other.createCostAlertSubscriptionDetails) + && java.util.Objects.equals(this.opcRetryToken, other.opcRetryToken) + && java.util.Objects.equals(this.opcRequestId, other.opcRequestId); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = + (result * PRIME) + + (this.createCostAlertSubscriptionDetails == null + ? 43 + : this.createCostAlertSubscriptionDetails.hashCode()); + result = + (result * PRIME) + + (this.opcRetryToken == null ? 43 : this.opcRetryToken.hashCode()); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/CreateCostAnomalyMonitorRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/CreateCostAnomalyMonitorRequest.java new file mode 100644 index 00000000000..c647036a1d1 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/CreateCostAnomalyMonitorRequest.java @@ -0,0 +1,282 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.requests; + +import com.oracle.bmc.budget.model.*; +/** + * Example: Click here to see how to use + * CreateCostAnomalyMonitorRequest. + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class CreateCostAnomalyMonitorRequest + extends com.oracle.bmc.requests.BmcRequest< + com.oracle.bmc.budget.model.CreateCostAnomalyMonitorDetails> { + + /** Details for the new monitor. */ + private com.oracle.bmc.budget.model.CreateCostAnomalyMonitorDetails + createCostAnomalyMonitorDetails; + + /** Details for the new monitor. */ + public com.oracle.bmc.budget.model.CreateCostAnomalyMonitorDetails + getCreateCostAnomalyMonitorDetails() { + return createCostAnomalyMonitorDetails; + } + /** + * 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. + */ + private String opcRetryToken; + + /** + * 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. + */ + public String getOpcRetryToken() { + return opcRetryToken; + } + /** The client request ID for tracing. */ + private String opcRequestId; + + /** The client request ID for tracing. */ + public String getOpcRequestId() { + return opcRequestId; + } + + /** + * Alternative accessor for the body parameter. + * + * @return body parameter + */ + @Override + @com.oracle.bmc.InternalSdk + public com.oracle.bmc.budget.model.CreateCostAnomalyMonitorDetails getBody$() { + return createCostAnomalyMonitorDetails; + } + + public static class Builder + implements com.oracle.bmc.requests.BmcRequest.Builder< + CreateCostAnomalyMonitorRequest, + com.oracle.bmc.budget.model.CreateCostAnomalyMonitorDetails> { + private com.oracle.bmc.http.client.RequestInterceptor invocationCallback = null; + private com.oracle.bmc.retrier.RetryConfiguration retryConfiguration = null; + + /** Details for the new monitor. */ + private com.oracle.bmc.budget.model.CreateCostAnomalyMonitorDetails + createCostAnomalyMonitorDetails = null; + + /** + * Details for the new monitor. + * + * @param createCostAnomalyMonitorDetails the value to set + * @return this builder instance + */ + public Builder createCostAnomalyMonitorDetails( + com.oracle.bmc.budget.model.CreateCostAnomalyMonitorDetails + createCostAnomalyMonitorDetails) { + this.createCostAnomalyMonitorDetails = createCostAnomalyMonitorDetails; + return this; + } + + /** + * 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. + */ + private String opcRetryToken = null; + + /** + * 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 opcRetryToken the value to set + * @return this builder instance + */ + public Builder opcRetryToken(String opcRetryToken) { + this.opcRetryToken = opcRetryToken; + return this; + } + + /** The client request ID for tracing. */ + private String opcRequestId = null; + + /** + * The client request ID for tracing. + * + * @param opcRequestId the value to set + * @return this builder instance + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** + * Set the invocation callback for the request to be built. + * + * @param invocationCallback the invocation callback to be set for the request + * @return this builder instance + */ + public Builder invocationCallback( + com.oracle.bmc.http.client.RequestInterceptor invocationCallback) { + this.invocationCallback = invocationCallback; + return this; + } + + /** + * Set the retry configuration for the request to be built. + * + * @param retryConfiguration the retry configuration to be used for the request + * @return this builder instance + */ + public Builder retryConfiguration( + com.oracle.bmc.retrier.RetryConfiguration retryConfiguration) { + this.retryConfiguration = retryConfiguration; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + public Builder copy(CreateCostAnomalyMonitorRequest o) { + createCostAnomalyMonitorDetails(o.getCreateCostAnomalyMonitorDetails()); + opcRetryToken(o.getOpcRetryToken()); + opcRequestId(o.getOpcRequestId()); + invocationCallback(o.getInvocationCallback()); + retryConfiguration(o.getRetryConfiguration()); + return this; + } + + /** + * Build the instance of CreateCostAnomalyMonitorRequest as configured by this builder + * + *

Note that this method takes calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#buildWithoutInvocationCallback} does not. + * + *

This is the preferred method to build an instance. + * + * @return instance of CreateCostAnomalyMonitorRequest + */ + public CreateCostAnomalyMonitorRequest build() { + CreateCostAnomalyMonitorRequest request = buildWithoutInvocationCallback(); + request.setInvocationCallback(invocationCallback); + request.setRetryConfiguration(retryConfiguration); + return request; + } + + /** + * Alternative setter for the body parameter. + * + * @param body the body parameter + * @return this builder instance + */ + @com.oracle.bmc.InternalSdk + public Builder body$(com.oracle.bmc.budget.model.CreateCostAnomalyMonitorDetails body) { + createCostAnomalyMonitorDetails(body); + return this; + } + + /** + * Build the instance of CreateCostAnomalyMonitorRequest as configured by this builder + * + *

Note that this method does not take calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#build} does + * + * @return instance of CreateCostAnomalyMonitorRequest + */ + public CreateCostAnomalyMonitorRequest buildWithoutInvocationCallback() { + CreateCostAnomalyMonitorRequest request = new CreateCostAnomalyMonitorRequest(); + request.createCostAnomalyMonitorDetails = createCostAnomalyMonitorDetails; + request.opcRetryToken = opcRetryToken; + request.opcRequestId = opcRequestId; + return request; + // new CreateCostAnomalyMonitorRequest(createCostAnomalyMonitorDetails, opcRetryToken, + // opcRequestId); + } + } + + /** + * Return an instance of {@link Builder} that allows you to modify request properties. + * + * @return instance of {@link Builder} that allows you to modify request properties. + */ + public Builder toBuilder() { + return new Builder() + .createCostAnomalyMonitorDetails(createCostAnomalyMonitorDetails) + .opcRetryToken(opcRetryToken) + .opcRequestId(opcRequestId); + } + + /** + * Return a new builder for this request object. + * + * @return builder for the request object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",createCostAnomalyMonitorDetails=") + .append(String.valueOf(this.createCostAnomalyMonitorDetails)); + sb.append(",opcRetryToken=").append(String.valueOf(this.opcRetryToken)); + sb.append(",opcRequestId=").append(String.valueOf(this.opcRequestId)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CreateCostAnomalyMonitorRequest)) { + return false; + } + + CreateCostAnomalyMonitorRequest other = (CreateCostAnomalyMonitorRequest) o; + return super.equals(o) + && java.util.Objects.equals( + this.createCostAnomalyMonitorDetails, other.createCostAnomalyMonitorDetails) + && java.util.Objects.equals(this.opcRetryToken, other.opcRetryToken) + && java.util.Objects.equals(this.opcRequestId, other.opcRequestId); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = + (result * PRIME) + + (this.createCostAnomalyMonitorDetails == null + ? 43 + : this.createCostAnomalyMonitorDetails.hashCode()); + result = + (result * PRIME) + + (this.opcRetryToken == null ? 43 : this.opcRetryToken.hashCode()); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/DeleteAlertRuleRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/DeleteAlertRuleRequest.java index 8cf84c94a7a..09ad82122a5 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/DeleteAlertRuleRequest.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/DeleteAlertRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.requests; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/DeleteBudgetRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/DeleteBudgetRequest.java index 6e55f4c42ee..26a8284e948 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/DeleteBudgetRequest.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/DeleteBudgetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ResolvePullRequestCommentRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/DeleteCostAlertSubscriptionRequest.java similarity index 65% rename from bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ResolvePullRequestCommentRequest.java rename to bmc-budget/src/main/java/com/oracle/bmc/budget/requests/DeleteCostAlertSubscriptionRequest.java index 8c09e1bafb9..b793035d20d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ResolvePullRequestCommentRequest.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/DeleteCostAlertSubscriptionRequest.java @@ -1,33 +1,26 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ -package com.oracle.bmc.devops.requests; +package com.oracle.bmc.budget.requests; -import com.oracle.bmc.devops.model.*; +import com.oracle.bmc.budget.model.*; /** * Example: Click here to see how to use - * ResolvePullRequestCommentRequest. + * DeleteCostAlertSubscriptionRequest. */ -@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20210630") -public class ResolvePullRequestCommentRequest +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class DeleteCostAlertSubscriptionRequest extends com.oracle.bmc.requests.BmcRequest { - /** unique PullRequest identifier */ - private String pullRequestId; + /** The unique costAlertSubscription OCID. */ + private String costAlertSubscriptionId; - /** unique PullRequest identifier */ - public String getPullRequestId() { - return pullRequestId; - } - /** unique PullRequest Comment identifier */ - private String commentId; - - /** unique PullRequest Comment identifier */ - public String getCommentId() { - return commentId; + /** The unique costAlertSubscription OCID. */ + public String getCostAlertSubscriptionId() { + return costAlertSubscriptionId; } /** * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code @@ -46,51 +39,31 @@ public String getCommentId() { public String getIfMatch() { return ifMatch; } - /** - * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. - */ + /** The client request ID for tracing. */ private String opcRequestId; - /** - * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. - */ + /** The client request ID for tracing. */ public String getOpcRequestId() { return opcRequestId; } public static class Builder implements com.oracle.bmc.requests.BmcRequest.Builder< - ResolvePullRequestCommentRequest, java.lang.Void> { + DeleteCostAlertSubscriptionRequest, java.lang.Void> { private com.oracle.bmc.http.client.RequestInterceptor invocationCallback = null; private com.oracle.bmc.retrier.RetryConfiguration retryConfiguration = null; - /** unique PullRequest identifier */ - private String pullRequestId = null; - - /** - * unique PullRequest identifier - * - * @param pullRequestId the value to set - * @return this builder instance - */ - public Builder pullRequestId(String pullRequestId) { - this.pullRequestId = pullRequestId; - return this; - } - - /** unique PullRequest Comment identifier */ - private String commentId = null; + /** The unique costAlertSubscription OCID. */ + private String costAlertSubscriptionId = null; /** - * unique PullRequest Comment identifier + * The unique costAlertSubscription OCID. * - * @param commentId the value to set + * @param costAlertSubscriptionId the value to set * @return this builder instance */ - public Builder commentId(String commentId) { - this.commentId = commentId; + public Builder costAlertSubscriptionId(String costAlertSubscriptionId) { + this.costAlertSubscriptionId = costAlertSubscriptionId; return this; } @@ -116,15 +89,11 @@ public Builder ifMatch(String ifMatch) { return this; } - /** - * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. - */ + /** The client request ID for tracing. */ private String opcRequestId = null; /** - * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * The client request ID for tracing. * * @param opcRequestId the value to set * @return this builder instance @@ -163,9 +132,8 @@ public Builder retryConfiguration( * * @return this builder instance */ - public Builder copy(ResolvePullRequestCommentRequest o) { - pullRequestId(o.getPullRequestId()); - commentId(o.getCommentId()); + public Builder copy(DeleteCostAlertSubscriptionRequest o) { + costAlertSubscriptionId(o.getCostAlertSubscriptionId()); ifMatch(o.getIfMatch()); opcRequestId(o.getOpcRequestId()); invocationCallback(o.getInvocationCallback()); @@ -174,7 +142,7 @@ public Builder copy(ResolvePullRequestCommentRequest o) { } /** - * Build the instance of ResolvePullRequestCommentRequest as configured by this builder + * Build the instance of DeleteCostAlertSubscriptionRequest as configured by this builder * *

Note that this method takes calls to {@link * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, @@ -182,32 +150,31 @@ public Builder copy(ResolvePullRequestCommentRequest o) { * *

This is the preferred method to build an instance. * - * @return instance of ResolvePullRequestCommentRequest + * @return instance of DeleteCostAlertSubscriptionRequest */ - public ResolvePullRequestCommentRequest build() { - ResolvePullRequestCommentRequest request = buildWithoutInvocationCallback(); + public DeleteCostAlertSubscriptionRequest build() { + DeleteCostAlertSubscriptionRequest request = buildWithoutInvocationCallback(); request.setInvocationCallback(invocationCallback); request.setRetryConfiguration(retryConfiguration); return request; } /** - * Build the instance of ResolvePullRequestCommentRequest as configured by this builder + * Build the instance of DeleteCostAlertSubscriptionRequest as configured by this builder * *

Note that this method does not take calls to {@link * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, * while the method {@link Builder#build} does * - * @return instance of ResolvePullRequestCommentRequest + * @return instance of DeleteCostAlertSubscriptionRequest */ - public ResolvePullRequestCommentRequest buildWithoutInvocationCallback() { - ResolvePullRequestCommentRequest request = new ResolvePullRequestCommentRequest(); - request.pullRequestId = pullRequestId; - request.commentId = commentId; + public DeleteCostAlertSubscriptionRequest buildWithoutInvocationCallback() { + DeleteCostAlertSubscriptionRequest request = new DeleteCostAlertSubscriptionRequest(); + request.costAlertSubscriptionId = costAlertSubscriptionId; request.ifMatch = ifMatch; request.opcRequestId = opcRequestId; return request; - // new ResolvePullRequestCommentRequest(pullRequestId, commentId, ifMatch, + // new DeleteCostAlertSubscriptionRequest(costAlertSubscriptionId, ifMatch, // opcRequestId); } } @@ -219,8 +186,7 @@ public ResolvePullRequestCommentRequest buildWithoutInvocationCallback() { */ public Builder toBuilder() { return new Builder() - .pullRequestId(pullRequestId) - .commentId(commentId) + .costAlertSubscriptionId(costAlertSubscriptionId) .ifMatch(ifMatch) .opcRequestId(opcRequestId); } @@ -239,8 +205,7 @@ public String toString() { java.lang.StringBuilder sb = new java.lang.StringBuilder(); sb.append("("); sb.append("super=").append(super.toString()); - sb.append(",pullRequestId=").append(String.valueOf(this.pullRequestId)); - sb.append(",commentId=").append(String.valueOf(this.commentId)); + sb.append(",costAlertSubscriptionId=").append(String.valueOf(this.costAlertSubscriptionId)); sb.append(",ifMatch=").append(String.valueOf(this.ifMatch)); sb.append(",opcRequestId=").append(String.valueOf(this.opcRequestId)); sb.append(")"); @@ -252,14 +217,14 @@ public boolean equals(Object o) { if (this == o) { return true; } - if (!(o instanceof ResolvePullRequestCommentRequest)) { + if (!(o instanceof DeleteCostAlertSubscriptionRequest)) { return false; } - ResolvePullRequestCommentRequest other = (ResolvePullRequestCommentRequest) o; + DeleteCostAlertSubscriptionRequest other = (DeleteCostAlertSubscriptionRequest) o; return super.equals(o) - && java.util.Objects.equals(this.pullRequestId, other.pullRequestId) - && java.util.Objects.equals(this.commentId, other.commentId) + && java.util.Objects.equals( + this.costAlertSubscriptionId, other.costAlertSubscriptionId) && java.util.Objects.equals(this.ifMatch, other.ifMatch) && java.util.Objects.equals(this.opcRequestId, other.opcRequestId); } @@ -270,8 +235,9 @@ public int hashCode() { int result = super.hashCode(); result = (result * PRIME) - + (this.pullRequestId == null ? 43 : this.pullRequestId.hashCode()); - result = (result * PRIME) + (this.commentId == null ? 43 : this.commentId.hashCode()); + + (this.costAlertSubscriptionId == null + ? 43 + : this.costAlertSubscriptionId.hashCode()); result = (result * PRIME) + (this.ifMatch == null ? 43 : this.ifMatch.hashCode()); result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); return result; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ReopenPullRequestCommentRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/DeleteCostAnomalyMonitorRequest.java similarity index 65% rename from bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ReopenPullRequestCommentRequest.java rename to bmc-budget/src/main/java/com/oracle/bmc/budget/requests/DeleteCostAnomalyMonitorRequest.java index 60e94fa8416..eeb46ec1d9a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ReopenPullRequestCommentRequest.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/DeleteCostAnomalyMonitorRequest.java @@ -1,33 +1,26 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ -package com.oracle.bmc.devops.requests; +package com.oracle.bmc.budget.requests; -import com.oracle.bmc.devops.model.*; +import com.oracle.bmc.budget.model.*; /** * Example: Click here to see how to use - * ReopenPullRequestCommentRequest. + * DeleteCostAnomalyMonitorRequest. */ -@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20210630") -public class ReopenPullRequestCommentRequest +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class DeleteCostAnomalyMonitorRequest extends com.oracle.bmc.requests.BmcRequest { - /** unique PullRequest identifier */ - private String pullRequestId; + /** The unique costAnomalyMonitor OCID. */ + private String costAnomalyMonitorId; - /** unique PullRequest identifier */ - public String getPullRequestId() { - return pullRequestId; - } - /** unique PullRequest Comment identifier */ - private String commentId; - - /** unique PullRequest Comment identifier */ - public String getCommentId() { - return commentId; + /** The unique costAnomalyMonitor OCID. */ + public String getCostAnomalyMonitorId() { + return costAnomalyMonitorId; } /** * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code @@ -46,51 +39,31 @@ public String getCommentId() { public String getIfMatch() { return ifMatch; } - /** - * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. - */ + /** The client request ID for tracing. */ private String opcRequestId; - /** - * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. - */ + /** The client request ID for tracing. */ public String getOpcRequestId() { return opcRequestId; } public static class Builder implements com.oracle.bmc.requests.BmcRequest.Builder< - ReopenPullRequestCommentRequest, java.lang.Void> { + DeleteCostAnomalyMonitorRequest, java.lang.Void> { private com.oracle.bmc.http.client.RequestInterceptor invocationCallback = null; private com.oracle.bmc.retrier.RetryConfiguration retryConfiguration = null; - /** unique PullRequest identifier */ - private String pullRequestId = null; - - /** - * unique PullRequest identifier - * - * @param pullRequestId the value to set - * @return this builder instance - */ - public Builder pullRequestId(String pullRequestId) { - this.pullRequestId = pullRequestId; - return this; - } - - /** unique PullRequest Comment identifier */ - private String commentId = null; + /** The unique costAnomalyMonitor OCID. */ + private String costAnomalyMonitorId = null; /** - * unique PullRequest Comment identifier + * The unique costAnomalyMonitor OCID. * - * @param commentId the value to set + * @param costAnomalyMonitorId the value to set * @return this builder instance */ - public Builder commentId(String commentId) { - this.commentId = commentId; + public Builder costAnomalyMonitorId(String costAnomalyMonitorId) { + this.costAnomalyMonitorId = costAnomalyMonitorId; return this; } @@ -116,15 +89,11 @@ public Builder ifMatch(String ifMatch) { return this; } - /** - * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. - */ + /** The client request ID for tracing. */ private String opcRequestId = null; /** - * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * The client request ID for tracing. * * @param opcRequestId the value to set * @return this builder instance @@ -163,9 +132,8 @@ public Builder retryConfiguration( * * @return this builder instance */ - public Builder copy(ReopenPullRequestCommentRequest o) { - pullRequestId(o.getPullRequestId()); - commentId(o.getCommentId()); + public Builder copy(DeleteCostAnomalyMonitorRequest o) { + costAnomalyMonitorId(o.getCostAnomalyMonitorId()); ifMatch(o.getIfMatch()); opcRequestId(o.getOpcRequestId()); invocationCallback(o.getInvocationCallback()); @@ -174,7 +142,7 @@ public Builder copy(ReopenPullRequestCommentRequest o) { } /** - * Build the instance of ReopenPullRequestCommentRequest as configured by this builder + * Build the instance of DeleteCostAnomalyMonitorRequest as configured by this builder * *

Note that this method takes calls to {@link * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, @@ -182,32 +150,31 @@ public Builder copy(ReopenPullRequestCommentRequest o) { * *

This is the preferred method to build an instance. * - * @return instance of ReopenPullRequestCommentRequest + * @return instance of DeleteCostAnomalyMonitorRequest */ - public ReopenPullRequestCommentRequest build() { - ReopenPullRequestCommentRequest request = buildWithoutInvocationCallback(); + public DeleteCostAnomalyMonitorRequest build() { + DeleteCostAnomalyMonitorRequest request = buildWithoutInvocationCallback(); request.setInvocationCallback(invocationCallback); request.setRetryConfiguration(retryConfiguration); return request; } /** - * Build the instance of ReopenPullRequestCommentRequest as configured by this builder + * Build the instance of DeleteCostAnomalyMonitorRequest as configured by this builder * *

Note that this method does not take calls to {@link * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, * while the method {@link Builder#build} does * - * @return instance of ReopenPullRequestCommentRequest + * @return instance of DeleteCostAnomalyMonitorRequest */ - public ReopenPullRequestCommentRequest buildWithoutInvocationCallback() { - ReopenPullRequestCommentRequest request = new ReopenPullRequestCommentRequest(); - request.pullRequestId = pullRequestId; - request.commentId = commentId; + public DeleteCostAnomalyMonitorRequest buildWithoutInvocationCallback() { + DeleteCostAnomalyMonitorRequest request = new DeleteCostAnomalyMonitorRequest(); + request.costAnomalyMonitorId = costAnomalyMonitorId; request.ifMatch = ifMatch; request.opcRequestId = opcRequestId; return request; - // new ReopenPullRequestCommentRequest(pullRequestId, commentId, ifMatch, opcRequestId); + // new DeleteCostAnomalyMonitorRequest(costAnomalyMonitorId, ifMatch, opcRequestId); } } @@ -218,8 +185,7 @@ public ReopenPullRequestCommentRequest buildWithoutInvocationCallback() { */ public Builder toBuilder() { return new Builder() - .pullRequestId(pullRequestId) - .commentId(commentId) + .costAnomalyMonitorId(costAnomalyMonitorId) .ifMatch(ifMatch) .opcRequestId(opcRequestId); } @@ -238,8 +204,7 @@ public String toString() { java.lang.StringBuilder sb = new java.lang.StringBuilder(); sb.append("("); sb.append("super=").append(super.toString()); - sb.append(",pullRequestId=").append(String.valueOf(this.pullRequestId)); - sb.append(",commentId=").append(String.valueOf(this.commentId)); + sb.append(",costAnomalyMonitorId=").append(String.valueOf(this.costAnomalyMonitorId)); sb.append(",ifMatch=").append(String.valueOf(this.ifMatch)); sb.append(",opcRequestId=").append(String.valueOf(this.opcRequestId)); sb.append(")"); @@ -251,14 +216,13 @@ public boolean equals(Object o) { if (this == o) { return true; } - if (!(o instanceof ReopenPullRequestCommentRequest)) { + if (!(o instanceof DeleteCostAnomalyMonitorRequest)) { return false; } - ReopenPullRequestCommentRequest other = (ReopenPullRequestCommentRequest) o; + DeleteCostAnomalyMonitorRequest other = (DeleteCostAnomalyMonitorRequest) o; return super.equals(o) - && java.util.Objects.equals(this.pullRequestId, other.pullRequestId) - && java.util.Objects.equals(this.commentId, other.commentId) + && java.util.Objects.equals(this.costAnomalyMonitorId, other.costAnomalyMonitorId) && java.util.Objects.equals(this.ifMatch, other.ifMatch) && java.util.Objects.equals(this.opcRequestId, other.opcRequestId); } @@ -269,8 +233,9 @@ public int hashCode() { int result = super.hashCode(); result = (result * PRIME) - + (this.pullRequestId == null ? 43 : this.pullRequestId.hashCode()); - result = (result * PRIME) + (this.commentId == null ? 43 : this.commentId.hashCode()); + + (this.costAnomalyMonitorId == null + ? 43 + : this.costAnomalyMonitorId.hashCode()); result = (result * PRIME) + (this.ifMatch == null ? 43 : this.ifMatch.hashCode()); result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); return result; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/DisableCostAnomalyMonitorRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/DisableCostAnomalyMonitorRequest.java new file mode 100644 index 00000000000..bf2f1bd6baf --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/DisableCostAnomalyMonitorRequest.java @@ -0,0 +1,295 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.requests; + +import com.oracle.bmc.budget.model.*; +/** + * Example: Click here to see how to use + * DisableCostAnomalyMonitorRequest. + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class DisableCostAnomalyMonitorRequest + extends com.oracle.bmc.requests.BmcRequest { + + /** The unique costAnomalyMonitor OCID. */ + private String costAnomalyMonitorId; + + /** The unique costAnomalyMonitor OCID. */ + public String getCostAnomalyMonitorId() { + return costAnomalyMonitorId; + } + /** + * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code + * 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. + */ + private String ifMatch; + + /** + * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code + * 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. + */ + public String getIfMatch() { + return ifMatch; + } + /** The client request ID for tracing. */ + private String opcRequestId; + + /** The client request ID for tracing. */ + public String getOpcRequestId() { + return opcRequestId; + } + /** + * 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. + */ + private String opcRetryToken; + + /** + * 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. + */ + public String getOpcRetryToken() { + return opcRetryToken; + } + + public static class Builder + implements com.oracle.bmc.requests.BmcRequest.Builder< + DisableCostAnomalyMonitorRequest, java.lang.Void> { + private com.oracle.bmc.http.client.RequestInterceptor invocationCallback = null; + private com.oracle.bmc.retrier.RetryConfiguration retryConfiguration = null; + + /** The unique costAnomalyMonitor OCID. */ + private String costAnomalyMonitorId = null; + + /** + * The unique costAnomalyMonitor OCID. + * + * @param costAnomalyMonitorId the value to set + * @return this builder instance + */ + public Builder costAnomalyMonitorId(String costAnomalyMonitorId) { + this.costAnomalyMonitorId = costAnomalyMonitorId; + return this; + } + + /** + * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the + * {@code 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. + */ + private String ifMatch = null; + + /** + * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the + * {@code 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 ifMatch the value to set + * @return this builder instance + */ + public Builder ifMatch(String ifMatch) { + this.ifMatch = ifMatch; + return this; + } + + /** The client request ID for tracing. */ + private String opcRequestId = null; + + /** + * The client request ID for tracing. + * + * @param opcRequestId the value to set + * @return this builder instance + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** + * 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. + */ + private String opcRetryToken = null; + + /** + * 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 opcRetryToken the value to set + * @return this builder instance + */ + public Builder opcRetryToken(String opcRetryToken) { + this.opcRetryToken = opcRetryToken; + return this; + } + + /** + * Set the invocation callback for the request to be built. + * + * @param invocationCallback the invocation callback to be set for the request + * @return this builder instance + */ + public Builder invocationCallback( + com.oracle.bmc.http.client.RequestInterceptor invocationCallback) { + this.invocationCallback = invocationCallback; + return this; + } + + /** + * Set the retry configuration for the request to be built. + * + * @param retryConfiguration the retry configuration to be used for the request + * @return this builder instance + */ + public Builder retryConfiguration( + com.oracle.bmc.retrier.RetryConfiguration retryConfiguration) { + this.retryConfiguration = retryConfiguration; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + public Builder copy(DisableCostAnomalyMonitorRequest o) { + costAnomalyMonitorId(o.getCostAnomalyMonitorId()); + ifMatch(o.getIfMatch()); + opcRequestId(o.getOpcRequestId()); + opcRetryToken(o.getOpcRetryToken()); + invocationCallback(o.getInvocationCallback()); + retryConfiguration(o.getRetryConfiguration()); + return this; + } + + /** + * Build the instance of DisableCostAnomalyMonitorRequest as configured by this builder + * + *

Note that this method takes calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#buildWithoutInvocationCallback} does not. + * + *

This is the preferred method to build an instance. + * + * @return instance of DisableCostAnomalyMonitorRequest + */ + public DisableCostAnomalyMonitorRequest build() { + DisableCostAnomalyMonitorRequest request = buildWithoutInvocationCallback(); + request.setInvocationCallback(invocationCallback); + request.setRetryConfiguration(retryConfiguration); + return request; + } + + /** + * Build the instance of DisableCostAnomalyMonitorRequest as configured by this builder + * + *

Note that this method does not take calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#build} does + * + * @return instance of DisableCostAnomalyMonitorRequest + */ + public DisableCostAnomalyMonitorRequest buildWithoutInvocationCallback() { + DisableCostAnomalyMonitorRequest request = new DisableCostAnomalyMonitorRequest(); + request.costAnomalyMonitorId = costAnomalyMonitorId; + request.ifMatch = ifMatch; + request.opcRequestId = opcRequestId; + request.opcRetryToken = opcRetryToken; + return request; + // new DisableCostAnomalyMonitorRequest(costAnomalyMonitorId, ifMatch, opcRequestId, + // opcRetryToken); + } + } + + /** + * Return an instance of {@link Builder} that allows you to modify request properties. + * + * @return instance of {@link Builder} that allows you to modify request properties. + */ + public Builder toBuilder() { + return new Builder() + .costAnomalyMonitorId(costAnomalyMonitorId) + .ifMatch(ifMatch) + .opcRequestId(opcRequestId) + .opcRetryToken(opcRetryToken); + } + + /** + * Return a new builder for this request object. + * + * @return builder for the request object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",costAnomalyMonitorId=").append(String.valueOf(this.costAnomalyMonitorId)); + sb.append(",ifMatch=").append(String.valueOf(this.ifMatch)); + sb.append(",opcRequestId=").append(String.valueOf(this.opcRequestId)); + sb.append(",opcRetryToken=").append(String.valueOf(this.opcRetryToken)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof DisableCostAnomalyMonitorRequest)) { + return false; + } + + DisableCostAnomalyMonitorRequest other = (DisableCostAnomalyMonitorRequest) o; + return super.equals(o) + && java.util.Objects.equals(this.costAnomalyMonitorId, other.costAnomalyMonitorId) + && java.util.Objects.equals(this.ifMatch, other.ifMatch) + && java.util.Objects.equals(this.opcRequestId, other.opcRequestId) + && java.util.Objects.equals(this.opcRetryToken, other.opcRetryToken); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = + (result * PRIME) + + (this.costAnomalyMonitorId == null + ? 43 + : this.costAnomalyMonitorId.hashCode()); + result = (result * PRIME) + (this.ifMatch == null ? 43 : this.ifMatch.hashCode()); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + result = + (result * PRIME) + + (this.opcRetryToken == null ? 43 : this.opcRetryToken.hashCode()); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/EnableCostAnomalyMonitorRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/EnableCostAnomalyMonitorRequest.java new file mode 100644 index 00000000000..40fe0211b46 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/EnableCostAnomalyMonitorRequest.java @@ -0,0 +1,295 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.requests; + +import com.oracle.bmc.budget.model.*; +/** + * Example: Click here to see how to use + * EnableCostAnomalyMonitorRequest. + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class EnableCostAnomalyMonitorRequest + extends com.oracle.bmc.requests.BmcRequest { + + /** The unique costAnomalyMonitor OCID. */ + private String costAnomalyMonitorId; + + /** The unique costAnomalyMonitor OCID. */ + public String getCostAnomalyMonitorId() { + return costAnomalyMonitorId; + } + /** + * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code + * 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. + */ + private String ifMatch; + + /** + * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code + * 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. + */ + public String getIfMatch() { + return ifMatch; + } + /** The client request ID for tracing. */ + private String opcRequestId; + + /** The client request ID for tracing. */ + public String getOpcRequestId() { + return opcRequestId; + } + /** + * 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. + */ + private String opcRetryToken; + + /** + * 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. + */ + public String getOpcRetryToken() { + return opcRetryToken; + } + + public static class Builder + implements com.oracle.bmc.requests.BmcRequest.Builder< + EnableCostAnomalyMonitorRequest, java.lang.Void> { + private com.oracle.bmc.http.client.RequestInterceptor invocationCallback = null; + private com.oracle.bmc.retrier.RetryConfiguration retryConfiguration = null; + + /** The unique costAnomalyMonitor OCID. */ + private String costAnomalyMonitorId = null; + + /** + * The unique costAnomalyMonitor OCID. + * + * @param costAnomalyMonitorId the value to set + * @return this builder instance + */ + public Builder costAnomalyMonitorId(String costAnomalyMonitorId) { + this.costAnomalyMonitorId = costAnomalyMonitorId; + return this; + } + + /** + * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the + * {@code 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. + */ + private String ifMatch = null; + + /** + * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the + * {@code 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 ifMatch the value to set + * @return this builder instance + */ + public Builder ifMatch(String ifMatch) { + this.ifMatch = ifMatch; + return this; + } + + /** The client request ID for tracing. */ + private String opcRequestId = null; + + /** + * The client request ID for tracing. + * + * @param opcRequestId the value to set + * @return this builder instance + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** + * 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. + */ + private String opcRetryToken = null; + + /** + * 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 opcRetryToken the value to set + * @return this builder instance + */ + public Builder opcRetryToken(String opcRetryToken) { + this.opcRetryToken = opcRetryToken; + return this; + } + + /** + * Set the invocation callback for the request to be built. + * + * @param invocationCallback the invocation callback to be set for the request + * @return this builder instance + */ + public Builder invocationCallback( + com.oracle.bmc.http.client.RequestInterceptor invocationCallback) { + this.invocationCallback = invocationCallback; + return this; + } + + /** + * Set the retry configuration for the request to be built. + * + * @param retryConfiguration the retry configuration to be used for the request + * @return this builder instance + */ + public Builder retryConfiguration( + com.oracle.bmc.retrier.RetryConfiguration retryConfiguration) { + this.retryConfiguration = retryConfiguration; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + public Builder copy(EnableCostAnomalyMonitorRequest o) { + costAnomalyMonitorId(o.getCostAnomalyMonitorId()); + ifMatch(o.getIfMatch()); + opcRequestId(o.getOpcRequestId()); + opcRetryToken(o.getOpcRetryToken()); + invocationCallback(o.getInvocationCallback()); + retryConfiguration(o.getRetryConfiguration()); + return this; + } + + /** + * Build the instance of EnableCostAnomalyMonitorRequest as configured by this builder + * + *

Note that this method takes calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#buildWithoutInvocationCallback} does not. + * + *

This is the preferred method to build an instance. + * + * @return instance of EnableCostAnomalyMonitorRequest + */ + public EnableCostAnomalyMonitorRequest build() { + EnableCostAnomalyMonitorRequest request = buildWithoutInvocationCallback(); + request.setInvocationCallback(invocationCallback); + request.setRetryConfiguration(retryConfiguration); + return request; + } + + /** + * Build the instance of EnableCostAnomalyMonitorRequest as configured by this builder + * + *

Note that this method does not take calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#build} does + * + * @return instance of EnableCostAnomalyMonitorRequest + */ + public EnableCostAnomalyMonitorRequest buildWithoutInvocationCallback() { + EnableCostAnomalyMonitorRequest request = new EnableCostAnomalyMonitorRequest(); + request.costAnomalyMonitorId = costAnomalyMonitorId; + request.ifMatch = ifMatch; + request.opcRequestId = opcRequestId; + request.opcRetryToken = opcRetryToken; + return request; + // new EnableCostAnomalyMonitorRequest(costAnomalyMonitorId, ifMatch, opcRequestId, + // opcRetryToken); + } + } + + /** + * Return an instance of {@link Builder} that allows you to modify request properties. + * + * @return instance of {@link Builder} that allows you to modify request properties. + */ + public Builder toBuilder() { + return new Builder() + .costAnomalyMonitorId(costAnomalyMonitorId) + .ifMatch(ifMatch) + .opcRequestId(opcRequestId) + .opcRetryToken(opcRetryToken); + } + + /** + * Return a new builder for this request object. + * + * @return builder for the request object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",costAnomalyMonitorId=").append(String.valueOf(this.costAnomalyMonitorId)); + sb.append(",ifMatch=").append(String.valueOf(this.ifMatch)); + sb.append(",opcRequestId=").append(String.valueOf(this.opcRequestId)); + sb.append(",opcRetryToken=").append(String.valueOf(this.opcRetryToken)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof EnableCostAnomalyMonitorRequest)) { + return false; + } + + EnableCostAnomalyMonitorRequest other = (EnableCostAnomalyMonitorRequest) o; + return super.equals(o) + && java.util.Objects.equals(this.costAnomalyMonitorId, other.costAnomalyMonitorId) + && java.util.Objects.equals(this.ifMatch, other.ifMatch) + && java.util.Objects.equals(this.opcRequestId, other.opcRequestId) + && java.util.Objects.equals(this.opcRetryToken, other.opcRetryToken); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = + (result * PRIME) + + (this.costAnomalyMonitorId == null + ? 43 + : this.costAnomalyMonitorId.hashCode()); + result = (result * PRIME) + (this.ifMatch == null ? 43 : this.ifMatch.hashCode()); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + result = + (result * PRIME) + + (this.opcRetryToken == null ? 43 : this.opcRetryToken.hashCode()); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/GetAlertRuleRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/GetAlertRuleRequest.java index 06e53150191..90321745aa1 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/GetAlertRuleRequest.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/GetAlertRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.requests; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/GetBudgetRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/GetBudgetRequest.java index 421c9ca0586..5abcc5c942f 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/GetBudgetRequest.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/GetBudgetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestChangeSummaryMetricsRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/GetCostAlertSubscriptionRequest.java similarity index 60% rename from bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestChangeSummaryMetricsRequest.java rename to bmc-budget/src/main/java/com/oracle/bmc/budget/requests/GetCostAlertSubscriptionRequest.java index dd3892432ae..7e7d81e1003 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestChangeSummaryMetricsRequest.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/GetCostAlertSubscriptionRequest.java @@ -1,70 +1,60 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ -package com.oracle.bmc.devops.requests; +package com.oracle.bmc.budget.requests; -import com.oracle.bmc.devops.model.*; +import com.oracle.bmc.budget.model.*; /** * Example: Click here to see how to use - * GetPullRequestChangeSummaryMetricsRequest. + * GetCostAlertSubscriptionRequest. */ -@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20210630") -public class GetPullRequestChangeSummaryMetricsRequest +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class GetCostAlertSubscriptionRequest extends com.oracle.bmc.requests.BmcRequest { - /** unique PullRequest identifier */ - private String pullRequestId; + /** The unique costAlertSubscription OCID. */ + private String costAlertSubscriptionId; - /** unique PullRequest identifier */ - public String getPullRequestId() { - return pullRequestId; + /** The unique costAlertSubscription OCID. */ + public String getCostAlertSubscriptionId() { + return costAlertSubscriptionId; } - /** - * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. - */ + /** The client request ID for tracing. */ private String opcRequestId; - /** - * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. - */ + /** The client request ID for tracing. */ public String getOpcRequestId() { return opcRequestId; } public static class Builder implements com.oracle.bmc.requests.BmcRequest.Builder< - GetPullRequestChangeSummaryMetricsRequest, java.lang.Void> { + GetCostAlertSubscriptionRequest, java.lang.Void> { private com.oracle.bmc.http.client.RequestInterceptor invocationCallback = null; private com.oracle.bmc.retrier.RetryConfiguration retryConfiguration = null; - /** unique PullRequest identifier */ - private String pullRequestId = null; + /** The unique costAlertSubscription OCID. */ + private String costAlertSubscriptionId = null; /** - * unique PullRequest identifier + * The unique costAlertSubscription OCID. * - * @param pullRequestId the value to set + * @param costAlertSubscriptionId the value to set * @return this builder instance */ - public Builder pullRequestId(String pullRequestId) { - this.pullRequestId = pullRequestId; + public Builder costAlertSubscriptionId(String costAlertSubscriptionId) { + this.costAlertSubscriptionId = costAlertSubscriptionId; return this; } - /** - * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. - */ + /** The client request ID for tracing. */ private String opcRequestId = null; /** - * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * The client request ID for tracing. * * @param opcRequestId the value to set * @return this builder instance @@ -103,8 +93,8 @@ public Builder retryConfiguration( * * @return this builder instance */ - public Builder copy(GetPullRequestChangeSummaryMetricsRequest o) { - pullRequestId(o.getPullRequestId()); + public Builder copy(GetCostAlertSubscriptionRequest o) { + costAlertSubscriptionId(o.getCostAlertSubscriptionId()); opcRequestId(o.getOpcRequestId()); invocationCallback(o.getInvocationCallback()); retryConfiguration(o.getRetryConfiguration()); @@ -112,8 +102,7 @@ public Builder copy(GetPullRequestChangeSummaryMetricsRequest o) { } /** - * Build the instance of GetPullRequestChangeSummaryMetricsRequest as configured by this - * builder + * Build the instance of GetCostAlertSubscriptionRequest as configured by this builder * *

Note that this method takes calls to {@link * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, @@ -121,32 +110,30 @@ public Builder copy(GetPullRequestChangeSummaryMetricsRequest o) { * *

This is the preferred method to build an instance. * - * @return instance of GetPullRequestChangeSummaryMetricsRequest + * @return instance of GetCostAlertSubscriptionRequest */ - public GetPullRequestChangeSummaryMetricsRequest build() { - GetPullRequestChangeSummaryMetricsRequest request = buildWithoutInvocationCallback(); + public GetCostAlertSubscriptionRequest build() { + GetCostAlertSubscriptionRequest request = buildWithoutInvocationCallback(); request.setInvocationCallback(invocationCallback); request.setRetryConfiguration(retryConfiguration); return request; } /** - * Build the instance of GetPullRequestChangeSummaryMetricsRequest as configured by this - * builder + * Build the instance of GetCostAlertSubscriptionRequest as configured by this builder * *

Note that this method does not take calls to {@link * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, * while the method {@link Builder#build} does * - * @return instance of GetPullRequestChangeSummaryMetricsRequest + * @return instance of GetCostAlertSubscriptionRequest */ - public GetPullRequestChangeSummaryMetricsRequest buildWithoutInvocationCallback() { - GetPullRequestChangeSummaryMetricsRequest request = - new GetPullRequestChangeSummaryMetricsRequest(); - request.pullRequestId = pullRequestId; + public GetCostAlertSubscriptionRequest buildWithoutInvocationCallback() { + GetCostAlertSubscriptionRequest request = new GetCostAlertSubscriptionRequest(); + request.costAlertSubscriptionId = costAlertSubscriptionId; request.opcRequestId = opcRequestId; return request; - // new GetPullRequestChangeSummaryMetricsRequest(pullRequestId, opcRequestId); + // new GetCostAlertSubscriptionRequest(costAlertSubscriptionId, opcRequestId); } } @@ -156,7 +143,9 @@ public GetPullRequestChangeSummaryMetricsRequest buildWithoutInvocationCallback( * @return instance of {@link Builder} that allows you to modify request properties. */ public Builder toBuilder() { - return new Builder().pullRequestId(pullRequestId).opcRequestId(opcRequestId); + return new Builder() + .costAlertSubscriptionId(costAlertSubscriptionId) + .opcRequestId(opcRequestId); } /** @@ -173,7 +162,7 @@ public String toString() { java.lang.StringBuilder sb = new java.lang.StringBuilder(); sb.append("("); sb.append("super=").append(super.toString()); - sb.append(",pullRequestId=").append(String.valueOf(this.pullRequestId)); + sb.append(",costAlertSubscriptionId=").append(String.valueOf(this.costAlertSubscriptionId)); sb.append(",opcRequestId=").append(String.valueOf(this.opcRequestId)); sb.append(")"); return sb.toString(); @@ -184,14 +173,14 @@ public boolean equals(Object o) { if (this == o) { return true; } - if (!(o instanceof GetPullRequestChangeSummaryMetricsRequest)) { + if (!(o instanceof GetCostAlertSubscriptionRequest)) { return false; } - GetPullRequestChangeSummaryMetricsRequest other = - (GetPullRequestChangeSummaryMetricsRequest) o; + GetCostAlertSubscriptionRequest other = (GetCostAlertSubscriptionRequest) o; return super.equals(o) - && java.util.Objects.equals(this.pullRequestId, other.pullRequestId) + && java.util.Objects.equals( + this.costAlertSubscriptionId, other.costAlertSubscriptionId) && java.util.Objects.equals(this.opcRequestId, other.opcRequestId); } @@ -201,7 +190,9 @@ public int hashCode() { int result = super.hashCode(); result = (result * PRIME) - + (this.pullRequestId == null ? 43 : this.pullRequestId.hashCode()); + + (this.costAlertSubscriptionId == null + ? 43 + : this.costAlertSubscriptionId.hashCode()); result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); return result; } diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/GetCostAnomalyEventRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/GetCostAnomalyEventRequest.java new file mode 100644 index 00000000000..1f05d209bb7 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/GetCostAnomalyEventRequest.java @@ -0,0 +1,194 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.requests; + +import com.oracle.bmc.budget.model.*; +/** + * Example: Click here to see how to use GetCostAnomalyEventRequest. + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class GetCostAnomalyEventRequest extends com.oracle.bmc.requests.BmcRequest { + + /** The unique costAnomalyEventId OCID. */ + private String costAnomalyEventId; + + /** The unique costAnomalyEventId OCID. */ + public String getCostAnomalyEventId() { + return costAnomalyEventId; + } + /** The client request ID for tracing. */ + private String opcRequestId; + + /** The client request ID for tracing. */ + public String getOpcRequestId() { + return opcRequestId; + } + + public static class Builder + implements com.oracle.bmc.requests.BmcRequest.Builder< + GetCostAnomalyEventRequest, java.lang.Void> { + private com.oracle.bmc.http.client.RequestInterceptor invocationCallback = null; + private com.oracle.bmc.retrier.RetryConfiguration retryConfiguration = null; + + /** The unique costAnomalyEventId OCID. */ + private String costAnomalyEventId = null; + + /** + * The unique costAnomalyEventId OCID. + * + * @param costAnomalyEventId the value to set + * @return this builder instance + */ + public Builder costAnomalyEventId(String costAnomalyEventId) { + this.costAnomalyEventId = costAnomalyEventId; + return this; + } + + /** The client request ID for tracing. */ + private String opcRequestId = null; + + /** + * The client request ID for tracing. + * + * @param opcRequestId the value to set + * @return this builder instance + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** + * Set the invocation callback for the request to be built. + * + * @param invocationCallback the invocation callback to be set for the request + * @return this builder instance + */ + public Builder invocationCallback( + com.oracle.bmc.http.client.RequestInterceptor invocationCallback) { + this.invocationCallback = invocationCallback; + return this; + } + + /** + * Set the retry configuration for the request to be built. + * + * @param retryConfiguration the retry configuration to be used for the request + * @return this builder instance + */ + public Builder retryConfiguration( + com.oracle.bmc.retrier.RetryConfiguration retryConfiguration) { + this.retryConfiguration = retryConfiguration; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + public Builder copy(GetCostAnomalyEventRequest o) { + costAnomalyEventId(o.getCostAnomalyEventId()); + opcRequestId(o.getOpcRequestId()); + invocationCallback(o.getInvocationCallback()); + retryConfiguration(o.getRetryConfiguration()); + return this; + } + + /** + * Build the instance of GetCostAnomalyEventRequest as configured by this builder + * + *

Note that this method takes calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#buildWithoutInvocationCallback} does not. + * + *

This is the preferred method to build an instance. + * + * @return instance of GetCostAnomalyEventRequest + */ + public GetCostAnomalyEventRequest build() { + GetCostAnomalyEventRequest request = buildWithoutInvocationCallback(); + request.setInvocationCallback(invocationCallback); + request.setRetryConfiguration(retryConfiguration); + return request; + } + + /** + * Build the instance of GetCostAnomalyEventRequest as configured by this builder + * + *

Note that this method does not take calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#build} does + * + * @return instance of GetCostAnomalyEventRequest + */ + public GetCostAnomalyEventRequest buildWithoutInvocationCallback() { + GetCostAnomalyEventRequest request = new GetCostAnomalyEventRequest(); + request.costAnomalyEventId = costAnomalyEventId; + request.opcRequestId = opcRequestId; + return request; + // new GetCostAnomalyEventRequest(costAnomalyEventId, opcRequestId); + } + } + + /** + * Return an instance of {@link Builder} that allows you to modify request properties. + * + * @return instance of {@link Builder} that allows you to modify request properties. + */ + public Builder toBuilder() { + return new Builder().costAnomalyEventId(costAnomalyEventId).opcRequestId(opcRequestId); + } + + /** + * Return a new builder for this request object. + * + * @return builder for the request object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",costAnomalyEventId=").append(String.valueOf(this.costAnomalyEventId)); + sb.append(",opcRequestId=").append(String.valueOf(this.opcRequestId)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof GetCostAnomalyEventRequest)) { + return false; + } + + GetCostAnomalyEventRequest other = (GetCostAnomalyEventRequest) o; + return super.equals(o) + && java.util.Objects.equals(this.costAnomalyEventId, other.costAnomalyEventId) + && java.util.Objects.equals(this.opcRequestId, other.opcRequestId); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = + (result * PRIME) + + (this.costAnomalyEventId == null + ? 43 + : this.costAnomalyEventId.hashCode()); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/GetCostAnomalyMonitorRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/GetCostAnomalyMonitorRequest.java new file mode 100644 index 00000000000..6daa5058445 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/GetCostAnomalyMonitorRequest.java @@ -0,0 +1,196 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.requests; + +import com.oracle.bmc.budget.model.*; +/** + * Example: Click here to see how to use + * GetCostAnomalyMonitorRequest. + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class GetCostAnomalyMonitorRequest + extends com.oracle.bmc.requests.BmcRequest { + + /** The unique costAnomalyMonitor OCID. */ + private String costAnomalyMonitorId; + + /** The unique costAnomalyMonitor OCID. */ + public String getCostAnomalyMonitorId() { + return costAnomalyMonitorId; + } + /** The client request ID for tracing. */ + private String opcRequestId; + + /** The client request ID for tracing. */ + public String getOpcRequestId() { + return opcRequestId; + } + + public static class Builder + implements com.oracle.bmc.requests.BmcRequest.Builder< + GetCostAnomalyMonitorRequest, java.lang.Void> { + private com.oracle.bmc.http.client.RequestInterceptor invocationCallback = null; + private com.oracle.bmc.retrier.RetryConfiguration retryConfiguration = null; + + /** The unique costAnomalyMonitor OCID. */ + private String costAnomalyMonitorId = null; + + /** + * The unique costAnomalyMonitor OCID. + * + * @param costAnomalyMonitorId the value to set + * @return this builder instance + */ + public Builder costAnomalyMonitorId(String costAnomalyMonitorId) { + this.costAnomalyMonitorId = costAnomalyMonitorId; + return this; + } + + /** The client request ID for tracing. */ + private String opcRequestId = null; + + /** + * The client request ID for tracing. + * + * @param opcRequestId the value to set + * @return this builder instance + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** + * Set the invocation callback for the request to be built. + * + * @param invocationCallback the invocation callback to be set for the request + * @return this builder instance + */ + public Builder invocationCallback( + com.oracle.bmc.http.client.RequestInterceptor invocationCallback) { + this.invocationCallback = invocationCallback; + return this; + } + + /** + * Set the retry configuration for the request to be built. + * + * @param retryConfiguration the retry configuration to be used for the request + * @return this builder instance + */ + public Builder retryConfiguration( + com.oracle.bmc.retrier.RetryConfiguration retryConfiguration) { + this.retryConfiguration = retryConfiguration; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + public Builder copy(GetCostAnomalyMonitorRequest o) { + costAnomalyMonitorId(o.getCostAnomalyMonitorId()); + opcRequestId(o.getOpcRequestId()); + invocationCallback(o.getInvocationCallback()); + retryConfiguration(o.getRetryConfiguration()); + return this; + } + + /** + * Build the instance of GetCostAnomalyMonitorRequest as configured by this builder + * + *

Note that this method takes calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#buildWithoutInvocationCallback} does not. + * + *

This is the preferred method to build an instance. + * + * @return instance of GetCostAnomalyMonitorRequest + */ + public GetCostAnomalyMonitorRequest build() { + GetCostAnomalyMonitorRequest request = buildWithoutInvocationCallback(); + request.setInvocationCallback(invocationCallback); + request.setRetryConfiguration(retryConfiguration); + return request; + } + + /** + * Build the instance of GetCostAnomalyMonitorRequest as configured by this builder + * + *

Note that this method does not take calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#build} does + * + * @return instance of GetCostAnomalyMonitorRequest + */ + public GetCostAnomalyMonitorRequest buildWithoutInvocationCallback() { + GetCostAnomalyMonitorRequest request = new GetCostAnomalyMonitorRequest(); + request.costAnomalyMonitorId = costAnomalyMonitorId; + request.opcRequestId = opcRequestId; + return request; + // new GetCostAnomalyMonitorRequest(costAnomalyMonitorId, opcRequestId); + } + } + + /** + * Return an instance of {@link Builder} that allows you to modify request properties. + * + * @return instance of {@link Builder} that allows you to modify request properties. + */ + public Builder toBuilder() { + return new Builder().costAnomalyMonitorId(costAnomalyMonitorId).opcRequestId(opcRequestId); + } + + /** + * Return a new builder for this request object. + * + * @return builder for the request object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",costAnomalyMonitorId=").append(String.valueOf(this.costAnomalyMonitorId)); + sb.append(",opcRequestId=").append(String.valueOf(this.opcRequestId)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof GetCostAnomalyMonitorRequest)) { + return false; + } + + GetCostAnomalyMonitorRequest other = (GetCostAnomalyMonitorRequest) o; + return super.equals(o) + && java.util.Objects.equals(this.costAnomalyMonitorId, other.costAnomalyMonitorId) + && java.util.Objects.equals(this.opcRequestId, other.opcRequestId); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = + (result * PRIME) + + (this.costAnomalyMonitorId == null + ? 43 + : this.costAnomalyMonitorId.hashCode()); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/ListAlertRulesRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/ListAlertRulesRequest.java index 1321b79bf95..0976337d26d 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/ListAlertRulesRequest.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/ListAlertRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.requests; @@ -51,13 +51,13 @@ public com.oracle.bmc.budget.model.SortOrder getSortOrder() { * The field to sort by. If not specified, the default is timeCreated. The default sort order * for timeCreated is DESC. The default sort order for displayName is ASC in alphanumeric order. */ - private com.oracle.bmc.budget.model.SortBy sortBy; + private com.oracle.bmc.budget.model.SortByForBudget sortBy; /** * The field to sort by. If not specified, the default is timeCreated. The default sort order * for timeCreated is DESC. The default sort order for displayName is ASC in alphanumeric order. */ - public com.oracle.bmc.budget.model.SortBy getSortBy() { + public com.oracle.bmc.budget.model.SortByForBudget getSortBy() { return sortBy; } /** The current state of the resource to filter by. */ @@ -161,7 +161,7 @@ public Builder sortOrder(com.oracle.bmc.budget.model.SortOrder sortOrder) { * order for timeCreated is DESC. The default sort order for displayName is ASC in * alphanumeric order. */ - private com.oracle.bmc.budget.model.SortBy sortBy = null; + private com.oracle.bmc.budget.model.SortByForBudget sortBy = null; /** * The field to sort by. If not specified, the default is timeCreated. The default sort @@ -171,7 +171,7 @@ public Builder sortOrder(com.oracle.bmc.budget.model.SortOrder sortOrder) { * @param sortBy the value to set * @return this builder instance */ - public Builder sortBy(com.oracle.bmc.budget.model.SortBy sortBy) { + public Builder sortBy(com.oracle.bmc.budget.model.SortByForBudget sortBy) { this.sortBy = sortBy; return this; } diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/ListBudgetsRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/ListBudgetsRequest.java index e7205bb94e4..d05f29fe895 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/ListBudgetsRequest.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/ListBudgetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.requests; @@ -51,13 +51,13 @@ public com.oracle.bmc.budget.model.SortOrder getSortOrder() { * The field to sort by. If not specified, the default is timeCreated. The default sort order * for timeCreated is DESC. The default sort order for displayName is ASC in alphanumeric order. */ - private com.oracle.bmc.budget.model.SortBy sortBy; + private com.oracle.bmc.budget.model.SortByForBudget sortBy; /** * The field to sort by. If not specified, the default is timeCreated. The default sort order * for timeCreated is DESC. The default sort order for displayName is ASC in alphanumeric order. */ - public com.oracle.bmc.budget.model.SortBy getSortBy() { + public com.oracle.bmc.budget.model.SortByForBudget getSortBy() { return sortBy; } /** The current state of the resource to filter by. */ @@ -212,7 +212,7 @@ public Builder sortOrder(com.oracle.bmc.budget.model.SortOrder sortOrder) { * order for timeCreated is DESC. The default sort order for displayName is ASC in * alphanumeric order. */ - private com.oracle.bmc.budget.model.SortBy sortBy = null; + private com.oracle.bmc.budget.model.SortByForBudget sortBy = null; /** * The field to sort by. If not specified, the default is timeCreated. The default sort @@ -222,7 +222,7 @@ public Builder sortOrder(com.oracle.bmc.budget.model.SortOrder sortOrder) { * @param sortBy the value to set * @return this builder instance */ - public Builder sortBy(com.oracle.bmc.budget.model.SortBy sortBy) { + public Builder sortBy(com.oracle.bmc.budget.model.SortByForBudget sortBy) { this.sortBy = sortBy; return this; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestFileChangesRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/ListCostAlertSubscriptionsRequest.java similarity index 50% rename from bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestFileChangesRequest.java rename to bmc-budget/src/main/java/com/oracle/bmc/budget/requests/ListCostAlertSubscriptionsRequest.java index af397050dde..e35f2eae605 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestFileChangesRequest.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/ListCostAlertSubscriptionsRequest.java @@ -1,33 +1,26 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ -package com.oracle.bmc.devops.requests; +package com.oracle.bmc.budget.requests; -import com.oracle.bmc.devops.model.*; +import com.oracle.bmc.budget.model.*; /** * Example: Click here to see how to use - * ListPullRequestFileChangesRequest. + * ListCostAlertSubscriptionsRequest. */ -@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20210630") -public class ListPullRequestFileChangesRequest +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class ListCostAlertSubscriptionsRequest extends com.oracle.bmc.requests.BmcRequest { - /** unique PullRequest identifier */ - private String pullRequestId; + /** The ID of the compartment in which to list resources. */ + private String compartmentId; - /** unique PullRequest identifier */ - public String getPullRequestId() { - return pullRequestId; - } - /** PullRequest File Path */ - private String filePath; - - /** PullRequest File Path */ - public String getFilePath() { - return filePath; + /** The ID of the compartment in which to list resources. */ + public String getCompartmentId() { + return compartmentId; } /** The maximum number of items to return. */ private Integer limit; @@ -49,51 +42,65 @@ public Integer getLimit() { public String getPage() { return page; } + /** The sort order to use, either 'asc' or 'desc'. */ + private com.oracle.bmc.budget.model.SortOrder sortOrder; + + /** The sort order to use, either 'asc' or 'desc'. */ + public com.oracle.bmc.budget.model.SortOrder getSortOrder() { + return sortOrder; + } /** - * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * The field to sort by. If not specified, the default is timeCreated. The default sort order + * for timeCreated is DESC. The default sort order for displayName is ASC in alphanumeric order. */ - private String opcRequestId; + private com.oracle.bmc.budget.model.SortByForCostAd sortBy; /** - * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * The field to sort by. If not specified, the default is timeCreated. The default sort order + * for timeCreated is DESC. The default sort order for displayName is ASC in alphanumeric order. */ + public com.oracle.bmc.budget.model.SortByForCostAd getSortBy() { + return sortBy; + } + /** Unique, non-changeable resource name. */ + private String name; + + /** Unique, non-changeable resource name. */ + public String getName() { + return name; + } + /** The current state of the cost alert subscription. */ + private com.oracle.bmc.budget.model.CostAlertSubscription.LifecycleState lifecycleState; + + /** The current state of the cost alert subscription. */ + public com.oracle.bmc.budget.model.CostAlertSubscription.LifecycleState getLifecycleState() { + return lifecycleState; + } + /** The client request ID for tracing. */ + private String opcRequestId; + + /** The client request ID for tracing. */ public String getOpcRequestId() { return opcRequestId; } public static class Builder implements com.oracle.bmc.requests.BmcRequest.Builder< - ListPullRequestFileChangesRequest, java.lang.Void> { + ListCostAlertSubscriptionsRequest, java.lang.Void> { private com.oracle.bmc.http.client.RequestInterceptor invocationCallback = null; private com.oracle.bmc.retrier.RetryConfiguration retryConfiguration = null; - /** unique PullRequest identifier */ - private String pullRequestId = null; + /** The ID of the compartment in which to list resources. */ + private String compartmentId = null; /** - * unique PullRequest identifier + * The ID of the compartment in which to list resources. * - * @param pullRequestId the value to set + * @param compartmentId the value to set * @return this builder instance */ - public Builder pullRequestId(String pullRequestId) { - this.pullRequestId = pullRequestId; - return this; - } - - /** PullRequest File Path */ - private String filePath = null; - - /** - * PullRequest File Path - * - * @param filePath the value to set - * @return this builder instance - */ - public Builder filePath(String filePath) { - this.filePath = filePath; + public Builder compartmentId(String compartmentId) { + this.compartmentId = compartmentId; return this; } @@ -129,15 +136,75 @@ public Builder page(String page) { return this; } + /** The sort order to use, either 'asc' or 'desc'. */ + private com.oracle.bmc.budget.model.SortOrder sortOrder = null; + + /** + * The sort order to use, either 'asc' or 'desc'. + * + * @param sortOrder the value to set + * @return this builder instance + */ + public Builder sortOrder(com.oracle.bmc.budget.model.SortOrder sortOrder) { + this.sortOrder = sortOrder; + return this; + } + + /** + * The field to sort by. If not specified, the default is timeCreated. The default sort + * order for timeCreated is DESC. The default sort order for displayName is ASC in + * alphanumeric order. + */ + private com.oracle.bmc.budget.model.SortByForCostAd sortBy = null; + + /** + * The field to sort by. If not specified, the default is timeCreated. The default sort + * order for timeCreated is DESC. The default sort order for displayName is ASC in + * alphanumeric order. + * + * @param sortBy the value to set + * @return this builder instance + */ + public Builder sortBy(com.oracle.bmc.budget.model.SortByForCostAd sortBy) { + this.sortBy = sortBy; + return this; + } + + /** Unique, non-changeable resource name. */ + private String name = null; + /** - * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * Unique, non-changeable resource name. + * + * @param name the value to set + * @return this builder instance */ + public Builder name(String name) { + this.name = name; + return this; + } + + /** The current state of the cost alert subscription. */ + private com.oracle.bmc.budget.model.CostAlertSubscription.LifecycleState lifecycleState = + null; + + /** + * The current state of the cost alert subscription. + * + * @param lifecycleState the value to set + * @return this builder instance + */ + public Builder lifecycleState( + com.oracle.bmc.budget.model.CostAlertSubscription.LifecycleState lifecycleState) { + this.lifecycleState = lifecycleState; + return this; + } + + /** The client request ID for tracing. */ private String opcRequestId = null; /** - * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * The client request ID for tracing. * * @param opcRequestId the value to set * @return this builder instance @@ -176,11 +243,14 @@ public Builder retryConfiguration( * * @return this builder instance */ - public Builder copy(ListPullRequestFileChangesRequest o) { - pullRequestId(o.getPullRequestId()); - filePath(o.getFilePath()); + public Builder copy(ListCostAlertSubscriptionsRequest o) { + compartmentId(o.getCompartmentId()); limit(o.getLimit()); page(o.getPage()); + sortOrder(o.getSortOrder()); + sortBy(o.getSortBy()); + name(o.getName()); + lifecycleState(o.getLifecycleState()); opcRequestId(o.getOpcRequestId()); invocationCallback(o.getInvocationCallback()); retryConfiguration(o.getRetryConfiguration()); @@ -188,7 +258,7 @@ public Builder copy(ListPullRequestFileChangesRequest o) { } /** - * Build the instance of ListPullRequestFileChangesRequest as configured by this builder + * Build the instance of ListCostAlertSubscriptionsRequest as configured by this builder * *

Note that this method takes calls to {@link * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, @@ -196,34 +266,37 @@ public Builder copy(ListPullRequestFileChangesRequest o) { * *

This is the preferred method to build an instance. * - * @return instance of ListPullRequestFileChangesRequest + * @return instance of ListCostAlertSubscriptionsRequest */ - public ListPullRequestFileChangesRequest build() { - ListPullRequestFileChangesRequest request = buildWithoutInvocationCallback(); + public ListCostAlertSubscriptionsRequest build() { + ListCostAlertSubscriptionsRequest request = buildWithoutInvocationCallback(); request.setInvocationCallback(invocationCallback); request.setRetryConfiguration(retryConfiguration); return request; } /** - * Build the instance of ListPullRequestFileChangesRequest as configured by this builder + * Build the instance of ListCostAlertSubscriptionsRequest as configured by this builder * *

Note that this method does not take calls to {@link * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, * while the method {@link Builder#build} does * - * @return instance of ListPullRequestFileChangesRequest + * @return instance of ListCostAlertSubscriptionsRequest */ - public ListPullRequestFileChangesRequest buildWithoutInvocationCallback() { - ListPullRequestFileChangesRequest request = new ListPullRequestFileChangesRequest(); - request.pullRequestId = pullRequestId; - request.filePath = filePath; + public ListCostAlertSubscriptionsRequest buildWithoutInvocationCallback() { + ListCostAlertSubscriptionsRequest request = new ListCostAlertSubscriptionsRequest(); + request.compartmentId = compartmentId; request.limit = limit; request.page = page; + request.sortOrder = sortOrder; + request.sortBy = sortBy; + request.name = name; + request.lifecycleState = lifecycleState; request.opcRequestId = opcRequestId; return request; - // new ListPullRequestFileChangesRequest(pullRequestId, filePath, limit, page, - // opcRequestId); + // new ListCostAlertSubscriptionsRequest(compartmentId, limit, page, sortOrder, sortBy, + // name, lifecycleState, opcRequestId); } } @@ -234,10 +307,13 @@ public ListPullRequestFileChangesRequest buildWithoutInvocationCallback() { */ public Builder toBuilder() { return new Builder() - .pullRequestId(pullRequestId) - .filePath(filePath) + .compartmentId(compartmentId) .limit(limit) .page(page) + .sortOrder(sortOrder) + .sortBy(sortBy) + .name(name) + .lifecycleState(lifecycleState) .opcRequestId(opcRequestId); } @@ -255,10 +331,13 @@ public String toString() { java.lang.StringBuilder sb = new java.lang.StringBuilder(); sb.append("("); sb.append("super=").append(super.toString()); - sb.append(",pullRequestId=").append(String.valueOf(this.pullRequestId)); - sb.append(",filePath=").append(String.valueOf(this.filePath)); + sb.append(",compartmentId=").append(String.valueOf(this.compartmentId)); sb.append(",limit=").append(String.valueOf(this.limit)); sb.append(",page=").append(String.valueOf(this.page)); + sb.append(",sortOrder=").append(String.valueOf(this.sortOrder)); + sb.append(",sortBy=").append(String.valueOf(this.sortBy)); + sb.append(",name=").append(String.valueOf(this.name)); + sb.append(",lifecycleState=").append(String.valueOf(this.lifecycleState)); sb.append(",opcRequestId=").append(String.valueOf(this.opcRequestId)); sb.append(")"); return sb.toString(); @@ -269,16 +348,19 @@ public boolean equals(Object o) { if (this == o) { return true; } - if (!(o instanceof ListPullRequestFileChangesRequest)) { + if (!(o instanceof ListCostAlertSubscriptionsRequest)) { return false; } - ListPullRequestFileChangesRequest other = (ListPullRequestFileChangesRequest) o; + ListCostAlertSubscriptionsRequest other = (ListCostAlertSubscriptionsRequest) o; return super.equals(o) - && java.util.Objects.equals(this.pullRequestId, other.pullRequestId) - && java.util.Objects.equals(this.filePath, other.filePath) + && java.util.Objects.equals(this.compartmentId, other.compartmentId) && java.util.Objects.equals(this.limit, other.limit) && java.util.Objects.equals(this.page, other.page) + && java.util.Objects.equals(this.sortOrder, other.sortOrder) + && java.util.Objects.equals(this.sortBy, other.sortBy) + && java.util.Objects.equals(this.name, other.name) + && java.util.Objects.equals(this.lifecycleState, other.lifecycleState) && java.util.Objects.equals(this.opcRequestId, other.opcRequestId); } @@ -288,10 +370,15 @@ public int hashCode() { int result = super.hashCode(); result = (result * PRIME) - + (this.pullRequestId == null ? 43 : this.pullRequestId.hashCode()); - result = (result * PRIME) + (this.filePath == null ? 43 : this.filePath.hashCode()); + + (this.compartmentId == null ? 43 : this.compartmentId.hashCode()); result = (result * PRIME) + (this.limit == null ? 43 : this.limit.hashCode()); result = (result * PRIME) + (this.page == null ? 43 : this.page.hashCode()); + result = (result * PRIME) + (this.sortOrder == null ? 43 : this.sortOrder.hashCode()); + result = (result * PRIME) + (this.sortBy == null ? 43 : this.sortBy.hashCode()); + result = (result * PRIME) + (this.name == null ? 43 : this.name.hashCode()); + result = + (result * PRIME) + + (this.lifecycleState == null ? 43 : this.lifecycleState.hashCode()); result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); return result; } diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/ListCostAnomalyEventsRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/ListCostAnomalyEventsRequest.java new file mode 100644 index 00000000000..048961df266 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/ListCostAnomalyEventsRequest.java @@ -0,0 +1,587 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.requests; + +import com.oracle.bmc.budget.model.*; +/** + * Example: Click here to see how to use + * ListCostAnomalyEventsRequest. + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class ListCostAnomalyEventsRequest + extends com.oracle.bmc.requests.BmcRequest { + + /** The ID of the compartment in which to list resources. */ + private String compartmentId; + + /** The ID of the compartment in which to list resources. */ + public String getCompartmentId() { + return compartmentId; + } + /** The maximum number of items to return. */ + private Integer limit; + + /** The maximum number of items to return. */ + public Integer getLimit() { + return limit; + } + /** + * The page token representing the page at which to start retrieving results. This is usually + * retrieved from a previous list call. + */ + private String page; + + /** + * The page token representing the page at which to start retrieving results. This is usually + * retrieved from a previous list call. + */ + public String getPage() { + return page; + } + /** The sort order to use, either 'asc' or 'desc'. */ + private com.oracle.bmc.budget.model.SortOrder sortOrder; + + /** The sort order to use, either 'asc' or 'desc'. */ + public com.oracle.bmc.budget.model.SortOrder getSortOrder() { + return sortOrder; + } + /** + * The field to sort by. If not specified, the default is timeAnomalyEventDate. The default sort + * order for timeAnomalyEventDate is DESC. The default sort order for costAnomalyName is ASC in + * alphanumeric order. + */ + private com.oracle.bmc.budget.model.SortByForCostAnomalyEvent sortBy; + + /** + * The field to sort by. If not specified, the default is timeAnomalyEventDate. The default sort + * order for timeAnomalyEventDate is DESC. The default sort order for costAnomalyName is ASC in + * alphanumeric order. + */ + public com.oracle.bmc.budget.model.SortByForCostAnomalyEvent getSortBy() { + return sortBy; + } + /** Unique, non-changeable resource name. */ + private String name; + + /** Unique, non-changeable resource name. */ + public String getName() { + return name; + } + /** The cost monitor ocid. */ + private String costAnomalyMonitorId; + + /** The cost monitor ocid. */ + public String getCostAnomalyMonitorId() { + return costAnomalyMonitorId; + } + /** The target tenantId ocid filter param. */ + private java.util.List targetTenantId; + + /** The target tenantId ocid filter param. */ + public java.util.List getTargetTenantId() { + return targetTenantId; + } + /** startDate for anomaly event date. */ + private java.util.Date timeAnomalyEventStartDate; + + /** startDate for anomaly event date. */ + public java.util.Date getTimeAnomalyEventStartDate() { + return timeAnomalyEventStartDate; + } + /** endDate for anomaly event date. */ + private java.util.Date timeAnomalyEventEndDate; + + /** endDate for anomaly event date. */ + public java.util.Date getTimeAnomalyEventEndDate() { + return timeAnomalyEventEndDate; + } + /** region of the anomaly event. */ + private java.util.List region; + + /** region of the anomaly event. */ + public java.util.List getRegion() { + return region; + } + /** cost impact (absolute) of the anomaly event. */ + private Double costImpact; + + /** cost impact (absolute) of the anomaly event. */ + public Double getCostImpact() { + return costImpact; + } + /** cost impact (percentage) of the anomaly event. */ + private Double costImpactPercentage; + + /** cost impact (percentage) of the anomaly event. */ + public Double getCostImpactPercentage() { + return costImpactPercentage; + } + /** The client request ID for tracing. */ + private String opcRequestId; + + /** The client request ID for tracing. */ + public String getOpcRequestId() { + return opcRequestId; + } + + public static class Builder + implements com.oracle.bmc.requests.BmcRequest.Builder< + ListCostAnomalyEventsRequest, java.lang.Void> { + private com.oracle.bmc.http.client.RequestInterceptor invocationCallback = null; + private com.oracle.bmc.retrier.RetryConfiguration retryConfiguration = null; + + /** The ID of the compartment in which to list resources. */ + private String compartmentId = null; + + /** + * The ID of the compartment in which to list resources. + * + * @param compartmentId the value to set + * @return this builder instance + */ + public Builder compartmentId(String compartmentId) { + this.compartmentId = compartmentId; + return this; + } + + /** The maximum number of items to return. */ + private Integer limit = null; + + /** + * The maximum number of items to return. + * + * @param limit the value to set + * @return this builder instance + */ + public Builder limit(Integer limit) { + this.limit = limit; + return this; + } + + /** + * The page token representing the page at which to start retrieving results. This is + * usually retrieved from a previous list call. + */ + private String page = null; + + /** + * The page token representing the page at which to start retrieving results. This is + * usually retrieved from a previous list call. + * + * @param page the value to set + * @return this builder instance + */ + public Builder page(String page) { + this.page = page; + return this; + } + + /** The sort order to use, either 'asc' or 'desc'. */ + private com.oracle.bmc.budget.model.SortOrder sortOrder = null; + + /** + * The sort order to use, either 'asc' or 'desc'. + * + * @param sortOrder the value to set + * @return this builder instance + */ + public Builder sortOrder(com.oracle.bmc.budget.model.SortOrder sortOrder) { + this.sortOrder = sortOrder; + return this; + } + + /** + * The field to sort by. If not specified, the default is timeAnomalyEventDate. The default + * sort order for timeAnomalyEventDate is DESC. The default sort order for costAnomalyName + * is ASC in alphanumeric order. + */ + private com.oracle.bmc.budget.model.SortByForCostAnomalyEvent sortBy = null; + + /** + * The field to sort by. If not specified, the default is timeAnomalyEventDate. The default + * sort order for timeAnomalyEventDate is DESC. The default sort order for costAnomalyName + * is ASC in alphanumeric order. + * + * @param sortBy the value to set + * @return this builder instance + */ + public Builder sortBy(com.oracle.bmc.budget.model.SortByForCostAnomalyEvent sortBy) { + this.sortBy = sortBy; + return this; + } + + /** Unique, non-changeable resource name. */ + private String name = null; + + /** + * Unique, non-changeable resource name. + * + * @param name the value to set + * @return this builder instance + */ + public Builder name(String name) { + this.name = name; + return this; + } + + /** The cost monitor ocid. */ + private String costAnomalyMonitorId = null; + + /** + * The cost monitor ocid. + * + * @param costAnomalyMonitorId the value to set + * @return this builder instance + */ + public Builder costAnomalyMonitorId(String costAnomalyMonitorId) { + this.costAnomalyMonitorId = costAnomalyMonitorId; + return this; + } + + /** The target tenantId ocid filter param. */ + private java.util.List targetTenantId = null; + + /** + * The target tenantId ocid filter param. + * + * @param targetTenantId the value to set + * @return this builder instance + */ + public Builder targetTenantId(java.util.List targetTenantId) { + this.targetTenantId = targetTenantId; + return this; + } + + /** + * Singular setter. The target tenantId ocid filter param. + * + * @param singularValue the singular value to set + * @return this builder instance + */ + public Builder targetTenantId(String singularValue) { + return this.targetTenantId(java.util.Arrays.asList(singularValue)); + } + + /** startDate for anomaly event date. */ + private java.util.Date timeAnomalyEventStartDate = null; + + /** + * startDate for anomaly event date. + * + * @param timeAnomalyEventStartDate the value to set + * @return this builder instance + */ + public Builder timeAnomalyEventStartDate(java.util.Date timeAnomalyEventStartDate) { + this.timeAnomalyEventStartDate = timeAnomalyEventStartDate; + return this; + } + + /** endDate for anomaly event date. */ + private java.util.Date timeAnomalyEventEndDate = null; + + /** + * endDate for anomaly event date. + * + * @param timeAnomalyEventEndDate the value to set + * @return this builder instance + */ + public Builder timeAnomalyEventEndDate(java.util.Date timeAnomalyEventEndDate) { + this.timeAnomalyEventEndDate = timeAnomalyEventEndDate; + return this; + } + + /** region of the anomaly event. */ + private java.util.List region = null; + + /** + * region of the anomaly event. + * + * @param region the value to set + * @return this builder instance + */ + public Builder region(java.util.List region) { + this.region = region; + return this; + } + + /** + * Singular setter. region of the anomaly event. + * + * @param singularValue the singular value to set + * @return this builder instance + */ + public Builder region(String singularValue) { + return this.region(java.util.Arrays.asList(singularValue)); + } + + /** cost impact (absolute) of the anomaly event. */ + private Double costImpact = null; + + /** + * cost impact (absolute) of the anomaly event. + * + * @param costImpact the value to set + * @return this builder instance + */ + public Builder costImpact(Double costImpact) { + this.costImpact = costImpact; + return this; + } + + /** cost impact (percentage) of the anomaly event. */ + private Double costImpactPercentage = null; + + /** + * cost impact (percentage) of the anomaly event. + * + * @param costImpactPercentage the value to set + * @return this builder instance + */ + public Builder costImpactPercentage(Double costImpactPercentage) { + this.costImpactPercentage = costImpactPercentage; + return this; + } + + /** The client request ID for tracing. */ + private String opcRequestId = null; + + /** + * The client request ID for tracing. + * + * @param opcRequestId the value to set + * @return this builder instance + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** + * Set the invocation callback for the request to be built. + * + * @param invocationCallback the invocation callback to be set for the request + * @return this builder instance + */ + public Builder invocationCallback( + com.oracle.bmc.http.client.RequestInterceptor invocationCallback) { + this.invocationCallback = invocationCallback; + return this; + } + + /** + * Set the retry configuration for the request to be built. + * + * @param retryConfiguration the retry configuration to be used for the request + * @return this builder instance + */ + public Builder retryConfiguration( + com.oracle.bmc.retrier.RetryConfiguration retryConfiguration) { + this.retryConfiguration = retryConfiguration; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + public Builder copy(ListCostAnomalyEventsRequest o) { + compartmentId(o.getCompartmentId()); + limit(o.getLimit()); + page(o.getPage()); + sortOrder(o.getSortOrder()); + sortBy(o.getSortBy()); + name(o.getName()); + costAnomalyMonitorId(o.getCostAnomalyMonitorId()); + targetTenantId(o.getTargetTenantId()); + timeAnomalyEventStartDate(o.getTimeAnomalyEventStartDate()); + timeAnomalyEventEndDate(o.getTimeAnomalyEventEndDate()); + region(o.getRegion()); + costImpact(o.getCostImpact()); + costImpactPercentage(o.getCostImpactPercentage()); + opcRequestId(o.getOpcRequestId()); + invocationCallback(o.getInvocationCallback()); + retryConfiguration(o.getRetryConfiguration()); + return this; + } + + /** + * Build the instance of ListCostAnomalyEventsRequest as configured by this builder + * + *

Note that this method takes calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#buildWithoutInvocationCallback} does not. + * + *

This is the preferred method to build an instance. + * + * @return instance of ListCostAnomalyEventsRequest + */ + public ListCostAnomalyEventsRequest build() { + ListCostAnomalyEventsRequest request = buildWithoutInvocationCallback(); + request.setInvocationCallback(invocationCallback); + request.setRetryConfiguration(retryConfiguration); + return request; + } + + /** + * Build the instance of ListCostAnomalyEventsRequest as configured by this builder + * + *

Note that this method does not take calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#build} does + * + * @return instance of ListCostAnomalyEventsRequest + */ + public ListCostAnomalyEventsRequest buildWithoutInvocationCallback() { + ListCostAnomalyEventsRequest request = new ListCostAnomalyEventsRequest(); + request.compartmentId = compartmentId; + request.limit = limit; + request.page = page; + request.sortOrder = sortOrder; + request.sortBy = sortBy; + request.name = name; + request.costAnomalyMonitorId = costAnomalyMonitorId; + request.targetTenantId = targetTenantId; + request.timeAnomalyEventStartDate = timeAnomalyEventStartDate; + request.timeAnomalyEventEndDate = timeAnomalyEventEndDate; + request.region = region; + request.costImpact = costImpact; + request.costImpactPercentage = costImpactPercentage; + request.opcRequestId = opcRequestId; + return request; + // new ListCostAnomalyEventsRequest(compartmentId, limit, page, sortOrder, sortBy, name, + // costAnomalyMonitorId, targetTenantId, timeAnomalyEventStartDate, + // timeAnomalyEventEndDate, region, costImpact, costImpactPercentage, opcRequestId); + } + } + + /** + * Return an instance of {@link Builder} that allows you to modify request properties. + * + * @return instance of {@link Builder} that allows you to modify request properties. + */ + public Builder toBuilder() { + return new Builder() + .compartmentId(compartmentId) + .limit(limit) + .page(page) + .sortOrder(sortOrder) + .sortBy(sortBy) + .name(name) + .costAnomalyMonitorId(costAnomalyMonitorId) + .targetTenantId(targetTenantId) + .timeAnomalyEventStartDate(timeAnomalyEventStartDate) + .timeAnomalyEventEndDate(timeAnomalyEventEndDate) + .region(region) + .costImpact(costImpact) + .costImpactPercentage(costImpactPercentage) + .opcRequestId(opcRequestId); + } + + /** + * Return a new builder for this request object. + * + * @return builder for the request object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",compartmentId=").append(String.valueOf(this.compartmentId)); + sb.append(",limit=").append(String.valueOf(this.limit)); + sb.append(",page=").append(String.valueOf(this.page)); + sb.append(",sortOrder=").append(String.valueOf(this.sortOrder)); + sb.append(",sortBy=").append(String.valueOf(this.sortBy)); + sb.append(",name=").append(String.valueOf(this.name)); + sb.append(",costAnomalyMonitorId=").append(String.valueOf(this.costAnomalyMonitorId)); + sb.append(",targetTenantId=").append(String.valueOf(this.targetTenantId)); + sb.append(",timeAnomalyEventStartDate=") + .append(String.valueOf(this.timeAnomalyEventStartDate)); + sb.append(",timeAnomalyEventEndDate=").append(String.valueOf(this.timeAnomalyEventEndDate)); + sb.append(",region=").append(String.valueOf(this.region)); + sb.append(",costImpact=").append(String.valueOf(this.costImpact)); + sb.append(",costImpactPercentage=").append(String.valueOf(this.costImpactPercentage)); + sb.append(",opcRequestId=").append(String.valueOf(this.opcRequestId)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof ListCostAnomalyEventsRequest)) { + return false; + } + + ListCostAnomalyEventsRequest other = (ListCostAnomalyEventsRequest) o; + return super.equals(o) + && java.util.Objects.equals(this.compartmentId, other.compartmentId) + && java.util.Objects.equals(this.limit, other.limit) + && java.util.Objects.equals(this.page, other.page) + && java.util.Objects.equals(this.sortOrder, other.sortOrder) + && java.util.Objects.equals(this.sortBy, other.sortBy) + && java.util.Objects.equals(this.name, other.name) + && java.util.Objects.equals(this.costAnomalyMonitorId, other.costAnomalyMonitorId) + && java.util.Objects.equals(this.targetTenantId, other.targetTenantId) + && java.util.Objects.equals( + this.timeAnomalyEventStartDate, other.timeAnomalyEventStartDate) + && java.util.Objects.equals( + this.timeAnomalyEventEndDate, other.timeAnomalyEventEndDate) + && java.util.Objects.equals(this.region, other.region) + && java.util.Objects.equals(this.costImpact, other.costImpact) + && java.util.Objects.equals(this.costImpactPercentage, other.costImpactPercentage) + && java.util.Objects.equals(this.opcRequestId, other.opcRequestId); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = + (result * PRIME) + + (this.compartmentId == null ? 43 : this.compartmentId.hashCode()); + result = (result * PRIME) + (this.limit == null ? 43 : this.limit.hashCode()); + result = (result * PRIME) + (this.page == null ? 43 : this.page.hashCode()); + result = (result * PRIME) + (this.sortOrder == null ? 43 : this.sortOrder.hashCode()); + result = (result * PRIME) + (this.sortBy == null ? 43 : this.sortBy.hashCode()); + result = (result * PRIME) + (this.name == null ? 43 : this.name.hashCode()); + result = + (result * PRIME) + + (this.costAnomalyMonitorId == null + ? 43 + : this.costAnomalyMonitorId.hashCode()); + result = + (result * PRIME) + + (this.targetTenantId == null ? 43 : this.targetTenantId.hashCode()); + result = + (result * PRIME) + + (this.timeAnomalyEventStartDate == null + ? 43 + : this.timeAnomalyEventStartDate.hashCode()); + result = + (result * PRIME) + + (this.timeAnomalyEventEndDate == null + ? 43 + : this.timeAnomalyEventEndDate.hashCode()); + result = (result * PRIME) + (this.region == null ? 43 : this.region.hashCode()); + result = (result * PRIME) + (this.costImpact == null ? 43 : this.costImpact.hashCode()); + result = + (result * PRIME) + + (this.costImpactPercentage == null + ? 43 + : this.costImpactPercentage.hashCode()); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/ListCostAnomalyMonitorsRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/ListCostAnomalyMonitorsRequest.java new file mode 100644 index 00000000000..a4ad0780deb --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/ListCostAnomalyMonitorsRequest.java @@ -0,0 +1,460 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.requests; + +import com.oracle.bmc.budget.model.*; +/** + * Example: Click here to see how to use + * ListCostAnomalyMonitorsRequest. + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class ListCostAnomalyMonitorsRequest + extends com.oracle.bmc.requests.BmcRequest { + + /** The ID of the compartment in which to list resources. */ + private String compartmentId; + + /** The ID of the compartment in which to list resources. */ + public String getCompartmentId() { + return compartmentId; + } + /** The maximum number of items to return. */ + private Integer limit; + + /** The maximum number of items to return. */ + public Integer getLimit() { + return limit; + } + /** + * The page token representing the page at which to start retrieving results. This is usually + * retrieved from a previous list call. + */ + private String page; + + /** + * The page token representing the page at which to start retrieving results. This is usually + * retrieved from a previous list call. + */ + public String getPage() { + return page; + } + /** The sort order to use, either 'asc' or 'desc'. */ + private com.oracle.bmc.budget.model.SortOrder sortOrder; + + /** The sort order to use, either 'asc' or 'desc'. */ + public com.oracle.bmc.budget.model.SortOrder getSortOrder() { + return sortOrder; + } + /** + * The field to sort by. If not specified, the default is timeCreated. The default sort order + * for timeCreated is DESC. The default sort order for displayName is ASC in alphanumeric order. + */ + private com.oracle.bmc.budget.model.SortByForCostAd sortBy; + + /** + * The field to sort by. If not specified, the default is timeCreated. The default sort order + * for timeCreated is DESC. The default sort order for displayName is ASC in alphanumeric order. + */ + public com.oracle.bmc.budget.model.SortByForCostAd getSortBy() { + return sortBy; + } + /** The current state of the cost monitor. */ + private com.oracle.bmc.budget.model.CostAnomalyMonitor.LifecycleState lifecycleState; + + /** The current state of the cost monitor. */ + public com.oracle.bmc.budget.model.CostAnomalyMonitor.LifecycleState getLifecycleState() { + return lifecycleState; + } + /** Unique, non-changeable resource name. */ + private String name; + + /** Unique, non-changeable resource name. */ + public String getName() { + return name; + } + /** The target tenantId ocid filter param. */ + private java.util.List targetTenantId; + + /** The target tenantId ocid filter param. */ + public java.util.List getTargetTenantId() { + return targetTenantId; + } + /** Cost Anomaly Monitor target resource filter region. */ + private java.util.List region; + + /** Cost Anomaly Monitor target resource filter region. */ + public java.util.List getRegion() { + return region; + } + /** The client request ID for tracing. */ + private String opcRequestId; + + /** The client request ID for tracing. */ + public String getOpcRequestId() { + return opcRequestId; + } + + public static class Builder + implements com.oracle.bmc.requests.BmcRequest.Builder< + ListCostAnomalyMonitorsRequest, java.lang.Void> { + private com.oracle.bmc.http.client.RequestInterceptor invocationCallback = null; + private com.oracle.bmc.retrier.RetryConfiguration retryConfiguration = null; + + /** The ID of the compartment in which to list resources. */ + private String compartmentId = null; + + /** + * The ID of the compartment in which to list resources. + * + * @param compartmentId the value to set + * @return this builder instance + */ + public Builder compartmentId(String compartmentId) { + this.compartmentId = compartmentId; + return this; + } + + /** The maximum number of items to return. */ + private Integer limit = null; + + /** + * The maximum number of items to return. + * + * @param limit the value to set + * @return this builder instance + */ + public Builder limit(Integer limit) { + this.limit = limit; + return this; + } + + /** + * The page token representing the page at which to start retrieving results. This is + * usually retrieved from a previous list call. + */ + private String page = null; + + /** + * The page token representing the page at which to start retrieving results. This is + * usually retrieved from a previous list call. + * + * @param page the value to set + * @return this builder instance + */ + public Builder page(String page) { + this.page = page; + return this; + } + + /** The sort order to use, either 'asc' or 'desc'. */ + private com.oracle.bmc.budget.model.SortOrder sortOrder = null; + + /** + * The sort order to use, either 'asc' or 'desc'. + * + * @param sortOrder the value to set + * @return this builder instance + */ + public Builder sortOrder(com.oracle.bmc.budget.model.SortOrder sortOrder) { + this.sortOrder = sortOrder; + return this; + } + + /** + * The field to sort by. If not specified, the default is timeCreated. The default sort + * order for timeCreated is DESC. The default sort order for displayName is ASC in + * alphanumeric order. + */ + private com.oracle.bmc.budget.model.SortByForCostAd sortBy = null; + + /** + * The field to sort by. If not specified, the default is timeCreated. The default sort + * order for timeCreated is DESC. The default sort order for displayName is ASC in + * alphanumeric order. + * + * @param sortBy the value to set + * @return this builder instance + */ + public Builder sortBy(com.oracle.bmc.budget.model.SortByForCostAd sortBy) { + this.sortBy = sortBy; + return this; + } + + /** The current state of the cost monitor. */ + private com.oracle.bmc.budget.model.CostAnomalyMonitor.LifecycleState lifecycleState = null; + + /** + * The current state of the cost monitor. + * + * @param lifecycleState the value to set + * @return this builder instance + */ + public Builder lifecycleState( + com.oracle.bmc.budget.model.CostAnomalyMonitor.LifecycleState lifecycleState) { + this.lifecycleState = lifecycleState; + return this; + } + + /** Unique, non-changeable resource name. */ + private String name = null; + + /** + * Unique, non-changeable resource name. + * + * @param name the value to set + * @return this builder instance + */ + public Builder name(String name) { + this.name = name; + return this; + } + + /** The target tenantId ocid filter param. */ + private java.util.List targetTenantId = null; + + /** + * The target tenantId ocid filter param. + * + * @param targetTenantId the value to set + * @return this builder instance + */ + public Builder targetTenantId(java.util.List targetTenantId) { + this.targetTenantId = targetTenantId; + return this; + } + + /** + * Singular setter. The target tenantId ocid filter param. + * + * @param singularValue the singular value to set + * @return this builder instance + */ + public Builder targetTenantId(String singularValue) { + return this.targetTenantId(java.util.Arrays.asList(singularValue)); + } + + /** Cost Anomaly Monitor target resource filter region. */ + private java.util.List region = null; + + /** + * Cost Anomaly Monitor target resource filter region. + * + * @param region the value to set + * @return this builder instance + */ + public Builder region(java.util.List region) { + this.region = region; + return this; + } + + /** + * Singular setter. Cost Anomaly Monitor target resource filter region. + * + * @param singularValue the singular value to set + * @return this builder instance + */ + public Builder region(String singularValue) { + return this.region(java.util.Arrays.asList(singularValue)); + } + + /** The client request ID for tracing. */ + private String opcRequestId = null; + + /** + * The client request ID for tracing. + * + * @param opcRequestId the value to set + * @return this builder instance + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** + * Set the invocation callback for the request to be built. + * + * @param invocationCallback the invocation callback to be set for the request + * @return this builder instance + */ + public Builder invocationCallback( + com.oracle.bmc.http.client.RequestInterceptor invocationCallback) { + this.invocationCallback = invocationCallback; + return this; + } + + /** + * Set the retry configuration for the request to be built. + * + * @param retryConfiguration the retry configuration to be used for the request + * @return this builder instance + */ + public Builder retryConfiguration( + com.oracle.bmc.retrier.RetryConfiguration retryConfiguration) { + this.retryConfiguration = retryConfiguration; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + public Builder copy(ListCostAnomalyMonitorsRequest o) { + compartmentId(o.getCompartmentId()); + limit(o.getLimit()); + page(o.getPage()); + sortOrder(o.getSortOrder()); + sortBy(o.getSortBy()); + lifecycleState(o.getLifecycleState()); + name(o.getName()); + targetTenantId(o.getTargetTenantId()); + region(o.getRegion()); + opcRequestId(o.getOpcRequestId()); + invocationCallback(o.getInvocationCallback()); + retryConfiguration(o.getRetryConfiguration()); + return this; + } + + /** + * Build the instance of ListCostAnomalyMonitorsRequest as configured by this builder + * + *

Note that this method takes calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#buildWithoutInvocationCallback} does not. + * + *

This is the preferred method to build an instance. + * + * @return instance of ListCostAnomalyMonitorsRequest + */ + public ListCostAnomalyMonitorsRequest build() { + ListCostAnomalyMonitorsRequest request = buildWithoutInvocationCallback(); + request.setInvocationCallback(invocationCallback); + request.setRetryConfiguration(retryConfiguration); + return request; + } + + /** + * Build the instance of ListCostAnomalyMonitorsRequest as configured by this builder + * + *

Note that this method does not take calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#build} does + * + * @return instance of ListCostAnomalyMonitorsRequest + */ + public ListCostAnomalyMonitorsRequest buildWithoutInvocationCallback() { + ListCostAnomalyMonitorsRequest request = new ListCostAnomalyMonitorsRequest(); + request.compartmentId = compartmentId; + request.limit = limit; + request.page = page; + request.sortOrder = sortOrder; + request.sortBy = sortBy; + request.lifecycleState = lifecycleState; + request.name = name; + request.targetTenantId = targetTenantId; + request.region = region; + request.opcRequestId = opcRequestId; + return request; + // new ListCostAnomalyMonitorsRequest(compartmentId, limit, page, sortOrder, sortBy, + // lifecycleState, name, targetTenantId, region, opcRequestId); + } + } + + /** + * Return an instance of {@link Builder} that allows you to modify request properties. + * + * @return instance of {@link Builder} that allows you to modify request properties. + */ + public Builder toBuilder() { + return new Builder() + .compartmentId(compartmentId) + .limit(limit) + .page(page) + .sortOrder(sortOrder) + .sortBy(sortBy) + .lifecycleState(lifecycleState) + .name(name) + .targetTenantId(targetTenantId) + .region(region) + .opcRequestId(opcRequestId); + } + + /** + * Return a new builder for this request object. + * + * @return builder for the request object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",compartmentId=").append(String.valueOf(this.compartmentId)); + sb.append(",limit=").append(String.valueOf(this.limit)); + sb.append(",page=").append(String.valueOf(this.page)); + sb.append(",sortOrder=").append(String.valueOf(this.sortOrder)); + sb.append(",sortBy=").append(String.valueOf(this.sortBy)); + sb.append(",lifecycleState=").append(String.valueOf(this.lifecycleState)); + sb.append(",name=").append(String.valueOf(this.name)); + sb.append(",targetTenantId=").append(String.valueOf(this.targetTenantId)); + sb.append(",region=").append(String.valueOf(this.region)); + sb.append(",opcRequestId=").append(String.valueOf(this.opcRequestId)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof ListCostAnomalyMonitorsRequest)) { + return false; + } + + ListCostAnomalyMonitorsRequest other = (ListCostAnomalyMonitorsRequest) o; + return super.equals(o) + && java.util.Objects.equals(this.compartmentId, other.compartmentId) + && java.util.Objects.equals(this.limit, other.limit) + && java.util.Objects.equals(this.page, other.page) + && java.util.Objects.equals(this.sortOrder, other.sortOrder) + && java.util.Objects.equals(this.sortBy, other.sortBy) + && java.util.Objects.equals(this.lifecycleState, other.lifecycleState) + && java.util.Objects.equals(this.name, other.name) + && java.util.Objects.equals(this.targetTenantId, other.targetTenantId) + && java.util.Objects.equals(this.region, other.region) + && java.util.Objects.equals(this.opcRequestId, other.opcRequestId); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = + (result * PRIME) + + (this.compartmentId == null ? 43 : this.compartmentId.hashCode()); + result = (result * PRIME) + (this.limit == null ? 43 : this.limit.hashCode()); + result = (result * PRIME) + (this.page == null ? 43 : this.page.hashCode()); + result = (result * PRIME) + (this.sortOrder == null ? 43 : this.sortOrder.hashCode()); + result = (result * PRIME) + (this.sortBy == null ? 43 : this.sortBy.hashCode()); + result = + (result * PRIME) + + (this.lifecycleState == null ? 43 : this.lifecycleState.hashCode()); + result = (result * PRIME) + (this.name == null ? 43 : this.name.hashCode()); + result = + (result * PRIME) + + (this.targetTenantId == null ? 43 : this.targetTenantId.hashCode()); + result = (result * PRIME) + (this.region == null ? 43 : this.region.hashCode()); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/SummarizeCostAnomalyEventAnalyticsRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/SummarizeCostAnomalyEventAnalyticsRequest.java new file mode 100644 index 00000000000..3bd693657c9 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/SummarizeCostAnomalyEventAnalyticsRequest.java @@ -0,0 +1,591 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.requests; + +import com.oracle.bmc.budget.model.*; +/** + * Example: Click here to see how to use + * SummarizeCostAnomalyEventAnalyticsRequest. + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class SummarizeCostAnomalyEventAnalyticsRequest + extends com.oracle.bmc.requests.BmcRequest { + + /** The ID of the compartment in which to list resources. */ + private String compartmentId; + + /** The ID of the compartment in which to list resources. */ + public String getCompartmentId() { + return compartmentId; + } + /** The maximum number of items to return. */ + private Integer limit; + + /** The maximum number of items to return. */ + public Integer getLimit() { + return limit; + } + /** + * The page token representing the page at which to start retrieving results. This is usually + * retrieved from a previous list call. + */ + private String page; + + /** + * The page token representing the page at which to start retrieving results. This is usually + * retrieved from a previous list call. + */ + public String getPage() { + return page; + } + /** The sort order to use, either 'asc' or 'desc'. */ + private com.oracle.bmc.budget.model.SortOrder sortOrder; + + /** The sort order to use, either 'asc' or 'desc'. */ + public com.oracle.bmc.budget.model.SortOrder getSortOrder() { + return sortOrder; + } + /** + * The field to sort by. If not specified, the default is timeAnomalyEventDate. The default sort + * order for timeAnomalyEventDate is DESC. The default sort order for costAnomalyName is ASC in + * alphanumeric order. + */ + private com.oracle.bmc.budget.model.SortByForCostAnomalyEvent sortBy; + + /** + * The field to sort by. If not specified, the default is timeAnomalyEventDate. The default sort + * order for timeAnomalyEventDate is DESC. The default sort order for costAnomalyName is ASC in + * alphanumeric order. + */ + public com.oracle.bmc.budget.model.SortByForCostAnomalyEvent getSortBy() { + return sortBy; + } + /** Unique, non-changeable resource name. */ + private String name; + + /** Unique, non-changeable resource name. */ + public String getName() { + return name; + } + /** The cost monitor ocid. */ + private String costAnomalyMonitorId; + + /** The cost monitor ocid. */ + public String getCostAnomalyMonitorId() { + return costAnomalyMonitorId; + } + /** The target tenantId ocid filter param. */ + private java.util.List targetTenantId; + + /** The target tenantId ocid filter param. */ + public java.util.List getTargetTenantId() { + return targetTenantId; + } + /** startDate for anomaly event date. */ + private java.util.Date timeAnomalyEventStartDate; + + /** startDate for anomaly event date. */ + public java.util.Date getTimeAnomalyEventStartDate() { + return timeAnomalyEventStartDate; + } + /** endDate for anomaly event date. */ + private java.util.Date timeAnomalyEventEndDate; + + /** endDate for anomaly event date. */ + public java.util.Date getTimeAnomalyEventEndDate() { + return timeAnomalyEventEndDate; + } + /** region of the anomaly event. */ + private java.util.List region; + + /** region of the anomaly event. */ + public java.util.List getRegion() { + return region; + } + /** cost impact (absolute) of the anomaly event. */ + private Double costImpact; + + /** cost impact (absolute) of the anomaly event. */ + public Double getCostImpact() { + return costImpact; + } + /** cost impact (percentage) of the anomaly event. */ + private Double costImpactPercentage; + + /** cost impact (percentage) of the anomaly event. */ + public Double getCostImpactPercentage() { + return costImpactPercentage; + } + /** The client request ID for tracing. */ + private String opcRequestId; + + /** The client request ID for tracing. */ + public String getOpcRequestId() { + return opcRequestId; + } + + public static class Builder + implements com.oracle.bmc.requests.BmcRequest.Builder< + SummarizeCostAnomalyEventAnalyticsRequest, java.lang.Void> { + private com.oracle.bmc.http.client.RequestInterceptor invocationCallback = null; + private com.oracle.bmc.retrier.RetryConfiguration retryConfiguration = null; + + /** The ID of the compartment in which to list resources. */ + private String compartmentId = null; + + /** + * The ID of the compartment in which to list resources. + * + * @param compartmentId the value to set + * @return this builder instance + */ + public Builder compartmentId(String compartmentId) { + this.compartmentId = compartmentId; + return this; + } + + /** The maximum number of items to return. */ + private Integer limit = null; + + /** + * The maximum number of items to return. + * + * @param limit the value to set + * @return this builder instance + */ + public Builder limit(Integer limit) { + this.limit = limit; + return this; + } + + /** + * The page token representing the page at which to start retrieving results. This is + * usually retrieved from a previous list call. + */ + private String page = null; + + /** + * The page token representing the page at which to start retrieving results. This is + * usually retrieved from a previous list call. + * + * @param page the value to set + * @return this builder instance + */ + public Builder page(String page) { + this.page = page; + return this; + } + + /** The sort order to use, either 'asc' or 'desc'. */ + private com.oracle.bmc.budget.model.SortOrder sortOrder = null; + + /** + * The sort order to use, either 'asc' or 'desc'. + * + * @param sortOrder the value to set + * @return this builder instance + */ + public Builder sortOrder(com.oracle.bmc.budget.model.SortOrder sortOrder) { + this.sortOrder = sortOrder; + return this; + } + + /** + * The field to sort by. If not specified, the default is timeAnomalyEventDate. The default + * sort order for timeAnomalyEventDate is DESC. The default sort order for costAnomalyName + * is ASC in alphanumeric order. + */ + private com.oracle.bmc.budget.model.SortByForCostAnomalyEvent sortBy = null; + + /** + * The field to sort by. If not specified, the default is timeAnomalyEventDate. The default + * sort order for timeAnomalyEventDate is DESC. The default sort order for costAnomalyName + * is ASC in alphanumeric order. + * + * @param sortBy the value to set + * @return this builder instance + */ + public Builder sortBy(com.oracle.bmc.budget.model.SortByForCostAnomalyEvent sortBy) { + this.sortBy = sortBy; + return this; + } + + /** Unique, non-changeable resource name. */ + private String name = null; + + /** + * Unique, non-changeable resource name. + * + * @param name the value to set + * @return this builder instance + */ + public Builder name(String name) { + this.name = name; + return this; + } + + /** The cost monitor ocid. */ + private String costAnomalyMonitorId = null; + + /** + * The cost monitor ocid. + * + * @param costAnomalyMonitorId the value to set + * @return this builder instance + */ + public Builder costAnomalyMonitorId(String costAnomalyMonitorId) { + this.costAnomalyMonitorId = costAnomalyMonitorId; + return this; + } + + /** The target tenantId ocid filter param. */ + private java.util.List targetTenantId = null; + + /** + * The target tenantId ocid filter param. + * + * @param targetTenantId the value to set + * @return this builder instance + */ + public Builder targetTenantId(java.util.List targetTenantId) { + this.targetTenantId = targetTenantId; + return this; + } + + /** + * Singular setter. The target tenantId ocid filter param. + * + * @param singularValue the singular value to set + * @return this builder instance + */ + public Builder targetTenantId(String singularValue) { + return this.targetTenantId(java.util.Arrays.asList(singularValue)); + } + + /** startDate for anomaly event date. */ + private java.util.Date timeAnomalyEventStartDate = null; + + /** + * startDate for anomaly event date. + * + * @param timeAnomalyEventStartDate the value to set + * @return this builder instance + */ + public Builder timeAnomalyEventStartDate(java.util.Date timeAnomalyEventStartDate) { + this.timeAnomalyEventStartDate = timeAnomalyEventStartDate; + return this; + } + + /** endDate for anomaly event date. */ + private java.util.Date timeAnomalyEventEndDate = null; + + /** + * endDate for anomaly event date. + * + * @param timeAnomalyEventEndDate the value to set + * @return this builder instance + */ + public Builder timeAnomalyEventEndDate(java.util.Date timeAnomalyEventEndDate) { + this.timeAnomalyEventEndDate = timeAnomalyEventEndDate; + return this; + } + + /** region of the anomaly event. */ + private java.util.List region = null; + + /** + * region of the anomaly event. + * + * @param region the value to set + * @return this builder instance + */ + public Builder region(java.util.List region) { + this.region = region; + return this; + } + + /** + * Singular setter. region of the anomaly event. + * + * @param singularValue the singular value to set + * @return this builder instance + */ + public Builder region(String singularValue) { + return this.region(java.util.Arrays.asList(singularValue)); + } + + /** cost impact (absolute) of the anomaly event. */ + private Double costImpact = null; + + /** + * cost impact (absolute) of the anomaly event. + * + * @param costImpact the value to set + * @return this builder instance + */ + public Builder costImpact(Double costImpact) { + this.costImpact = costImpact; + return this; + } + + /** cost impact (percentage) of the anomaly event. */ + private Double costImpactPercentage = null; + + /** + * cost impact (percentage) of the anomaly event. + * + * @param costImpactPercentage the value to set + * @return this builder instance + */ + public Builder costImpactPercentage(Double costImpactPercentage) { + this.costImpactPercentage = costImpactPercentage; + return this; + } + + /** The client request ID for tracing. */ + private String opcRequestId = null; + + /** + * The client request ID for tracing. + * + * @param opcRequestId the value to set + * @return this builder instance + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** + * Set the invocation callback for the request to be built. + * + * @param invocationCallback the invocation callback to be set for the request + * @return this builder instance + */ + public Builder invocationCallback( + com.oracle.bmc.http.client.RequestInterceptor invocationCallback) { + this.invocationCallback = invocationCallback; + return this; + } + + /** + * Set the retry configuration for the request to be built. + * + * @param retryConfiguration the retry configuration to be used for the request + * @return this builder instance + */ + public Builder retryConfiguration( + com.oracle.bmc.retrier.RetryConfiguration retryConfiguration) { + this.retryConfiguration = retryConfiguration; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + public Builder copy(SummarizeCostAnomalyEventAnalyticsRequest o) { + compartmentId(o.getCompartmentId()); + limit(o.getLimit()); + page(o.getPage()); + sortOrder(o.getSortOrder()); + sortBy(o.getSortBy()); + name(o.getName()); + costAnomalyMonitorId(o.getCostAnomalyMonitorId()); + targetTenantId(o.getTargetTenantId()); + timeAnomalyEventStartDate(o.getTimeAnomalyEventStartDate()); + timeAnomalyEventEndDate(o.getTimeAnomalyEventEndDate()); + region(o.getRegion()); + costImpact(o.getCostImpact()); + costImpactPercentage(o.getCostImpactPercentage()); + opcRequestId(o.getOpcRequestId()); + invocationCallback(o.getInvocationCallback()); + retryConfiguration(o.getRetryConfiguration()); + return this; + } + + /** + * Build the instance of SummarizeCostAnomalyEventAnalyticsRequest as configured by this + * builder + * + *

Note that this method takes calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#buildWithoutInvocationCallback} does not. + * + *

This is the preferred method to build an instance. + * + * @return instance of SummarizeCostAnomalyEventAnalyticsRequest + */ + public SummarizeCostAnomalyEventAnalyticsRequest build() { + SummarizeCostAnomalyEventAnalyticsRequest request = buildWithoutInvocationCallback(); + request.setInvocationCallback(invocationCallback); + request.setRetryConfiguration(retryConfiguration); + return request; + } + + /** + * Build the instance of SummarizeCostAnomalyEventAnalyticsRequest as configured by this + * builder + * + *

Note that this method does not take calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#build} does + * + * @return instance of SummarizeCostAnomalyEventAnalyticsRequest + */ + public SummarizeCostAnomalyEventAnalyticsRequest buildWithoutInvocationCallback() { + SummarizeCostAnomalyEventAnalyticsRequest request = + new SummarizeCostAnomalyEventAnalyticsRequest(); + request.compartmentId = compartmentId; + request.limit = limit; + request.page = page; + request.sortOrder = sortOrder; + request.sortBy = sortBy; + request.name = name; + request.costAnomalyMonitorId = costAnomalyMonitorId; + request.targetTenantId = targetTenantId; + request.timeAnomalyEventStartDate = timeAnomalyEventStartDate; + request.timeAnomalyEventEndDate = timeAnomalyEventEndDate; + request.region = region; + request.costImpact = costImpact; + request.costImpactPercentage = costImpactPercentage; + request.opcRequestId = opcRequestId; + return request; + // new SummarizeCostAnomalyEventAnalyticsRequest(compartmentId, limit, page, sortOrder, + // sortBy, name, costAnomalyMonitorId, targetTenantId, timeAnomalyEventStartDate, + // timeAnomalyEventEndDate, region, costImpact, costImpactPercentage, opcRequestId); + } + } + + /** + * Return an instance of {@link Builder} that allows you to modify request properties. + * + * @return instance of {@link Builder} that allows you to modify request properties. + */ + public Builder toBuilder() { + return new Builder() + .compartmentId(compartmentId) + .limit(limit) + .page(page) + .sortOrder(sortOrder) + .sortBy(sortBy) + .name(name) + .costAnomalyMonitorId(costAnomalyMonitorId) + .targetTenantId(targetTenantId) + .timeAnomalyEventStartDate(timeAnomalyEventStartDate) + .timeAnomalyEventEndDate(timeAnomalyEventEndDate) + .region(region) + .costImpact(costImpact) + .costImpactPercentage(costImpactPercentage) + .opcRequestId(opcRequestId); + } + + /** + * Return a new builder for this request object. + * + * @return builder for the request object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",compartmentId=").append(String.valueOf(this.compartmentId)); + sb.append(",limit=").append(String.valueOf(this.limit)); + sb.append(",page=").append(String.valueOf(this.page)); + sb.append(",sortOrder=").append(String.valueOf(this.sortOrder)); + sb.append(",sortBy=").append(String.valueOf(this.sortBy)); + sb.append(",name=").append(String.valueOf(this.name)); + sb.append(",costAnomalyMonitorId=").append(String.valueOf(this.costAnomalyMonitorId)); + sb.append(",targetTenantId=").append(String.valueOf(this.targetTenantId)); + sb.append(",timeAnomalyEventStartDate=") + .append(String.valueOf(this.timeAnomalyEventStartDate)); + sb.append(",timeAnomalyEventEndDate=").append(String.valueOf(this.timeAnomalyEventEndDate)); + sb.append(",region=").append(String.valueOf(this.region)); + sb.append(",costImpact=").append(String.valueOf(this.costImpact)); + sb.append(",costImpactPercentage=").append(String.valueOf(this.costImpactPercentage)); + sb.append(",opcRequestId=").append(String.valueOf(this.opcRequestId)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof SummarizeCostAnomalyEventAnalyticsRequest)) { + return false; + } + + SummarizeCostAnomalyEventAnalyticsRequest other = + (SummarizeCostAnomalyEventAnalyticsRequest) o; + return super.equals(o) + && java.util.Objects.equals(this.compartmentId, other.compartmentId) + && java.util.Objects.equals(this.limit, other.limit) + && java.util.Objects.equals(this.page, other.page) + && java.util.Objects.equals(this.sortOrder, other.sortOrder) + && java.util.Objects.equals(this.sortBy, other.sortBy) + && java.util.Objects.equals(this.name, other.name) + && java.util.Objects.equals(this.costAnomalyMonitorId, other.costAnomalyMonitorId) + && java.util.Objects.equals(this.targetTenantId, other.targetTenantId) + && java.util.Objects.equals( + this.timeAnomalyEventStartDate, other.timeAnomalyEventStartDate) + && java.util.Objects.equals( + this.timeAnomalyEventEndDate, other.timeAnomalyEventEndDate) + && java.util.Objects.equals(this.region, other.region) + && java.util.Objects.equals(this.costImpact, other.costImpact) + && java.util.Objects.equals(this.costImpactPercentage, other.costImpactPercentage) + && java.util.Objects.equals(this.opcRequestId, other.opcRequestId); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = + (result * PRIME) + + (this.compartmentId == null ? 43 : this.compartmentId.hashCode()); + result = (result * PRIME) + (this.limit == null ? 43 : this.limit.hashCode()); + result = (result * PRIME) + (this.page == null ? 43 : this.page.hashCode()); + result = (result * PRIME) + (this.sortOrder == null ? 43 : this.sortOrder.hashCode()); + result = (result * PRIME) + (this.sortBy == null ? 43 : this.sortBy.hashCode()); + result = (result * PRIME) + (this.name == null ? 43 : this.name.hashCode()); + result = + (result * PRIME) + + (this.costAnomalyMonitorId == null + ? 43 + : this.costAnomalyMonitorId.hashCode()); + result = + (result * PRIME) + + (this.targetTenantId == null ? 43 : this.targetTenantId.hashCode()); + result = + (result * PRIME) + + (this.timeAnomalyEventStartDate == null + ? 43 + : this.timeAnomalyEventStartDate.hashCode()); + result = + (result * PRIME) + + (this.timeAnomalyEventEndDate == null + ? 43 + : this.timeAnomalyEventEndDate.hashCode()); + result = (result * PRIME) + (this.region == null ? 43 : this.region.hashCode()); + result = (result * PRIME) + (this.costImpact == null ? 43 : this.costImpact.hashCode()); + result = + (result * PRIME) + + (this.costImpactPercentage == null + ? 43 + : this.costImpactPercentage.hashCode()); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/UpdateAlertRuleRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/UpdateAlertRuleRequest.java index 63cd061f2c0..ad24b2bade8 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/UpdateAlertRuleRequest.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/UpdateAlertRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.requests; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/UpdateBudgetRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/UpdateBudgetRequest.java index 2182451c7f2..ce8f529aeb3 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/UpdateBudgetRequest.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/UpdateBudgetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.requests; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/UpdateCostAlertSubscriptionRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/UpdateCostAlertSubscriptionRequest.java new file mode 100644 index 00000000000..1c4501c9ba7 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/UpdateCostAlertSubscriptionRequest.java @@ -0,0 +1,309 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.requests; + +import com.oracle.bmc.budget.model.*; +/** + * Example: Click here to see how to use + * UpdateCostAlertSubscriptionRequest. + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class UpdateCostAlertSubscriptionRequest + extends com.oracle.bmc.requests.BmcRequest< + com.oracle.bmc.budget.model.UpdateCostAlertSubscriptionDetails> { + + /** The unique costAlertSubscription OCID. */ + private String costAlertSubscriptionId; + + /** The unique costAlertSubscription OCID. */ + public String getCostAlertSubscriptionId() { + return costAlertSubscriptionId; + } + /** The information to be updated. */ + private com.oracle.bmc.budget.model.UpdateCostAlertSubscriptionDetails + updateCostAlertSubscriptionDetails; + + /** The information to be updated. */ + public com.oracle.bmc.budget.model.UpdateCostAlertSubscriptionDetails + getUpdateCostAlertSubscriptionDetails() { + return updateCostAlertSubscriptionDetails; + } + /** + * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code + * 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. + */ + private String ifMatch; + + /** + * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code + * 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. + */ + public String getIfMatch() { + return ifMatch; + } + /** The client request ID for tracing. */ + private String opcRequestId; + + /** The client request ID for tracing. */ + public String getOpcRequestId() { + return opcRequestId; + } + + /** + * Alternative accessor for the body parameter. + * + * @return body parameter + */ + @Override + @com.oracle.bmc.InternalSdk + public com.oracle.bmc.budget.model.UpdateCostAlertSubscriptionDetails getBody$() { + return updateCostAlertSubscriptionDetails; + } + + public static class Builder + implements com.oracle.bmc.requests.BmcRequest.Builder< + UpdateCostAlertSubscriptionRequest, + com.oracle.bmc.budget.model.UpdateCostAlertSubscriptionDetails> { + private com.oracle.bmc.http.client.RequestInterceptor invocationCallback = null; + private com.oracle.bmc.retrier.RetryConfiguration retryConfiguration = null; + + /** The unique costAlertSubscription OCID. */ + private String costAlertSubscriptionId = null; + + /** + * The unique costAlertSubscription OCID. + * + * @param costAlertSubscriptionId the value to set + * @return this builder instance + */ + public Builder costAlertSubscriptionId(String costAlertSubscriptionId) { + this.costAlertSubscriptionId = costAlertSubscriptionId; + return this; + } + + /** The information to be updated. */ + private com.oracle.bmc.budget.model.UpdateCostAlertSubscriptionDetails + updateCostAlertSubscriptionDetails = null; + + /** + * The information to be updated. + * + * @param updateCostAlertSubscriptionDetails the value to set + * @return this builder instance + */ + public Builder updateCostAlertSubscriptionDetails( + com.oracle.bmc.budget.model.UpdateCostAlertSubscriptionDetails + updateCostAlertSubscriptionDetails) { + this.updateCostAlertSubscriptionDetails = updateCostAlertSubscriptionDetails; + return this; + } + + /** + * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the + * {@code 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. + */ + private String ifMatch = null; + + /** + * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the + * {@code 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 ifMatch the value to set + * @return this builder instance + */ + public Builder ifMatch(String ifMatch) { + this.ifMatch = ifMatch; + return this; + } + + /** The client request ID for tracing. */ + private String opcRequestId = null; + + /** + * The client request ID for tracing. + * + * @param opcRequestId the value to set + * @return this builder instance + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** + * Set the invocation callback for the request to be built. + * + * @param invocationCallback the invocation callback to be set for the request + * @return this builder instance + */ + public Builder invocationCallback( + com.oracle.bmc.http.client.RequestInterceptor invocationCallback) { + this.invocationCallback = invocationCallback; + return this; + } + + /** + * Set the retry configuration for the request to be built. + * + * @param retryConfiguration the retry configuration to be used for the request + * @return this builder instance + */ + public Builder retryConfiguration( + com.oracle.bmc.retrier.RetryConfiguration retryConfiguration) { + this.retryConfiguration = retryConfiguration; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + public Builder copy(UpdateCostAlertSubscriptionRequest o) { + costAlertSubscriptionId(o.getCostAlertSubscriptionId()); + updateCostAlertSubscriptionDetails(o.getUpdateCostAlertSubscriptionDetails()); + ifMatch(o.getIfMatch()); + opcRequestId(o.getOpcRequestId()); + invocationCallback(o.getInvocationCallback()); + retryConfiguration(o.getRetryConfiguration()); + return this; + } + + /** + * Build the instance of UpdateCostAlertSubscriptionRequest as configured by this builder + * + *

Note that this method takes calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#buildWithoutInvocationCallback} does not. + * + *

This is the preferred method to build an instance. + * + * @return instance of UpdateCostAlertSubscriptionRequest + */ + public UpdateCostAlertSubscriptionRequest build() { + UpdateCostAlertSubscriptionRequest request = buildWithoutInvocationCallback(); + request.setInvocationCallback(invocationCallback); + request.setRetryConfiguration(retryConfiguration); + return request; + } + + /** + * Alternative setter for the body parameter. + * + * @param body the body parameter + * @return this builder instance + */ + @com.oracle.bmc.InternalSdk + public Builder body$(com.oracle.bmc.budget.model.UpdateCostAlertSubscriptionDetails body) { + updateCostAlertSubscriptionDetails(body); + return this; + } + + /** + * Build the instance of UpdateCostAlertSubscriptionRequest as configured by this builder + * + *

Note that this method does not take calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#build} does + * + * @return instance of UpdateCostAlertSubscriptionRequest + */ + public UpdateCostAlertSubscriptionRequest buildWithoutInvocationCallback() { + UpdateCostAlertSubscriptionRequest request = new UpdateCostAlertSubscriptionRequest(); + request.costAlertSubscriptionId = costAlertSubscriptionId; + request.updateCostAlertSubscriptionDetails = updateCostAlertSubscriptionDetails; + request.ifMatch = ifMatch; + request.opcRequestId = opcRequestId; + return request; + // new UpdateCostAlertSubscriptionRequest(costAlertSubscriptionId, + // updateCostAlertSubscriptionDetails, ifMatch, opcRequestId); + } + } + + /** + * Return an instance of {@link Builder} that allows you to modify request properties. + * + * @return instance of {@link Builder} that allows you to modify request properties. + */ + public Builder toBuilder() { + return new Builder() + .costAlertSubscriptionId(costAlertSubscriptionId) + .updateCostAlertSubscriptionDetails(updateCostAlertSubscriptionDetails) + .ifMatch(ifMatch) + .opcRequestId(opcRequestId); + } + + /** + * Return a new builder for this request object. + * + * @return builder for the request object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",costAlertSubscriptionId=").append(String.valueOf(this.costAlertSubscriptionId)); + sb.append(",updateCostAlertSubscriptionDetails=") + .append(String.valueOf(this.updateCostAlertSubscriptionDetails)); + sb.append(",ifMatch=").append(String.valueOf(this.ifMatch)); + sb.append(",opcRequestId=").append(String.valueOf(this.opcRequestId)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof UpdateCostAlertSubscriptionRequest)) { + return false; + } + + UpdateCostAlertSubscriptionRequest other = (UpdateCostAlertSubscriptionRequest) o; + return super.equals(o) + && java.util.Objects.equals( + this.costAlertSubscriptionId, other.costAlertSubscriptionId) + && java.util.Objects.equals( + this.updateCostAlertSubscriptionDetails, + other.updateCostAlertSubscriptionDetails) + && java.util.Objects.equals(this.ifMatch, other.ifMatch) + && java.util.Objects.equals(this.opcRequestId, other.opcRequestId); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = + (result * PRIME) + + (this.costAlertSubscriptionId == null + ? 43 + : this.costAlertSubscriptionId.hashCode()); + result = + (result * PRIME) + + (this.updateCostAlertSubscriptionDetails == null + ? 43 + : this.updateCostAlertSubscriptionDetails.hashCode()); + result = (result * PRIME) + (this.ifMatch == null ? 43 : this.ifMatch.hashCode()); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/UpdateCostAnomalyEventRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/UpdateCostAnomalyEventRequest.java new file mode 100644 index 00000000000..d5a5a6b4a40 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/UpdateCostAnomalyEventRequest.java @@ -0,0 +1,306 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.requests; + +import com.oracle.bmc.budget.model.*; +/** + * Example: Click here to see how to use + * UpdateCostAnomalyEventRequest. + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class UpdateCostAnomalyEventRequest + extends com.oracle.bmc.requests.BmcRequest< + com.oracle.bmc.budget.model.UpdateCostAnomalyEventDetails> { + + /** The unique costAnomalyEventId OCID. */ + private String costAnomalyEventId; + + /** The unique costAnomalyEventId OCID. */ + public String getCostAnomalyEventId() { + return costAnomalyEventId; + } + /** The information to be updated. */ + private com.oracle.bmc.budget.model.UpdateCostAnomalyEventDetails updateCostAnomalyEventDetails; + + /** The information to be updated. */ + public com.oracle.bmc.budget.model.UpdateCostAnomalyEventDetails + getUpdateCostAnomalyEventDetails() { + return updateCostAnomalyEventDetails; + } + /** + * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code + * 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. + */ + private String ifMatch; + + /** + * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code + * 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. + */ + public String getIfMatch() { + return ifMatch; + } + /** The client request ID for tracing. */ + private String opcRequestId; + + /** The client request ID for tracing. */ + public String getOpcRequestId() { + return opcRequestId; + } + + /** + * Alternative accessor for the body parameter. + * + * @return body parameter + */ + @Override + @com.oracle.bmc.InternalSdk + public com.oracle.bmc.budget.model.UpdateCostAnomalyEventDetails getBody$() { + return updateCostAnomalyEventDetails; + } + + public static class Builder + implements com.oracle.bmc.requests.BmcRequest.Builder< + UpdateCostAnomalyEventRequest, + com.oracle.bmc.budget.model.UpdateCostAnomalyEventDetails> { + private com.oracle.bmc.http.client.RequestInterceptor invocationCallback = null; + private com.oracle.bmc.retrier.RetryConfiguration retryConfiguration = null; + + /** The unique costAnomalyEventId OCID. */ + private String costAnomalyEventId = null; + + /** + * The unique costAnomalyEventId OCID. + * + * @param costAnomalyEventId the value to set + * @return this builder instance + */ + public Builder costAnomalyEventId(String costAnomalyEventId) { + this.costAnomalyEventId = costAnomalyEventId; + return this; + } + + /** The information to be updated. */ + private com.oracle.bmc.budget.model.UpdateCostAnomalyEventDetails + updateCostAnomalyEventDetails = null; + + /** + * The information to be updated. + * + * @param updateCostAnomalyEventDetails the value to set + * @return this builder instance + */ + public Builder updateCostAnomalyEventDetails( + com.oracle.bmc.budget.model.UpdateCostAnomalyEventDetails + updateCostAnomalyEventDetails) { + this.updateCostAnomalyEventDetails = updateCostAnomalyEventDetails; + return this; + } + + /** + * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the + * {@code 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. + */ + private String ifMatch = null; + + /** + * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the + * {@code 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 ifMatch the value to set + * @return this builder instance + */ + public Builder ifMatch(String ifMatch) { + this.ifMatch = ifMatch; + return this; + } + + /** The client request ID for tracing. */ + private String opcRequestId = null; + + /** + * The client request ID for tracing. + * + * @param opcRequestId the value to set + * @return this builder instance + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** + * Set the invocation callback for the request to be built. + * + * @param invocationCallback the invocation callback to be set for the request + * @return this builder instance + */ + public Builder invocationCallback( + com.oracle.bmc.http.client.RequestInterceptor invocationCallback) { + this.invocationCallback = invocationCallback; + return this; + } + + /** + * Set the retry configuration for the request to be built. + * + * @param retryConfiguration the retry configuration to be used for the request + * @return this builder instance + */ + public Builder retryConfiguration( + com.oracle.bmc.retrier.RetryConfiguration retryConfiguration) { + this.retryConfiguration = retryConfiguration; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + public Builder copy(UpdateCostAnomalyEventRequest o) { + costAnomalyEventId(o.getCostAnomalyEventId()); + updateCostAnomalyEventDetails(o.getUpdateCostAnomalyEventDetails()); + ifMatch(o.getIfMatch()); + opcRequestId(o.getOpcRequestId()); + invocationCallback(o.getInvocationCallback()); + retryConfiguration(o.getRetryConfiguration()); + return this; + } + + /** + * Build the instance of UpdateCostAnomalyEventRequest as configured by this builder + * + *

Note that this method takes calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#buildWithoutInvocationCallback} does not. + * + *

This is the preferred method to build an instance. + * + * @return instance of UpdateCostAnomalyEventRequest + */ + public UpdateCostAnomalyEventRequest build() { + UpdateCostAnomalyEventRequest request = buildWithoutInvocationCallback(); + request.setInvocationCallback(invocationCallback); + request.setRetryConfiguration(retryConfiguration); + return request; + } + + /** + * Alternative setter for the body parameter. + * + * @param body the body parameter + * @return this builder instance + */ + @com.oracle.bmc.InternalSdk + public Builder body$(com.oracle.bmc.budget.model.UpdateCostAnomalyEventDetails body) { + updateCostAnomalyEventDetails(body); + return this; + } + + /** + * Build the instance of UpdateCostAnomalyEventRequest as configured by this builder + * + *

Note that this method does not take calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#build} does + * + * @return instance of UpdateCostAnomalyEventRequest + */ + public UpdateCostAnomalyEventRequest buildWithoutInvocationCallback() { + UpdateCostAnomalyEventRequest request = new UpdateCostAnomalyEventRequest(); + request.costAnomalyEventId = costAnomalyEventId; + request.updateCostAnomalyEventDetails = updateCostAnomalyEventDetails; + request.ifMatch = ifMatch; + request.opcRequestId = opcRequestId; + return request; + // new UpdateCostAnomalyEventRequest(costAnomalyEventId, updateCostAnomalyEventDetails, + // ifMatch, opcRequestId); + } + } + + /** + * Return an instance of {@link Builder} that allows you to modify request properties. + * + * @return instance of {@link Builder} that allows you to modify request properties. + */ + public Builder toBuilder() { + return new Builder() + .costAnomalyEventId(costAnomalyEventId) + .updateCostAnomalyEventDetails(updateCostAnomalyEventDetails) + .ifMatch(ifMatch) + .opcRequestId(opcRequestId); + } + + /** + * Return a new builder for this request object. + * + * @return builder for the request object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",costAnomalyEventId=").append(String.valueOf(this.costAnomalyEventId)); + sb.append(",updateCostAnomalyEventDetails=") + .append(String.valueOf(this.updateCostAnomalyEventDetails)); + sb.append(",ifMatch=").append(String.valueOf(this.ifMatch)); + sb.append(",opcRequestId=").append(String.valueOf(this.opcRequestId)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof UpdateCostAnomalyEventRequest)) { + return false; + } + + UpdateCostAnomalyEventRequest other = (UpdateCostAnomalyEventRequest) o; + return super.equals(o) + && java.util.Objects.equals(this.costAnomalyEventId, other.costAnomalyEventId) + && java.util.Objects.equals( + this.updateCostAnomalyEventDetails, other.updateCostAnomalyEventDetails) + && java.util.Objects.equals(this.ifMatch, other.ifMatch) + && java.util.Objects.equals(this.opcRequestId, other.opcRequestId); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = + (result * PRIME) + + (this.costAnomalyEventId == null + ? 43 + : this.costAnomalyEventId.hashCode()); + result = + (result * PRIME) + + (this.updateCostAnomalyEventDetails == null + ? 43 + : this.updateCostAnomalyEventDetails.hashCode()); + result = (result * PRIME) + (this.ifMatch == null ? 43 : this.ifMatch.hashCode()); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/UpdateCostAnomalyMonitorRequest.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/UpdateCostAnomalyMonitorRequest.java new file mode 100644 index 00000000000..02c7aadb6c6 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/requests/UpdateCostAnomalyMonitorRequest.java @@ -0,0 +1,307 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.requests; + +import com.oracle.bmc.budget.model.*; +/** + * Example: Click here to see how to use + * UpdateCostAnomalyMonitorRequest. + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class UpdateCostAnomalyMonitorRequest + extends com.oracle.bmc.requests.BmcRequest< + com.oracle.bmc.budget.model.UpdateCostAnomalyMonitorDetails> { + + /** The unique costAnomalyMonitor OCID. */ + private String costAnomalyMonitorId; + + /** The unique costAnomalyMonitor OCID. */ + public String getCostAnomalyMonitorId() { + return costAnomalyMonitorId; + } + /** The information to be updated. */ + private com.oracle.bmc.budget.model.UpdateCostAnomalyMonitorDetails + updateCostAnomalyMonitorDetails; + + /** The information to be updated. */ + public com.oracle.bmc.budget.model.UpdateCostAnomalyMonitorDetails + getUpdateCostAnomalyMonitorDetails() { + return updateCostAnomalyMonitorDetails; + } + /** + * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code + * 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. + */ + private String ifMatch; + + /** + * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code + * 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. + */ + public String getIfMatch() { + return ifMatch; + } + /** The client request ID for tracing. */ + private String opcRequestId; + + /** The client request ID for tracing. */ + public String getOpcRequestId() { + return opcRequestId; + } + + /** + * Alternative accessor for the body parameter. + * + * @return body parameter + */ + @Override + @com.oracle.bmc.InternalSdk + public com.oracle.bmc.budget.model.UpdateCostAnomalyMonitorDetails getBody$() { + return updateCostAnomalyMonitorDetails; + } + + public static class Builder + implements com.oracle.bmc.requests.BmcRequest.Builder< + UpdateCostAnomalyMonitorRequest, + com.oracle.bmc.budget.model.UpdateCostAnomalyMonitorDetails> { + private com.oracle.bmc.http.client.RequestInterceptor invocationCallback = null; + private com.oracle.bmc.retrier.RetryConfiguration retryConfiguration = null; + + /** The unique costAnomalyMonitor OCID. */ + private String costAnomalyMonitorId = null; + + /** + * The unique costAnomalyMonitor OCID. + * + * @param costAnomalyMonitorId the value to set + * @return this builder instance + */ + public Builder costAnomalyMonitorId(String costAnomalyMonitorId) { + this.costAnomalyMonitorId = costAnomalyMonitorId; + return this; + } + + /** The information to be updated. */ + private com.oracle.bmc.budget.model.UpdateCostAnomalyMonitorDetails + updateCostAnomalyMonitorDetails = null; + + /** + * The information to be updated. + * + * @param updateCostAnomalyMonitorDetails the value to set + * @return this builder instance + */ + public Builder updateCostAnomalyMonitorDetails( + com.oracle.bmc.budget.model.UpdateCostAnomalyMonitorDetails + updateCostAnomalyMonitorDetails) { + this.updateCostAnomalyMonitorDetails = updateCostAnomalyMonitorDetails; + return this; + } + + /** + * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the + * {@code 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. + */ + private String ifMatch = null; + + /** + * For optimistic concurrency control. In the PUT or DELETE call for a resource, set the + * {@code 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 ifMatch the value to set + * @return this builder instance + */ + public Builder ifMatch(String ifMatch) { + this.ifMatch = ifMatch; + return this; + } + + /** The client request ID for tracing. */ + private String opcRequestId = null; + + /** + * The client request ID for tracing. + * + * @param opcRequestId the value to set + * @return this builder instance + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** + * Set the invocation callback for the request to be built. + * + * @param invocationCallback the invocation callback to be set for the request + * @return this builder instance + */ + public Builder invocationCallback( + com.oracle.bmc.http.client.RequestInterceptor invocationCallback) { + this.invocationCallback = invocationCallback; + return this; + } + + /** + * Set the retry configuration for the request to be built. + * + * @param retryConfiguration the retry configuration to be used for the request + * @return this builder instance + */ + public Builder retryConfiguration( + com.oracle.bmc.retrier.RetryConfiguration retryConfiguration) { + this.retryConfiguration = retryConfiguration; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + public Builder copy(UpdateCostAnomalyMonitorRequest o) { + costAnomalyMonitorId(o.getCostAnomalyMonitorId()); + updateCostAnomalyMonitorDetails(o.getUpdateCostAnomalyMonitorDetails()); + ifMatch(o.getIfMatch()); + opcRequestId(o.getOpcRequestId()); + invocationCallback(o.getInvocationCallback()); + retryConfiguration(o.getRetryConfiguration()); + return this; + } + + /** + * Build the instance of UpdateCostAnomalyMonitorRequest as configured by this builder + * + *

Note that this method takes calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#buildWithoutInvocationCallback} does not. + * + *

This is the preferred method to build an instance. + * + * @return instance of UpdateCostAnomalyMonitorRequest + */ + public UpdateCostAnomalyMonitorRequest build() { + UpdateCostAnomalyMonitorRequest request = buildWithoutInvocationCallback(); + request.setInvocationCallback(invocationCallback); + request.setRetryConfiguration(retryConfiguration); + return request; + } + + /** + * Alternative setter for the body parameter. + * + * @param body the body parameter + * @return this builder instance + */ + @com.oracle.bmc.InternalSdk + public Builder body$(com.oracle.bmc.budget.model.UpdateCostAnomalyMonitorDetails body) { + updateCostAnomalyMonitorDetails(body); + return this; + } + + /** + * Build the instance of UpdateCostAnomalyMonitorRequest as configured by this builder + * + *

Note that this method does not take calls to {@link + * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, + * while the method {@link Builder#build} does + * + * @return instance of UpdateCostAnomalyMonitorRequest + */ + public UpdateCostAnomalyMonitorRequest buildWithoutInvocationCallback() { + UpdateCostAnomalyMonitorRequest request = new UpdateCostAnomalyMonitorRequest(); + request.costAnomalyMonitorId = costAnomalyMonitorId; + request.updateCostAnomalyMonitorDetails = updateCostAnomalyMonitorDetails; + request.ifMatch = ifMatch; + request.opcRequestId = opcRequestId; + return request; + // new UpdateCostAnomalyMonitorRequest(costAnomalyMonitorId, + // updateCostAnomalyMonitorDetails, ifMatch, opcRequestId); + } + } + + /** + * Return an instance of {@link Builder} that allows you to modify request properties. + * + * @return instance of {@link Builder} that allows you to modify request properties. + */ + public Builder toBuilder() { + return new Builder() + .costAnomalyMonitorId(costAnomalyMonitorId) + .updateCostAnomalyMonitorDetails(updateCostAnomalyMonitorDetails) + .ifMatch(ifMatch) + .opcRequestId(opcRequestId); + } + + /** + * Return a new builder for this request object. + * + * @return builder for the request object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",costAnomalyMonitorId=").append(String.valueOf(this.costAnomalyMonitorId)); + sb.append(",updateCostAnomalyMonitorDetails=") + .append(String.valueOf(this.updateCostAnomalyMonitorDetails)); + sb.append(",ifMatch=").append(String.valueOf(this.ifMatch)); + sb.append(",opcRequestId=").append(String.valueOf(this.opcRequestId)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof UpdateCostAnomalyMonitorRequest)) { + return false; + } + + UpdateCostAnomalyMonitorRequest other = (UpdateCostAnomalyMonitorRequest) o; + return super.equals(o) + && java.util.Objects.equals(this.costAnomalyMonitorId, other.costAnomalyMonitorId) + && java.util.Objects.equals( + this.updateCostAnomalyMonitorDetails, other.updateCostAnomalyMonitorDetails) + && java.util.Objects.equals(this.ifMatch, other.ifMatch) + && java.util.Objects.equals(this.opcRequestId, other.opcRequestId); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = + (result * PRIME) + + (this.costAnomalyMonitorId == null + ? 43 + : this.costAnomalyMonitorId.hashCode()); + result = + (result * PRIME) + + (this.updateCostAnomalyMonitorDetails == null + ? 43 + : this.updateCostAnomalyMonitorDetails.hashCode()); + result = (result * PRIME) + (this.ifMatch == null ? 43 : this.ifMatch.hashCode()); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/CreateAlertRuleResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/CreateAlertRuleResponse.java index ff38512e221..27f90c73a37 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/CreateAlertRuleResponse.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/CreateAlertRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.responses; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/CreateBudgetResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/CreateBudgetResponse.java index cd1cd676313..76b525a7cd3 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/CreateBudgetResponse.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/CreateBudgetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.responses; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/CreateCostAlertSubscriptionResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/CreateCostAlertSubscriptionResponse.java new file mode 100644 index 00000000000..52a59b80778 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/CreateCostAlertSubscriptionResponse.java @@ -0,0 +1,215 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.responses; + +import com.oracle.bmc.budget.model.*; + +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class CreateCostAlertSubscriptionResponse extends com.oracle.bmc.responses.BmcResponse { + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @return the value + */ + public String getOpcRequestId() { + return opcRequestId; + } + + /** For optimistic concurrency control. See {@code if-match}. */ + private String etag; + + /** + * For optimistic concurrency control. See {@code if-match}. + * + * @return the value + */ + public String getEtag() { + return etag; + } + + /** The returned {@code CostAlertSubscription} instance. */ + private com.oracle.bmc.budget.model.CostAlertSubscription costAlertSubscription; + + /** + * The returned {@code CostAlertSubscription} instance. + * + * @return the value + */ + public com.oracle.bmc.budget.model.CostAlertSubscription getCostAlertSubscription() { + return costAlertSubscription; + } + + @java.beans.ConstructorProperties({ + "__httpStatusCode__", + "headers", + "opcRequestId", + "etag", + "costAlertSubscription" + }) + private CreateCostAlertSubscriptionResponse( + int __httpStatusCode__, + java.util.Map> headers, + String opcRequestId, + String etag, + com.oracle.bmc.budget.model.CostAlertSubscription costAlertSubscription) { + super(__httpStatusCode__, headers); + this.opcRequestId = opcRequestId; + this.etag = etag; + this.costAlertSubscription = costAlertSubscription; + } + + public static class Builder + implements com.oracle.bmc.responses.BmcResponse.Builder< + CreateCostAlertSubscriptionResponse> { + private int __httpStatusCode__; + + @Override + public Builder __httpStatusCode__(int __httpStatusCode__) { + this.__httpStatusCode__ = __httpStatusCode__; + return this; + } + + private java.util.Map> headers; + + @Override + public Builder headers(java.util.Map> headers) { + this.headers = headers; + return this; + } + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @param opcRequestId the value to set + * @return this builder + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** For optimistic concurrency control. See {@code if-match}. */ + private String etag; + + /** + * For optimistic concurrency control. See {@code if-match}. + * + * @param etag the value to set + * @return this builder + */ + public Builder etag(String etag) { + this.etag = etag; + return this; + } + + /** The returned {@code CostAlertSubscription} instance. */ + private com.oracle.bmc.budget.model.CostAlertSubscription costAlertSubscription; + + /** + * The returned {@code CostAlertSubscription} instance. + * + * @param costAlertSubscription the value to set + * @return this builder + */ + public Builder costAlertSubscription( + com.oracle.bmc.budget.model.CostAlertSubscription costAlertSubscription) { + this.costAlertSubscription = costAlertSubscription; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + @Override + public Builder copy(CreateCostAlertSubscriptionResponse o) { + __httpStatusCode__(o.get__httpStatusCode__()); + headers(o.getHeaders()); + opcRequestId(o.getOpcRequestId()); + etag(o.getEtag()); + costAlertSubscription(o.getCostAlertSubscription()); + + return this; + } + + /** + * Build the response object. + * + * @return the response object + */ + @Override + public CreateCostAlertSubscriptionResponse build() { + return new CreateCostAlertSubscriptionResponse( + __httpStatusCode__, headers, opcRequestId, etag, costAlertSubscription); + } + } + + /** + * Return a new builder for this response object. + * + * @return builder for the response object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",opcRequestId=").append(String.valueOf(opcRequestId)); + sb.append(",etag=").append(String.valueOf(etag)); + sb.append(",costAlertSubscription=").append(String.valueOf(costAlertSubscription)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CreateCostAlertSubscriptionResponse)) { + return false; + } + + CreateCostAlertSubscriptionResponse other = (CreateCostAlertSubscriptionResponse) o; + return super.equals(o) + && java.util.Objects.equals(this.opcRequestId, other.opcRequestId) + && java.util.Objects.equals(this.etag, other.etag) + && java.util.Objects.equals( + this.costAlertSubscription, other.costAlertSubscription); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + result = (result * PRIME) + (this.etag == null ? 43 : this.etag.hashCode()); + result = + (result * PRIME) + + (this.costAlertSubscription == null + ? 43 + : this.costAlertSubscription.hashCode()); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/CreateCostAnomalyMonitorResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/CreateCostAnomalyMonitorResponse.java new file mode 100644 index 00000000000..0a2cd2b5016 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/CreateCostAnomalyMonitorResponse.java @@ -0,0 +1,214 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.responses; + +import com.oracle.bmc.budget.model.*; + +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class CreateCostAnomalyMonitorResponse extends com.oracle.bmc.responses.BmcResponse { + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @return the value + */ + public String getOpcRequestId() { + return opcRequestId; + } + + /** For optimistic concurrency control. See {@code if-match}. */ + private String etag; + + /** + * For optimistic concurrency control. See {@code if-match}. + * + * @return the value + */ + public String getEtag() { + return etag; + } + + /** The returned {@code CostAnomalyMonitor} instance. */ + private com.oracle.bmc.budget.model.CostAnomalyMonitor costAnomalyMonitor; + + /** + * The returned {@code CostAnomalyMonitor} instance. + * + * @return the value + */ + public com.oracle.bmc.budget.model.CostAnomalyMonitor getCostAnomalyMonitor() { + return costAnomalyMonitor; + } + + @java.beans.ConstructorProperties({ + "__httpStatusCode__", + "headers", + "opcRequestId", + "etag", + "costAnomalyMonitor" + }) + private CreateCostAnomalyMonitorResponse( + int __httpStatusCode__, + java.util.Map> headers, + String opcRequestId, + String etag, + com.oracle.bmc.budget.model.CostAnomalyMonitor costAnomalyMonitor) { + super(__httpStatusCode__, headers); + this.opcRequestId = opcRequestId; + this.etag = etag; + this.costAnomalyMonitor = costAnomalyMonitor; + } + + public static class Builder + implements com.oracle.bmc.responses.BmcResponse.Builder< + CreateCostAnomalyMonitorResponse> { + private int __httpStatusCode__; + + @Override + public Builder __httpStatusCode__(int __httpStatusCode__) { + this.__httpStatusCode__ = __httpStatusCode__; + return this; + } + + private java.util.Map> headers; + + @Override + public Builder headers(java.util.Map> headers) { + this.headers = headers; + return this; + } + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @param opcRequestId the value to set + * @return this builder + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** For optimistic concurrency control. See {@code if-match}. */ + private String etag; + + /** + * For optimistic concurrency control. See {@code if-match}. + * + * @param etag the value to set + * @return this builder + */ + public Builder etag(String etag) { + this.etag = etag; + return this; + } + + /** The returned {@code CostAnomalyMonitor} instance. */ + private com.oracle.bmc.budget.model.CostAnomalyMonitor costAnomalyMonitor; + + /** + * The returned {@code CostAnomalyMonitor} instance. + * + * @param costAnomalyMonitor the value to set + * @return this builder + */ + public Builder costAnomalyMonitor( + com.oracle.bmc.budget.model.CostAnomalyMonitor costAnomalyMonitor) { + this.costAnomalyMonitor = costAnomalyMonitor; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + @Override + public Builder copy(CreateCostAnomalyMonitorResponse o) { + __httpStatusCode__(o.get__httpStatusCode__()); + headers(o.getHeaders()); + opcRequestId(o.getOpcRequestId()); + etag(o.getEtag()); + costAnomalyMonitor(o.getCostAnomalyMonitor()); + + return this; + } + + /** + * Build the response object. + * + * @return the response object + */ + @Override + public CreateCostAnomalyMonitorResponse build() { + return new CreateCostAnomalyMonitorResponse( + __httpStatusCode__, headers, opcRequestId, etag, costAnomalyMonitor); + } + } + + /** + * Return a new builder for this response object. + * + * @return builder for the response object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",opcRequestId=").append(String.valueOf(opcRequestId)); + sb.append(",etag=").append(String.valueOf(etag)); + sb.append(",costAnomalyMonitor=").append(String.valueOf(costAnomalyMonitor)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CreateCostAnomalyMonitorResponse)) { + return false; + } + + CreateCostAnomalyMonitorResponse other = (CreateCostAnomalyMonitorResponse) o; + return super.equals(o) + && java.util.Objects.equals(this.opcRequestId, other.opcRequestId) + && java.util.Objects.equals(this.etag, other.etag) + && java.util.Objects.equals(this.costAnomalyMonitor, other.costAnomalyMonitor); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + result = (result * PRIME) + (this.etag == null ? 43 : this.etag.hashCode()); + result = + (result * PRIME) + + (this.costAnomalyMonitor == null + ? 43 + : this.costAnomalyMonitor.hashCode()); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/DeleteAlertRuleResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/DeleteAlertRuleResponse.java index fd18e549f96..68715120309 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/DeleteAlertRuleResponse.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/DeleteAlertRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.responses; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/DeleteBudgetResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/DeleteBudgetResponse.java index 352a42c6c5d..d613bf655bf 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/DeleteBudgetResponse.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/DeleteBudgetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.responses; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/DeleteCostAlertSubscriptionResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/DeleteCostAlertSubscriptionResponse.java new file mode 100644 index 00000000000..d52a13f51a0 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/DeleteCostAlertSubscriptionResponse.java @@ -0,0 +1,138 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.responses; + +import com.oracle.bmc.budget.model.*; + +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class DeleteCostAlertSubscriptionResponse extends com.oracle.bmc.responses.BmcResponse { + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @return the value + */ + public String getOpcRequestId() { + return opcRequestId; + } + + @java.beans.ConstructorProperties({"__httpStatusCode__", "headers", "opcRequestId"}) + private DeleteCostAlertSubscriptionResponse( + int __httpStatusCode__, + java.util.Map> headers, + String opcRequestId) { + super(__httpStatusCode__, headers); + this.opcRequestId = opcRequestId; + } + + public static class Builder + implements com.oracle.bmc.responses.BmcResponse.Builder< + DeleteCostAlertSubscriptionResponse> { + private int __httpStatusCode__; + + @Override + public Builder __httpStatusCode__(int __httpStatusCode__) { + this.__httpStatusCode__ = __httpStatusCode__; + return this; + } + + private java.util.Map> headers; + + @Override + public Builder headers(java.util.Map> headers) { + this.headers = headers; + return this; + } + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @param opcRequestId the value to set + * @return this builder + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + @Override + public Builder copy(DeleteCostAlertSubscriptionResponse o) { + __httpStatusCode__(o.get__httpStatusCode__()); + headers(o.getHeaders()); + opcRequestId(o.getOpcRequestId()); + + return this; + } + + /** + * Build the response object. + * + * @return the response object + */ + @Override + public DeleteCostAlertSubscriptionResponse build() { + return new DeleteCostAlertSubscriptionResponse( + __httpStatusCode__, headers, opcRequestId); + } + } + + /** + * Return a new builder for this response object. + * + * @return builder for the response object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",opcRequestId=").append(String.valueOf(opcRequestId)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof DeleteCostAlertSubscriptionResponse)) { + return false; + } + + DeleteCostAlertSubscriptionResponse other = (DeleteCostAlertSubscriptionResponse) o; + return super.equals(o) && java.util.Objects.equals(this.opcRequestId, other.opcRequestId); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/DeleteCostAnomalyMonitorResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/DeleteCostAnomalyMonitorResponse.java new file mode 100644 index 00000000000..48267c1c4e2 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/DeleteCostAnomalyMonitorResponse.java @@ -0,0 +1,137 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.responses; + +import com.oracle.bmc.budget.model.*; + +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class DeleteCostAnomalyMonitorResponse extends com.oracle.bmc.responses.BmcResponse { + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @return the value + */ + public String getOpcRequestId() { + return opcRequestId; + } + + @java.beans.ConstructorProperties({"__httpStatusCode__", "headers", "opcRequestId"}) + private DeleteCostAnomalyMonitorResponse( + int __httpStatusCode__, + java.util.Map> headers, + String opcRequestId) { + super(__httpStatusCode__, headers); + this.opcRequestId = opcRequestId; + } + + public static class Builder + implements com.oracle.bmc.responses.BmcResponse.Builder< + DeleteCostAnomalyMonitorResponse> { + private int __httpStatusCode__; + + @Override + public Builder __httpStatusCode__(int __httpStatusCode__) { + this.__httpStatusCode__ = __httpStatusCode__; + return this; + } + + private java.util.Map> headers; + + @Override + public Builder headers(java.util.Map> headers) { + this.headers = headers; + return this; + } + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @param opcRequestId the value to set + * @return this builder + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + @Override + public Builder copy(DeleteCostAnomalyMonitorResponse o) { + __httpStatusCode__(o.get__httpStatusCode__()); + headers(o.getHeaders()); + opcRequestId(o.getOpcRequestId()); + + return this; + } + + /** + * Build the response object. + * + * @return the response object + */ + @Override + public DeleteCostAnomalyMonitorResponse build() { + return new DeleteCostAnomalyMonitorResponse(__httpStatusCode__, headers, opcRequestId); + } + } + + /** + * Return a new builder for this response object. + * + * @return builder for the response object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",opcRequestId=").append(String.valueOf(opcRequestId)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof DeleteCostAnomalyMonitorResponse)) { + return false; + } + + DeleteCostAnomalyMonitorResponse other = (DeleteCostAnomalyMonitorResponse) o; + return super.equals(o) && java.util.Objects.equals(this.opcRequestId, other.opcRequestId); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/DisableCostAnomalyMonitorResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/DisableCostAnomalyMonitorResponse.java new file mode 100644 index 00000000000..c040fcf43f4 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/DisableCostAnomalyMonitorResponse.java @@ -0,0 +1,214 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.responses; + +import com.oracle.bmc.budget.model.*; + +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class DisableCostAnomalyMonitorResponse extends com.oracle.bmc.responses.BmcResponse { + /** For optimistic concurrency control. See {@code if-match}. */ + private String etag; + + /** + * For optimistic concurrency control. See {@code if-match}. + * + * @return the value + */ + public String getEtag() { + return etag; + } + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @return the value + */ + public String getOpcRequestId() { + return opcRequestId; + } + + /** The returned {@code CostAnomalyMonitor} instance. */ + private com.oracle.bmc.budget.model.CostAnomalyMonitor costAnomalyMonitor; + + /** + * The returned {@code CostAnomalyMonitor} instance. + * + * @return the value + */ + public com.oracle.bmc.budget.model.CostAnomalyMonitor getCostAnomalyMonitor() { + return costAnomalyMonitor; + } + + @java.beans.ConstructorProperties({ + "__httpStatusCode__", + "headers", + "etag", + "opcRequestId", + "costAnomalyMonitor" + }) + private DisableCostAnomalyMonitorResponse( + int __httpStatusCode__, + java.util.Map> headers, + String etag, + String opcRequestId, + com.oracle.bmc.budget.model.CostAnomalyMonitor costAnomalyMonitor) { + super(__httpStatusCode__, headers); + this.etag = etag; + this.opcRequestId = opcRequestId; + this.costAnomalyMonitor = costAnomalyMonitor; + } + + public static class Builder + implements com.oracle.bmc.responses.BmcResponse.Builder< + DisableCostAnomalyMonitorResponse> { + private int __httpStatusCode__; + + @Override + public Builder __httpStatusCode__(int __httpStatusCode__) { + this.__httpStatusCode__ = __httpStatusCode__; + return this; + } + + private java.util.Map> headers; + + @Override + public Builder headers(java.util.Map> headers) { + this.headers = headers; + return this; + } + + /** For optimistic concurrency control. See {@code if-match}. */ + private String etag; + + /** + * For optimistic concurrency control. See {@code if-match}. + * + * @param etag the value to set + * @return this builder + */ + public Builder etag(String etag) { + this.etag = etag; + return this; + } + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @param opcRequestId the value to set + * @return this builder + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** The returned {@code CostAnomalyMonitor} instance. */ + private com.oracle.bmc.budget.model.CostAnomalyMonitor costAnomalyMonitor; + + /** + * The returned {@code CostAnomalyMonitor} instance. + * + * @param costAnomalyMonitor the value to set + * @return this builder + */ + public Builder costAnomalyMonitor( + com.oracle.bmc.budget.model.CostAnomalyMonitor costAnomalyMonitor) { + this.costAnomalyMonitor = costAnomalyMonitor; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + @Override + public Builder copy(DisableCostAnomalyMonitorResponse o) { + __httpStatusCode__(o.get__httpStatusCode__()); + headers(o.getHeaders()); + etag(o.getEtag()); + opcRequestId(o.getOpcRequestId()); + costAnomalyMonitor(o.getCostAnomalyMonitor()); + + return this; + } + + /** + * Build the response object. + * + * @return the response object + */ + @Override + public DisableCostAnomalyMonitorResponse build() { + return new DisableCostAnomalyMonitorResponse( + __httpStatusCode__, headers, etag, opcRequestId, costAnomalyMonitor); + } + } + + /** + * Return a new builder for this response object. + * + * @return builder for the response object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",etag=").append(String.valueOf(etag)); + sb.append(",opcRequestId=").append(String.valueOf(opcRequestId)); + sb.append(",costAnomalyMonitor=").append(String.valueOf(costAnomalyMonitor)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof DisableCostAnomalyMonitorResponse)) { + return false; + } + + DisableCostAnomalyMonitorResponse other = (DisableCostAnomalyMonitorResponse) o; + return super.equals(o) + && java.util.Objects.equals(this.etag, other.etag) + && java.util.Objects.equals(this.opcRequestId, other.opcRequestId) + && java.util.Objects.equals(this.costAnomalyMonitor, other.costAnomalyMonitor); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = (result * PRIME) + (this.etag == null ? 43 : this.etag.hashCode()); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + result = + (result * PRIME) + + (this.costAnomalyMonitor == null + ? 43 + : this.costAnomalyMonitor.hashCode()); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/EnableCostAnomalyMonitorResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/EnableCostAnomalyMonitorResponse.java new file mode 100644 index 00000000000..e574e20dd12 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/EnableCostAnomalyMonitorResponse.java @@ -0,0 +1,214 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.responses; + +import com.oracle.bmc.budget.model.*; + +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class EnableCostAnomalyMonitorResponse extends com.oracle.bmc.responses.BmcResponse { + /** For optimistic concurrency control. See {@code if-match}. */ + private String etag; + + /** + * For optimistic concurrency control. See {@code if-match}. + * + * @return the value + */ + public String getEtag() { + return etag; + } + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @return the value + */ + public String getOpcRequestId() { + return opcRequestId; + } + + /** The returned {@code CostAnomalyMonitor} instance. */ + private com.oracle.bmc.budget.model.CostAnomalyMonitor costAnomalyMonitor; + + /** + * The returned {@code CostAnomalyMonitor} instance. + * + * @return the value + */ + public com.oracle.bmc.budget.model.CostAnomalyMonitor getCostAnomalyMonitor() { + return costAnomalyMonitor; + } + + @java.beans.ConstructorProperties({ + "__httpStatusCode__", + "headers", + "etag", + "opcRequestId", + "costAnomalyMonitor" + }) + private EnableCostAnomalyMonitorResponse( + int __httpStatusCode__, + java.util.Map> headers, + String etag, + String opcRequestId, + com.oracle.bmc.budget.model.CostAnomalyMonitor costAnomalyMonitor) { + super(__httpStatusCode__, headers); + this.etag = etag; + this.opcRequestId = opcRequestId; + this.costAnomalyMonitor = costAnomalyMonitor; + } + + public static class Builder + implements com.oracle.bmc.responses.BmcResponse.Builder< + EnableCostAnomalyMonitorResponse> { + private int __httpStatusCode__; + + @Override + public Builder __httpStatusCode__(int __httpStatusCode__) { + this.__httpStatusCode__ = __httpStatusCode__; + return this; + } + + private java.util.Map> headers; + + @Override + public Builder headers(java.util.Map> headers) { + this.headers = headers; + return this; + } + + /** For optimistic concurrency control. See {@code if-match}. */ + private String etag; + + /** + * For optimistic concurrency control. See {@code if-match}. + * + * @param etag the value to set + * @return this builder + */ + public Builder etag(String etag) { + this.etag = etag; + return this; + } + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @param opcRequestId the value to set + * @return this builder + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** The returned {@code CostAnomalyMonitor} instance. */ + private com.oracle.bmc.budget.model.CostAnomalyMonitor costAnomalyMonitor; + + /** + * The returned {@code CostAnomalyMonitor} instance. + * + * @param costAnomalyMonitor the value to set + * @return this builder + */ + public Builder costAnomalyMonitor( + com.oracle.bmc.budget.model.CostAnomalyMonitor costAnomalyMonitor) { + this.costAnomalyMonitor = costAnomalyMonitor; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + @Override + public Builder copy(EnableCostAnomalyMonitorResponse o) { + __httpStatusCode__(o.get__httpStatusCode__()); + headers(o.getHeaders()); + etag(o.getEtag()); + opcRequestId(o.getOpcRequestId()); + costAnomalyMonitor(o.getCostAnomalyMonitor()); + + return this; + } + + /** + * Build the response object. + * + * @return the response object + */ + @Override + public EnableCostAnomalyMonitorResponse build() { + return new EnableCostAnomalyMonitorResponse( + __httpStatusCode__, headers, etag, opcRequestId, costAnomalyMonitor); + } + } + + /** + * Return a new builder for this response object. + * + * @return builder for the response object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",etag=").append(String.valueOf(etag)); + sb.append(",opcRequestId=").append(String.valueOf(opcRequestId)); + sb.append(",costAnomalyMonitor=").append(String.valueOf(costAnomalyMonitor)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof EnableCostAnomalyMonitorResponse)) { + return false; + } + + EnableCostAnomalyMonitorResponse other = (EnableCostAnomalyMonitorResponse) o; + return super.equals(o) + && java.util.Objects.equals(this.etag, other.etag) + && java.util.Objects.equals(this.opcRequestId, other.opcRequestId) + && java.util.Objects.equals(this.costAnomalyMonitor, other.costAnomalyMonitor); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = (result * PRIME) + (this.etag == null ? 43 : this.etag.hashCode()); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + result = + (result * PRIME) + + (this.costAnomalyMonitor == null + ? 43 + : this.costAnomalyMonitor.hashCode()); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/GetAlertRuleResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/GetAlertRuleResponse.java index e74a8ccdfdd..dd66789fe56 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/GetAlertRuleResponse.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/GetAlertRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.responses; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/GetBudgetResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/GetBudgetResponse.java index 797bf6f982a..8896fa558d9 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/GetBudgetResponse.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/GetBudgetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.responses; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/GetCostAlertSubscriptionResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/GetCostAlertSubscriptionResponse.java new file mode 100644 index 00000000000..713ffa11135 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/GetCostAlertSubscriptionResponse.java @@ -0,0 +1,215 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.responses; + +import com.oracle.bmc.budget.model.*; + +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class GetCostAlertSubscriptionResponse extends com.oracle.bmc.responses.BmcResponse { + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @return the value + */ + public String getOpcRequestId() { + return opcRequestId; + } + + /** For optimistic concurrency control. See {@code if-match}. */ + private String etag; + + /** + * For optimistic concurrency control. See {@code if-match}. + * + * @return the value + */ + public String getEtag() { + return etag; + } + + /** The returned {@code CostAlertSubscription} instance. */ + private com.oracle.bmc.budget.model.CostAlertSubscription costAlertSubscription; + + /** + * The returned {@code CostAlertSubscription} instance. + * + * @return the value + */ + public com.oracle.bmc.budget.model.CostAlertSubscription getCostAlertSubscription() { + return costAlertSubscription; + } + + @java.beans.ConstructorProperties({ + "__httpStatusCode__", + "headers", + "opcRequestId", + "etag", + "costAlertSubscription" + }) + private GetCostAlertSubscriptionResponse( + int __httpStatusCode__, + java.util.Map> headers, + String opcRequestId, + String etag, + com.oracle.bmc.budget.model.CostAlertSubscription costAlertSubscription) { + super(__httpStatusCode__, headers); + this.opcRequestId = opcRequestId; + this.etag = etag; + this.costAlertSubscription = costAlertSubscription; + } + + public static class Builder + implements com.oracle.bmc.responses.BmcResponse.Builder< + GetCostAlertSubscriptionResponse> { + private int __httpStatusCode__; + + @Override + public Builder __httpStatusCode__(int __httpStatusCode__) { + this.__httpStatusCode__ = __httpStatusCode__; + return this; + } + + private java.util.Map> headers; + + @Override + public Builder headers(java.util.Map> headers) { + this.headers = headers; + return this; + } + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @param opcRequestId the value to set + * @return this builder + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** For optimistic concurrency control. See {@code if-match}. */ + private String etag; + + /** + * For optimistic concurrency control. See {@code if-match}. + * + * @param etag the value to set + * @return this builder + */ + public Builder etag(String etag) { + this.etag = etag; + return this; + } + + /** The returned {@code CostAlertSubscription} instance. */ + private com.oracle.bmc.budget.model.CostAlertSubscription costAlertSubscription; + + /** + * The returned {@code CostAlertSubscription} instance. + * + * @param costAlertSubscription the value to set + * @return this builder + */ + public Builder costAlertSubscription( + com.oracle.bmc.budget.model.CostAlertSubscription costAlertSubscription) { + this.costAlertSubscription = costAlertSubscription; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + @Override + public Builder copy(GetCostAlertSubscriptionResponse o) { + __httpStatusCode__(o.get__httpStatusCode__()); + headers(o.getHeaders()); + opcRequestId(o.getOpcRequestId()); + etag(o.getEtag()); + costAlertSubscription(o.getCostAlertSubscription()); + + return this; + } + + /** + * Build the response object. + * + * @return the response object + */ + @Override + public GetCostAlertSubscriptionResponse build() { + return new GetCostAlertSubscriptionResponse( + __httpStatusCode__, headers, opcRequestId, etag, costAlertSubscription); + } + } + + /** + * Return a new builder for this response object. + * + * @return builder for the response object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",opcRequestId=").append(String.valueOf(opcRequestId)); + sb.append(",etag=").append(String.valueOf(etag)); + sb.append(",costAlertSubscription=").append(String.valueOf(costAlertSubscription)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof GetCostAlertSubscriptionResponse)) { + return false; + } + + GetCostAlertSubscriptionResponse other = (GetCostAlertSubscriptionResponse) o; + return super.equals(o) + && java.util.Objects.equals(this.opcRequestId, other.opcRequestId) + && java.util.Objects.equals(this.etag, other.etag) + && java.util.Objects.equals( + this.costAlertSubscription, other.costAlertSubscription); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + result = (result * PRIME) + (this.etag == null ? 43 : this.etag.hashCode()); + result = + (result * PRIME) + + (this.costAlertSubscription == null + ? 43 + : this.costAlertSubscription.hashCode()); + return result; + } +} diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestChangeSummaryMetricsResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/GetCostAnomalyEventResponse.java similarity index 55% rename from bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestChangeSummaryMetricsResponse.java rename to bmc-budget/src/main/java/com/oracle/bmc/budget/responses/GetCostAnomalyEventResponse.java index aae2892d4ef..0691f8bac69 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestChangeSummaryMetricsResponse.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/GetCostAnomalyEventResponse.java @@ -1,23 +1,22 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ -package com.oracle.bmc.devops.responses; +package com.oracle.bmc.budget.responses; -import com.oracle.bmc.devops.model.*; +import com.oracle.bmc.budget.model.*; -@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20210630") -public class GetPullRequestChangeSummaryMetricsResponse - extends com.oracle.bmc.responses.BmcResponse { +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class GetCostAnomalyEventResponse extends com.oracle.bmc.responses.BmcResponse { /** * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * particular request, please provide the request ID. */ private String opcRequestId; /** * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * particular request, please provide the request ID. * * @return the value */ @@ -25,40 +24,51 @@ public String getOpcRequestId() { return opcRequestId; } - /** The returned {@code PullRequestChangeSummaryMetrics} instance. */ - private com.oracle.bmc.devops.model.PullRequestChangeSummaryMetrics - pullRequestChangeSummaryMetrics; + /** For optimistic concurrency control. See {@code if-match}. */ + private String etag; /** - * The returned {@code PullRequestChangeSummaryMetrics} instance. + * For optimistic concurrency control. See {@code if-match}. * * @return the value */ - public com.oracle.bmc.devops.model.PullRequestChangeSummaryMetrics - getPullRequestChangeSummaryMetrics() { - return pullRequestChangeSummaryMetrics; + public String getEtag() { + return etag; + } + + /** The returned {@code CostAnomalyEvent} instance. */ + private com.oracle.bmc.budget.model.CostAnomalyEvent costAnomalyEvent; + + /** + * The returned {@code CostAnomalyEvent} instance. + * + * @return the value + */ + public com.oracle.bmc.budget.model.CostAnomalyEvent getCostAnomalyEvent() { + return costAnomalyEvent; } @java.beans.ConstructorProperties({ "__httpStatusCode__", "headers", "opcRequestId", - "pullRequestChangeSummaryMetrics" + "etag", + "costAnomalyEvent" }) - private GetPullRequestChangeSummaryMetricsResponse( + private GetCostAnomalyEventResponse( int __httpStatusCode__, java.util.Map> headers, String opcRequestId, - com.oracle.bmc.devops.model.PullRequestChangeSummaryMetrics - pullRequestChangeSummaryMetrics) { + String etag, + com.oracle.bmc.budget.model.CostAnomalyEvent costAnomalyEvent) { super(__httpStatusCode__, headers); this.opcRequestId = opcRequestId; - this.pullRequestChangeSummaryMetrics = pullRequestChangeSummaryMetrics; + this.etag = etag; + this.costAnomalyEvent = costAnomalyEvent; } public static class Builder - implements com.oracle.bmc.responses.BmcResponse.Builder< - GetPullRequestChangeSummaryMetricsResponse> { + implements com.oracle.bmc.responses.BmcResponse.Builder { private int __httpStatusCode__; @Override @@ -77,13 +87,13 @@ public Builder headers(java.util.Map> headers) { /** * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * particular request, please provide the request ID. */ private String opcRequestId; /** * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * particular request, please provide the request ID. * * @param opcRequestId the value to set * @return this builder @@ -93,20 +103,32 @@ public Builder opcRequestId(String opcRequestId) { return this; } - /** The returned {@code PullRequestChangeSummaryMetrics} instance. */ - private com.oracle.bmc.devops.model.PullRequestChangeSummaryMetrics - pullRequestChangeSummaryMetrics; + /** For optimistic concurrency control. See {@code if-match}. */ + private String etag; + + /** + * For optimistic concurrency control. See {@code if-match}. + * + * @param etag the value to set + * @return this builder + */ + public Builder etag(String etag) { + this.etag = etag; + return this; + } + + /** The returned {@code CostAnomalyEvent} instance. */ + private com.oracle.bmc.budget.model.CostAnomalyEvent costAnomalyEvent; /** - * The returned {@code PullRequestChangeSummaryMetrics} instance. + * The returned {@code CostAnomalyEvent} instance. * - * @param pullRequestChangeSummaryMetrics the value to set + * @param costAnomalyEvent the value to set * @return this builder */ - public Builder pullRequestChangeSummaryMetrics( - com.oracle.bmc.devops.model.PullRequestChangeSummaryMetrics - pullRequestChangeSummaryMetrics) { - this.pullRequestChangeSummaryMetrics = pullRequestChangeSummaryMetrics; + public Builder costAnomalyEvent( + com.oracle.bmc.budget.model.CostAnomalyEvent costAnomalyEvent) { + this.costAnomalyEvent = costAnomalyEvent; return this; } @@ -116,11 +138,12 @@ public Builder pullRequestChangeSummaryMetrics( * @return this builder instance */ @Override - public Builder copy(GetPullRequestChangeSummaryMetricsResponse o) { + public Builder copy(GetCostAnomalyEventResponse o) { __httpStatusCode__(o.get__httpStatusCode__()); headers(o.getHeaders()); opcRequestId(o.getOpcRequestId()); - pullRequestChangeSummaryMetrics(o.getPullRequestChangeSummaryMetrics()); + etag(o.getEtag()); + costAnomalyEvent(o.getCostAnomalyEvent()); return this; } @@ -131,9 +154,9 @@ public Builder copy(GetPullRequestChangeSummaryMetricsResponse o) { * @return the response object */ @Override - public GetPullRequestChangeSummaryMetricsResponse build() { - return new GetPullRequestChangeSummaryMetricsResponse( - __httpStatusCode__, headers, opcRequestId, pullRequestChangeSummaryMetrics); + public GetCostAnomalyEventResponse build() { + return new GetCostAnomalyEventResponse( + __httpStatusCode__, headers, opcRequestId, etag, costAnomalyEvent); } } @@ -152,8 +175,8 @@ public String toString() { sb.append("("); sb.append("super=").append(super.toString()); sb.append(",opcRequestId=").append(String.valueOf(opcRequestId)); - sb.append(",pullRequestChangeSummaryMetrics=") - .append(String.valueOf(pullRequestChangeSummaryMetrics)); + sb.append(",etag=").append(String.valueOf(etag)); + sb.append(",costAnomalyEvent=").append(String.valueOf(costAnomalyEvent)); sb.append(")"); return sb.toString(); } @@ -163,17 +186,15 @@ public boolean equals(Object o) { if (this == o) { return true; } - if (!(o instanceof GetPullRequestChangeSummaryMetricsResponse)) { + if (!(o instanceof GetCostAnomalyEventResponse)) { return false; } - GetPullRequestChangeSummaryMetricsResponse other = - (GetPullRequestChangeSummaryMetricsResponse) o; + GetCostAnomalyEventResponse other = (GetCostAnomalyEventResponse) o; return super.equals(o) && java.util.Objects.equals(this.opcRequestId, other.opcRequestId) - && java.util.Objects.equals( - this.pullRequestChangeSummaryMetrics, - other.pullRequestChangeSummaryMetrics); + && java.util.Objects.equals(this.etag, other.etag) + && java.util.Objects.equals(this.costAnomalyEvent, other.costAnomalyEvent); } @Override @@ -181,11 +202,10 @@ public int hashCode() { final int PRIME = 59; int result = super.hashCode(); result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + result = (result * PRIME) + (this.etag == null ? 43 : this.etag.hashCode()); result = (result * PRIME) - + (this.pullRequestChangeSummaryMetrics == null - ? 43 - : this.pullRequestChangeSummaryMetrics.hashCode()); + + (this.costAnomalyEvent == null ? 43 : this.costAnomalyEvent.hashCode()); return result; } } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ResolvePullRequestCommentResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/GetCostAnomalyMonitorResponse.java similarity index 68% rename from bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ResolvePullRequestCommentResponse.java rename to bmc-budget/src/main/java/com/oracle/bmc/budget/responses/GetCostAnomalyMonitorResponse.java index b66ead07951..52652718764 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ResolvePullRequestCommentResponse.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/GetCostAnomalyMonitorResponse.java @@ -1,22 +1,22 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ -package com.oracle.bmc.devops.responses; +package com.oracle.bmc.budget.responses; -import com.oracle.bmc.devops.model.*; +import com.oracle.bmc.budget.model.*; -@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20210630") -public class ResolvePullRequestCommentResponse extends com.oracle.bmc.responses.BmcResponse { +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class GetCostAnomalyMonitorResponse extends com.oracle.bmc.responses.BmcResponse { /** * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * particular request, please provide the request ID. */ private String opcRequestId; /** * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * particular request, please provide the request ID. * * @return the value */ @@ -36,16 +36,16 @@ public String getEtag() { return etag; } - /** The returned {@code PullRequestComment} instance. */ - private com.oracle.bmc.devops.model.PullRequestComment pullRequestComment; + /** The returned {@code CostAnomalyMonitor} instance. */ + private com.oracle.bmc.budget.model.CostAnomalyMonitor costAnomalyMonitor; /** - * The returned {@code PullRequestComment} instance. + * The returned {@code CostAnomalyMonitor} instance. * * @return the value */ - public com.oracle.bmc.devops.model.PullRequestComment getPullRequestComment() { - return pullRequestComment; + public com.oracle.bmc.budget.model.CostAnomalyMonitor getCostAnomalyMonitor() { + return costAnomalyMonitor; } @java.beans.ConstructorProperties({ @@ -53,23 +53,22 @@ public com.oracle.bmc.devops.model.PullRequestComment getPullRequestComment() { "headers", "opcRequestId", "etag", - "pullRequestComment" + "costAnomalyMonitor" }) - private ResolvePullRequestCommentResponse( + private GetCostAnomalyMonitorResponse( int __httpStatusCode__, java.util.Map> headers, String opcRequestId, String etag, - com.oracle.bmc.devops.model.PullRequestComment pullRequestComment) { + com.oracle.bmc.budget.model.CostAnomalyMonitor costAnomalyMonitor) { super(__httpStatusCode__, headers); this.opcRequestId = opcRequestId; this.etag = etag; - this.pullRequestComment = pullRequestComment; + this.costAnomalyMonitor = costAnomalyMonitor; } public static class Builder - implements com.oracle.bmc.responses.BmcResponse.Builder< - ResolvePullRequestCommentResponse> { + implements com.oracle.bmc.responses.BmcResponse.Builder { private int __httpStatusCode__; @Override @@ -88,13 +87,13 @@ public Builder headers(java.util.Map> headers) { /** * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * particular request, please provide the request ID. */ private String opcRequestId; /** * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * particular request, please provide the request ID. * * @param opcRequestId the value to set * @return this builder @@ -118,18 +117,18 @@ public Builder etag(String etag) { return this; } - /** The returned {@code PullRequestComment} instance. */ - private com.oracle.bmc.devops.model.PullRequestComment pullRequestComment; + /** The returned {@code CostAnomalyMonitor} instance. */ + private com.oracle.bmc.budget.model.CostAnomalyMonitor costAnomalyMonitor; /** - * The returned {@code PullRequestComment} instance. + * The returned {@code CostAnomalyMonitor} instance. * - * @param pullRequestComment the value to set + * @param costAnomalyMonitor the value to set * @return this builder */ - public Builder pullRequestComment( - com.oracle.bmc.devops.model.PullRequestComment pullRequestComment) { - this.pullRequestComment = pullRequestComment; + public Builder costAnomalyMonitor( + com.oracle.bmc.budget.model.CostAnomalyMonitor costAnomalyMonitor) { + this.costAnomalyMonitor = costAnomalyMonitor; return this; } @@ -139,12 +138,12 @@ public Builder pullRequestComment( * @return this builder instance */ @Override - public Builder copy(ResolvePullRequestCommentResponse o) { + public Builder copy(GetCostAnomalyMonitorResponse o) { __httpStatusCode__(o.get__httpStatusCode__()); headers(o.getHeaders()); opcRequestId(o.getOpcRequestId()); etag(o.getEtag()); - pullRequestComment(o.getPullRequestComment()); + costAnomalyMonitor(o.getCostAnomalyMonitor()); return this; } @@ -155,9 +154,9 @@ public Builder copy(ResolvePullRequestCommentResponse o) { * @return the response object */ @Override - public ResolvePullRequestCommentResponse build() { - return new ResolvePullRequestCommentResponse( - __httpStatusCode__, headers, opcRequestId, etag, pullRequestComment); + public GetCostAnomalyMonitorResponse build() { + return new GetCostAnomalyMonitorResponse( + __httpStatusCode__, headers, opcRequestId, etag, costAnomalyMonitor); } } @@ -177,7 +176,7 @@ public String toString() { sb.append("super=").append(super.toString()); sb.append(",opcRequestId=").append(String.valueOf(opcRequestId)); sb.append(",etag=").append(String.valueOf(etag)); - sb.append(",pullRequestComment=").append(String.valueOf(pullRequestComment)); + sb.append(",costAnomalyMonitor=").append(String.valueOf(costAnomalyMonitor)); sb.append(")"); return sb.toString(); } @@ -187,15 +186,15 @@ public boolean equals(Object o) { if (this == o) { return true; } - if (!(o instanceof ResolvePullRequestCommentResponse)) { + if (!(o instanceof GetCostAnomalyMonitorResponse)) { return false; } - ResolvePullRequestCommentResponse other = (ResolvePullRequestCommentResponse) o; + GetCostAnomalyMonitorResponse other = (GetCostAnomalyMonitorResponse) o; return super.equals(o) && java.util.Objects.equals(this.opcRequestId, other.opcRequestId) && java.util.Objects.equals(this.etag, other.etag) - && java.util.Objects.equals(this.pullRequestComment, other.pullRequestComment); + && java.util.Objects.equals(this.costAnomalyMonitor, other.costAnomalyMonitor); } @Override @@ -206,9 +205,9 @@ public int hashCode() { result = (result * PRIME) + (this.etag == null ? 43 : this.etag.hashCode()); result = (result * PRIME) - + (this.pullRequestComment == null + + (this.costAnomalyMonitor == null ? 43 - : this.pullRequestComment.hashCode()); + : this.costAnomalyMonitor.hashCode()); return result; } } diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/ListAlertRulesResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/ListAlertRulesResponse.java index b53dc9f4a0d..a2925c83456 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/ListAlertRulesResponse.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/ListAlertRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.responses; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/ListBudgetsResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/ListBudgetsResponse.java index 229a81c611e..d6716768a40 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/ListBudgetsResponse.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/ListBudgetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestFileChangesResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/ListCostAlertSubscriptionsResponse.java similarity index 57% rename from bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestFileChangesResponse.java rename to bmc-budget/src/main/java/com/oracle/bmc/budget/responses/ListCostAlertSubscriptionsResponse.java index 4cdcfec3118..8d11af2dae4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestFileChangesResponse.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/ListCostAlertSubscriptionsResponse.java @@ -1,22 +1,22 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ -package com.oracle.bmc.devops.responses; +package com.oracle.bmc.budget.responses; -import com.oracle.bmc.devops.model.*; +import com.oracle.bmc.budget.model.*; -@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20210630") -public class ListPullRequestFileChangesResponse extends com.oracle.bmc.responses.BmcResponse { +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class ListCostAlertSubscriptionsResponse extends com.oracle.bmc.responses.BmcResponse { /** * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * particular request, please provide the request ID. */ private String opcRequestId; /** * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * particular request, please provide the request ID. * * @return the value */ @@ -25,16 +25,16 @@ public String getOpcRequestId() { } /** - * For pagination of a list of items. When paging through a list, if this header appears in the - * response, then a partial list might have been returned. Include this value as the {@code - * page} parameter for the subsequent GET request to get the next batch of items. + * For list pagination. When this header appears in the response, additional pages of results + * remain. For important details about how pagination works, see [List + * Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). */ private String opcNextPage; /** - * For pagination of a list of items. When paging through a list, if this header appears in the - * response, then a partial list might have been returned. Include this value as the {@code - * page} parameter for the subsequent GET request to get the next batch of items. + * For list pagination. When this header appears in the response, additional pages of results + * remain. For important details about how pagination works, see [List + * Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). * * @return the value */ @@ -42,18 +42,18 @@ public String getOpcNextPage() { return opcNextPage; } - /** The returned {@code PullRequestFileChangeCollection} instance. */ - private com.oracle.bmc.devops.model.PullRequestFileChangeCollection - pullRequestFileChangeCollection; + /** The returned {@code CostAlertSubscriptionCollection} instance. */ + private com.oracle.bmc.budget.model.CostAlertSubscriptionCollection + costAlertSubscriptionCollection; /** - * The returned {@code PullRequestFileChangeCollection} instance. + * The returned {@code CostAlertSubscriptionCollection} instance. * * @return the value */ - public com.oracle.bmc.devops.model.PullRequestFileChangeCollection - getPullRequestFileChangeCollection() { - return pullRequestFileChangeCollection; + public com.oracle.bmc.budget.model.CostAlertSubscriptionCollection + getCostAlertSubscriptionCollection() { + return costAlertSubscriptionCollection; } @java.beans.ConstructorProperties({ @@ -61,24 +61,24 @@ public String getOpcNextPage() { "headers", "opcRequestId", "opcNextPage", - "pullRequestFileChangeCollection" + "costAlertSubscriptionCollection" }) - private ListPullRequestFileChangesResponse( + private ListCostAlertSubscriptionsResponse( int __httpStatusCode__, java.util.Map> headers, String opcRequestId, String opcNextPage, - com.oracle.bmc.devops.model.PullRequestFileChangeCollection - pullRequestFileChangeCollection) { + com.oracle.bmc.budget.model.CostAlertSubscriptionCollection + costAlertSubscriptionCollection) { super(__httpStatusCode__, headers); this.opcRequestId = opcRequestId; this.opcNextPage = opcNextPage; - this.pullRequestFileChangeCollection = pullRequestFileChangeCollection; + this.costAlertSubscriptionCollection = costAlertSubscriptionCollection; } public static class Builder implements com.oracle.bmc.responses.BmcResponse.Builder< - ListPullRequestFileChangesResponse> { + ListCostAlertSubscriptionsResponse> { private int __httpStatusCode__; @Override @@ -97,13 +97,13 @@ public Builder headers(java.util.Map> headers) { /** * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * particular request, please provide the request ID. */ private String opcRequestId; /** * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * particular request, please provide the request ID. * * @param opcRequestId the value to set * @return this builder @@ -114,16 +114,16 @@ public Builder opcRequestId(String opcRequestId) { } /** - * For pagination of a list of items. When paging through a list, if this header appears in - * the response, then a partial list might have been returned. Include this value as the - * {@code page} parameter for the subsequent GET request to get the next batch of items. + * For list pagination. When this header appears in the response, additional pages of + * results remain. For important details about how pagination works, see [List + * Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). */ private String opcNextPage; /** - * For pagination of a list of items. When paging through a list, if this header appears in - * the response, then a partial list might have been returned. Include this value as the - * {@code page} parameter for the subsequent GET request to get the next batch of items. + * For list pagination. When this header appears in the response, additional pages of + * results remain. For important details about how pagination works, see [List + * Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). * * @param opcNextPage the value to set * @return this builder @@ -133,20 +133,20 @@ public Builder opcNextPage(String opcNextPage) { return this; } - /** The returned {@code PullRequestFileChangeCollection} instance. */ - private com.oracle.bmc.devops.model.PullRequestFileChangeCollection - pullRequestFileChangeCollection; + /** The returned {@code CostAlertSubscriptionCollection} instance. */ + private com.oracle.bmc.budget.model.CostAlertSubscriptionCollection + costAlertSubscriptionCollection; /** - * The returned {@code PullRequestFileChangeCollection} instance. + * The returned {@code CostAlertSubscriptionCollection} instance. * - * @param pullRequestFileChangeCollection the value to set + * @param costAlertSubscriptionCollection the value to set * @return this builder */ - public Builder pullRequestFileChangeCollection( - com.oracle.bmc.devops.model.PullRequestFileChangeCollection - pullRequestFileChangeCollection) { - this.pullRequestFileChangeCollection = pullRequestFileChangeCollection; + public Builder costAlertSubscriptionCollection( + com.oracle.bmc.budget.model.CostAlertSubscriptionCollection + costAlertSubscriptionCollection) { + this.costAlertSubscriptionCollection = costAlertSubscriptionCollection; return this; } @@ -156,12 +156,12 @@ public Builder pullRequestFileChangeCollection( * @return this builder instance */ @Override - public Builder copy(ListPullRequestFileChangesResponse o) { + public Builder copy(ListCostAlertSubscriptionsResponse o) { __httpStatusCode__(o.get__httpStatusCode__()); headers(o.getHeaders()); opcRequestId(o.getOpcRequestId()); opcNextPage(o.getOpcNextPage()); - pullRequestFileChangeCollection(o.getPullRequestFileChangeCollection()); + costAlertSubscriptionCollection(o.getCostAlertSubscriptionCollection()); return this; } @@ -172,13 +172,13 @@ public Builder copy(ListPullRequestFileChangesResponse o) { * @return the response object */ @Override - public ListPullRequestFileChangesResponse build() { - return new ListPullRequestFileChangesResponse( + public ListCostAlertSubscriptionsResponse build() { + return new ListCostAlertSubscriptionsResponse( __httpStatusCode__, headers, opcRequestId, opcNextPage, - pullRequestFileChangeCollection); + costAlertSubscriptionCollection); } } @@ -198,8 +198,8 @@ public String toString() { sb.append("super=").append(super.toString()); sb.append(",opcRequestId=").append(String.valueOf(opcRequestId)); sb.append(",opcNextPage=").append(String.valueOf(opcNextPage)); - sb.append(",pullRequestFileChangeCollection=") - .append(String.valueOf(pullRequestFileChangeCollection)); + sb.append(",costAlertSubscriptionCollection=") + .append(String.valueOf(costAlertSubscriptionCollection)); sb.append(")"); return sb.toString(); } @@ -209,17 +209,17 @@ public boolean equals(Object o) { if (this == o) { return true; } - if (!(o instanceof ListPullRequestFileChangesResponse)) { + if (!(o instanceof ListCostAlertSubscriptionsResponse)) { return false; } - ListPullRequestFileChangesResponse other = (ListPullRequestFileChangesResponse) o; + ListCostAlertSubscriptionsResponse other = (ListCostAlertSubscriptionsResponse) o; return super.equals(o) && java.util.Objects.equals(this.opcRequestId, other.opcRequestId) && java.util.Objects.equals(this.opcNextPage, other.opcNextPage) && java.util.Objects.equals( - this.pullRequestFileChangeCollection, - other.pullRequestFileChangeCollection); + this.costAlertSubscriptionCollection, + other.costAlertSubscriptionCollection); } @Override @@ -230,9 +230,9 @@ public int hashCode() { result = (result * PRIME) + (this.opcNextPage == null ? 43 : this.opcNextPage.hashCode()); result = (result * PRIME) - + (this.pullRequestFileChangeCollection == null + + (this.costAlertSubscriptionCollection == null ? 43 - : this.pullRequestFileChangeCollection.hashCode()); + : this.costAlertSubscriptionCollection.hashCode()); return result; } } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestCommitsResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/ListCostAnomalyEventsResponse.java similarity index 58% rename from bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestCommitsResponse.java rename to bmc-budget/src/main/java/com/oracle/bmc/budget/responses/ListCostAnomalyEventsResponse.java index 606082ef567..acaeb9e9fc9 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestCommitsResponse.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/ListCostAnomalyEventsResponse.java @@ -1,22 +1,22 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ -package com.oracle.bmc.devops.responses; +package com.oracle.bmc.budget.responses; -import com.oracle.bmc.devops.model.*; +import com.oracle.bmc.budget.model.*; -@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20210630") -public class ListPullRequestCommitsResponse extends com.oracle.bmc.responses.BmcResponse { +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class ListCostAnomalyEventsResponse extends com.oracle.bmc.responses.BmcResponse { /** * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * particular request, please provide the request ID. */ private String opcRequestId; /** * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * particular request, please provide the request ID. * * @return the value */ @@ -25,16 +25,16 @@ public String getOpcRequestId() { } /** - * For pagination of a list of items. When paging through a list, if this header appears in the - * response, then a partial list might have been returned. Include this value as the {@code - * page} parameter for the subsequent GET request to get the next batch of items. + * For list pagination. When this header appears in the response, additional pages of results + * remain. For important details about how pagination works, see [List + * Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). */ private String opcNextPage; /** - * For pagination of a list of items. When paging through a list, if this header appears in the - * response, then a partial list might have been returned. Include this value as the {@code - * page} parameter for the subsequent GET request to get the next batch of items. + * For list pagination. When this header appears in the response, additional pages of results + * remain. For important details about how pagination works, see [List + * Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). * * @return the value */ @@ -42,16 +42,16 @@ public String getOpcNextPage() { return opcNextPage; } - /** The returned {@code RepositoryCommitCollection} instance. */ - private com.oracle.bmc.devops.model.RepositoryCommitCollection repositoryCommitCollection; + /** The returned {@code CostAnomalyEventCollection} instance. */ + private com.oracle.bmc.budget.model.CostAnomalyEventCollection costAnomalyEventCollection; /** - * The returned {@code RepositoryCommitCollection} instance. + * The returned {@code CostAnomalyEventCollection} instance. * * @return the value */ - public com.oracle.bmc.devops.model.RepositoryCommitCollection getRepositoryCommitCollection() { - return repositoryCommitCollection; + public com.oracle.bmc.budget.model.CostAnomalyEventCollection getCostAnomalyEventCollection() { + return costAnomalyEventCollection; } @java.beans.ConstructorProperties({ @@ -59,23 +59,22 @@ public com.oracle.bmc.devops.model.RepositoryCommitCollection getRepositoryCommi "headers", "opcRequestId", "opcNextPage", - "repositoryCommitCollection" + "costAnomalyEventCollection" }) - private ListPullRequestCommitsResponse( + private ListCostAnomalyEventsResponse( int __httpStatusCode__, java.util.Map> headers, String opcRequestId, String opcNextPage, - com.oracle.bmc.devops.model.RepositoryCommitCollection repositoryCommitCollection) { + com.oracle.bmc.budget.model.CostAnomalyEventCollection costAnomalyEventCollection) { super(__httpStatusCode__, headers); this.opcRequestId = opcRequestId; this.opcNextPage = opcNextPage; - this.repositoryCommitCollection = repositoryCommitCollection; + this.costAnomalyEventCollection = costAnomalyEventCollection; } public static class Builder - implements com.oracle.bmc.responses.BmcResponse.Builder< - ListPullRequestCommitsResponse> { + implements com.oracle.bmc.responses.BmcResponse.Builder { private int __httpStatusCode__; @Override @@ -94,13 +93,13 @@ public Builder headers(java.util.Map> headers) { /** * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * particular request, please provide the request ID. */ private String opcRequestId; /** * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * particular request, please provide the request ID. * * @param opcRequestId the value to set * @return this builder @@ -111,16 +110,16 @@ public Builder opcRequestId(String opcRequestId) { } /** - * For pagination of a list of items. When paging through a list, if this header appears in - * the response, then a partial list might have been returned. Include this value as the - * {@code page} parameter for the subsequent GET request to get the next batch of items. + * For list pagination. When this header appears in the response, additional pages of + * results remain. For important details about how pagination works, see [List + * Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). */ private String opcNextPage; /** - * For pagination of a list of items. When paging through a list, if this header appears in - * the response, then a partial list might have been returned. Include this value as the - * {@code page} parameter for the subsequent GET request to get the next batch of items. + * For list pagination. When this header appears in the response, additional pages of + * results remain. For important details about how pagination works, see [List + * Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). * * @param opcNextPage the value to set * @return this builder @@ -130,18 +129,18 @@ public Builder opcNextPage(String opcNextPage) { return this; } - /** The returned {@code RepositoryCommitCollection} instance. */ - private com.oracle.bmc.devops.model.RepositoryCommitCollection repositoryCommitCollection; + /** The returned {@code CostAnomalyEventCollection} instance. */ + private com.oracle.bmc.budget.model.CostAnomalyEventCollection costAnomalyEventCollection; /** - * The returned {@code RepositoryCommitCollection} instance. + * The returned {@code CostAnomalyEventCollection} instance. * - * @param repositoryCommitCollection the value to set + * @param costAnomalyEventCollection the value to set * @return this builder */ - public Builder repositoryCommitCollection( - com.oracle.bmc.devops.model.RepositoryCommitCollection repositoryCommitCollection) { - this.repositoryCommitCollection = repositoryCommitCollection; + public Builder costAnomalyEventCollection( + com.oracle.bmc.budget.model.CostAnomalyEventCollection costAnomalyEventCollection) { + this.costAnomalyEventCollection = costAnomalyEventCollection; return this; } @@ -151,12 +150,12 @@ public Builder repositoryCommitCollection( * @return this builder instance */ @Override - public Builder copy(ListPullRequestCommitsResponse o) { + public Builder copy(ListCostAnomalyEventsResponse o) { __httpStatusCode__(o.get__httpStatusCode__()); headers(o.getHeaders()); opcRequestId(o.getOpcRequestId()); opcNextPage(o.getOpcNextPage()); - repositoryCommitCollection(o.getRepositoryCommitCollection()); + costAnomalyEventCollection(o.getCostAnomalyEventCollection()); return this; } @@ -167,13 +166,13 @@ public Builder copy(ListPullRequestCommitsResponse o) { * @return the response object */ @Override - public ListPullRequestCommitsResponse build() { - return new ListPullRequestCommitsResponse( + public ListCostAnomalyEventsResponse build() { + return new ListCostAnomalyEventsResponse( __httpStatusCode__, headers, opcRequestId, opcNextPage, - repositoryCommitCollection); + costAnomalyEventCollection); } } @@ -193,8 +192,8 @@ public String toString() { sb.append("super=").append(super.toString()); sb.append(",opcRequestId=").append(String.valueOf(opcRequestId)); sb.append(",opcNextPage=").append(String.valueOf(opcNextPage)); - sb.append(",repositoryCommitCollection=") - .append(String.valueOf(repositoryCommitCollection)); + sb.append(",costAnomalyEventCollection=") + .append(String.valueOf(costAnomalyEventCollection)); sb.append(")"); return sb.toString(); } @@ -204,16 +203,16 @@ public boolean equals(Object o) { if (this == o) { return true; } - if (!(o instanceof ListPullRequestCommitsResponse)) { + if (!(o instanceof ListCostAnomalyEventsResponse)) { return false; } - ListPullRequestCommitsResponse other = (ListPullRequestCommitsResponse) o; + ListCostAnomalyEventsResponse other = (ListCostAnomalyEventsResponse) o; return super.equals(o) && java.util.Objects.equals(this.opcRequestId, other.opcRequestId) && java.util.Objects.equals(this.opcNextPage, other.opcNextPage) && java.util.Objects.equals( - this.repositoryCommitCollection, other.repositoryCommitCollection); + this.costAnomalyEventCollection, other.costAnomalyEventCollection); } @Override @@ -224,9 +223,9 @@ public int hashCode() { result = (result * PRIME) + (this.opcNextPage == null ? 43 : this.opcNextPage.hashCode()); result = (result * PRIME) - + (this.repositoryCommitCollection == null + + (this.costAnomalyEventCollection == null ? 43 - : this.repositoryCommitCollection.hashCode()); + : this.costAnomalyEventCollection.hashCode()); return result; } } diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/ListCostAnomalyMonitorsResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/ListCostAnomalyMonitorsResponse.java new file mode 100644 index 00000000000..16fb52e1a3f --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/ListCostAnomalyMonitorsResponse.java @@ -0,0 +1,235 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.responses; + +import com.oracle.bmc.budget.model.*; + +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class ListCostAnomalyMonitorsResponse extends com.oracle.bmc.responses.BmcResponse { + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @return the value + */ + public String getOpcRequestId() { + return opcRequestId; + } + + /** + * For list pagination. When this header appears in the response, additional pages of results + * remain. For important details about how pagination works, see [List + * Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). + */ + private String opcNextPage; + + /** + * For list pagination. When this header appears in the response, additional pages of results + * remain. For important details about how pagination works, see [List + * Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). + * + * @return the value + */ + public String getOpcNextPage() { + return opcNextPage; + } + + /** The returned {@code CostAnomalyMonitorCollection} instance. */ + private com.oracle.bmc.budget.model.CostAnomalyMonitorCollection costAnomalyMonitorCollection; + + /** + * The returned {@code CostAnomalyMonitorCollection} instance. + * + * @return the value + */ + public com.oracle.bmc.budget.model.CostAnomalyMonitorCollection + getCostAnomalyMonitorCollection() { + return costAnomalyMonitorCollection; + } + + @java.beans.ConstructorProperties({ + "__httpStatusCode__", + "headers", + "opcRequestId", + "opcNextPage", + "costAnomalyMonitorCollection" + }) + private ListCostAnomalyMonitorsResponse( + int __httpStatusCode__, + java.util.Map> headers, + String opcRequestId, + String opcNextPage, + com.oracle.bmc.budget.model.CostAnomalyMonitorCollection costAnomalyMonitorCollection) { + super(__httpStatusCode__, headers); + this.opcRequestId = opcRequestId; + this.opcNextPage = opcNextPage; + this.costAnomalyMonitorCollection = costAnomalyMonitorCollection; + } + + public static class Builder + implements com.oracle.bmc.responses.BmcResponse.Builder< + ListCostAnomalyMonitorsResponse> { + private int __httpStatusCode__; + + @Override + public Builder __httpStatusCode__(int __httpStatusCode__) { + this.__httpStatusCode__ = __httpStatusCode__; + return this; + } + + private java.util.Map> headers; + + @Override + public Builder headers(java.util.Map> headers) { + this.headers = headers; + return this; + } + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @param opcRequestId the value to set + * @return this builder + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** + * For list pagination. When this header appears in the response, additional pages of + * results remain. For important details about how pagination works, see [List + * Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). + */ + private String opcNextPage; + + /** + * For list pagination. When this header appears in the response, additional pages of + * results remain. For important details about how pagination works, see [List + * Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). + * + * @param opcNextPage the value to set + * @return this builder + */ + public Builder opcNextPage(String opcNextPage) { + this.opcNextPage = opcNextPage; + return this; + } + + /** The returned {@code CostAnomalyMonitorCollection} instance. */ + private com.oracle.bmc.budget.model.CostAnomalyMonitorCollection + costAnomalyMonitorCollection; + + /** + * The returned {@code CostAnomalyMonitorCollection} instance. + * + * @param costAnomalyMonitorCollection the value to set + * @return this builder + */ + public Builder costAnomalyMonitorCollection( + com.oracle.bmc.budget.model.CostAnomalyMonitorCollection + costAnomalyMonitorCollection) { + this.costAnomalyMonitorCollection = costAnomalyMonitorCollection; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + @Override + public Builder copy(ListCostAnomalyMonitorsResponse o) { + __httpStatusCode__(o.get__httpStatusCode__()); + headers(o.getHeaders()); + opcRequestId(o.getOpcRequestId()); + opcNextPage(o.getOpcNextPage()); + costAnomalyMonitorCollection(o.getCostAnomalyMonitorCollection()); + + return this; + } + + /** + * Build the response object. + * + * @return the response object + */ + @Override + public ListCostAnomalyMonitorsResponse build() { + return new ListCostAnomalyMonitorsResponse( + __httpStatusCode__, + headers, + opcRequestId, + opcNextPage, + costAnomalyMonitorCollection); + } + } + + /** + * Return a new builder for this response object. + * + * @return builder for the response object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",opcRequestId=").append(String.valueOf(opcRequestId)); + sb.append(",opcNextPage=").append(String.valueOf(opcNextPage)); + sb.append(",costAnomalyMonitorCollection=") + .append(String.valueOf(costAnomalyMonitorCollection)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof ListCostAnomalyMonitorsResponse)) { + return false; + } + + ListCostAnomalyMonitorsResponse other = (ListCostAnomalyMonitorsResponse) o; + return super.equals(o) + && java.util.Objects.equals(this.opcRequestId, other.opcRequestId) + && java.util.Objects.equals(this.opcNextPage, other.opcNextPage) + && java.util.Objects.equals( + this.costAnomalyMonitorCollection, other.costAnomalyMonitorCollection); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + result = (result * PRIME) + (this.opcNextPage == null ? 43 : this.opcNextPage.hashCode()); + result = + (result * PRIME) + + (this.costAnomalyMonitorCollection == null + ? 43 + : this.costAnomalyMonitorCollection.hashCode()); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/SummarizeCostAnomalyEventAnalyticsResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/SummarizeCostAnomalyEventAnalyticsResponse.java new file mode 100644 index 00000000000..e6cd2971d22 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/SummarizeCostAnomalyEventAnalyticsResponse.java @@ -0,0 +1,240 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.responses; + +import com.oracle.bmc.budget.model.*; + +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class SummarizeCostAnomalyEventAnalyticsResponse + extends com.oracle.bmc.responses.BmcResponse { + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @return the value + */ + public String getOpcRequestId() { + return opcRequestId; + } + + /** + * For list pagination. When this header appears in the response, additional pages of results + * remain. For important details about how pagination works, see [List + * Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). + */ + private String opcNextPage; + + /** + * For list pagination. When this header appears in the response, additional pages of results + * remain. For important details about how pagination works, see [List + * Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). + * + * @return the value + */ + public String getOpcNextPage() { + return opcNextPage; + } + + /** The returned {@code CostAnomalyEventAnalyticCollection} instance. */ + private com.oracle.bmc.budget.model.CostAnomalyEventAnalyticCollection + costAnomalyEventAnalyticCollection; + + /** + * The returned {@code CostAnomalyEventAnalyticCollection} instance. + * + * @return the value + */ + public com.oracle.bmc.budget.model.CostAnomalyEventAnalyticCollection + getCostAnomalyEventAnalyticCollection() { + return costAnomalyEventAnalyticCollection; + } + + @java.beans.ConstructorProperties({ + "__httpStatusCode__", + "headers", + "opcRequestId", + "opcNextPage", + "costAnomalyEventAnalyticCollection" + }) + private SummarizeCostAnomalyEventAnalyticsResponse( + int __httpStatusCode__, + java.util.Map> headers, + String opcRequestId, + String opcNextPage, + com.oracle.bmc.budget.model.CostAnomalyEventAnalyticCollection + costAnomalyEventAnalyticCollection) { + super(__httpStatusCode__, headers); + this.opcRequestId = opcRequestId; + this.opcNextPage = opcNextPage; + this.costAnomalyEventAnalyticCollection = costAnomalyEventAnalyticCollection; + } + + public static class Builder + implements com.oracle.bmc.responses.BmcResponse.Builder< + SummarizeCostAnomalyEventAnalyticsResponse> { + private int __httpStatusCode__; + + @Override + public Builder __httpStatusCode__(int __httpStatusCode__) { + this.__httpStatusCode__ = __httpStatusCode__; + return this; + } + + private java.util.Map> headers; + + @Override + public Builder headers(java.util.Map> headers) { + this.headers = headers; + return this; + } + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @param opcRequestId the value to set + * @return this builder + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** + * For list pagination. When this header appears in the response, additional pages of + * results remain. For important details about how pagination works, see [List + * Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). + */ + private String opcNextPage; + + /** + * For list pagination. When this header appears in the response, additional pages of + * results remain. For important details about how pagination works, see [List + * Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine). + * + * @param opcNextPage the value to set + * @return this builder + */ + public Builder opcNextPage(String opcNextPage) { + this.opcNextPage = opcNextPage; + return this; + } + + /** The returned {@code CostAnomalyEventAnalyticCollection} instance. */ + private com.oracle.bmc.budget.model.CostAnomalyEventAnalyticCollection + costAnomalyEventAnalyticCollection; + + /** + * The returned {@code CostAnomalyEventAnalyticCollection} instance. + * + * @param costAnomalyEventAnalyticCollection the value to set + * @return this builder + */ + public Builder costAnomalyEventAnalyticCollection( + com.oracle.bmc.budget.model.CostAnomalyEventAnalyticCollection + costAnomalyEventAnalyticCollection) { + this.costAnomalyEventAnalyticCollection = costAnomalyEventAnalyticCollection; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + @Override + public Builder copy(SummarizeCostAnomalyEventAnalyticsResponse o) { + __httpStatusCode__(o.get__httpStatusCode__()); + headers(o.getHeaders()); + opcRequestId(o.getOpcRequestId()); + opcNextPage(o.getOpcNextPage()); + costAnomalyEventAnalyticCollection(o.getCostAnomalyEventAnalyticCollection()); + + return this; + } + + /** + * Build the response object. + * + * @return the response object + */ + @Override + public SummarizeCostAnomalyEventAnalyticsResponse build() { + return new SummarizeCostAnomalyEventAnalyticsResponse( + __httpStatusCode__, + headers, + opcRequestId, + opcNextPage, + costAnomalyEventAnalyticCollection); + } + } + + /** + * Return a new builder for this response object. + * + * @return builder for the response object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",opcRequestId=").append(String.valueOf(opcRequestId)); + sb.append(",opcNextPage=").append(String.valueOf(opcNextPage)); + sb.append(",costAnomalyEventAnalyticCollection=") + .append(String.valueOf(costAnomalyEventAnalyticCollection)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof SummarizeCostAnomalyEventAnalyticsResponse)) { + return false; + } + + SummarizeCostAnomalyEventAnalyticsResponse other = + (SummarizeCostAnomalyEventAnalyticsResponse) o; + return super.equals(o) + && java.util.Objects.equals(this.opcRequestId, other.opcRequestId) + && java.util.Objects.equals(this.opcNextPage, other.opcNextPage) + && java.util.Objects.equals( + this.costAnomalyEventAnalyticCollection, + other.costAnomalyEventAnalyticCollection); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + result = (result * PRIME) + (this.opcNextPage == null ? 43 : this.opcNextPage.hashCode()); + result = + (result * PRIME) + + (this.costAnomalyEventAnalyticCollection == null + ? 43 + : this.costAnomalyEventAnalyticCollection.hashCode()); + return result; + } +} diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/UpdateAlertRuleResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/UpdateAlertRuleResponse.java index 287cdbbbaa4..d87aaad0b8b 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/UpdateAlertRuleResponse.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/UpdateAlertRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.responses; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/UpdateBudgetResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/UpdateBudgetResponse.java index b4d0651510d..469fb92648d 100644 --- a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/UpdateBudgetResponse.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/UpdateBudgetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.budget.responses; diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/UpdateCostAlertSubscriptionResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/UpdateCostAlertSubscriptionResponse.java new file mode 100644 index 00000000000..06754ce6de9 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/UpdateCostAlertSubscriptionResponse.java @@ -0,0 +1,215 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.responses; + +import com.oracle.bmc.budget.model.*; + +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class UpdateCostAlertSubscriptionResponse extends com.oracle.bmc.responses.BmcResponse { + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @return the value + */ + public String getOpcRequestId() { + return opcRequestId; + } + + /** For optimistic concurrency control. See {@code if-match}. */ + private String etag; + + /** + * For optimistic concurrency control. See {@code if-match}. + * + * @return the value + */ + public String getEtag() { + return etag; + } + + /** The returned {@code CostAlertSubscription} instance. */ + private com.oracle.bmc.budget.model.CostAlertSubscription costAlertSubscription; + + /** + * The returned {@code CostAlertSubscription} instance. + * + * @return the value + */ + public com.oracle.bmc.budget.model.CostAlertSubscription getCostAlertSubscription() { + return costAlertSubscription; + } + + @java.beans.ConstructorProperties({ + "__httpStatusCode__", + "headers", + "opcRequestId", + "etag", + "costAlertSubscription" + }) + private UpdateCostAlertSubscriptionResponse( + int __httpStatusCode__, + java.util.Map> headers, + String opcRequestId, + String etag, + com.oracle.bmc.budget.model.CostAlertSubscription costAlertSubscription) { + super(__httpStatusCode__, headers); + this.opcRequestId = opcRequestId; + this.etag = etag; + this.costAlertSubscription = costAlertSubscription; + } + + public static class Builder + implements com.oracle.bmc.responses.BmcResponse.Builder< + UpdateCostAlertSubscriptionResponse> { + private int __httpStatusCode__; + + @Override + public Builder __httpStatusCode__(int __httpStatusCode__) { + this.__httpStatusCode__ = __httpStatusCode__; + return this; + } + + private java.util.Map> headers; + + @Override + public Builder headers(java.util.Map> headers) { + this.headers = headers; + return this; + } + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @param opcRequestId the value to set + * @return this builder + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** For optimistic concurrency control. See {@code if-match}. */ + private String etag; + + /** + * For optimistic concurrency control. See {@code if-match}. + * + * @param etag the value to set + * @return this builder + */ + public Builder etag(String etag) { + this.etag = etag; + return this; + } + + /** The returned {@code CostAlertSubscription} instance. */ + private com.oracle.bmc.budget.model.CostAlertSubscription costAlertSubscription; + + /** + * The returned {@code CostAlertSubscription} instance. + * + * @param costAlertSubscription the value to set + * @return this builder + */ + public Builder costAlertSubscription( + com.oracle.bmc.budget.model.CostAlertSubscription costAlertSubscription) { + this.costAlertSubscription = costAlertSubscription; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + @Override + public Builder copy(UpdateCostAlertSubscriptionResponse o) { + __httpStatusCode__(o.get__httpStatusCode__()); + headers(o.getHeaders()); + opcRequestId(o.getOpcRequestId()); + etag(o.getEtag()); + costAlertSubscription(o.getCostAlertSubscription()); + + return this; + } + + /** + * Build the response object. + * + * @return the response object + */ + @Override + public UpdateCostAlertSubscriptionResponse build() { + return new UpdateCostAlertSubscriptionResponse( + __httpStatusCode__, headers, opcRequestId, etag, costAlertSubscription); + } + } + + /** + * Return a new builder for this response object. + * + * @return builder for the response object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",opcRequestId=").append(String.valueOf(opcRequestId)); + sb.append(",etag=").append(String.valueOf(etag)); + sb.append(",costAlertSubscription=").append(String.valueOf(costAlertSubscription)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof UpdateCostAlertSubscriptionResponse)) { + return false; + } + + UpdateCostAlertSubscriptionResponse other = (UpdateCostAlertSubscriptionResponse) o; + return super.equals(o) + && java.util.Objects.equals(this.opcRequestId, other.opcRequestId) + && java.util.Objects.equals(this.etag, other.etag) + && java.util.Objects.equals( + this.costAlertSubscription, other.costAlertSubscription); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + result = (result * PRIME) + (this.etag == null ? 43 : this.etag.hashCode()); + result = + (result * PRIME) + + (this.costAlertSubscription == null + ? 43 + : this.costAlertSubscription.hashCode()); + return result; + } +} diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ReopenPullRequestCommentResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/UpdateCostAnomalyEventResponse.java similarity index 69% rename from bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ReopenPullRequestCommentResponse.java rename to bmc-budget/src/main/java/com/oracle/bmc/budget/responses/UpdateCostAnomalyEventResponse.java index 114a0fdd001..382b30f1ae8 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ReopenPullRequestCommentResponse.java +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/UpdateCostAnomalyEventResponse.java @@ -1,22 +1,22 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ -package com.oracle.bmc.devops.responses; +package com.oracle.bmc.budget.responses; -import com.oracle.bmc.devops.model.*; +import com.oracle.bmc.budget.model.*; -@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20210630") -public class ReopenPullRequestCommentResponse extends com.oracle.bmc.responses.BmcResponse { +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class UpdateCostAnomalyEventResponse extends com.oracle.bmc.responses.BmcResponse { /** * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * particular request, please provide the request ID. */ private String opcRequestId; /** * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * particular request, please provide the request ID. * * @return the value */ @@ -36,16 +36,16 @@ public String getEtag() { return etag; } - /** The returned {@code PullRequestComment} instance. */ - private com.oracle.bmc.devops.model.PullRequestComment pullRequestComment; + /** The returned {@code CostAnomalyEvent} instance. */ + private com.oracle.bmc.budget.model.CostAnomalyEvent costAnomalyEvent; /** - * The returned {@code PullRequestComment} instance. + * The returned {@code CostAnomalyEvent} instance. * * @return the value */ - public com.oracle.bmc.devops.model.PullRequestComment getPullRequestComment() { - return pullRequestComment; + public com.oracle.bmc.budget.model.CostAnomalyEvent getCostAnomalyEvent() { + return costAnomalyEvent; } @java.beans.ConstructorProperties({ @@ -53,23 +53,23 @@ public com.oracle.bmc.devops.model.PullRequestComment getPullRequestComment() { "headers", "opcRequestId", "etag", - "pullRequestComment" + "costAnomalyEvent" }) - private ReopenPullRequestCommentResponse( + private UpdateCostAnomalyEventResponse( int __httpStatusCode__, java.util.Map> headers, String opcRequestId, String etag, - com.oracle.bmc.devops.model.PullRequestComment pullRequestComment) { + com.oracle.bmc.budget.model.CostAnomalyEvent costAnomalyEvent) { super(__httpStatusCode__, headers); this.opcRequestId = opcRequestId; this.etag = etag; - this.pullRequestComment = pullRequestComment; + this.costAnomalyEvent = costAnomalyEvent; } public static class Builder implements com.oracle.bmc.responses.BmcResponse.Builder< - ReopenPullRequestCommentResponse> { + UpdateCostAnomalyEventResponse> { private int __httpStatusCode__; @Override @@ -88,13 +88,13 @@ public Builder headers(java.util.Map> headers) { /** * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * particular request, please provide the request ID. */ private String opcRequestId; /** * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. + * particular request, please provide the request ID. * * @param opcRequestId the value to set * @return this builder @@ -118,18 +118,18 @@ public Builder etag(String etag) { return this; } - /** The returned {@code PullRequestComment} instance. */ - private com.oracle.bmc.devops.model.PullRequestComment pullRequestComment; + /** The returned {@code CostAnomalyEvent} instance. */ + private com.oracle.bmc.budget.model.CostAnomalyEvent costAnomalyEvent; /** - * The returned {@code PullRequestComment} instance. + * The returned {@code CostAnomalyEvent} instance. * - * @param pullRequestComment the value to set + * @param costAnomalyEvent the value to set * @return this builder */ - public Builder pullRequestComment( - com.oracle.bmc.devops.model.PullRequestComment pullRequestComment) { - this.pullRequestComment = pullRequestComment; + public Builder costAnomalyEvent( + com.oracle.bmc.budget.model.CostAnomalyEvent costAnomalyEvent) { + this.costAnomalyEvent = costAnomalyEvent; return this; } @@ -139,12 +139,12 @@ public Builder pullRequestComment( * @return this builder instance */ @Override - public Builder copy(ReopenPullRequestCommentResponse o) { + public Builder copy(UpdateCostAnomalyEventResponse o) { __httpStatusCode__(o.get__httpStatusCode__()); headers(o.getHeaders()); opcRequestId(o.getOpcRequestId()); etag(o.getEtag()); - pullRequestComment(o.getPullRequestComment()); + costAnomalyEvent(o.getCostAnomalyEvent()); return this; } @@ -155,9 +155,9 @@ public Builder copy(ReopenPullRequestCommentResponse o) { * @return the response object */ @Override - public ReopenPullRequestCommentResponse build() { - return new ReopenPullRequestCommentResponse( - __httpStatusCode__, headers, opcRequestId, etag, pullRequestComment); + public UpdateCostAnomalyEventResponse build() { + return new UpdateCostAnomalyEventResponse( + __httpStatusCode__, headers, opcRequestId, etag, costAnomalyEvent); } } @@ -177,7 +177,7 @@ public String toString() { sb.append("super=").append(super.toString()); sb.append(",opcRequestId=").append(String.valueOf(opcRequestId)); sb.append(",etag=").append(String.valueOf(etag)); - sb.append(",pullRequestComment=").append(String.valueOf(pullRequestComment)); + sb.append(",costAnomalyEvent=").append(String.valueOf(costAnomalyEvent)); sb.append(")"); return sb.toString(); } @@ -187,15 +187,15 @@ public boolean equals(Object o) { if (this == o) { return true; } - if (!(o instanceof ReopenPullRequestCommentResponse)) { + if (!(o instanceof UpdateCostAnomalyEventResponse)) { return false; } - ReopenPullRequestCommentResponse other = (ReopenPullRequestCommentResponse) o; + UpdateCostAnomalyEventResponse other = (UpdateCostAnomalyEventResponse) o; return super.equals(o) && java.util.Objects.equals(this.opcRequestId, other.opcRequestId) && java.util.Objects.equals(this.etag, other.etag) - && java.util.Objects.equals(this.pullRequestComment, other.pullRequestComment); + && java.util.Objects.equals(this.costAnomalyEvent, other.costAnomalyEvent); } @Override @@ -206,9 +206,7 @@ public int hashCode() { result = (result * PRIME) + (this.etag == null ? 43 : this.etag.hashCode()); result = (result * PRIME) - + (this.pullRequestComment == null - ? 43 - : this.pullRequestComment.hashCode()); + + (this.costAnomalyEvent == null ? 43 : this.costAnomalyEvent.hashCode()); return result; } } diff --git a/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/UpdateCostAnomalyMonitorResponse.java b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/UpdateCostAnomalyMonitorResponse.java new file mode 100644 index 00000000000..93912be44e2 --- /dev/null +++ b/bmc-budget/src/main/java/com/oracle/bmc/budget/responses/UpdateCostAnomalyMonitorResponse.java @@ -0,0 +1,214 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.budget.responses; + +import com.oracle.bmc.budget.model.*; + +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190111") +public class UpdateCostAnomalyMonitorResponse extends com.oracle.bmc.responses.BmcResponse { + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @return the value + */ + public String getOpcRequestId() { + return opcRequestId; + } + + /** For optimistic concurrency control. See {@code if-match}. */ + private String etag; + + /** + * For optimistic concurrency control. See {@code if-match}. + * + * @return the value + */ + public String getEtag() { + return etag; + } + + /** The returned {@code CostAnomalyMonitor} instance. */ + private com.oracle.bmc.budget.model.CostAnomalyMonitor costAnomalyMonitor; + + /** + * The returned {@code CostAnomalyMonitor} instance. + * + * @return the value + */ + public com.oracle.bmc.budget.model.CostAnomalyMonitor getCostAnomalyMonitor() { + return costAnomalyMonitor; + } + + @java.beans.ConstructorProperties({ + "__httpStatusCode__", + "headers", + "opcRequestId", + "etag", + "costAnomalyMonitor" + }) + private UpdateCostAnomalyMonitorResponse( + int __httpStatusCode__, + java.util.Map> headers, + String opcRequestId, + String etag, + com.oracle.bmc.budget.model.CostAnomalyMonitor costAnomalyMonitor) { + super(__httpStatusCode__, headers); + this.opcRequestId = opcRequestId; + this.etag = etag; + this.costAnomalyMonitor = costAnomalyMonitor; + } + + public static class Builder + implements com.oracle.bmc.responses.BmcResponse.Builder< + UpdateCostAnomalyMonitorResponse> { + private int __httpStatusCode__; + + @Override + public Builder __httpStatusCode__(int __httpStatusCode__) { + this.__httpStatusCode__ = __httpStatusCode__; + return this; + } + + private java.util.Map> headers; + + @Override + public Builder headers(java.util.Map> headers) { + this.headers = headers; + return this; + } + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + */ + private String opcRequestId; + + /** + * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a + * particular request, please provide the request ID. + * + * @param opcRequestId the value to set + * @return this builder + */ + public Builder opcRequestId(String opcRequestId) { + this.opcRequestId = opcRequestId; + return this; + } + + /** For optimistic concurrency control. See {@code if-match}. */ + private String etag; + + /** + * For optimistic concurrency control. See {@code if-match}. + * + * @param etag the value to set + * @return this builder + */ + public Builder etag(String etag) { + this.etag = etag; + return this; + } + + /** The returned {@code CostAnomalyMonitor} instance. */ + private com.oracle.bmc.budget.model.CostAnomalyMonitor costAnomalyMonitor; + + /** + * The returned {@code CostAnomalyMonitor} instance. + * + * @param costAnomalyMonitor the value to set + * @return this builder + */ + public Builder costAnomalyMonitor( + com.oracle.bmc.budget.model.CostAnomalyMonitor costAnomalyMonitor) { + this.costAnomalyMonitor = costAnomalyMonitor; + return this; + } + + /** + * Copy method to populate the builder with values from the given instance. + * + * @return this builder instance + */ + @Override + public Builder copy(UpdateCostAnomalyMonitorResponse o) { + __httpStatusCode__(o.get__httpStatusCode__()); + headers(o.getHeaders()); + opcRequestId(o.getOpcRequestId()); + etag(o.getEtag()); + costAnomalyMonitor(o.getCostAnomalyMonitor()); + + return this; + } + + /** + * Build the response object. + * + * @return the response object + */ + @Override + public UpdateCostAnomalyMonitorResponse build() { + return new UpdateCostAnomalyMonitorResponse( + __httpStatusCode__, headers, opcRequestId, etag, costAnomalyMonitor); + } + } + + /** + * Return a new builder for this response object. + * + * @return builder for the response object + */ + public static Builder builder() { + return new Builder(); + } + + @Override + public String toString() { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("("); + sb.append("super=").append(super.toString()); + sb.append(",opcRequestId=").append(String.valueOf(opcRequestId)); + sb.append(",etag=").append(String.valueOf(etag)); + sb.append(",costAnomalyMonitor=").append(String.valueOf(costAnomalyMonitor)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof UpdateCostAnomalyMonitorResponse)) { + return false; + } + + UpdateCostAnomalyMonitorResponse other = (UpdateCostAnomalyMonitorResponse) o; + return super.equals(o) + && java.util.Objects.equals(this.opcRequestId, other.opcRequestId) + && java.util.Objects.equals(this.etag, other.etag) + && java.util.Objects.equals(this.costAnomalyMonitor, other.costAnomalyMonitor); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); + result = (result * PRIME) + (this.etag == null ? 43 : this.etag.hashCode()); + result = + (result * PRIME) + + (this.costAnomalyMonitor == null + ? 43 + : this.costAnomalyMonitor.hashCode()); + return result; + } +} diff --git a/bmc-budget/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-budget/reflect-config.json b/bmc-budget/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-budget/reflect-config.json index 7b1cb1820dd..2987aeda7e8 100644 --- a/bmc-budget/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-budget/reflect-config.json +++ b/bmc-budget/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-budget/reflect-config.json @@ -61,6 +61,204 @@ "allDeclaredMethods": true, "allDeclaredConstructors": true }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAlertSubscription", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAlertSubscription$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAlertSubscription$LifecycleState", + "allDeclaredFields": true, + "allDeclaredMethods": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAlertSubscriptionCollection", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAlertSubscriptionCollection$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAlertSubscriptionMap", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAlertSubscriptionMap$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAlertSubscriptionMap$Operator", + "allDeclaredFields": true, + "allDeclaredMethods": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAlertSubscriptionSummary", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAlertSubscriptionSummary$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAnomalyEvent", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAnomalyEvent$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAnomalyEvent$LifecycleState", + "allDeclaredFields": true, + "allDeclaredMethods": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAnomalyEvent$FeedbackResponse", + "allDeclaredFields": true, + "allDeclaredMethods": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAnomalyEventAnalyticCollection", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAnomalyEventAnalyticCollection$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAnomalyEventAnalyticSummary", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAnomalyEventAnalyticSummary$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAnomalyEventCollection", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAnomalyEventCollection$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAnomalyEventSummary", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAnomalyEventSummary$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAnomalyMonitor", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAnomalyMonitor$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAnomalyMonitor$LifecycleState", + "allDeclaredFields": true, + "allDeclaredMethods": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAnomalyMonitorCollection", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAnomalyMonitorCollection$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAnomalyMonitorSummary", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CostAnomalyMonitorSummary$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, { "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, "name": "com.oracle.bmc.budget.model.CreateAlertRuleDetails", @@ -89,12 +287,60 @@ "allDeclaredMethods": true, "allDeclaredConstructors": true }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CreateCostAlertSubscriptionDetails", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CreateCostAlertSubscriptionDetails$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CreateCostAnomalyMonitorDetails", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.CreateCostAnomalyMonitorDetails$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.Dimension", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.Dimension$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, { "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, "name": "com.oracle.bmc.budget.model.LifecycleState", "allDeclaredFields": true, "allDeclaredMethods": true }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.MonitorType", + "allDeclaredFields": true, + "allDeclaredMethods": true + }, { "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, "name": "com.oracle.bmc.budget.model.ProcessingPeriodType", @@ -109,7 +355,33 @@ }, { "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, - "name": "com.oracle.bmc.budget.model.SortBy", + "name": "com.oracle.bmc.budget.model.RootCauseDetail", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.RootCauseDetail$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.SortByForBudget", + "allDeclaredFields": true, + "allDeclaredMethods": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.SortByForCostAd", + "allDeclaredFields": true, + "allDeclaredMethods": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.SortByForCostAnomalyEvent", "allDeclaredFields": true, "allDeclaredMethods": true }, @@ -119,6 +391,40 @@ "allDeclaredFields": true, "allDeclaredMethods": true }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.Tag", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.Tag$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.TargetResourceFilter", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.TargetResourceFilter$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.TargetResourceFilter$Operator", + "allDeclaredFields": true, + "allDeclaredMethods": true + }, { "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, "name": "com.oracle.bmc.budget.model.TargetType", @@ -158,5 +464,47 @@ "allDeclaredFields": true, "allDeclaredMethods": true, "allDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.UpdateCostAlertSubscriptionDetails", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.UpdateCostAlertSubscriptionDetails$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.UpdateCostAnomalyEventDetails", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.UpdateCostAnomalyEventDetails$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.UpdateCostAnomalyMonitorDetails", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.budget.model.UpdateCostAnomalyMonitorDetails$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true } ] \ No newline at end of file diff --git a/bmc-budget/src/main/resources/com/oracle/bmc/budget/client.properties b/bmc-budget/src/main/resources/com/oracle/bmc/budget/client.properties index e668ee5b686..c880b420e09 100644 --- a/bmc-budget/src/main/resources/com/oracle/bmc/budget/client.properties +++ b/bmc-budget/src/main/resources/com/oracle/bmc/budget/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-capacitymanagement/pom.xml b/bmc-capacitymanagement/pom.xml index a13600d8499..7189e5ff84c 100644 --- a/bmc-capacitymanagement/pom.xml +++ b/bmc-capacitymanagement/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-capacitymanagement @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagement.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagement.java index 59039c76a23..7e2a5df853e 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagement.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagementAsync.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagementAsync.java index 0477d3f33eb..1517789fb84 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagementAsync.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagementAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagementAsyncClient.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagementAsyncClient.java index 8d7eb076f29..a54389958cf 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagementAsyncClient.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagementAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagementClient.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagementClient.java index eecc75faa81..62d738ce5fa 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagementClient.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagementClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagementPaginators.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagementPaginators.java index 4221a9d006f..c57e5fcbe40 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagementPaginators.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagementPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagementWaiters.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagementWaiters.java index f0d53903013..bbe463e0c69 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagementWaiters.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/CapacityManagementWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignal.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignal.java index c5fb80a5150..c069424d7f0 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignal.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignal.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignalAsync.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignalAsync.java index 9b7e07a29c9..ed12fccd62e 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignalAsync.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignalAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignalAsyncClient.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignalAsyncClient.java index 9c1881bc7c5..283b235e6fc 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignalAsyncClient.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignalAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignalClient.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignalClient.java index ac45cee86ab..bffdbe5a924 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignalClient.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignalClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignalPaginators.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignalPaginators.java index 40ae6dcc0dc..eda423163a1 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignalPaginators.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignalPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignalWaiters.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignalWaiters.java index 07f47532719..ca06e268750 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignalWaiters.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/DemandSignalWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignal.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignal.java index a6d52545208..5e75661ebd5 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignal.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignal.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignalAsync.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignalAsync.java index d0fff2b18f3..457970856a9 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignalAsync.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignalAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignalAsyncClient.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignalAsyncClient.java index 597898c5333..154e2fb8913 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignalAsyncClient.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignalAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignalClient.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignalClient.java index 816d4dd83ad..286f7d88d60 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignalClient.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignalClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignalPaginators.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignalPaginators.java index f92ac596fde..b4afa7fd16b 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignalPaginators.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignalPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignalWaiters.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignalWaiters.java index 868960358e6..871197b24e5 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignalWaiters.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/InternalDemandSignalWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/AssociatedCapacityRequestDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/AssociatedCapacityRequestDetails.java index 7a200bbd52e..93b2ae77c69 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/AssociatedCapacityRequestDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/AssociatedCapacityRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/AssociatedOccHandoverResourceBlock.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/AssociatedOccHandoverResourceBlock.java index 4dcf7aae7b6..c557a67703d 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/AssociatedOccHandoverResourceBlock.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/AssociatedOccHandoverResourceBlock.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/BulkCreateOccmDemandSignalItem.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/BulkCreateOccmDemandSignalItem.java index 05e317d8d8b..3fbabd4276a 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/BulkCreateOccmDemandSignalItem.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/BulkCreateOccmDemandSignalItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/BulkCreateOccmDemandSignalItemDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/BulkCreateOccmDemandSignalItemDetails.java index 6b9a1c7cf7f..09e7c1d5ea4 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/BulkCreateOccmDemandSignalItemDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/BulkCreateOccmDemandSignalItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateInternalOccmDemandSignalDeliveryDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateInternalOccmDemandSignalDeliveryDetails.java index feb0707effd..96e6d92ecb2 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateInternalOccmDemandSignalDeliveryDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateInternalOccmDemandSignalDeliveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccAvailabilityCatalogDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccAvailabilityCatalogDetails.java index 086540a2f50..e74c5ba6629 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccAvailabilityCatalogDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccAvailabilityCatalogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccCapacityRequestDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccCapacityRequestDetails.java index cf9788de2f8..8abcf36879a 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccCapacityRequestDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccCapacityRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccCustomerDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccCustomerDetails.java index 7c5c100284a..824126eacf1 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccCustomerDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccCustomerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccCustomerGroupDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccCustomerGroupDetails.java index 13e78236fea..ae067e0ed43 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccCustomerGroupDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccCustomerGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccmDemandSignalDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccmDemandSignalDetails.java index b5a8fb4039b..bf541cd38e3 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccmDemandSignalDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccmDemandSignalDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccmDemandSignalItemDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccmDemandSignalItemDetails.java index 386dcff65cd..355c2cfe6e3 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccmDemandSignalItemDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/CreateOccmDemandSignalItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/DemandSignalNamespace.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/DemandSignalNamespace.java index 85ee15cab21..885afbe7310 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/DemandSignalNamespace.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/DemandSignalNamespace.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignal.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignal.java index ead29faed31..4fad3225bc0 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignal.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignal.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalCatalogResource.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalCatalogResource.java index ff1f2555275..1db9ed84b1e 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalCatalogResource.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalCatalogResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalCatalogResourceCollection.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalCatalogResourceCollection.java index a6c9cd4856e..2f9053dbd80 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalCatalogResourceCollection.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalCatalogResourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalCatalogResourceSummary.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalCatalogResourceSummary.java index fada7dcabab..8356f35657b 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalCatalogResourceSummary.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalCatalogResourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalCollection.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalCollection.java index 1b2de5b33e2..69c5641a782 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalCollection.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalDelivery.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalDelivery.java index 91d03a7c909..4175166c0ff 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalDelivery.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalDelivery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalDeliveryCollection.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalDeliveryCollection.java index ada4113ac81..78281b9722f 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalDeliveryCollection.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalDeliveryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalDeliverySummary.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalDeliverySummary.java index 95a866152e7..c35246b49a5 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalDeliverySummary.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalDeliverySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalItemCollection.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalItemCollection.java index 5546f17a663..a235f44125c 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalItemCollection.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalItemCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalItemSummary.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalItemSummary.java index f48c2fc57c2..17424eb3710 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalItemSummary.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalItemSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalSummary.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalSummary.java index c8b446249ba..a522d8def74 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalSummary.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/InternalOccmDemandSignalSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/MetadataDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/MetadataDetails.java index 0cd591e5f80..2c29db1866c 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/MetadataDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/MetadataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/Namespace.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/Namespace.java index 622a30af275..2b36e0e7d59 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/Namespace.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/Namespace.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccAvailabilityCatalog.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccAvailabilityCatalog.java index cf424b788db..6acf4aaf187 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccAvailabilityCatalog.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccAvailabilityCatalog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccAvailabilityCatalogCollection.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccAvailabilityCatalogCollection.java index f7fff6933ab..0a94b852c62 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccAvailabilityCatalogCollection.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccAvailabilityCatalogCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccAvailabilityCatalogSummary.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccAvailabilityCatalogSummary.java index 54b1395cbb9..38de7b43e07 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccAvailabilityCatalogSummary.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccAvailabilityCatalogSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccAvailabilityCollection.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccAvailabilityCollection.java index 9d08233a0e9..dbdc13b889d 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccAvailabilityCollection.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccAvailabilityCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccAvailabilitySummary.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccAvailabilitySummary.java index d4bad326ff0..720c21cfcda 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccAvailabilitySummary.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccAvailabilitySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCapacityRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCapacityRequest.java index fb9c3830eaa..a00afcd277b 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCapacityRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCapacityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCapacityRequestBaseDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCapacityRequestBaseDetails.java index 0e6ef82a4f7..6e81d0e070f 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCapacityRequestBaseDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCapacityRequestBaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCapacityRequestCollection.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCapacityRequestCollection.java index 5dba66331d3..f3547ad06a2 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCapacityRequestCollection.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCapacityRequestCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCapacityRequestSummary.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCapacityRequestSummary.java index 85b890100cf..e9360c33373 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCapacityRequestSummary.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCapacityRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCustomer.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCustomer.java index b24249f736a..e6def24a36c 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCustomer.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCustomer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCustomerGroup.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCustomerGroup.java index fcba56e209b..a4a65f491c7 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCustomerGroup.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCustomerGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCustomerGroupCollection.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCustomerGroupCollection.java index 7eabf0105d3..fd618ae54d5 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCustomerGroupCollection.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCustomerGroupCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCustomerGroupSummary.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCustomerGroupSummary.java index a822d48eb3f..7fe65a8e4f6 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCustomerGroupSummary.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccCustomerGroupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccHandoverResourceBlockCollection.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccHandoverResourceBlockCollection.java index 9b0d29056ce..c6dd30cc305 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccHandoverResourceBlockCollection.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccHandoverResourceBlockCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccHandoverResourceBlockDetailCollection.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccHandoverResourceBlockDetailCollection.java index 94721cf10ca..fbe406d4ae4 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccHandoverResourceBlockDetailCollection.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccHandoverResourceBlockDetailCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccHandoverResourceBlockDetailSummary.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccHandoverResourceBlockDetailSummary.java index 1410f79bbae..6794673f6a0 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccHandoverResourceBlockDetailSummary.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccHandoverResourceBlockDetailSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccHandoverResourceBlockSummary.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccHandoverResourceBlockSummary.java index 05f829dea5c..bb9d69cdbb1 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccHandoverResourceBlockSummary.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccHandoverResourceBlockSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccOverviewCollection.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccOverviewCollection.java index a5d33a536e8..c861d29c93a 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccOverviewCollection.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccOverviewCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccOverviewSummary.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccOverviewSummary.java index 32695395025..40ebccbd3ef 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccOverviewSummary.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccOverviewSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignal.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignal.java index 1e1dc7306f2..82e171cb879 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignal.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignal.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalog.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalog.java index f72f0e21eb1..8704e9460ff 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalog.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalogCollection.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalogCollection.java index 3a38b05d1c3..84e60c29877 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalogCollection.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalogCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalogResource.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalogResource.java index 24ab61b5181..7b1016e9f02 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalogResource.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalogResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalogResourceCollection.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalogResourceCollection.java index 60e2132e647..11360d99615 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalogResourceCollection.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalogResourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalogResourceSummary.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalogResourceSummary.java index a8e1660d365..8b66f001e66 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalogResourceSummary.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalogResourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalogSummary.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalogSummary.java index c917b4b73a5..5e18bd8a3bd 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalogSummary.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCatalogSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCollection.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCollection.java index 14b972b4d2d..d89ac798ceb 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCollection.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalDeliveryCollection.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalDeliveryCollection.java index 283681938f2..09930a78f1a 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalDeliveryCollection.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalDeliveryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalDeliverySummary.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalDeliverySummary.java index 2e62d4eeb61..9be9cd787fd 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalDeliverySummary.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalDeliverySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalItem.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalItem.java index aa52d4d593e..bed27efb9a7 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalItem.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalItemCollection.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalItemCollection.java index 5e7cd8061ba..4f4d40ca593 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalItemCollection.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalItemCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalItemRequestType.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalItemRequestType.java index f0cfd65123e..ceeaad9de28 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalItemRequestType.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalItemRequestType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalItemSummary.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalItemSummary.java index 1988a77043a..7c30624ace2 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalItemSummary.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalItemSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalResourcePropertiesCollection.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalResourcePropertiesCollection.java index c7dc0146f03..c184108ff6b 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalResourcePropertiesCollection.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalResourcePropertiesCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalResourcePropertiesSummary.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalResourcePropertiesSummary.java index 0da6ba5ad21..20d40d24dc3 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalResourcePropertiesSummary.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalResourcePropertiesSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalResourcePropertyConstraintsCollection.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalResourcePropertyConstraintsCollection.java index f8ae73f46c5..14e9c6f29a7 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalResourcePropertyConstraintsCollection.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalResourcePropertyConstraintsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalResourcePropertyConstraintsSummary.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalResourcePropertyConstraintsSummary.java index 96139ce25b8..39c2f8da681 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalResourcePropertyConstraintsSummary.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalResourcePropertyConstraintsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalResourcePropertyOptionSummary.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalResourcePropertyOptionSummary.java index 4a2446d76a2..03e0e04c3dd 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalResourcePropertyOptionSummary.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalResourcePropertyOptionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalSummary.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalSummary.java index 7df4dbad20e..bcc526a3c9e 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalSummary.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/OccmDemandSignalSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchInsertInstruction.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchInsertInstruction.java index 2df3e589981..f8ad1a141f8 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchInsertInstruction.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchInsertInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchInsertMultipleInstruction.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchInsertMultipleInstruction.java index 90f3dded7b5..7de009717cb 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchInsertMultipleInstruction.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchInsertMultipleInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchInstruction.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchInstruction.java index e2f47585cf9..0fd4274e904 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchInstruction.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchMergeInstruction.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchMergeInstruction.java index 41e9f69c0ee..9e5a7dc43f4 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchMergeInstruction.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchMergeInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchMoveInstruction.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchMoveInstruction.java index 1b5f103666b..616564e345a 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchMoveInstruction.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchMoveInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchOccCapacityRequestDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchOccCapacityRequestDetails.java index afd251c1b75..c9203c11a1c 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchOccCapacityRequestDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchOccCapacityRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchProhibitInstruction.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchProhibitInstruction.java index 24dfbf894a0..7df222a38a1 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchProhibitInstruction.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchProhibitInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchRemoveInstruction.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchRemoveInstruction.java index 042d41997da..81c25750a23 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchRemoveInstruction.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchRemoveInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchReplaceInstruction.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchReplaceInstruction.java index 2bb9cd14925..2f56177f674 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchReplaceInstruction.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchReplaceInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchRequireInstruction.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchRequireInstruction.java index aa1c044de87..02136e42b2b 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchRequireInstruction.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PatchRequireInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PlacementDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PlacementDetails.java index ee379a75197..964ea727436 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PlacementDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/PlacementDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/SortOrder.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/SortOrder.java index b06258cb725..a70639d84dc 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/SortOrder.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateInternalOccCapacityRequestDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateInternalOccCapacityRequestDetails.java index 4e5bff0310b..1c4f70535e4 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateInternalOccCapacityRequestDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateInternalOccCapacityRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateInternalOccmDemandSignalDeliveryDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateInternalOccmDemandSignalDeliveryDetails.java index 4398fc845ba..d2390040fad 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateInternalOccmDemandSignalDeliveryDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateInternalOccmDemandSignalDeliveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateInternalOccmDemandSignalDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateInternalOccmDemandSignalDetails.java index 43287f9efd8..5f8e61d5368 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateInternalOccmDemandSignalDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateInternalOccmDemandSignalDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccAvailabilityCatalogDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccAvailabilityCatalogDetails.java index 90e923c4ee7..f469bfa9083 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccAvailabilityCatalogDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccAvailabilityCatalogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccCapacityRequestDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccCapacityRequestDetails.java index 8617cc0b0d9..443936eba52 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccCapacityRequestDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccCapacityRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccCustomerDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccCustomerDetails.java index e98366f9907..eafd73014ca 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccCustomerDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccCustomerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccCustomerGroupDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccCustomerGroupDetails.java index 63c0ca742e5..f529443f3ca 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccCustomerGroupDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccCustomerGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccmDemandSignalDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccmDemandSignalDetails.java index e39f3801674..988c6c68053 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccmDemandSignalDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccmDemandSignalDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccmDemandSignalItemDetails.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccmDemandSignalItemDetails.java index 2b4e5139b02..bbda34c4769 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccmDemandSignalItemDetails.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/model/UpdateOccmDemandSignalItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.model; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/BulkCreateOccmDemandSignalItemRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/BulkCreateOccmDemandSignalItemRequest.java index 2c3715c098d..3a67f6d0f6e 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/BulkCreateOccmDemandSignalItemRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/BulkCreateOccmDemandSignalItemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateInternalOccmDemandSignalDeliveryRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateInternalOccmDemandSignalDeliveryRequest.java index 73c9ee6b0db..1cd5916d6c3 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateInternalOccmDemandSignalDeliveryRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateInternalOccmDemandSignalDeliveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccAvailabilityCatalogRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccAvailabilityCatalogRequest.java index cf3fad645ae..c8557b959ff 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccAvailabilityCatalogRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccAvailabilityCatalogRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccCapacityRequestRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccCapacityRequestRequest.java index aaeb0a43fbc..939478a670c 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccCapacityRequestRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccCapacityRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccCustomerGroupRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccCustomerGroupRequest.java index 0b026f86b04..8a1a84f6f92 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccCustomerGroupRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccCustomerGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccCustomerRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccCustomerRequest.java index 760f67d3908..eb1a58e7d46 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccCustomerRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccCustomerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccmDemandSignalItemRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccmDemandSignalItemRequest.java index 2e50753959b..becde03b5f1 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccmDemandSignalItemRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccmDemandSignalItemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccmDemandSignalRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccmDemandSignalRequest.java index 86f88e8e0a3..3ba9d146e22 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccmDemandSignalRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/CreateOccmDemandSignalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteInternalOccmDemandSignalDeliveryRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteInternalOccmDemandSignalDeliveryRequest.java index 3b97be5d80f..13e97a3c182 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteInternalOccmDemandSignalDeliveryRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteInternalOccmDemandSignalDeliveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccAvailabilityCatalogRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccAvailabilityCatalogRequest.java index 3bece60137e..ebbdfcaf770 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccAvailabilityCatalogRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccAvailabilityCatalogRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccCapacityRequestRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccCapacityRequestRequest.java index ae62e3b9c9b..f44552ed76b 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccCapacityRequestRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccCapacityRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccCustomerGroupRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccCustomerGroupRequest.java index 42a7644cb5b..87576ad4055 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccCustomerGroupRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccCustomerGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccCustomerRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccCustomerRequest.java index d3aa7174120..ffa7dbcb06b 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccCustomerRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccCustomerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccmDemandSignalItemRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccmDemandSignalItemRequest.java index 4a775b951ed..b3d291ef945 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccmDemandSignalItemRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccmDemandSignalItemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccmDemandSignalRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccmDemandSignalRequest.java index dece03b3b32..155e53d93f5 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccmDemandSignalRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/DeleteOccmDemandSignalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetInternalOccmDemandSignalCatalogRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetInternalOccmDemandSignalCatalogRequest.java index 597527c3789..ec35f52ccf8 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetInternalOccmDemandSignalCatalogRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetInternalOccmDemandSignalCatalogRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetInternalOccmDemandSignalDeliveryRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetInternalOccmDemandSignalDeliveryRequest.java index 2130ee83884..91c77e1e487 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetInternalOccmDemandSignalDeliveryRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetInternalOccmDemandSignalDeliveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetInternalOccmDemandSignalRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetInternalOccmDemandSignalRequest.java index 3930e49ae06..e3fadba9ad7 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetInternalOccmDemandSignalRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetInternalOccmDemandSignalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccAvailabilityCatalogContentRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccAvailabilityCatalogContentRequest.java index 688d00fabfc..f3aeb7ed5ff 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccAvailabilityCatalogContentRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccAvailabilityCatalogContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccAvailabilityCatalogRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccAvailabilityCatalogRequest.java index ad9ad21d5ec..6884bad4ed5 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccAvailabilityCatalogRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccAvailabilityCatalogRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccCapacityRequestRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccCapacityRequestRequest.java index a62879a9f9f..db2ae480ba1 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccCapacityRequestRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccCapacityRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccCustomerGroupRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccCustomerGroupRequest.java index 2abf13937e9..d6fab25c4b9 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccCustomerGroupRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccCustomerGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccmDemandSignalItemRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccmDemandSignalItemRequest.java index afb0c1340b9..43c4dc48c6c 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccmDemandSignalItemRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccmDemandSignalItemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccmDemandSignalRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccmDemandSignalRequest.java index 324d89a432b..1293813db6a 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccmDemandSignalRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/GetOccmDemandSignalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalNamespaceOccOverviewsRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalNamespaceOccOverviewsRequest.java index 443e2727fea..180080ac7c8 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalNamespaceOccOverviewsRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalNamespaceOccOverviewsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccHandoverResourceBlockDetailsRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccHandoverResourceBlockDetailsRequest.java index 9602941fe3e..398d4143c59 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccHandoverResourceBlockDetailsRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccHandoverResourceBlockDetailsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccHandoverResourceBlocksRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccHandoverResourceBlocksRequest.java index 170e5ae906e..91a84dcc58b 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccHandoverResourceBlocksRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccHandoverResourceBlocksRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccmDemandSignalCatalogResourcesRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccmDemandSignalCatalogResourcesRequest.java index a5dcf0b3aff..9f657e350f5 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccmDemandSignalCatalogResourcesRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccmDemandSignalCatalogResourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccmDemandSignalCatalogsRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccmDemandSignalCatalogsRequest.java index d637fd4fc31..b4e61b41edd 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccmDemandSignalCatalogsRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccmDemandSignalCatalogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccmDemandSignalDeliveriesRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccmDemandSignalDeliveriesRequest.java index f100ee0c15d..edf7aa61965 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccmDemandSignalDeliveriesRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccmDemandSignalDeliveriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccmDemandSignalItemsRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccmDemandSignalItemsRequest.java index 50f970d355e..0967548a4ee 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccmDemandSignalItemsRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccmDemandSignalItemsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccmDemandSignalsRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccmDemandSignalsRequest.java index 6d8285084f4..4d3d1d30b77 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccmDemandSignalsRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListInternalOccmDemandSignalsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccAvailabilitiesRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccAvailabilitiesRequest.java index 2ffe7dd68dd..19844704e1e 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccAvailabilitiesRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccAvailabilitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccAvailabilityCatalogsInternalRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccAvailabilityCatalogsInternalRequest.java index 6d49c4196ea..ef6f91b67f2 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccAvailabilityCatalogsInternalRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccAvailabilityCatalogsInternalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccAvailabilityCatalogsRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccAvailabilityCatalogsRequest.java index 3e88528c1c6..fe5177a06ee 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccAvailabilityCatalogsRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccAvailabilityCatalogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccCapacityRequestsInternalRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccCapacityRequestsInternalRequest.java index 03ec4eee12b..a10cfbf8a3c 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccCapacityRequestsInternalRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccCapacityRequestsInternalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccCapacityRequestsRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccCapacityRequestsRequest.java index 1d4eca4f737..dd2ff64de99 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccCapacityRequestsRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccCapacityRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccCustomerGroupsRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccCustomerGroupsRequest.java index e3dc63cbefb..3a69fb463c7 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccCustomerGroupsRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccCustomerGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccHandoverResourceBlockDetailsRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccHandoverResourceBlockDetailsRequest.java index 8d1ceb97520..c519cd37027 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccHandoverResourceBlockDetailsRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccHandoverResourceBlockDetailsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccHandoverResourceBlocksRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccHandoverResourceBlocksRequest.java index dcff20b649d..22db5d4d492 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccHandoverResourceBlocksRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccHandoverResourceBlocksRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccOverviewsRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccOverviewsRequest.java index 1ba836175fb..545c843530a 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccOverviewsRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccOverviewsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccmDemandSignalCatalogResourcesRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccmDemandSignalCatalogResourcesRequest.java index 435021adbd1..c320dc5ec50 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccmDemandSignalCatalogResourcesRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccmDemandSignalCatalogResourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccmDemandSignalDeliveriesRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccmDemandSignalDeliveriesRequest.java index abf40bec847..123bf432bd4 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccmDemandSignalDeliveriesRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccmDemandSignalDeliveriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccmDemandSignalItemsRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccmDemandSignalItemsRequest.java index 27ad77731e9..27ebe8c0969 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccmDemandSignalItemsRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccmDemandSignalItemsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccmDemandSignalsRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccmDemandSignalsRequest.java index d28e9ae8dfd..d7195edf520 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccmDemandSignalsRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/ListOccmDemandSignalsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/PatchInternalOccCapacityRequestRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/PatchInternalOccCapacityRequestRequest.java index 32fac0f99fa..671b279c49c 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/PatchInternalOccCapacityRequestRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/PatchInternalOccCapacityRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/PatchOccCapacityRequestRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/PatchOccCapacityRequestRequest.java index 69a525a21d8..34d4bd23c28 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/PatchOccCapacityRequestRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/PatchOccCapacityRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/PublishOccAvailabilityCatalogRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/PublishOccAvailabilityCatalogRequest.java index aa991f12e33..124339ef250 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/PublishOccAvailabilityCatalogRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/PublishOccAvailabilityCatalogRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateInternalOccCapacityRequestRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateInternalOccCapacityRequestRequest.java index 9f6d70a71cb..d85bcac5e17 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateInternalOccCapacityRequestRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateInternalOccCapacityRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateInternalOccmDemandSignalDeliveryRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateInternalOccmDemandSignalDeliveryRequest.java index cecb4e5e366..6383c90b900 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateInternalOccmDemandSignalDeliveryRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateInternalOccmDemandSignalDeliveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateInternalOccmDemandSignalRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateInternalOccmDemandSignalRequest.java index 141d5ecef16..000a812427b 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateInternalOccmDemandSignalRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateInternalOccmDemandSignalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccAvailabilityCatalogRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccAvailabilityCatalogRequest.java index 517111d8c8a..2601e259373 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccAvailabilityCatalogRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccAvailabilityCatalogRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccCapacityRequestRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccCapacityRequestRequest.java index 0124a8b615e..12dc1391138 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccCapacityRequestRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccCapacityRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccCustomerGroupRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccCustomerGroupRequest.java index 350015fab21..f63aba515c1 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccCustomerGroupRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccCustomerGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccCustomerRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccCustomerRequest.java index d0bd32ffbfc..7ebdfd5f40b 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccCustomerRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccCustomerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccmDemandSignalItemRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccmDemandSignalItemRequest.java index f592a627789..b8b9d376387 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccmDemandSignalItemRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccmDemandSignalItemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccmDemandSignalRequest.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccmDemandSignalRequest.java index 8d6a689068a..269ae0648c9 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccmDemandSignalRequest.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/requests/UpdateOccmDemandSignalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.requests; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/BulkCreateOccmDemandSignalItemResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/BulkCreateOccmDemandSignalItemResponse.java index 8bbb5e05bf6..aceea076d8a 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/BulkCreateOccmDemandSignalItemResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/BulkCreateOccmDemandSignalItemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateInternalOccmDemandSignalDeliveryResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateInternalOccmDemandSignalDeliveryResponse.java index 5362ac96273..099aac6eafa 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateInternalOccmDemandSignalDeliveryResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateInternalOccmDemandSignalDeliveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccAvailabilityCatalogResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccAvailabilityCatalogResponse.java index 4f9e5dc2fa3..e80450d9f54 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccAvailabilityCatalogResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccAvailabilityCatalogResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccCapacityRequestResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccCapacityRequestResponse.java index 5e61a3feb59..9798c9f9cd9 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccCapacityRequestResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccCapacityRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccCustomerGroupResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccCustomerGroupResponse.java index 4b29cecaa11..7661d030c12 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccCustomerGroupResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccCustomerGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccCustomerResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccCustomerResponse.java index 3c4341fbdf9..95ba22d03b4 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccCustomerResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccCustomerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccmDemandSignalItemResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccmDemandSignalItemResponse.java index 9ab25a71310..94362fc7909 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccmDemandSignalItemResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccmDemandSignalItemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccmDemandSignalResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccmDemandSignalResponse.java index e0803ec627f..9a488d27b6d 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccmDemandSignalResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/CreateOccmDemandSignalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteInternalOccmDemandSignalDeliveryResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteInternalOccmDemandSignalDeliveryResponse.java index 65428ec0bdb..1a9bc289386 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteInternalOccmDemandSignalDeliveryResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteInternalOccmDemandSignalDeliveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccAvailabilityCatalogResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccAvailabilityCatalogResponse.java index 5d15555c0d1..ca8dc47465a 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccAvailabilityCatalogResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccAvailabilityCatalogResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccCapacityRequestResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccCapacityRequestResponse.java index 0903e382969..fa541ff7614 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccCapacityRequestResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccCapacityRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccCustomerGroupResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccCustomerGroupResponse.java index d39d68183ca..80683ffda16 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccCustomerGroupResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccCustomerGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccCustomerResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccCustomerResponse.java index d20de3676fa..5460b3bfa26 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccCustomerResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccCustomerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccmDemandSignalItemResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccmDemandSignalItemResponse.java index 3c1dd878a1d..54ca814f79b 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccmDemandSignalItemResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccmDemandSignalItemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccmDemandSignalResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccmDemandSignalResponse.java index 386bf9e72c0..d73aa5319af 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccmDemandSignalResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/DeleteOccmDemandSignalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetInternalOccmDemandSignalCatalogResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetInternalOccmDemandSignalCatalogResponse.java index ac8bb1784a5..6406b46198e 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetInternalOccmDemandSignalCatalogResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetInternalOccmDemandSignalCatalogResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetInternalOccmDemandSignalDeliveryResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetInternalOccmDemandSignalDeliveryResponse.java index 55a5d3f233c..f1d02a268be 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetInternalOccmDemandSignalDeliveryResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetInternalOccmDemandSignalDeliveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetInternalOccmDemandSignalResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetInternalOccmDemandSignalResponse.java index 52aa65ec7f5..f5be61e1468 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetInternalOccmDemandSignalResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetInternalOccmDemandSignalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccAvailabilityCatalogContentResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccAvailabilityCatalogContentResponse.java index 415a9996698..8d1b9139a92 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccAvailabilityCatalogContentResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccAvailabilityCatalogContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccAvailabilityCatalogResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccAvailabilityCatalogResponse.java index 45f17b69dcc..0412f104807 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccAvailabilityCatalogResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccAvailabilityCatalogResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccCapacityRequestResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccCapacityRequestResponse.java index 98a746bd4fb..51ee776e7dd 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccCapacityRequestResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccCapacityRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccCustomerGroupResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccCustomerGroupResponse.java index 696e62808a1..936eb194f17 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccCustomerGroupResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccCustomerGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccmDemandSignalItemResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccmDemandSignalItemResponse.java index 9601787a1ab..40001277c6a 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccmDemandSignalItemResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccmDemandSignalItemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccmDemandSignalResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccmDemandSignalResponse.java index 4e6943a9442..2a260db3a7a 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccmDemandSignalResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/GetOccmDemandSignalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalNamespaceOccOverviewsResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalNamespaceOccOverviewsResponse.java index c8638d038ec..e8d6fe93ffc 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalNamespaceOccOverviewsResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalNamespaceOccOverviewsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccHandoverResourceBlockDetailsResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccHandoverResourceBlockDetailsResponse.java index fdf4c25732c..a6e7f08f44e 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccHandoverResourceBlockDetailsResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccHandoverResourceBlockDetailsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccHandoverResourceBlocksResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccHandoverResourceBlocksResponse.java index e835783ae74..837f3549cec 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccHandoverResourceBlocksResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccHandoverResourceBlocksResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccmDemandSignalCatalogResourcesResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccmDemandSignalCatalogResourcesResponse.java index 37ed8bfda62..ba369889306 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccmDemandSignalCatalogResourcesResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccmDemandSignalCatalogResourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccmDemandSignalCatalogsResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccmDemandSignalCatalogsResponse.java index cfc675ff998..451cd96d982 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccmDemandSignalCatalogsResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccmDemandSignalCatalogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccmDemandSignalDeliveriesResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccmDemandSignalDeliveriesResponse.java index 9dfd51cccb4..f935c1c55ba 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccmDemandSignalDeliveriesResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccmDemandSignalDeliveriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccmDemandSignalItemsResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccmDemandSignalItemsResponse.java index 523255cbd92..453f5d8fee0 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccmDemandSignalItemsResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccmDemandSignalItemsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccmDemandSignalsResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccmDemandSignalsResponse.java index 4f930dcf42a..4e098c3479b 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccmDemandSignalsResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListInternalOccmDemandSignalsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccAvailabilitiesResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccAvailabilitiesResponse.java index b0347f3bca1..e930ee719f0 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccAvailabilitiesResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccAvailabilitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccAvailabilityCatalogsInternalResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccAvailabilityCatalogsInternalResponse.java index 4b56dd81968..3b9659a3f3b 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccAvailabilityCatalogsInternalResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccAvailabilityCatalogsInternalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccAvailabilityCatalogsResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccAvailabilityCatalogsResponse.java index f1defad82ed..f5d9a8feea1 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccAvailabilityCatalogsResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccAvailabilityCatalogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccCapacityRequestsInternalResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccCapacityRequestsInternalResponse.java index 397e6298322..8a3edcecc47 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccCapacityRequestsInternalResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccCapacityRequestsInternalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccCapacityRequestsResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccCapacityRequestsResponse.java index 523b433329f..1e70f66ac98 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccCapacityRequestsResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccCapacityRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccCustomerGroupsResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccCustomerGroupsResponse.java index b3dab7a648e..6a11b4a222a 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccCustomerGroupsResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccCustomerGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccHandoverResourceBlockDetailsResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccHandoverResourceBlockDetailsResponse.java index 195d889d85f..2c155582aec 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccHandoverResourceBlockDetailsResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccHandoverResourceBlockDetailsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccHandoverResourceBlocksResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccHandoverResourceBlocksResponse.java index c29e7b9e6b8..ff3393c7263 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccHandoverResourceBlocksResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccHandoverResourceBlocksResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccOverviewsResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccOverviewsResponse.java index c1eb15d7b7a..36f81a14c3c 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccOverviewsResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccOverviewsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccmDemandSignalCatalogResourcesResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccmDemandSignalCatalogResourcesResponse.java index 2bc207092b3..0f7019d6517 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccmDemandSignalCatalogResourcesResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccmDemandSignalCatalogResourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccmDemandSignalDeliveriesResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccmDemandSignalDeliveriesResponse.java index 58a272d1e65..9385eef5a19 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccmDemandSignalDeliveriesResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccmDemandSignalDeliveriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccmDemandSignalItemsResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccmDemandSignalItemsResponse.java index 1168fc56786..0a942849eb9 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccmDemandSignalItemsResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccmDemandSignalItemsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccmDemandSignalsResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccmDemandSignalsResponse.java index 990e4dbdff1..b6b531b7b88 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccmDemandSignalsResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/ListOccmDemandSignalsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/PatchInternalOccCapacityRequestResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/PatchInternalOccCapacityRequestResponse.java index db90169f20b..d435ab7790b 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/PatchInternalOccCapacityRequestResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/PatchInternalOccCapacityRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/PatchOccCapacityRequestResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/PatchOccCapacityRequestResponse.java index 8dcc738114f..34f281ddba6 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/PatchOccCapacityRequestResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/PatchOccCapacityRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/PublishOccAvailabilityCatalogResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/PublishOccAvailabilityCatalogResponse.java index 53dca1a2353..97137b137be 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/PublishOccAvailabilityCatalogResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/PublishOccAvailabilityCatalogResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateInternalOccCapacityRequestResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateInternalOccCapacityRequestResponse.java index 389b06f0929..2d99ac45083 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateInternalOccCapacityRequestResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateInternalOccCapacityRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateInternalOccmDemandSignalDeliveryResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateInternalOccmDemandSignalDeliveryResponse.java index 0e8bc9da490..92a45db75da 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateInternalOccmDemandSignalDeliveryResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateInternalOccmDemandSignalDeliveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateInternalOccmDemandSignalResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateInternalOccmDemandSignalResponse.java index 7e68be74b7a..b10c970b4e3 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateInternalOccmDemandSignalResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateInternalOccmDemandSignalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccAvailabilityCatalogResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccAvailabilityCatalogResponse.java index 7837ae8266a..451f76724ce 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccAvailabilityCatalogResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccAvailabilityCatalogResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccCapacityRequestResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccCapacityRequestResponse.java index 00338e05820..9c09678f974 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccCapacityRequestResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccCapacityRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccCustomerGroupResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccCustomerGroupResponse.java index 0d9cf7fb937..d7b4d57c99f 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccCustomerGroupResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccCustomerGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccCustomerResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccCustomerResponse.java index dce096125d0..d3ecce13f2f 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccCustomerResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccCustomerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccmDemandSignalItemResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccmDemandSignalItemResponse.java index ab8026be5b4..1dc491b86d8 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccmDemandSignalItemResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccmDemandSignalItemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccmDemandSignalResponse.java b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccmDemandSignalResponse.java index 48a1082dd2d..611690c9766 100644 --- a/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccmDemandSignalResponse.java +++ b/bmc-capacitymanagement/src/main/java/com/oracle/bmc/capacitymanagement/responses/UpdateOccmDemandSignalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.capacitymanagement.responses; diff --git a/bmc-capacitymanagement/src/main/resources/com/oracle/bmc/capacitymanagement/client.properties b/bmc-capacitymanagement/src/main/resources/com/oracle/bmc/capacitymanagement/client.properties index 096e8760a4e..8e17d670de4 100644 --- a/bmc-capacitymanagement/src/main/resources/com/oracle/bmc/capacitymanagement/client.properties +++ b/bmc-capacitymanagement/src/main/resources/com/oracle/bmc/capacitymanagement/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-certificates/pom.xml b/bmc-certificates/pom.xml index 8889cfa56ea..9bae842835c 100644 --- a/bmc-certificates/pom.xml +++ b/bmc-certificates/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-certificates @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/Certificates.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/Certificates.java index 7364e92b13d..f643f665cc5 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/Certificates.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/Certificates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/CertificatesAsync.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/CertificatesAsync.java index 333ef9e2dd4..a89f820611b 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/CertificatesAsync.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/CertificatesAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/CertificatesAsyncClient.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/CertificatesAsyncClient.java index 20c81e30373..1714fd7daa6 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/CertificatesAsyncClient.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/CertificatesAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/CertificatesClient.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/CertificatesClient.java index 7165b0219d2..a2ec18fcdfe 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/CertificatesClient.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/CertificatesClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CaBundle.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CaBundle.java index 10fac3e224b..572cc45ef57 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CaBundle.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CaBundle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.model; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateAuthorityBundle.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateAuthorityBundle.java index da6e42daa67..74abcda86a2 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateAuthorityBundle.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateAuthorityBundle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.model; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateAuthorityBundleVersionCollection.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateAuthorityBundleVersionCollection.java index 8926d6411c1..90b4eb1662b 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateAuthorityBundleVersionCollection.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateAuthorityBundleVersionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.model; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateAuthorityBundleVersionSummary.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateAuthorityBundleVersionSummary.java index 4fa5a6ff1ef..744989d82f2 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateAuthorityBundleVersionSummary.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateAuthorityBundleVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.model; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateBundle.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateBundle.java index 8e2358a8191..c50a7ae46f9 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateBundle.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateBundle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.model; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateBundlePublicOnly.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateBundlePublicOnly.java index a6c07ed7ef2..7ac076e5c81 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateBundlePublicOnly.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateBundlePublicOnly.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.model; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateBundleVersionCollection.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateBundleVersionCollection.java index 76fce36485d..0a11bf5e898 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateBundleVersionCollection.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateBundleVersionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.model; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateBundleVersionSummary.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateBundleVersionSummary.java index 344ea04c73a..3792ee930c2 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateBundleVersionSummary.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateBundleVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.model; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateBundleWithPrivateKey.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateBundleWithPrivateKey.java index ed005828541..a7c741fe616 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateBundleWithPrivateKey.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/CertificateBundleWithPrivateKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.model; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/RevocationReason.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/RevocationReason.java index 6f56ebb95f5..91ba0ddd254 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/RevocationReason.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/RevocationReason.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.model; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/RevocationStatus.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/RevocationStatus.java index 3dbb6821d98..d6a119c17c4 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/RevocationStatus.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/RevocationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.model; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/Validity.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/Validity.java index 26a4366c74d..ebe1661cbcb 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/Validity.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/Validity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.model; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/VersionStage.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/VersionStage.java index 65636b7f77f..bd81902ef1d 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/VersionStage.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/model/VersionStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.model; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/requests/GetCaBundleRequest.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/requests/GetCaBundleRequest.java index efb6585ab6b..7bd5cf3745d 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/requests/GetCaBundleRequest.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/requests/GetCaBundleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.requests; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/requests/GetCertificateAuthorityBundleRequest.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/requests/GetCertificateAuthorityBundleRequest.java index ed6cc83f350..d45d769075d 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/requests/GetCertificateAuthorityBundleRequest.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/requests/GetCertificateAuthorityBundleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.requests; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/requests/GetCertificateBundleRequest.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/requests/GetCertificateBundleRequest.java index 63b767feabf..76fe101f17e 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/requests/GetCertificateBundleRequest.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/requests/GetCertificateBundleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.requests; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/requests/ListCertificateAuthorityBundleVersionsRequest.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/requests/ListCertificateAuthorityBundleVersionsRequest.java index 37fd3b7255d..9340dbfdcab 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/requests/ListCertificateAuthorityBundleVersionsRequest.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/requests/ListCertificateAuthorityBundleVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.requests; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/requests/ListCertificateBundleVersionsRequest.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/requests/ListCertificateBundleVersionsRequest.java index b4b948ff348..31308912a79 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/requests/ListCertificateBundleVersionsRequest.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/requests/ListCertificateBundleVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.requests; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/responses/GetCaBundleResponse.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/responses/GetCaBundleResponse.java index 863f4b49da7..7d0e8bb0ba8 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/responses/GetCaBundleResponse.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/responses/GetCaBundleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.responses; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/responses/GetCertificateAuthorityBundleResponse.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/responses/GetCertificateAuthorityBundleResponse.java index 1b44063e696..7a608afe10a 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/responses/GetCertificateAuthorityBundleResponse.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/responses/GetCertificateAuthorityBundleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.responses; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/responses/GetCertificateBundleResponse.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/responses/GetCertificateBundleResponse.java index 5399dd2f159..047af0ca7b3 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/responses/GetCertificateBundleResponse.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/responses/GetCertificateBundleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.responses; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/responses/ListCertificateAuthorityBundleVersionsResponse.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/responses/ListCertificateAuthorityBundleVersionsResponse.java index 3697be6438c..e035bf6645e 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/responses/ListCertificateAuthorityBundleVersionsResponse.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/responses/ListCertificateAuthorityBundleVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.responses; diff --git a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/responses/ListCertificateBundleVersionsResponse.java b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/responses/ListCertificateBundleVersionsResponse.java index 1aea88ebc61..09750e16b36 100644 --- a/bmc-certificates/src/main/java/com/oracle/bmc/certificates/responses/ListCertificateBundleVersionsResponse.java +++ b/bmc-certificates/src/main/java/com/oracle/bmc/certificates/responses/ListCertificateBundleVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificates.responses; diff --git a/bmc-certificates/src/main/resources/com/oracle/bmc/certificates/client.properties b/bmc-certificates/src/main/resources/com/oracle/bmc/certificates/client.properties index 642e4391c98..a25f8b19fe0 100644 --- a/bmc-certificates/src/main/resources/com/oracle/bmc/certificates/client.properties +++ b/bmc-certificates/src/main/resources/com/oracle/bmc/certificates/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-certificatesmanagement/pom.xml b/bmc-certificatesmanagement/pom.xml index 4eaddcccaf0..2550cc3c742 100644 --- a/bmc-certificatesmanagement/pom.xml +++ b/bmc-certificatesmanagement/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-certificatesmanagement @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagement.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagement.java index e3caf4585c1..62b70d782e8 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagement.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagementAsync.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagementAsync.java index 3beab8e8203..1999cc432d8 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagementAsync.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagementAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagementAsyncClient.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagementAsyncClient.java index d02331d08fd..aecd105d247 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagementAsyncClient.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagementAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagementClient.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagementClient.java index 9a3ee5b8e3b..20b07f4a0fd 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagementClient.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagementClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagementPaginators.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagementPaginators.java index 28ddddc3e4c..2f8f200963f 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagementPaginators.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagementPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagementWaiters.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagementWaiters.java index 907f49c0b1c..e6dd5913c75 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagementWaiters.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/CertificatesManagementWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/Association.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/Association.java index 5814d72bbe5..4b8571d4679 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/Association.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/Association.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/AssociationCollection.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/AssociationCollection.java index b3602f21cb4..ea130079c7e 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/AssociationCollection.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/AssociationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/AssociationLifecycleState.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/AssociationLifecycleState.java index a985cdd58fd..e12d5e5810d 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/AssociationLifecycleState.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/AssociationLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/AssociationSummary.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/AssociationSummary.java index 89c0a12d461..fbc510169f0 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/AssociationSummary.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/AssociationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/AssociationType.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/AssociationType.java index c326d83e214..c03019f4f4d 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/AssociationType.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/AssociationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CaBundle.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CaBundle.java index cfecd88f364..37c17e43aef 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CaBundle.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CaBundle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CaBundleCollection.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CaBundleCollection.java index 089f67d3a9f..e349c2ad8bc 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CaBundleCollection.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CaBundleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CaBundleLifecycleState.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CaBundleLifecycleState.java index 9ffc10c257b..7caa3241761 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CaBundleLifecycleState.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CaBundleLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CaBundleSummary.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CaBundleSummary.java index f210b76adae..44aee7b84a6 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CaBundleSummary.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CaBundleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/Certificate.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/Certificate.java index b1b9d638197..a133ea79d31 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/Certificate.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/Certificate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthority.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthority.java index 7e543b61a34..346ec5ac7ba 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthority.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthority.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityCollection.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityCollection.java index 686e8db1b92..73337560048 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityCollection.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityConfigType.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityConfigType.java index 45b3ebcc06c..f8ca9578ba1 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityConfigType.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityConfigType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityIssuanceExpiryRule.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityIssuanceExpiryRule.java index 262822814c3..6f02a068257 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityIssuanceExpiryRule.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityIssuanceExpiryRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityLifecycleState.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityLifecycleState.java index 9178b5fa378..a1070a27146 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityLifecycleState.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityRule.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityRule.java index 491f45f1a77..444dc408022 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityRule.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthoritySummary.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthoritySummary.java index c6674b383ef..e867ffee6fe 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthoritySummary.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthoritySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityVersion.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityVersion.java index d07236d8469..ae4722173cc 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityVersion.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityVersionCollection.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityVersionCollection.java index f881d17b881..5aae2f0aa94 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityVersionCollection.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityVersionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityVersionSummary.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityVersionSummary.java index e6589c9e45f..d0034aa9024 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityVersionSummary.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateAuthorityVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateCollection.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateCollection.java index e94bea5caa4..298f6fbd12a 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateCollection.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateConfigType.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateConfigType.java index 7be79232de1..4514a144d37 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateConfigType.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateConfigType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateLifecycleState.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateLifecycleState.java index d8b0b8ea273..061efd2bac6 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateLifecycleState.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateProfileType.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateProfileType.java index c4fe73ec6b9..90b2617ee20 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateProfileType.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateProfileType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateRenewalRule.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateRenewalRule.java index 722c74a3c04..b0af977cdb9 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateRenewalRule.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateRenewalRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateRevocationListDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateRevocationListDetails.java index 2a1904d2945..e9c94583347 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateRevocationListDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateRevocationListDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateRule.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateRule.java index 4ac725799b5..de8e4fed131 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateRule.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateSubject.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateSubject.java index 5c0a12be8ea..1114e1baaa0 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateSubject.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateSubject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateSubjectAlternativeName.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateSubjectAlternativeName.java index d468d9d26cc..ad7b56e4426 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateSubjectAlternativeName.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateSubjectAlternativeName.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateSummary.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateSummary.java index 1e52ef08b4c..e3687832fea 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateSummary.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateVersion.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateVersion.java index 40bbb6ef02b..9c58c2b2217 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateVersion.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateVersionCollection.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateVersionCollection.java index 5b115b7ac1a..a2f0842b14f 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateVersionCollection.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateVersionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateVersionSummary.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateVersionSummary.java index e9b46eae59b..871e8dde770 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateVersionSummary.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CertificateVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ChangeCaBundleCompartmentDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ChangeCaBundleCompartmentDetails.java index f3d35eb6bbf..3b88f0949c4 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ChangeCaBundleCompartmentDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ChangeCaBundleCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ChangeCertificateAuthorityCompartmentDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ChangeCertificateAuthorityCompartmentDetails.java index 69d067ea014..8b32f5bb8c8 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ChangeCertificateAuthorityCompartmentDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ChangeCertificateAuthorityCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ChangeCertificateCompartmentDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ChangeCertificateCompartmentDetails.java index 6247df8e1ae..925e7a6c57b 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ChangeCertificateCompartmentDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ChangeCertificateCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCaBundleDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCaBundleDetails.java index 67cb20d9889..1f8d093907a 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCaBundleDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCaBundleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateAuthorityConfigDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateAuthorityConfigDetails.java index ec3f37b7c5f..b3d71af17d2 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateAuthorityConfigDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateAuthorityConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateAuthorityDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateAuthorityDetails.java index b2b2ffb4b92..b04e5e1d787 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateAuthorityDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateAuthorityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateByImportingConfigDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateByImportingConfigDetails.java index 0e31481a6c2..8ea87f95496 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateByImportingConfigDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateByImportingConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateConfigDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateConfigDetails.java index 4b87b2a4eb4..6ac156526f9 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateConfigDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateDetails.java index db9359b048e..95ba4838176 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateIssuedByInternalCaConfigDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateIssuedByInternalCaConfigDetails.java index 5f52bf74d94..410c61177a0 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateIssuedByInternalCaConfigDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateIssuedByInternalCaConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateManagedExternallyIssuedByInternalCaConfigDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateManagedExternallyIssuedByInternalCaConfigDetails.java index fe89b3f505b..7a2a7025698 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateManagedExternallyIssuedByInternalCaConfigDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateCertificateManagedExternallyIssuedByInternalCaConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateRootCaByGeneratingInternallyConfigDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateRootCaByGeneratingInternallyConfigDetails.java index c938d1c3a4a..66d3f9ec045 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateRootCaByGeneratingInternallyConfigDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateRootCaByGeneratingInternallyConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateSubordinateCaIssuedByInternalCaConfigDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateSubordinateCaIssuedByInternalCaConfigDetails.java index 827441fc038..9cf3ebf07dc 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateSubordinateCaIssuedByInternalCaConfigDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/CreateSubordinateCaIssuedByInternalCaConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/KeyAlgorithm.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/KeyAlgorithm.java index a82b1e60ec5..10c3b86ef2f 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/KeyAlgorithm.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/KeyAlgorithm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ObjectStorageBucketConfigDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ObjectStorageBucketConfigDetails.java index cc23e6f5cff..cba6bd06ad3 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ObjectStorageBucketConfigDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ObjectStorageBucketConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/RevocationReason.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/RevocationReason.java index 5557329ad6a..a659b2ef09e 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/RevocationReason.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/RevocationReason.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/RevocationStatus.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/RevocationStatus.java index d8fef661d8c..a46f8a5923b 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/RevocationStatus.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/RevocationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/RevokeCertificateAuthorityVersionDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/RevokeCertificateAuthorityVersionDetails.java index ffef3b39020..dc624db12dc 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/RevokeCertificateAuthorityVersionDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/RevokeCertificateAuthorityVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/RevokeCertificateVersionDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/RevokeCertificateVersionDetails.java index 8594c58f5c8..453d55a7365 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/RevokeCertificateVersionDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/RevokeCertificateVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ScheduleCertificateAuthorityDeletionDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ScheduleCertificateAuthorityDeletionDetails.java index 3445bd7deb7..e36ea841e87 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ScheduleCertificateAuthorityDeletionDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ScheduleCertificateAuthorityDeletionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ScheduleCertificateAuthorityVersionDeletionDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ScheduleCertificateAuthorityVersionDeletionDetails.java index 259e65cf5e1..7188bb6ba7f 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ScheduleCertificateAuthorityVersionDeletionDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ScheduleCertificateAuthorityVersionDeletionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ScheduleCertificateDeletionDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ScheduleCertificateDeletionDetails.java index ae6d5ffcc60..eced7137b99 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ScheduleCertificateDeletionDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ScheduleCertificateDeletionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ScheduleCertificateVersionDeletionDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ScheduleCertificateVersionDeletionDetails.java index 764a3b16b53..12feb1e730b 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ScheduleCertificateVersionDeletionDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/ScheduleCertificateVersionDeletionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/SignatureAlgorithm.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/SignatureAlgorithm.java index 36d7369f899..b1b67a181a8 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/SignatureAlgorithm.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/SignatureAlgorithm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCaBundleDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCaBundleDetails.java index 71c848cbf21..367d8d386de 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCaBundleDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCaBundleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateAuthorityConfigDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateAuthorityConfigDetails.java index 9074088687d..79e2ee450fb 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateAuthorityConfigDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateAuthorityConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateAuthorityDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateAuthorityDetails.java index aaa359d4a11..f159523f8d7 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateAuthorityDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateAuthorityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateByImportingConfigDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateByImportingConfigDetails.java index b0227e1efa5..27d09b6e837 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateByImportingConfigDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateByImportingConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateConfigDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateConfigDetails.java index 9b8026e71ab..86dfc6491a1 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateConfigDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateDetails.java index d9cf3f35197..04adefa80a2 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateIssuedByInternalCaConfigDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateIssuedByInternalCaConfigDetails.java index 65ea6972b1b..644b07f9183 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateIssuedByInternalCaConfigDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateIssuedByInternalCaConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateManagedExternallyIssuedByInternalCaConfigDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateManagedExternallyIssuedByInternalCaConfigDetails.java index ad09b88b535..7956c867b45 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateManagedExternallyIssuedByInternalCaConfigDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateCertificateManagedExternallyIssuedByInternalCaConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateRootCaByGeneratingInternallyConfigDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateRootCaByGeneratingInternallyConfigDetails.java index 435eab0325a..2aad7b9cbc4 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateRootCaByGeneratingInternallyConfigDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateRootCaByGeneratingInternallyConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateSubordinateCaIssuedByInternalCaConfigDetails.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateSubordinateCaIssuedByInternalCaConfigDetails.java index 4fab124adbf..de901a68030 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateSubordinateCaIssuedByInternalCaConfigDetails.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/UpdateSubordinateCaIssuedByInternalCaConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/Validity.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/Validity.java index 3682cb08858..71fa0890ee0 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/Validity.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/Validity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/VersionStage.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/VersionStage.java index 7eab200e091..ed467482ac3 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/VersionStage.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/model/VersionStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.model; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CancelCertificateAuthorityDeletionRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CancelCertificateAuthorityDeletionRequest.java index 1fad0fbfd77..3a0362d7c8a 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CancelCertificateAuthorityDeletionRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CancelCertificateAuthorityDeletionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CancelCertificateAuthorityVersionDeletionRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CancelCertificateAuthorityVersionDeletionRequest.java index 930eea96f8e..aa12631630d 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CancelCertificateAuthorityVersionDeletionRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CancelCertificateAuthorityVersionDeletionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CancelCertificateDeletionRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CancelCertificateDeletionRequest.java index 732f9aa7a3a..98a7a465707 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CancelCertificateDeletionRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CancelCertificateDeletionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CancelCertificateVersionDeletionRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CancelCertificateVersionDeletionRequest.java index d8f9c92188d..01ad2db554c 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CancelCertificateVersionDeletionRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CancelCertificateVersionDeletionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ChangeCaBundleCompartmentRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ChangeCaBundleCompartmentRequest.java index 9f74ced0b95..c1e89b77955 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ChangeCaBundleCompartmentRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ChangeCaBundleCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ChangeCertificateAuthorityCompartmentRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ChangeCertificateAuthorityCompartmentRequest.java index 704505dcc6f..d7a0b7504c6 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ChangeCertificateAuthorityCompartmentRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ChangeCertificateAuthorityCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ChangeCertificateCompartmentRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ChangeCertificateCompartmentRequest.java index 934b9bf02d6..b91e1e31548 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ChangeCertificateCompartmentRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ChangeCertificateCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CreateCaBundleRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CreateCaBundleRequest.java index 72606696b23..b22aac1ae0a 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CreateCaBundleRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CreateCaBundleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CreateCertificateAuthorityRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CreateCertificateAuthorityRequest.java index be659eb8649..78b1e7d49ac 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CreateCertificateAuthorityRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CreateCertificateAuthorityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CreateCertificateRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CreateCertificateRequest.java index a9324c52d7b..76e72041a0d 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CreateCertificateRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/CreateCertificateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/DeleteCaBundleRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/DeleteCaBundleRequest.java index 04254393728..4ded7a34b7c 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/DeleteCaBundleRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/DeleteCaBundleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetAssociationRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetAssociationRequest.java index ce60d435e5e..ac5ca3be994 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetAssociationRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetCaBundleRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetCaBundleRequest.java index 04ed48a4930..e0dccd85721 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetCaBundleRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetCaBundleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetCertificateAuthorityRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetCertificateAuthorityRequest.java index c056f56a031..081a976f7e6 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetCertificateAuthorityRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetCertificateAuthorityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetCertificateAuthorityVersionRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetCertificateAuthorityVersionRequest.java index 837be581f12..4981e2350a6 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetCertificateAuthorityVersionRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetCertificateAuthorityVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetCertificateRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetCertificateRequest.java index 6759d3b5e43..aecad72ad41 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetCertificateRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetCertificateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetCertificateVersionRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetCertificateVersionRequest.java index 3ae0d9fa651..bea51f0e2c8 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetCertificateVersionRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/GetCertificateVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListAssociationsRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListAssociationsRequest.java index 8cb7adfe3bd..8f7fe75eef2 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListAssociationsRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListAssociationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListCaBundlesRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListCaBundlesRequest.java index 08e7caa5d58..b08b2ca6f0b 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListCaBundlesRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListCaBundlesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListCertificateAuthoritiesRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListCertificateAuthoritiesRequest.java index e9f800b748b..1552cc763f7 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListCertificateAuthoritiesRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListCertificateAuthoritiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListCertificateAuthorityVersionsRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListCertificateAuthorityVersionsRequest.java index 9dfb20ca574..c820d2a6342 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListCertificateAuthorityVersionsRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListCertificateAuthorityVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListCertificateVersionsRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListCertificateVersionsRequest.java index 70319ef6d77..896d6dd5120 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListCertificateVersionsRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListCertificateVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListCertificatesRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListCertificatesRequest.java index 596192e035b..ef4931b707f 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListCertificatesRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ListCertificatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/RevokeCertificateAuthorityVersionRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/RevokeCertificateAuthorityVersionRequest.java index 7118338c5dc..c6d3923c244 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/RevokeCertificateAuthorityVersionRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/RevokeCertificateAuthorityVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/RevokeCertificateVersionRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/RevokeCertificateVersionRequest.java index 4129c850658..9d03b9b0de8 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/RevokeCertificateVersionRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/RevokeCertificateVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ScheduleCertificateAuthorityDeletionRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ScheduleCertificateAuthorityDeletionRequest.java index b0fc1f844fa..84405480530 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ScheduleCertificateAuthorityDeletionRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ScheduleCertificateAuthorityDeletionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ScheduleCertificateAuthorityVersionDeletionRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ScheduleCertificateAuthorityVersionDeletionRequest.java index 252448173f9..22c0950d8b9 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ScheduleCertificateAuthorityVersionDeletionRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ScheduleCertificateAuthorityVersionDeletionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ScheduleCertificateDeletionRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ScheduleCertificateDeletionRequest.java index 777e0ea5f66..4bc79f4ca85 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ScheduleCertificateDeletionRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ScheduleCertificateDeletionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ScheduleCertificateVersionDeletionRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ScheduleCertificateVersionDeletionRequest.java index bf18be0fa83..f7e3ee96a2c 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ScheduleCertificateVersionDeletionRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/ScheduleCertificateVersionDeletionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/UpdateCaBundleRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/UpdateCaBundleRequest.java index e273e42914c..ff4dcc7df3c 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/UpdateCaBundleRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/UpdateCaBundleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/UpdateCertificateAuthorityRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/UpdateCertificateAuthorityRequest.java index efe3e16ca48..7c813ae6fed 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/UpdateCertificateAuthorityRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/UpdateCertificateAuthorityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/UpdateCertificateRequest.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/UpdateCertificateRequest.java index 9a02a415d46..44835d2aa84 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/UpdateCertificateRequest.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/requests/UpdateCertificateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.requests; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CancelCertificateAuthorityDeletionResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CancelCertificateAuthorityDeletionResponse.java index 486e8e78580..98ef4bfdf4e 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CancelCertificateAuthorityDeletionResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CancelCertificateAuthorityDeletionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CancelCertificateAuthorityVersionDeletionResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CancelCertificateAuthorityVersionDeletionResponse.java index 7a24b10a857..28e1770d9ef 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CancelCertificateAuthorityVersionDeletionResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CancelCertificateAuthorityVersionDeletionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CancelCertificateDeletionResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CancelCertificateDeletionResponse.java index 2d612a3e477..12a4fe9bf87 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CancelCertificateDeletionResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CancelCertificateDeletionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CancelCertificateVersionDeletionResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CancelCertificateVersionDeletionResponse.java index 2b6b9750669..43d0220f330 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CancelCertificateVersionDeletionResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CancelCertificateVersionDeletionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ChangeCaBundleCompartmentResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ChangeCaBundleCompartmentResponse.java index ff656623ef7..cae00d95911 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ChangeCaBundleCompartmentResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ChangeCaBundleCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ChangeCertificateAuthorityCompartmentResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ChangeCertificateAuthorityCompartmentResponse.java index 36a9243e27e..38ef2bbef1c 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ChangeCertificateAuthorityCompartmentResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ChangeCertificateAuthorityCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ChangeCertificateCompartmentResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ChangeCertificateCompartmentResponse.java index c310f7f548b..c3dcb700cbf 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ChangeCertificateCompartmentResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ChangeCertificateCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CreateCaBundleResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CreateCaBundleResponse.java index a93f033117a..8818fd78cd8 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CreateCaBundleResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CreateCaBundleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CreateCertificateAuthorityResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CreateCertificateAuthorityResponse.java index 7af878ac49f..08dbcf75ddd 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CreateCertificateAuthorityResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CreateCertificateAuthorityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CreateCertificateResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CreateCertificateResponse.java index 6fe416f93aa..8e7b2633a2b 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CreateCertificateResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/CreateCertificateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/DeleteCaBundleResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/DeleteCaBundleResponse.java index 4afa6a40669..bda9f403e46 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/DeleteCaBundleResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/DeleteCaBundleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetAssociationResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetAssociationResponse.java index 4e134bed259..6246b145cfe 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetAssociationResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetCaBundleResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetCaBundleResponse.java index 8047c2dc2b3..ffc512c5146 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetCaBundleResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetCaBundleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetCertificateAuthorityResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetCertificateAuthorityResponse.java index 40665ab96fd..ae700479807 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetCertificateAuthorityResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetCertificateAuthorityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetCertificateAuthorityVersionResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetCertificateAuthorityVersionResponse.java index f71185379ff..ec138d7b33a 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetCertificateAuthorityVersionResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetCertificateAuthorityVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetCertificateResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetCertificateResponse.java index d4a6e8709c0..236a47f55b8 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetCertificateResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetCertificateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetCertificateVersionResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetCertificateVersionResponse.java index 92b5f2db8dc..3d6d160a565 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetCertificateVersionResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/GetCertificateVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListAssociationsResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListAssociationsResponse.java index e5ec4112fad..7a90b37b9ef 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListAssociationsResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListAssociationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListCaBundlesResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListCaBundlesResponse.java index e6326d9fa66..ea8ddc3f545 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListCaBundlesResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListCaBundlesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListCertificateAuthoritiesResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListCertificateAuthoritiesResponse.java index 9a082a0f0f0..7748f9a18db 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListCertificateAuthoritiesResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListCertificateAuthoritiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListCertificateAuthorityVersionsResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListCertificateAuthorityVersionsResponse.java index fd672465cb6..55d8247c5cd 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListCertificateAuthorityVersionsResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListCertificateAuthorityVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListCertificateVersionsResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListCertificateVersionsResponse.java index 6422fe51989..054958db91c 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListCertificateVersionsResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListCertificateVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListCertificatesResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListCertificatesResponse.java index a9041743e52..91313f52acd 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListCertificatesResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ListCertificatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/RevokeCertificateAuthorityVersionResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/RevokeCertificateAuthorityVersionResponse.java index 44d54b0d180..d9cbfeeeb0c 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/RevokeCertificateAuthorityVersionResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/RevokeCertificateAuthorityVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/RevokeCertificateVersionResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/RevokeCertificateVersionResponse.java index 36383e72baa..40c007c9db0 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/RevokeCertificateVersionResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/RevokeCertificateVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ScheduleCertificateAuthorityDeletionResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ScheduleCertificateAuthorityDeletionResponse.java index a2e0f827212..eaaad574890 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ScheduleCertificateAuthorityDeletionResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ScheduleCertificateAuthorityDeletionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ScheduleCertificateAuthorityVersionDeletionResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ScheduleCertificateAuthorityVersionDeletionResponse.java index 76592c78156..2e5112b697e 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ScheduleCertificateAuthorityVersionDeletionResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ScheduleCertificateAuthorityVersionDeletionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ScheduleCertificateDeletionResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ScheduleCertificateDeletionResponse.java index 58b986a8a94..62d5dee02cb 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ScheduleCertificateDeletionResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ScheduleCertificateDeletionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ScheduleCertificateVersionDeletionResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ScheduleCertificateVersionDeletionResponse.java index d2ae2989013..2247158900b 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ScheduleCertificateVersionDeletionResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/ScheduleCertificateVersionDeletionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/UpdateCaBundleResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/UpdateCaBundleResponse.java index ff1d41475a9..ebfd4c1e92b 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/UpdateCaBundleResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/UpdateCaBundleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/UpdateCertificateAuthorityResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/UpdateCertificateAuthorityResponse.java index 2ad9c3b4242..656baab0b12 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/UpdateCertificateAuthorityResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/UpdateCertificateAuthorityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/UpdateCertificateResponse.java b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/UpdateCertificateResponse.java index 16e4a8a588a..b38559bf8e1 100644 --- a/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/UpdateCertificateResponse.java +++ b/bmc-certificatesmanagement/src/main/java/com/oracle/bmc/certificatesmanagement/responses/UpdateCertificateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.certificatesmanagement.responses; diff --git a/bmc-certificatesmanagement/src/main/resources/com/oracle/bmc/certificatesmanagement/client.properties b/bmc-certificatesmanagement/src/main/resources/com/oracle/bmc/certificatesmanagement/client.properties index 642e4391c98..a25f8b19fe0 100644 --- a/bmc-certificatesmanagement/src/main/resources/com/oracle/bmc/certificatesmanagement/client.properties +++ b/bmc-certificatesmanagement/src/main/resources/com/oracle/bmc/certificatesmanagement/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-cims/pom.xml b/bmc-cims/pom.xml index a90e13a363d..243cd25f7f5 100644 --- a/bmc-cims/pom.xml +++ b/bmc-cims/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-cims @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/Incident.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/Incident.java index 7c4c5ab0563..18ddeaec0db 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/Incident.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/Incident.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/IncidentAsync.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/IncidentAsync.java index 2ee07d3e542..fa9a473e5ed 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/IncidentAsync.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/IncidentAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/IncidentAsyncClient.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/IncidentAsyncClient.java index 64e6af9e676..5cb0310cc97 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/IncidentAsyncClient.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/IncidentAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/IncidentClient.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/IncidentClient.java index 1288b037e61..8060b15d8ad 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/IncidentClient.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/IncidentClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/IncidentPaginators.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/IncidentPaginators.java index f098212ad3d..3dbde41b75e 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/IncidentPaginators.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/IncidentPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/AccountItem.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/AccountItem.java index a065f0d1ac2..0d3b3c4d702 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/AccountItem.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/AccountItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ActivityItem.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ActivityItem.java index 1f2f9e62fe3..e64a81eaa48 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ActivityItem.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ActivityItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Category.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Category.java index f8b4b42b00a..ad3a89c6d94 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Category.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Category.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Classifier.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Classifier.java index 39df31b9d2a..9d7fa631955 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Classifier.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Classifier.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CmosUserGroupInfo.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CmosUserGroupInfo.java index 696c94d710f..0f77e2bfe4c 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CmosUserGroupInfo.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CmosUserGroupInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Contact.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Contact.java index 6658ee41d37..63462809bdd 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Contact.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Contact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ContactList.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ContactList.java index 91082c6a78a..cfd59509834 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ContactList.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ContactList.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ContextualData.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ContextualData.java index 626011aef56..84daec6a07f 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ContextualData.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ContextualData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateAccountItemDetails.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateAccountItemDetails.java index 682633c00e2..ebec29d5e1d 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateAccountItemDetails.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateAccountItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateCategoryDetails.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateCategoryDetails.java index 341ec9a4a4d..c5afac8600a 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateCategoryDetails.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateCategoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateIncident.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateIncident.java index 8c3e7441233..6925b6698b5 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateIncident.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateIncident.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateIssueTypeDetails.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateIssueTypeDetails.java index 28faccf2503..bbebec3254a 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateIssueTypeDetails.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateIssueTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateItemDetails.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateItemDetails.java index 6ae8a78e771..1e64ba0071f 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateItemDetails.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateLimitItemDetails.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateLimitItemDetails.java index f1608d48c9a..1f86c1f91c9 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateLimitItemDetails.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateLimitItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateResourceDetails.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateResourceDetails.java index 9c2d6a423fa..6594b74a27d 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateResourceDetails.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateResourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateSubCategoryDetails.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateSubCategoryDetails.java index 18356c088fd..2fe9a13df71 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateSubCategoryDetails.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateSubCategoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateTechSupportItemDetails.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateTechSupportItemDetails.java index 84bd34bfda4..38dc656c244 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateTechSupportItemDetails.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateTechSupportItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateTicketDetails.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateTicketDetails.java index f882357298e..39b97eea76a 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateTicketDetails.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateTicketDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateUserDetails.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateUserDetails.java index 95ea9e6c20c..fbe8fb2ce0a 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateUserDetails.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/CreateUserDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ErrorCode.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ErrorCode.java index c7585a0bb94..86273538ddc 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ErrorCode.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ErrorCode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Incident.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Incident.java index 309e7ce3689..98dffe976ab 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Incident.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Incident.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/IncidentResourceType.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/IncidentResourceType.java index c80897347f8..3a270e358a6 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/IncidentResourceType.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/IncidentResourceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/IncidentSummary.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/IncidentSummary.java index 2de2f0fe6a5..ac39feb3811 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/IncidentSummary.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/IncidentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/IncidentType.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/IncidentType.java index cd075785eae..4e70df01a61 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/IncidentType.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/IncidentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/IssueType.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/IssueType.java index 0ab000e7b88..137c37a5140 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/IssueType.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/IssueType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Item.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Item.java index c61edd249c5..051734616e0 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Item.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Item.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/LifecycleDetails.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/LifecycleDetails.java index 105161ac86c..0ad8bf841b5 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/LifecycleDetails.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/LifecycleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/LifecycleState.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/LifecycleState.java index 332bb72959a..f295b857d69 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/LifecycleState.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/LifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/LimitItem.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/LimitItem.java index 0634b46590b..5c0932fa43e 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/LimitItem.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/LimitItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ProblemType.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ProblemType.java index f430d11503f..727cb20cb3c 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ProblemType.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ProblemType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Resource.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Resource.java index 84f8addedda..3f422956c41 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Resource.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Resource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Scope.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Scope.java index bfdfb1fe7b9..2bda8f715a8 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Scope.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Scope.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ServiceCategory.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ServiceCategory.java index 56af57fbd93..ebd123a0dba 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ServiceCategory.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ServiceCategory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Services.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Services.java index 11abed6b4dd..1e910cc5699 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Services.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Services.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/SortBy.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/SortBy.java index 2b275520f14..f0b2dfc3783 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/SortBy.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/SortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/SortOrder.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/SortOrder.java index 91d7bcd553c..88022934ad0 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/SortOrder.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Status.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Status.java index ea384c3349b..a151e6ad911 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Status.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Status.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/SubCategories.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/SubCategories.java index 4023f97b3ef..d2cd627b0f7 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/SubCategories.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/SubCategories.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/SubCategory.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/SubCategory.java index de6b3f2b129..c01790a2e1f 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/SubCategory.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/SubCategory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/SubComponents.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/SubComponents.java index b838d401e6f..e1172ec3d5f 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/SubComponents.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/SubComponents.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/TechSupportItem.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/TechSupportItem.java index afb44e2a93b..aa8ca8eeb5a 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/TechSupportItem.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/TechSupportItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/TenancyInformation.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/TenancyInformation.java index 2d22cf687f5..44bf87d7278 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/TenancyInformation.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/TenancyInformation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Ticket.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Ticket.java index d2396ff9c20..e6bcafb89af 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Ticket.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Ticket.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/TimeZone.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/TimeZone.java index f96af66742c..4336df801fb 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/TimeZone.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/TimeZone.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Unit.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Unit.java index 3fb139c59a4..57f75e6f200 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Unit.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/Unit.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateActivityItemDetails.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateActivityItemDetails.java index 6451c6838ff..9492d2cd74c 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateActivityItemDetails.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateActivityItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateContactItemDetails.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateContactItemDetails.java index 842c93beeff..157f0402030 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateContactItemDetails.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateContactItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateIncident.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateIncident.java index f4b9109f564..fddc31ea9be 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateIncident.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateIncident.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateItemDetails.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateItemDetails.java index ae5a774e7ab..7ef59b3dec8 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateItemDetails.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateResourceDetails.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateResourceDetails.java index 01e3c587af5..ff7dd4f03ac 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateResourceDetails.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateResourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateTicketDetails.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateTicketDetails.java index 7d3e35f8614..b40b944ae2d 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateTicketDetails.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/UpdateTicketDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/User.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/User.java index 904879436f1..b8f814ed5a5 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/User.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/User.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ValidationResponse.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ValidationResponse.java index 5c6895ce1c7..f0bf7c6ba7c 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ValidationResponse.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/model/ValidationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.model; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/CreateIncidentRequest.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/CreateIncidentRequest.java index 729dc752fd9..8f8562d824c 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/CreateIncidentRequest.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/CreateIncidentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.requests; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/GetIncidentRequest.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/GetIncidentRequest.java index 3f96a84b1fb..4f64ebcbe6c 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/GetIncidentRequest.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/GetIncidentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.requests; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/ListIncidentResourceTypesRequest.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/ListIncidentResourceTypesRequest.java index c3e10ccef57..9d2b15179b9 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/ListIncidentResourceTypesRequest.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/ListIncidentResourceTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.requests; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/ListIncidentsRequest.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/ListIncidentsRequest.java index b3af42ca54b..26dc83421c0 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/ListIncidentsRequest.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/ListIncidentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.requests; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/PutAttachmentRequest.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/PutAttachmentRequest.java index ce6f05346d0..2ecd3f454f2 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/PutAttachmentRequest.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/PutAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.requests; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/UpdateIncidentRequest.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/UpdateIncidentRequest.java index 0bf61b1227f..473284b5165 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/UpdateIncidentRequest.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/UpdateIncidentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.requests; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/ValidateUserRequest.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/ValidateUserRequest.java index 7f5b297c3a6..79ba21dbd51 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/ValidateUserRequest.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/requests/ValidateUserRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.requests; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/CreateIncidentResponse.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/CreateIncidentResponse.java index 4637b09216a..4d2dbc15933 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/CreateIncidentResponse.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/CreateIncidentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.responses; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/GetIncidentResponse.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/GetIncidentResponse.java index 592cec35a14..2ad74cb62fd 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/GetIncidentResponse.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/GetIncidentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.responses; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/ListIncidentResourceTypesResponse.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/ListIncidentResourceTypesResponse.java index 067c58281c0..e8d4cbbd11c 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/ListIncidentResourceTypesResponse.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/ListIncidentResourceTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.responses; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/ListIncidentsResponse.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/ListIncidentsResponse.java index ebbe2d3d2a8..ea3a83f630e 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/ListIncidentsResponse.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/ListIncidentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.responses; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/PutAttachmentResponse.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/PutAttachmentResponse.java index bf0c5c8646a..cfaa45e8181 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/PutAttachmentResponse.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/PutAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.responses; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/UpdateIncidentResponse.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/UpdateIncidentResponse.java index 96fd9ffab60..ca1be70f66d 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/UpdateIncidentResponse.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/UpdateIncidentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.responses; diff --git a/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/ValidateUserResponse.java b/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/ValidateUserResponse.java index 9366fdb2490..9bad385f993 100644 --- a/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/ValidateUserResponse.java +++ b/bmc-cims/src/main/java/com/oracle/bmc/cims/responses/ValidateUserResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cims.responses; diff --git a/bmc-cims/src/main/resources/com/oracle/bmc/cims/client.properties b/bmc-cims/src/main/resources/com/oracle/bmc/cims/client.properties index 31fc5f208d7..2f1181bf156 100644 --- a/bmc-cims/src/main/resources/com/oracle/bmc/cims/client.properties +++ b/bmc-cims/src/main/resources/com/oracle/bmc/cims/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-circuitbreaker/pom.xml b/bmc-circuitbreaker/pom.xml index 060ea7c1e14..f66fec3950b 100644 --- a/bmc-circuitbreaker/pom.xml +++ b/bmc-circuitbreaker/pom.xml @@ -5,7 +5,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-circuitbreaker diff --git a/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/CallNotAllowedException.java b/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/CallNotAllowedException.java index 8c1c5d574a2..ddb680de880 100644 --- a/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/CallNotAllowedException.java +++ b/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/CallNotAllowedException.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.circuitbreaker; diff --git a/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/CircuitBreakerConfiguration.java b/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/CircuitBreakerConfiguration.java index c69e59899c6..46ee6b9d159 100644 --- a/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/CircuitBreakerConfiguration.java +++ b/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/CircuitBreakerConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.circuitbreaker; diff --git a/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/CircuitBreakerFactory.java b/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/CircuitBreakerFactory.java index fd03e3bd5e1..0519c4fb698 100644 --- a/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/CircuitBreakerFactory.java +++ b/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/CircuitBreakerFactory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.circuitbreaker; diff --git a/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/CircuitBreakerState.java b/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/CircuitBreakerState.java index ed8cde42271..bf3e192af33 100644 --- a/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/CircuitBreakerState.java +++ b/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/CircuitBreakerState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.circuitbreaker; diff --git a/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/NoCircuitBreakerConfiguration.java b/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/NoCircuitBreakerConfiguration.java index fc3a62b6cd6..c05a893334d 100644 --- a/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/NoCircuitBreakerConfiguration.java +++ b/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/NoCircuitBreakerConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.circuitbreaker; diff --git a/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/OciCircuitBreaker.java b/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/OciCircuitBreaker.java index b3630830fc7..04b236b1772 100644 --- a/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/OciCircuitBreaker.java +++ b/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/OciCircuitBreaker.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.circuitbreaker; diff --git a/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/internal/resilience4j/OciCircuitBreakerImpl.java b/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/internal/resilience4j/OciCircuitBreakerImpl.java index 6a4b7495944..aaafa65e12e 100644 --- a/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/internal/resilience4j/OciCircuitBreakerImpl.java +++ b/bmc-circuitbreaker/src/main/java/com/oracle/bmc/circuitbreaker/internal/resilience4j/OciCircuitBreakerImpl.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.circuitbreaker.internal.resilience4j; diff --git a/bmc-cloudbridge/pom.xml b/bmc-cloudbridge/pom.xml index dc15a99d3b2..92766bb8575 100644 --- a/bmc-cloudbridge/pom.xml +++ b/bmc-cloudbridge/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-cloudbridge @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/Common.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/Common.java index 38cb96248e8..12e1504b11a 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/Common.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/Common.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/CommonAsync.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/CommonAsync.java index f5086230f93..c68025901c7 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/CommonAsync.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/CommonAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/CommonAsyncClient.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/CommonAsyncClient.java index 717408c20f4..441dbe065c6 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/CommonAsyncClient.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/CommonAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/CommonClient.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/CommonClient.java index 23f7e8de1c6..638452d628d 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/CommonClient.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/CommonClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/CommonPaginators.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/CommonPaginators.java index 9f56f01f0f8..77854768262 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/CommonPaginators.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/CommonPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/CommonWaiters.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/CommonWaiters.java index 518a224f9e9..ab9a5c79584 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/CommonWaiters.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/CommonWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/Discovery.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/Discovery.java index 6c75527b70f..ee074bf6aac 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/Discovery.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/Discovery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/DiscoveryAsync.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/DiscoveryAsync.java index 6059da9e4fa..4605439ec42 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/DiscoveryAsync.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/DiscoveryAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/DiscoveryAsyncClient.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/DiscoveryAsyncClient.java index 9a27948b7f9..89adf447cb7 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/DiscoveryAsyncClient.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/DiscoveryAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/DiscoveryClient.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/DiscoveryClient.java index a93e6bef050..64acdfa79aa 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/DiscoveryClient.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/DiscoveryClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/DiscoveryPaginators.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/DiscoveryPaginators.java index 607a9ed8db6..41ef8c359a2 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/DiscoveryPaginators.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/DiscoveryPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/DiscoveryWaiters.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/DiscoveryWaiters.java index ef98471b2ce..54e2df198e1 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/DiscoveryWaiters.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/DiscoveryWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/Inventory.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/Inventory.java index 3c20fae6fba..a4b62b726ff 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/Inventory.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/Inventory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/InventoryAsync.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/InventoryAsync.java index d925a31e34d..59b4677a323 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/InventoryAsync.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/InventoryAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/InventoryAsyncClient.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/InventoryAsyncClient.java index 8529f83f4b1..ddf5938d20c 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/InventoryAsyncClient.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/InventoryAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/InventoryClient.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/InventoryClient.java index 69b1b8fe05d..42767397ba8 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/InventoryClient.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/InventoryClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/InventoryPaginators.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/InventoryPaginators.java index 3ad0f77707c..76304ab9147 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/InventoryPaginators.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/InventoryPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/InventoryWaiters.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/InventoryWaiters.java index 32ccafd8070..42b51472f6c 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/InventoryWaiters.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/InventoryWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvc.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvc.java index 01af865540a..9a2d50a8ebf 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvc.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvcAsync.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvcAsync.java index 35e70aabbec..0064861bd0d 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvcAsync.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvcAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvcAsyncClient.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvcAsyncClient.java index 4a6de0fe570..0b6d67e73c3 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvcAsyncClient.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvcAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvcClient.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvcClient.java index 4c49ba6c907..3167319f5d6 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvcClient.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvcClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvcPaginators.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvcPaginators.java index 74f284cd5cc..8d999a14296 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvcPaginators.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvcPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvcWaiters.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvcWaiters.java index bf01bd88680..e5180c7fe22 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvcWaiters.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/OcbAgentSvcWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ActionType.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ActionType.java index b3f9430871e..582ed83d6b9 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ActionType.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AddAgentDependencyDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AddAgentDependencyDetails.java index 97162296f4f..909a10fbb52 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AddAgentDependencyDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AddAgentDependencyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Agent.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Agent.java index 74f574ac270..a9f59d1ca92 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Agent.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Agent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AgentCollection.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AgentCollection.java index f8e41687f83..5814de3c912 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AgentCollection.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AgentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AgentDependency.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AgentDependency.java index d4d681abc7a..cd01c8c3fca 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AgentDependency.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AgentDependency.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AgentDependencyCollection.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AgentDependencyCollection.java index f34a795ce88..02c1fc3d7a6 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AgentDependencyCollection.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AgentDependencyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AgentDependencySummary.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AgentDependencySummary.java index cd12c647c7d..7d34b498947 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AgentDependencySummary.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AgentDependencySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AgentSummary.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AgentSummary.java index 4432b4038a5..a7c5a4f530c 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AgentSummary.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AgentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ApplianceImageCollection.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ApplianceImageCollection.java index 02824a6714f..92d3dbde2b8 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ApplianceImageCollection.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ApplianceImageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ApplianceImageSummary.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ApplianceImageSummary.java index c130df960ec..565a3d702b5 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ApplianceImageSummary.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ApplianceImageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Asset.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Asset.java index dadd197bc59..eb11436da34 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Asset.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Asset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetAggregation.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetAggregation.java index 25e49fba55b..a8fc887d76f 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetAggregation.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetAggregationCollection.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetAggregationCollection.java index 308a8582eae..0e5d889cacc 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetAggregationCollection.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetAggregationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetCollection.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetCollection.java index ed05d46a830..1eafb93fb58 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetCollection.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSource.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSource.java index ec51496562d..5b51a11b28f 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSource.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceCollection.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceCollection.java index 7137e55755c..2d53dc08115 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceCollection.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceConnection.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceConnection.java index 5d95df8c9fc..53b6f2c08c3 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceConnection.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceConnectionCollection.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceConnectionCollection.java index e6c733bb27f..56569598b2d 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceConnectionCollection.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceConnectionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceConnectionLifecycleState.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceConnectionLifecycleState.java index c0faa6a24e8..78f8dcfb14a 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceConnectionLifecycleState.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceConnectionLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceConnectionType.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceConnectionType.java index f5179c089d6..e551fa6993f 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceConnectionType.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceConnectionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceCredentials.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceCredentials.java index 60ef6d5804b..224d508b930 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceCredentials.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceCredentialsType.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceCredentialsType.java index 5e0359d427c..e48feea2296 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceCredentialsType.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceCredentialsType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceLifecycleState.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceLifecycleState.java index 5568714c494..99d0d3043c1 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceLifecycleState.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceSummary.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceSummary.java index 87788e24353..4cc4ac820d8 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceSummary.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceType.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceType.java index 823b19cfa38..f4969407fc9 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceType.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSourceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSummary.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSummary.java index afd072fef75..acd53136b4f 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSummary.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetType.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetType.java index 583934d3955..733e16188da 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetType.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AssetType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsAssetSource.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsAssetSource.java index 183a81282f9..847de6337f4 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsAssetSource.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsAssetSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsAssetSourceSummary.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsAssetSourceSummary.java index 3b6499c8f6d..721f96cd6e4 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsAssetSourceSummary.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsAssetSourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEbsAsset.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEbsAsset.java index 60638d695e6..17011e3807f 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEbsAsset.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEbsAsset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEbsAssetDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEbsAssetDetails.java index b4aa8a9a404..1a3abc792cd 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEbsAssetDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEbsAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEbsProperties.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEbsProperties.java index da7237aa1e3..9a6318bd9ec 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEbsProperties.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEbsProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEc2Asset.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEc2Asset.java index 23c7a96b713..ec90a41ee4f 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEc2Asset.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEc2Asset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEc2AssetDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEc2AssetDetails.java index 34d4ea6a0ef..f0d2dfc2432 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEc2AssetDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEc2AssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEc2Properties.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEc2Properties.java index 42b15430d9d..80ccf4f317a 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEc2Properties.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/AwsEc2Properties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeAgentCompartmentDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeAgentCompartmentDetails.java index 977fe50d8ae..a5e590b1d45 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeAgentCompartmentDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeAgentCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeAgentDependencyCompartmentDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeAgentDependencyCompartmentDetails.java index 4ec30433f5a..84f787fda28 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeAgentDependencyCompartmentDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeAgentDependencyCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeAssetCompartmentDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeAssetCompartmentDetails.java index 8f01ceeb4f7..99743874a36 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeAssetCompartmentDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeAssetCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeAssetSourceCompartmentDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeAssetSourceCompartmentDetails.java index 692713f6fe1..0f0e9d10041 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeAssetSourceCompartmentDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeAssetSourceCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeAssetTagsDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeAssetTagsDetails.java index c70bf85aa6a..c953c0de855 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeAssetTagsDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeAssetTagsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeDiscoveryScheduleCompartmentDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeDiscoveryScheduleCompartmentDetails.java index 06cb918c7ff..a6e735c15dc 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeDiscoveryScheduleCompartmentDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeDiscoveryScheduleCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeEnvironmentCompartmentDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeEnvironmentCompartmentDetails.java index b6a31ac55a5..a02a25defdc 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeEnvironmentCompartmentDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ChangeEnvironmentCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ComputeProperties.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ComputeProperties.java index b1f03bfce50..679ff09a4b5 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ComputeProperties.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ComputeProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAgentDependencyDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAgentDependencyDetails.java index 6ef613beb7a..cb4ad98f81d 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAgentDependencyDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAgentDependencyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAgentDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAgentDetails.java index 34170b84486..33d4f826401 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAgentDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAgentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAssetDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAssetDetails.java index 81a20adcfe3..0b41ba2fd26 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAssetDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAssetSourceDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAssetSourceDetails.java index de8a85b41fd..8d3b9cbf8fc 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAssetSourceDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAssetSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAwsAssetSourceDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAwsAssetSourceDetails.java index 511d49759c9..aa21eafec94 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAwsAssetSourceDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAwsAssetSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAwsEbsAssetDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAwsEbsAssetDetails.java index 0514a46ae4f..2b2430f3d06 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAwsEbsAssetDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAwsEbsAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAwsEc2AssetDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAwsEc2AssetDetails.java index dfdb701cc9b..a8be8833b21 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAwsEc2AssetDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateAwsEc2AssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateDiscoveryScheduleDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateDiscoveryScheduleDetails.java index 287abe2b7d4..547cccd7798 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateDiscoveryScheduleDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateDiscoveryScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateEnvironmentDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateEnvironmentDetails.java index 54b95ac2849..f9e18d876ba 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateEnvironmentDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateEnvironmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateInventoryDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateInventoryDetails.java index 76ec5ead4d6..d335152f5b7 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateInventoryDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateInventoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateVmWareAssetSourceDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateVmWareAssetSourceDetails.java index c9be7e4dbdb..79955d294c5 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateVmWareAssetSourceDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateVmWareAssetSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateVmwareVmAssetDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateVmwareVmAssetDetails.java index 226c00da359..8462b28a96f 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateVmwareVmAssetDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CreateVmwareVmAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CustomerTag.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CustomerTag.java index 7ddc3618a77..d581243b5a4 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CustomerTag.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/CustomerTag.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/DiscoverySchedule.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/DiscoverySchedule.java index c48a2720f1c..72d504ddc41 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/DiscoverySchedule.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/DiscoverySchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/DiscoveryScheduleCollection.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/DiscoveryScheduleCollection.java index 47b1acf4ace..7b8d2bc042e 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/DiscoveryScheduleCollection.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/DiscoveryScheduleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/DiscoveryScheduleLifecycleState.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/DiscoveryScheduleLifecycleState.java index 72903bfe91c..63519c8827f 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/DiscoveryScheduleLifecycleState.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/DiscoveryScheduleLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/DiscoveryScheduleSummary.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/DiscoveryScheduleSummary.java index 63bb8f4965b..c5595c35273 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/DiscoveryScheduleSummary.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/DiscoveryScheduleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Disk.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Disk.java index 4ea309a1acc..b478f5fdaef 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Disk.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Disk.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Environment.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Environment.java index 441df578c3d..20102f71acd 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Environment.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Environment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/EnvironmentCollection.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/EnvironmentCollection.java index 395b2397db3..2cd71f64d57 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/EnvironmentCollection.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/EnvironmentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/EnvironmentSummary.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/EnvironmentSummary.java index 49de9920cf9..46646b9ce58 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/EnvironmentSummary.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/EnvironmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/GpuDevice.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/GpuDevice.java index dcbfe02da96..a73f02b1403 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/GpuDevice.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/GpuDevice.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/GroupIdentifier.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/GroupIdentifier.java index 990dda69e55..8ef306420a3 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/GroupIdentifier.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/GroupIdentifier.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/HistoricalMetric.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/HistoricalMetric.java index b45e33592fb..5ae8dc09d9e 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/HistoricalMetric.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/HistoricalMetric.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/HistoricalMetricCollection.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/HistoricalMetricCollection.java index ef04cc5fec8..68dbeb263e8 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/HistoricalMetricCollection.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/HistoricalMetricCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/HistoricalMetricSummary.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/HistoricalMetricSummary.java index 0a1fb4f7bf5..86040be7ef6 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/HistoricalMetricSummary.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/HistoricalMetricSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ImportInventoryDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ImportInventoryDetails.java index 655ab60b156..71572a82d8e 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ImportInventoryDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ImportInventoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ImportInventoryViaAssetsDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ImportInventoryViaAssetsDetails.java index f89e30813de..e1d95ef9855 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ImportInventoryViaAssetsDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ImportInventoryViaAssetsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InstanceNetworkInterface.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InstanceNetworkInterface.java index effc2519459..90ff08219d0 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InstanceNetworkInterface.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InstanceNetworkInterface.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InstanceNetworkInterfaceAssociation.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InstanceNetworkInterfaceAssociation.java index abe997c4a01..e2d06de73e8 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InstanceNetworkInterfaceAssociation.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InstanceNetworkInterfaceAssociation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InstanceNetworkInterfaceAttachment.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InstanceNetworkInterfaceAttachment.java index ff4984bd89f..1ec2f5a7d20 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InstanceNetworkInterfaceAttachment.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InstanceNetworkInterfaceAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InstancePrivateIpAddress.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InstancePrivateIpAddress.java index 914faae7caa..db58d317e81 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InstancePrivateIpAddress.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InstancePrivateIpAddress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InstanceState.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InstanceState.java index c0159511761..217548f5fec 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InstanceState.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InstanceState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Inventory.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Inventory.java index c1232aa07ba..9a2b123a305 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Inventory.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Inventory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InventoryCollection.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InventoryCollection.java index 2188effb846..410ae554955 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InventoryCollection.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InventoryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InventorySummary.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InventorySummary.java index 9248d753bfd..e2d173f3815 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InventorySummary.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/InventorySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/MonthlyCostSummary.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/MonthlyCostSummary.java index 4fc9029fa64..a5f71cc85ac 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/MonthlyCostSummary.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/MonthlyCostSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Nic.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Nic.java index ba520d5b862..56ea44625e4 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Nic.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Nic.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Nvdimm.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Nvdimm.java index 142107c436a..7799dede73e 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Nvdimm.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Nvdimm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/NvdimmController.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/NvdimmController.java index a438909587e..3721428f5f3 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/NvdimmController.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/NvdimmController.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/OperationStatus.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/OperationStatus.java index e1016a4188f..faeaaa46450 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/OperationStatus.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/OperationType.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/OperationType.java index 3f63fe02870..bc476f0c894 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/OperationType.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Placement.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Placement.java index ea340aed07f..6acdae2ad87 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Placement.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Placement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Plugin.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Plugin.java index 4fbc966cf36..41e670f063e 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Plugin.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Plugin.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/PluginSummary.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/PluginSummary.java index 6dca8db94b8..51c3918db54 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/PluginSummary.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/PluginSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/RemoveAgentDependencyDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/RemoveAgentDependencyDetails.java index 7e284cf7e5e..95bd2ffe82e 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/RemoveAgentDependencyDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/RemoveAgentDependencyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ScsiController.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ScsiController.java index 79d7455571f..22ab442524c 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ScsiController.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/ScsiController.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/SortOrders.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/SortOrders.java index c9ac9c36298..4d81c75ff08 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/SortOrders.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/SortOrders.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/SubmitHistoricalMetricsDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/SubmitHistoricalMetricsDetails.java index 0ef2b6525ff..60a2f3e454b 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/SubmitHistoricalMetricsDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/SubmitHistoricalMetricsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/SupportedCloudRegionCollection.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/SupportedCloudRegionCollection.java index f13fa9e81f4..9c718e61084 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/SupportedCloudRegionCollection.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/SupportedCloudRegionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/SupportedCloudRegionLifecycleState.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/SupportedCloudRegionLifecycleState.java index 43d673b0ef0..2f6bee67efb 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/SupportedCloudRegionLifecycleState.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/SupportedCloudRegionLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/SupportedCloudRegionSummary.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/SupportedCloudRegionSummary.java index 454d2c189d1..76b2e69d560 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/SupportedCloudRegionSummary.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/SupportedCloudRegionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Tag.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Tag.java index f4b986893e2..9afd2109282 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Tag.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/Tag.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAgentDependencyDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAgentDependencyDetails.java index b80e5bb992f..be9ad624dc3 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAgentDependencyDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAgentDependencyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAgentDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAgentDetails.java index 3e753f858da..823887b965d 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAgentDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAgentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAssetDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAssetDetails.java index d673f620fd4..a18644c8e5c 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAssetDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAssetSourceDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAssetSourceDetails.java index c863248d4c2..4ab32d3204a 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAssetSourceDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAssetSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAwsAssetSourceDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAwsAssetSourceDetails.java index ffb893b5a13..8fdc850cfd8 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAwsAssetSourceDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAwsAssetSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAwsEbsAssetDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAwsEbsAssetDetails.java index 6eedf626239..0ce47c89d4f 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAwsEbsAssetDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAwsEbsAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAwsEc2AssetDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAwsEc2AssetDetails.java index 2a55f4d7370..7783990eea4 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAwsEc2AssetDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateAwsEc2AssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateDiscoveryScheduleDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateDiscoveryScheduleDetails.java index 34b40e42f7a..715db7f2ddf 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateDiscoveryScheduleDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateDiscoveryScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateEnvironmentDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateEnvironmentDetails.java index 37dd00c0aab..cf8fc0aa0e7 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateEnvironmentDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateEnvironmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateInventoryDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateInventoryDetails.java index 876184c67d3..25997b2c3c6 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateInventoryDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateInventoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdatePluginDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdatePluginDetails.java index 2720e911828..69e3c9cdbf5 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdatePluginDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdatePluginDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateVmAssetDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateVmAssetDetails.java index d8c309bc876..7f574c5ff28 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateVmAssetDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateVmAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateVmWareAssetSourceDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateVmWareAssetSourceDetails.java index bf3203c0436..b459b21ac71 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateVmWareAssetSourceDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateVmWareAssetSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateVmwareVmAssetDetails.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateVmwareVmAssetDetails.java index 829d0fbea1a..fa727cefe61 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateVmwareVmAssetDetails.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/UpdateVmwareVmAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmAsset.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmAsset.java index 3fd48e1ee5a..eaa5c834e59 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmAsset.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmAsset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmProperties.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmProperties.java index f544cf4d6ec..0088ffa5538 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmProperties.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmWareAssetSource.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmWareAssetSource.java index 288809a9dfc..f67e129ef7f 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmWareAssetSource.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmWareAssetSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmWareAssetSourceSummary.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmWareAssetSourceSummary.java index a05384699e7..5e1fd22cb09 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmWareAssetSourceSummary.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmWareAssetSourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmwareVCenterProperties.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmwareVCenterProperties.java index 255bc4bef8b..161225a22f4 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmwareVCenterProperties.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmwareVCenterProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmwareVmAsset.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmwareVmAsset.java index a9fad4bb626..4bca2b704ed 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmwareVmAsset.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmwareVmAsset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmwareVmProperties.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmwareVmProperties.java index 33da6b2c2e3..354b0657247 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmwareVmProperties.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VmwareVmProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VolumeAttachment.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VolumeAttachment.java index fce60ac23e9..1c0488d8ef4 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VolumeAttachment.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/VolumeAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequest.java index 2ea67d04ad4..5d8cae0248f 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestError.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestError.java index be2a759caca..b3299822a7e 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestError.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestErrorCollection.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestErrorCollection.java index 5ae9310b22f..eaf2bdfe23f 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestErrorCollection.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestLogEntry.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestLogEntry.java index 05d6259528d..c1704ca3fec 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestLogEntry.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestLogEntryCollection.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestLogEntryCollection.java index 4c6bcb45078..8bab8d32ce1 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestLogEntryCollection.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestResource.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestResource.java index 867fbe35826..bdae8c5ad09 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestResource.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestResourceMetadataKey.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestResourceMetadataKey.java index bec5972347a..17156d2b8b5 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestResourceMetadataKey.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestSummary.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestSummary.java index 4deb7d5f02f..44f64d434de 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestSummary.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestSummaryCollection.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestSummaryCollection.java index 062d646c1e4..66bdeea9a89 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestSummaryCollection.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.model; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/AddAgentDependencyRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/AddAgentDependencyRequest.java index 7a1fb371ef6..99335deecf3 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/AddAgentDependencyRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/AddAgentDependencyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/AnalyzeAssetsRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/AnalyzeAssetsRequest.java index f2f157c324e..49b15b32c7a 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/AnalyzeAssetsRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/AnalyzeAssetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CancelWorkRequestRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CancelWorkRequestRequest.java index 03bdf3987c5..99538a2c9fe 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CancelWorkRequestRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeAgentCompartmentRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeAgentCompartmentRequest.java index 48f802a698a..51938dbd93c 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeAgentCompartmentRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeAgentCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeAgentDependencyCompartmentRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeAgentDependencyCompartmentRequest.java index 49013a5dc42..4d034cce339 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeAgentDependencyCompartmentRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeAgentDependencyCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeAssetCompartmentRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeAssetCompartmentRequest.java index a662efe2cef..6a596aa77c7 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeAssetCompartmentRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeAssetCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeAssetSourceCompartmentRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeAssetSourceCompartmentRequest.java index 954025c01e4..d69fb134027 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeAssetSourceCompartmentRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeAssetSourceCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeAssetTagsRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeAssetTagsRequest.java index 7a6739f4f12..c3e3b4a3abd 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeAssetTagsRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeAssetTagsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeDiscoveryScheduleCompartmentRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeDiscoveryScheduleCompartmentRequest.java index 4a1fac0e733..d1904bbb76e 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeDiscoveryScheduleCompartmentRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeDiscoveryScheduleCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeEnvironmentCompartmentRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeEnvironmentCompartmentRequest.java index cdac1f118fb..1a64bd26227 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeEnvironmentCompartmentRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ChangeEnvironmentCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateAgentDependencyRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateAgentDependencyRequest.java index 321e7a029ac..a835f43464e 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateAgentDependencyRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateAgentDependencyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateAgentRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateAgentRequest.java index c1fc581b240..58ef0534e93 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateAgentRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateAgentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateAssetRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateAssetRequest.java index c459d9d2218..2b890c3f511 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateAssetRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateAssetSourceRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateAssetSourceRequest.java index a1aefb13369..d4ddfc833f7 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateAssetSourceRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateAssetSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateDiscoveryScheduleRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateDiscoveryScheduleRequest.java index 970ab632f6a..14cb2b9a709 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateDiscoveryScheduleRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateDiscoveryScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateEnvironmentRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateEnvironmentRequest.java index 540e2ce026d..2bdc29a810f 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateEnvironmentRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateEnvironmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateInventoryRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateInventoryRequest.java index 27debfa596c..79e2868461d 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateInventoryRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/CreateInventoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteAgentDependencyRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteAgentDependencyRequest.java index ddf1abc57fa..f44cbff5887 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteAgentDependencyRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteAgentDependencyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteAgentRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteAgentRequest.java index aa00e9b1bb0..b77cd927866 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteAgentRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteAgentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteAssetRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteAssetRequest.java index 9e7be9535f6..c0f1c0f31fb 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteAssetRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteAssetSourceRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteAssetSourceRequest.java index ad22867fb1c..98e252e2882 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteAssetSourceRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteAssetSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteDiscoveryScheduleRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteDiscoveryScheduleRequest.java index 4a18219ef5d..eb5e275b166 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteDiscoveryScheduleRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteDiscoveryScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteEnvironmentRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteEnvironmentRequest.java index a20e7fe8804..5744875fb5a 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteEnvironmentRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteEnvironmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteInventoryRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteInventoryRequest.java index 7922a35e076..c3c35d95875 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteInventoryRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/DeleteInventoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetAgentDependencyRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetAgentDependencyRequest.java index 81497d2e986..96b3748ba6f 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetAgentDependencyRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetAgentDependencyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetAgentRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetAgentRequest.java index 960d7fe96f3..150f6e849bd 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetAgentRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetAgentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetAssetRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetAssetRequest.java index 9fb1582c3fe..1391549cf01 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetAssetRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetAssetSourceRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetAssetSourceRequest.java index 0bcce1750e4..ea775f7e748 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetAssetSourceRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetAssetSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetDiscoveryScheduleRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetDiscoveryScheduleRequest.java index 09ff559f6c2..273f17be5ae 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetDiscoveryScheduleRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetDiscoveryScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetEnvironmentRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetEnvironmentRequest.java index b202e720a2d..a03105b2268 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetEnvironmentRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetEnvironmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetInventoryRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetInventoryRequest.java index 0a19f4d4b33..97809bcdc9d 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetInventoryRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetInventoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetPluginRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetPluginRequest.java index 60c6b5c4349..21a68ce050a 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetPluginRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetPluginRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetWorkRequestRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetWorkRequestRequest.java index 0a12e88a516..6a6376b0242 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetWorkRequestRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ImportInventoryRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ImportInventoryRequest.java index 651c09c453b..58ce87a6279 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ImportInventoryRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ImportInventoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListAgentDependenciesRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListAgentDependenciesRequest.java index afabb30748a..9187a8816ce 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListAgentDependenciesRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListAgentDependenciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListAgentsRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListAgentsRequest.java index ce4dfb87b1b..e721fa08e1d 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListAgentsRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListAgentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListApplianceImagesRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListApplianceImagesRequest.java index fb176a06a25..52800104dbd 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListApplianceImagesRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListApplianceImagesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListAssetSourceConnectionsRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListAssetSourceConnectionsRequest.java index 2f20f9f6c89..7434985d1ea 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListAssetSourceConnectionsRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListAssetSourceConnectionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListAssetSourcesRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListAssetSourcesRequest.java index 467677ccf84..38aecba0bda 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListAssetSourcesRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListAssetSourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListAssetsRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListAssetsRequest.java index 4d62ff26a59..34bf45ef275 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListAssetsRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListAssetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListDiscoverySchedulesRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListDiscoverySchedulesRequest.java index a358e097e4d..ba4e1b2f0e8 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListDiscoverySchedulesRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListDiscoverySchedulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListEnvironmentsRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListEnvironmentsRequest.java index 38e61590dc9..af332ae4a7f 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListEnvironmentsRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListEnvironmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListHistoricalMetricsRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListHistoricalMetricsRequest.java index a66fbe75851..bf4e171055e 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListHistoricalMetricsRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListHistoricalMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListInventoriesRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListInventoriesRequest.java index 41b25f03058..d3cc3cea1cd 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListInventoriesRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListInventoriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListSupportedCloudRegionsRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListSupportedCloudRegionsRequest.java index 8e9c2299d76..213ff692a99 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListSupportedCloudRegionsRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListSupportedCloudRegionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListWorkRequestErrorsRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListWorkRequestErrorsRequest.java index a84fb6694f3..b38551e29ec 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListWorkRequestLogsRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListWorkRequestLogsRequest.java index d86e7330044..5ccd77c2843 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListWorkRequestLogsRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListWorkRequestsRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListWorkRequestsRequest.java index 51baec5ea2c..1e9259ce44b 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListWorkRequestsRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/RefreshAssetSourceRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/RefreshAssetSourceRequest.java index 57a28a4e9dd..283bbc0f5e1 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/RefreshAssetSourceRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/RefreshAssetSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/RemoveAgentDependencyRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/RemoveAgentDependencyRequest.java index bd88d6e071a..fb73f15b0c3 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/RemoveAgentDependencyRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/RemoveAgentDependencyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/SubmitHistoricalMetricsRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/SubmitHistoricalMetricsRequest.java index 4575c93f1f0..3f22c8e9445 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/SubmitHistoricalMetricsRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/SubmitHistoricalMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateAgentDependencyRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateAgentDependencyRequest.java index fe6c37d91a3..7186b684c1a 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateAgentDependencyRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateAgentDependencyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateAgentRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateAgentRequest.java index f2df924c3de..63cba71f10c 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateAgentRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateAgentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateAssetRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateAssetRequest.java index 6ef8d372b45..2ce90658c53 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateAssetRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateAssetSourceRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateAssetSourceRequest.java index e5d4cc002fd..b6d6953dd24 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateAssetSourceRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateAssetSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateDiscoveryScheduleRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateDiscoveryScheduleRequest.java index d500cf36bc4..17091d134cc 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateDiscoveryScheduleRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateDiscoveryScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateEnvironmentRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateEnvironmentRequest.java index 877f44e3318..4c357141a73 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateEnvironmentRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateEnvironmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateInventoryRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateInventoryRequest.java index b5f56b488d8..33da54d2a49 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateInventoryRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdateInventoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdatePluginRequest.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdatePluginRequest.java index 67eefda6734..0688a052f4c 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdatePluginRequest.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/requests/UpdatePluginRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.requests; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/AddAgentDependencyResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/AddAgentDependencyResponse.java index 02b2f3cccf9..25d636ef087 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/AddAgentDependencyResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/AddAgentDependencyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/AnalyzeAssetsResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/AnalyzeAssetsResponse.java index 0bce939c9de..9a72bb614f2 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/AnalyzeAssetsResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/AnalyzeAssetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CancelWorkRequestResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CancelWorkRequestResponse.java index 4b29c40d33b..d1436acca15 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CancelWorkRequestResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeAgentCompartmentResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeAgentCompartmentResponse.java index 3fac5626c63..914603cdfc2 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeAgentCompartmentResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeAgentCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeAgentDependencyCompartmentResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeAgentDependencyCompartmentResponse.java index f2715fa46b2..d604fff05b9 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeAgentDependencyCompartmentResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeAgentDependencyCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeAssetCompartmentResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeAssetCompartmentResponse.java index 95d012db3df..ce059f0aa5d 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeAssetCompartmentResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeAssetCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeAssetSourceCompartmentResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeAssetSourceCompartmentResponse.java index 3619ec125af..65468ac462b 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeAssetSourceCompartmentResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeAssetSourceCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeAssetTagsResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeAssetTagsResponse.java index d96e726b5bf..3b586510aed 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeAssetTagsResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeAssetTagsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeDiscoveryScheduleCompartmentResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeDiscoveryScheduleCompartmentResponse.java index 204372f4e2f..8efa02b9e36 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeDiscoveryScheduleCompartmentResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeDiscoveryScheduleCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeEnvironmentCompartmentResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeEnvironmentCompartmentResponse.java index 468b9c41e7c..c3689136012 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeEnvironmentCompartmentResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ChangeEnvironmentCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateAgentDependencyResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateAgentDependencyResponse.java index 1912eceacc4..3610df24041 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateAgentDependencyResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateAgentDependencyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateAgentResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateAgentResponse.java index ddc18d37357..cebc10a9025 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateAgentResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateAgentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateAssetResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateAssetResponse.java index 4aec44dd429..d98de6532af 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateAssetResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateAssetSourceResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateAssetSourceResponse.java index be57be1c594..7cca0d98280 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateAssetSourceResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateAssetSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateDiscoveryScheduleResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateDiscoveryScheduleResponse.java index f0cd9ac7cee..a55eebef60b 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateDiscoveryScheduleResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateDiscoveryScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateEnvironmentResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateEnvironmentResponse.java index dbd375ef1d0..d869edf9e57 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateEnvironmentResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateEnvironmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateInventoryResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateInventoryResponse.java index eed079118c8..af4d8fc7438 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateInventoryResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/CreateInventoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteAgentDependencyResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteAgentDependencyResponse.java index afc8e303a6f..c5d274a8792 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteAgentDependencyResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteAgentDependencyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteAgentResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteAgentResponse.java index afa2b55a543..55cfe7dd89c 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteAgentResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteAgentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteAssetResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteAssetResponse.java index 6b4f753b63a..27dbef28790 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteAssetResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteAssetSourceResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteAssetSourceResponse.java index d5c6a4ab45e..82476929d59 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteAssetSourceResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteAssetSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteDiscoveryScheduleResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteDiscoveryScheduleResponse.java index 15703660bf4..abddd02c8d8 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteDiscoveryScheduleResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteDiscoveryScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteEnvironmentResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteEnvironmentResponse.java index d6c9a1409bd..fe470d724d9 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteEnvironmentResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteEnvironmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteInventoryResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteInventoryResponse.java index 87abc1204ab..5921b264bae 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteInventoryResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/DeleteInventoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetAgentDependencyResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetAgentDependencyResponse.java index e07f0aa5b2b..8d1f2c54a77 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetAgentDependencyResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetAgentDependencyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetAgentResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetAgentResponse.java index dc365fbc54a..92c083eca19 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetAgentResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetAgentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetAssetResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetAssetResponse.java index 23aab69e0ed..e06b8de320b 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetAssetResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetAssetSourceResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetAssetSourceResponse.java index 8063898d359..0ea27442c95 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetAssetSourceResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetAssetSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetDiscoveryScheduleResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetDiscoveryScheduleResponse.java index dee9df06f1b..07c368370cd 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetDiscoveryScheduleResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetDiscoveryScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetEnvironmentResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetEnvironmentResponse.java index 3ddd3222ae9..65d8b81cf96 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetEnvironmentResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetEnvironmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetInventoryResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetInventoryResponse.java index 4c4b4dba994..afe0b58fb2e 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetInventoryResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetInventoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetPluginResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetPluginResponse.java index 807fb0392d0..6a9f4be8d27 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetPluginResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetPluginResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetWorkRequestResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetWorkRequestResponse.java index 1a575187648..55b03dec72f 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetWorkRequestResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ImportInventoryResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ImportInventoryResponse.java index de217e0047e..19081e34df7 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ImportInventoryResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ImportInventoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListAgentDependenciesResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListAgentDependenciesResponse.java index 61d74bbbc93..c2f72f48f46 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListAgentDependenciesResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListAgentDependenciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListAgentsResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListAgentsResponse.java index 281b421208e..5ae672b4bbb 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListAgentsResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListAgentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListApplianceImagesResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListApplianceImagesResponse.java index ab3a28fdfa7..c594e05281f 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListApplianceImagesResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListApplianceImagesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListAssetSourceConnectionsResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListAssetSourceConnectionsResponse.java index a96cf6a6620..d76a35341c6 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListAssetSourceConnectionsResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListAssetSourceConnectionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListAssetSourcesResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListAssetSourcesResponse.java index dceba3c6aa2..df117c10a1e 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListAssetSourcesResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListAssetSourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListAssetsResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListAssetsResponse.java index b6c8000d662..9830a197b85 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListAssetsResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListAssetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListDiscoverySchedulesResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListDiscoverySchedulesResponse.java index 0c946e5556e..cb669f0af98 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListDiscoverySchedulesResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListDiscoverySchedulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListEnvironmentsResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListEnvironmentsResponse.java index 280aba92f92..9715b9fb4cd 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListEnvironmentsResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListEnvironmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListHistoricalMetricsResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListHistoricalMetricsResponse.java index 9f82affa2e9..3cc9c8473f3 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListHistoricalMetricsResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListHistoricalMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListInventoriesResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListInventoriesResponse.java index 630a40dcc5d..69f56ce6bb7 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListInventoriesResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListInventoriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListSupportedCloudRegionsResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListSupportedCloudRegionsResponse.java index 75f136e524c..75bbfd56807 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListSupportedCloudRegionsResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListSupportedCloudRegionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListWorkRequestErrorsResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListWorkRequestErrorsResponse.java index 190bdbf851a..a016714739b 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListWorkRequestLogsResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListWorkRequestLogsResponse.java index 428c94237df..8e68cd194b2 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListWorkRequestLogsResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListWorkRequestsResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListWorkRequestsResponse.java index fba6b397ac5..8334a2f170d 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListWorkRequestsResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/RefreshAssetSourceResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/RefreshAssetSourceResponse.java index 0a7dd00207f..1b8ad803bc5 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/RefreshAssetSourceResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/RefreshAssetSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/RemoveAgentDependencyResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/RemoveAgentDependencyResponse.java index 7322da9c0d2..0bd7990492b 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/RemoveAgentDependencyResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/RemoveAgentDependencyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/SubmitHistoricalMetricsResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/SubmitHistoricalMetricsResponse.java index abd37896183..7cc6ba35b0f 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/SubmitHistoricalMetricsResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/SubmitHistoricalMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateAgentDependencyResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateAgentDependencyResponse.java index 3c0ea8df552..c69facbb413 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateAgentDependencyResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateAgentDependencyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateAgentResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateAgentResponse.java index ed74cb43a38..eb834b0c337 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateAgentResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateAgentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateAssetResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateAssetResponse.java index 0a7fe270cad..dca2810eb44 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateAssetResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateAssetSourceResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateAssetSourceResponse.java index 311342e2501..47a8e6549a7 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateAssetSourceResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateAssetSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateDiscoveryScheduleResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateDiscoveryScheduleResponse.java index dd30c41b8bc..b8aff158c91 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateDiscoveryScheduleResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateDiscoveryScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateEnvironmentResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateEnvironmentResponse.java index 628270247c9..065bc3c59ae 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateEnvironmentResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateEnvironmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateInventoryResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateInventoryResponse.java index 31ee068e371..672cdc77838 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateInventoryResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdateInventoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdatePluginResponse.java b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdatePluginResponse.java index 96dee924629..3cef15f0803 100644 --- a/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdatePluginResponse.java +++ b/bmc-cloudbridge/src/main/java/com/oracle/bmc/cloudbridge/responses/UpdatePluginResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudbridge.responses; diff --git a/bmc-cloudbridge/src/main/resources/com/oracle/bmc/cloudbridge/client.properties b/bmc-cloudbridge/src/main/resources/com/oracle/bmc/cloudbridge/client.properties index f7af982a870..dc692898b19 100644 --- a/bmc-cloudbridge/src/main/resources/com/oracle/bmc/cloudbridge/client.properties +++ b/bmc-cloudbridge/src/main/resources/com/oracle/bmc/cloudbridge/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-cloudguard/pom.xml b/bmc-cloudguard/pom.xml index 509dc6e02de..3a67c922114 100644 --- a/bmc-cloudguard/pom.xml +++ b/bmc-cloudguard/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-cloudguard @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuard.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuard.java index 394386b60dc..61ffc0f7292 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuard.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuard.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuardAsync.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuardAsync.java index 7a9874fb89d..47dadf48dac 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuardAsync.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuardAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuardAsyncClient.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuardAsyncClient.java index 520258f6a12..f70e553891d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuardAsyncClient.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuardAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuardClient.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuardClient.java index a85f1ceff74..c443a0bf0ed 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuardClient.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuardClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuardPaginators.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuardPaginators.java index d3b7f49b0f4..e3e33188fb0 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuardPaginators.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuardPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuardWaiters.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuardWaiters.java index 6f13095e3e9..b874a678951 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuardWaiters.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/CloudGuardWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AbsoluteTimeStartPolicy.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AbsoluteTimeStartPolicy.java index a40ed331529..dc811a707e6 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AbsoluteTimeStartPolicy.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AbsoluteTimeStartPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ActionType.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ActionType.java index b96dc5c797d..ebbe2274842 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ActionType.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ActivityProblemAggregation.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ActivityProblemAggregation.java index 011929c5243..f97000765f6 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ActivityProblemAggregation.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ActivityProblemAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ActivityProblemAggregationCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ActivityProblemAggregationCollection.java index 294290bff56..ac03965f3a3 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ActivityProblemAggregationCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ActivityProblemAggregationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ActorType.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ActorType.java index 0ffc4028cee..63f76d69ff8 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ActorType.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ActorType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AddCompartmentDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AddCompartmentDetails.java index f81825be76e..cfe0a918f90 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AddCompartmentDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AddCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdditionalConfigPropertyDefinition.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdditionalConfigPropertyDefinition.java index 38b4541f48c..633a37fe3e8 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdditionalConfigPropertyDefinition.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdditionalConfigPropertyDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQuery.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQuery.java index 0eb7248a50f..63ded1f7f46 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQuery.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQuery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryCollection.java index 9d4c7bd6a9e..3ef1f5e49d5 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryDetails.java index 953754a896b..d7eff90ab80 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryRegionalDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryRegionalDetails.java index 6a4c288296e..269a992ecf4 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryRegionalDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryRegionalDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryResource.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryResource.java index d4117f498fd..14a326d3ba9 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryResource.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryResultCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryResultCollection.java index 26efdb359a1..af8f3f0eb59 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryResultCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryResultCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryResultState.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryResultState.java index b3935d4bf84..22c3be81fdb 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryResultState.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryResultState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryResultSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryResultSummary.java index 280ee2a26c6..db5b9d1ae52 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryResultSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryResultSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryStatus.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryStatus.java index 8b421350e59..ce09d992fa1 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryStatus.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQueryStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQuerySummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQuerySummary.java index cf5efbe7282..b0b9fad30db 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQuerySummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AdhocQuerySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AllTargetsSelected.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AllTargetsSelected.java index 26dbb07e3ba..03eb08553ee 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AllTargetsSelected.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AllTargetsSelected.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AttachTargetDetectorRecipeDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AttachTargetDetectorRecipeDetails.java index 22aec57851d..15e2599cb09 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AttachTargetDetectorRecipeDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AttachTargetDetectorRecipeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AttachTargetResponderRecipeDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AttachTargetResponderRecipeDetails.java index ffa9b96d927..feee8f1781b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AttachTargetResponderRecipeDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/AttachTargetResponderRecipeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CandidateResponderRule.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CandidateResponderRule.java index 8b135ed1070..fc456f18bfc 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CandidateResponderRule.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CandidateResponderRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeDataSourceCompartmentDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeDataSourceCompartmentDetails.java index 49d106a8c3f..616f6b82ef7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeDataSourceCompartmentDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeDataSourceCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeDetectorRecipeCompartmentDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeDetectorRecipeCompartmentDetails.java index 432806b22d5..fc9d72d19ae 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeDetectorRecipeCompartmentDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeDetectorRecipeCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeManagedListCompartmentDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeManagedListCompartmentDetails.java index 51e5a449f2d..b56f80befc2 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeManagedListCompartmentDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeManagedListCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeResponderRecipeCompartmentDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeResponderRecipeCompartmentDetails.java index 0313c5cf27b..80ff92ae3e1 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeResponderRecipeCompartmentDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeResponderRecipeCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeSavedQueryCompartmentDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeSavedQueryCompartmentDetails.java index 310cd527da7..a4cc97b385d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeSavedQueryCompartmentDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeSavedQueryCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeSecurityPolicyCompartmentDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeSecurityPolicyCompartmentDetails.java index 5d7aafb3a72..8c2abc2570a 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeSecurityPolicyCompartmentDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeSecurityPolicyCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeSecurityRecipeCompartmentDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeSecurityRecipeCompartmentDetails.java index 9c386e68ec0..4f1b0090c5c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeSecurityRecipeCompartmentDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeSecurityRecipeCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeSecurityZoneCompartmentDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeSecurityZoneCompartmentDetails.java index a77526b462f..e5ea0747e7a 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeSecurityZoneCompartmentDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ChangeSecurityZoneCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ClassificationStatus.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ClassificationStatus.java index bd86c649b61..ca847a36f47 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ClassificationStatus.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ClassificationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CloudGuardStatus.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CloudGuardStatus.java index 43cdbaad6cc..790f86381b1 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CloudGuardStatus.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CloudGuardStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CompositeCondition.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CompositeCondition.java index 4ad193b3e03..47891c1f24d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CompositeCondition.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CompositeCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Condition.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Condition.java index 3636447e9e2..e035dabcb07 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Condition.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Condition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionFilterType.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionFilterType.java index 6e75daec0e4..6bdff4ea953 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionFilterType.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionFilterType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionGroup.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionGroup.java index c8ea28138f4..ad81034c1fc 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionGroup.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionMetadataType.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionMetadataType.java index 03380a1bfda..78b4cb693f1 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionMetadataType.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionMetadataType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionMetadataTypeCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionMetadataTypeCollection.java index afc4c316070..1ae6ed0a79a 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionMetadataTypeCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionMetadataTypeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionMetadataTypeSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionMetadataTypeSummary.java index 01748588d58..544cacaa2ba 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionMetadataTypeSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionMetadataTypeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionOperator.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionOperator.java index 15b3a79dda9..6c106634e6d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionOperator.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionOperator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionOperatorName.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionOperatorName.java index be498da3702..8c98ae9e09d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionOperatorName.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionOperatorName.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionTypeEnum.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionTypeEnum.java index 58045738771..0bb04737a63 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionTypeEnum.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionTypeEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionValueType.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionValueType.java index 7d4506c6e6f..65a7d2d8d40 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionValueType.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConditionValueType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Confidence.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Confidence.java index 2c9673b8e5d..48c2e61face 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Confidence.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Confidence.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConfigValue.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConfigValue.java index d209eb9d484..029807600e7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConfigValue.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConfigValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Configuration.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Configuration.java index 2d30530e5cc..163c974e4d5 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Configuration.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Configuration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConfigurationLifecycleState.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConfigurationLifecycleState.java index f08a3e952a0..21972784980 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConfigurationLifecycleState.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConfigurationLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConfigurationListItemType.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConfigurationListItemType.java index 99faa30707d..6ae44abca29 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConfigurationListItemType.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ConfigurationListItemType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ContinuousQueryStartPolicy.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ContinuousQueryStartPolicy.java index c94b656f9b6..eadb2cb0dc2 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ContinuousQueryStartPolicy.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ContinuousQueryStartPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateAdhocQueryDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateAdhocQueryDetails.java index e571790713f..202774c58ca 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateAdhocQueryDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateAdhocQueryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateDataMaskRuleDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateDataMaskRuleDetails.java index 6f29feba3ba..e97fa1d7a88 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateDataMaskRuleDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateDataMaskRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateDataSourceDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateDataSourceDetails.java index 6fe58ea7327..05ec86fe970 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateDataSourceDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateDataSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateDetectorRecipeDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateDetectorRecipeDetails.java index aeec7167533..b41cd932453 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateDetectorRecipeDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateDetectorRecipeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateDetectorRecipeDetectorRuleDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateDetectorRecipeDetectorRuleDetails.java index 4d5ca7bfc7a..a4729356da7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateDetectorRecipeDetectorRuleDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateDetectorRecipeDetectorRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateDetectorRuleDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateDetectorRuleDetails.java index 6baf762362b..63aba5494c8 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateDetectorRuleDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateDetectorRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateManagedListDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateManagedListDetails.java index 6ebc7834aa2..11ce59e0f61 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateManagedListDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateManagedListDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateResponderRecipeDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateResponderRecipeDetails.java index 32573fb4a01..c960cef73f2 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateResponderRecipeDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateResponderRecipeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateSavedQueryDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateSavedQueryDetails.java index 04c86c6a365..c88044ba6ba 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateSavedQueryDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateSavedQueryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateSecurityPolicyDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateSecurityPolicyDetails.java index bc266d30c94..d222c7b77f5 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateSecurityPolicyDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateSecurityPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateSecurityRecipeDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateSecurityRecipeDetails.java index 22de4bfd01e..89813517275 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateSecurityRecipeDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateSecurityRecipeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateSecurityZoneDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateSecurityZoneDetails.java index 98f8e58b98a..64e999bc6c6 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateSecurityZoneDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateSecurityZoneDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateTargetDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateTargetDetails.java index ca806ec6697..b345991567c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateTargetDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateTargetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateTargetDetectorRecipeDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateTargetDetectorRecipeDetails.java index cc7bd2ba887..5efafe2ec63 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateTargetDetectorRecipeDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateTargetDetectorRecipeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateTargetResponderRecipeDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateTargetResponderRecipeDetails.java index 45c652494d8..e70dedf3845 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateTargetResponderRecipeDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateTargetResponderRecipeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateWlpAgentDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateWlpAgentDetails.java index db820cdc91b..27705077e25 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateWlpAgentDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CreateWlpAgentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CveRiskLevel.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CveRiskLevel.java index 2e11effb7cf..5c614732c83 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CveRiskLevel.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/CveRiskLevel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataMaskCategory.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataMaskCategory.java index 5d3b37663cd..1c48e9f1680 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataMaskCategory.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataMaskCategory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataMaskRule.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataMaskRule.java index 65b5915602a..c270323b275 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataMaskRule.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataMaskRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataMaskRuleCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataMaskRuleCollection.java index f2aed0b27bf..cffec8aebed 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataMaskRuleCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataMaskRuleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataMaskRuleStatus.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataMaskRuleStatus.java index ba49e4fbff8..c5f9c4bdaa8 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataMaskRuleStatus.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataMaskRuleStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataMaskRuleSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataMaskRuleSummary.java index b1f3089b412..a2285d018a9 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataMaskRuleSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataMaskRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSource.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSource.java index 3583afbf7bf..34d70bb9a4d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSource.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceCollection.java index e377a4e95d4..9f0176e422f 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceDetails.java index eaf37e77c25..4411c0df6d7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceEventCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceEventCollection.java index 3753b0fe5dc..ee86ba6fe51 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceEventCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceEventCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceEventInfo.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceEventInfo.java index 60fdfa393d0..1f68282c027 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceEventInfo.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceEventInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceEventInfoStatus.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceEventInfoStatus.java index f3a1de6236c..0d312ef96c6 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceEventInfoStatus.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceEventInfoStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceEventSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceEventSummary.java index 16060082593..f25fbcd52ce 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceEventSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceEventSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceFeedProvider.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceFeedProvider.java index e3febdf2f00..67c89719e46 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceFeedProvider.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceFeedProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceMappingInfo.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceMappingInfo.java index f077c5cf50a..80268d6a36c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceMappingInfo.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceMappingInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceStatus.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceStatus.java index c14a25f2f77..379a4febcae 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceStatus.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceSummary.java index 1ff7ab57180..6bb28df9391 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceSummaryDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceSummaryDetails.java index 94dc18e6149..03d49766779 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceSummaryDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DataSourceSummaryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Detector.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Detector.java index 15aebfe3347..8f29a1cde8c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Detector.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Detector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorCollection.java index 9cc4633292c..02580f9fd66 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorConfiguration.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorConfiguration.java index d56fac8c4bf..11a9fa8bcd9 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorConfiguration.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorDetails.java index 2bc3bcda36b..0cbdf7e81a4 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorEnum.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorEnum.java index 8a837bed116..f521c9e9376 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorEnum.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipe.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipe.java index ab239a0f20c..7abe5a9d5f6 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipe.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipe.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeCollection.java index 1b028874e85..840ebb13446 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeDetectorRule.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeDetectorRule.java index bd0de4abc59..253f7e3588d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeDetectorRule.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeDetectorRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeDetectorRuleCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeDetectorRuleCollection.java index 7312b02601a..2754c269778 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeDetectorRuleCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeDetectorRuleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeDetectorRuleSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeDetectorRuleSummary.java index 108ca3e4479..e0bd2121e46 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeDetectorRuleSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeDetectorRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeEnum.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeEnum.java index 17fcb70f537..5681d212cba 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeEnum.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeSummary.java index fcceec73d38..08e2b47b9f3 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRecipeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRule.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRule.java index 87d45ff276d..c0c4369c07c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRule.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRuleCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRuleCollection.java index 1946a1b8f05..25c96723a3a 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRuleCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRuleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRuleSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRuleSummary.java index ffe8bca4acf..3cf5da9c989 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRuleSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorSummary.java index a1cd5f36186..5029d86d8db 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/DetectorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/EntitiesMapping.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/EntitiesMapping.java index 9b159d89ca5..a4dfc79b6e8 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/EntitiesMapping.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/EntitiesMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/EntityDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/EntityDetails.java index 609187d704a..e52fa05db60 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/EntityDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/EntityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/EntityType.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/EntityType.java index 77f67ff99c8..8ff95bd9c6b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/EntityType.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/EntityType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/EventStatus.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/EventStatus.java index 93b65809cc8..b332af600ea 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/EventStatus.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/EventStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ExecuteResponderExecutionDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ExecuteResponderExecutionDetails.java index 0723a06003c..033cfcc461c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ExecuteResponderExecutionDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ExecuteResponderExecutionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/FeedProviderType.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/FeedProviderType.java index b5c528371e0..592af89acc0 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/FeedProviderType.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/FeedProviderType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/GeographicalLocation.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/GeographicalLocation.java index 4c2c57fcfe3..d447d518181 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/GeographicalLocation.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/GeographicalLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ImpactedResourceCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ImpactedResourceCollection.java index 020e08648d9..d52ce88e110 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ImpactedResourceCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ImpactedResourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ImpactedResourceSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ImpactedResourceSummary.java index 87e23cb938d..6d99dcc412c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ImpactedResourceSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ImpactedResourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/InsightTypeLoggingQueryDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/InsightTypeLoggingQueryDetails.java index e525061e177..d574f02c64e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/InsightTypeLoggingQueryDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/InsightTypeLoggingQueryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/InstanceSecurityServiceConfiguration.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/InstanceSecurityServiceConfiguration.java index d6b8a1def6a..37b89f4347f 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/InstanceSecurityServiceConfiguration.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/InstanceSecurityServiceConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LifecycleState.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LifecycleState.java index 5d793cf87e8..6a9cc084d73 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LifecycleState.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingEventInfo.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingEventInfo.java index cf9f47aeadd..acb42e4b0ad 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingEventInfo.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingEventInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingQueryDataSourceDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingQueryDataSourceDetails.java index 696492f474c..6ca4eed93f9 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingQueryDataSourceDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingQueryDataSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingQueryDataSourceSummaryDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingQueryDataSourceSummaryDetails.java index d19e7ce14b1..968bde6a4ae 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingQueryDataSourceSummaryDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingQueryDataSourceSummaryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingQueryDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingQueryDetails.java index 41e6e7d9b0b..49f0e263d5e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingQueryDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingQueryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingQueryOperatorType.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingQueryOperatorType.java index 340c8830112..f54cb5ace38 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingQueryOperatorType.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingQueryOperatorType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingQueryType.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingQueryType.java index 1857a37beef..e5566ecf3b8 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingQueryType.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/LoggingQueryType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedList.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedList.java index 4017363f4c5..135d8853d95 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedList.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedList.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedListCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedListCollection.java index 1e0922cace4..3787c6d4e27 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedListCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedListCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedListSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedListSummary.java index 88c21cf0216..93b8030fb94 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedListSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedListSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedListType.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedListType.java index 05c68a4ee11..feee1bf163b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedListType.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedListType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedListTypeCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedListTypeCollection.java index d282b947683..b8b92468199 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedListTypeCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedListTypeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedListTypeSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedListTypeSummary.java index 324dc978b46..b188cc3b48f 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedListTypeSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ManagedListTypeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/MonitoringService.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/MonitoringService.java index 8d7c9307a3e..ee94df331a8 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/MonitoringService.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/MonitoringService.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/NoDelayStartPolicy.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/NoDelayStartPolicy.java index df452c13b6f..cf005fe9fda 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/NoDelayStartPolicy.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/NoDelayStartPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/OperationStatus.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/OperationStatus.java index 5afed264554..f9d0a6fd936 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/OperationStatus.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/OperationType.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/OperationType.java index 3bcad512016..d0ed1538eb8 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/OperationType.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/OperatorSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/OperatorSummary.java index 82effc025b3..9a08ead8bfe 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/OperatorSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/OperatorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/OperatorType.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/OperatorType.java index a1bda83d8dd..1295e7475d6 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/OperatorType.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/OperatorType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/OwnerType.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/OwnerType.java index c4233c0d0a4..4393783e488 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/OwnerType.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/OwnerType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/PackageDetail.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/PackageDetail.java index 47811f1d871..1bbc78f43da 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/PackageDetail.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/PackageDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/PolicyCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/PolicyCollection.java index 9f3c8ea5143..2d7e119eb3c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/PolicyCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/PolicyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/PolicySummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/PolicySummary.java index 3cbb350195b..d670547ac0f 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/PolicySummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/PolicySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/PoliticalLocation.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/PoliticalLocation.java index 1404ed619d6..4d7e235fda7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/PoliticalLocation.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/PoliticalLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Problem.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Problem.java index 6062951e4c4..868fdd619c5 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Problem.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Problem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemAggregation.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemAggregation.java index 9ec5854d626..153696493cf 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemAggregation.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemAggregationCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemAggregationCollection.java index bfa7bf73a1e..52207f859c9 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemAggregationCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemAggregationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemCategoryEnum.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemCategoryEnum.java index 946397b9d8e..2e5c74be444 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemCategoryEnum.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemCategoryEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemCollection.java index cceac6710e3..285ff76f974 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemDimension.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemDimension.java index 3677f4a7809..88c5339c1cb 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemDimension.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemDimension.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemEndpointCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemEndpointCollection.java index d4e508af7da..5f383e59ba8 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemEndpointCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemEndpointCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemEndpointSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemEndpointSummary.java index 5e3a881ced2..f24c07d4543 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemEndpointSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemEndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemEntityCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemEntityCollection.java index e372bde1e09..394feb402b8 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemEntityCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemEntityCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemEntitySummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemEntitySummary.java index 67ba22f98cc..59b70898b72 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemEntitySummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemEntitySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemHistoryCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemHistoryCollection.java index ffc732df006..f15a3d847d5 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemHistoryCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemHistoryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemHistorySummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemHistorySummary.java index 719b5c1059e..5dd9ee4bf8b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemHistorySummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemHistorySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemLifecycleDetail.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemLifecycleDetail.java index 712da501db2..47f383e96ae 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemLifecycleDetail.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemLifecycleDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemLifecycleState.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemLifecycleState.java index e696150b303..a8f4e352438 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemLifecycleState.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemSummary.java index ba25c29e1d1..65e3011af36 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemTrendAggregation.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemTrendAggregation.java index 377fe97a1d9..eb0305b7b16 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemTrendAggregation.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemTrendAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemTrendAggregationCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemTrendAggregationCollection.java index 80d062ad43d..e015cb14d69 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemTrendAggregationCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ProblemTrendAggregationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/PropertyTuple.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/PropertyTuple.java index 36bd732451f..10366f57332 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/PropertyTuple.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/PropertyTuple.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/QueryReplicationStatus.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/QueryReplicationStatus.java index 266b1a39c51..f9511c50582 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/QueryReplicationStatus.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/QueryReplicationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RecommendationLifecycleDetail.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RecommendationLifecycleDetail.java index 99573d61a60..c1f6f1710f7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RecommendationLifecycleDetail.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RecommendationLifecycleDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RecommendationSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RecommendationSummary.java index 1e9a007941a..c30353f93cb 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RecommendationSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RecommendationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RecommendationSummaryCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RecommendationSummaryCollection.java index 39d4986c653..93db956e755 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RecommendationSummaryCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RecommendationSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RecommendationType.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RecommendationType.java index 9de9f106521..f5ef3c271dc 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RecommendationType.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RecommendationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RegionStatusDetail.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RegionStatusDetail.java index 410475e1d23..4fdec9627d9 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RegionStatusDetail.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RegionStatusDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RemoveCompartmentDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RemoveCompartmentDetails.java index ced3e580aa9..9716a54654f 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RemoveCompartmentDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RemoveCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RequestSummarizedTrendResourceRiskScoresDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RequestSummarizedTrendResourceRiskScoresDetails.java index 7fb89ee18d6..bbc31f2a7f7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RequestSummarizedTrendResourceRiskScoresDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RequestSummarizedTrendResourceRiskScoresDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Resource.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Resource.java index 82da77bb885..1a23543f62e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Resource.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Resource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceAdditionalDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceAdditionalDetails.java index ddb752be114..d65d44e3b38 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceAdditionalDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceAdditionalDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceCollection.java index d6456b52d6f..541913aef18 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceLock.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceLock.java index 6b723dc10bb..8d7f7060d2e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceLock.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceLock.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourcePortCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourcePortCollection.java index 8503553d29d..bbe4b157947 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourcePortCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourcePortCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourcePortSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourcePortSummary.java index 04d39bf6bb9..8dc8c056357 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourcePortSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourcePortSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfile.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfile.java index d8ecc4f64c5..4d1746e95bf 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfile.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileCollection.java index b570ffdadfd..61066cf6d49 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileEndpointCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileEndpointCollection.java index db3e38d9ff2..72f7c40dcfc 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileEndpointCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileEndpointCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileEndpointSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileEndpointSummary.java index 0316ff471a7..e63559fc4c6 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileEndpointSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileEndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileImpactedResourceCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileImpactedResourceCollection.java index d2b35992775..13938da5fd8 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileImpactedResourceCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileImpactedResourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileImpactedResourceSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileImpactedResourceSummary.java index 8e410639a62..5859eb3e5e2 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileImpactedResourceSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileImpactedResourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileRiskScoreAggregationSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileRiskScoreAggregationSummary.java index 0aaa2e28266..982f06887a1 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileRiskScoreAggregationSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileRiskScoreAggregationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileRiskScoreAggregationSummaryCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileRiskScoreAggregationSummaryCollection.java index f3a65b6aa22..00967e867e3 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileRiskScoreAggregationSummaryCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileRiskScoreAggregationSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileSummary.java index 500f885c550..73495864882 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceProfileSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceRiskScoreAggregation.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceRiskScoreAggregation.java index 6a28614411f..2c6d1577bbd 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceRiskScoreAggregation.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceRiskScoreAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceRiskScoreAggregationCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceRiskScoreAggregationCollection.java index a2d2a9a457b..2a8bd263fb5 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceRiskScoreAggregationCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceRiskScoreAggregationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceRiskScoreDimension.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceRiskScoreDimension.java index 12eb0486f77..041cb615d5e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceRiskScoreDimension.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceRiskScoreDimension.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceSummary.java index b127a368f3c..55b9746eaf8 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceTypeCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceTypeCollection.java index 68a7cea00a2..ed2f9f2d3ce 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceTypeCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceTypeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceTypeSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceTypeSummary.java index 25096f5a8cd..5a79f465c64 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceTypeSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceTypeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceVulnerability.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceVulnerability.java index 8127a066857..7d305ff6c27 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceVulnerability.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceVulnerability.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceVulnerabilityCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceVulnerabilityCollection.java index 2e389ecc05e..7a396f66d79 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceVulnerabilityCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceVulnerabilityCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceVulnerabilitySummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceVulnerabilitySummary.java index 07e54d11c93..243fb7cf8cf 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceVulnerabilitySummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResourceVulnerabilitySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderActivityCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderActivityCollection.java index 5ef2a3bd9f8..47ef9e1cebb 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderActivityCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderActivityCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderActivitySummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderActivitySummary.java index fa803b1301a..3239007a91e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderActivitySummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderActivitySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderActivityType.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderActivityType.java index 30f6c4f5e87..e235bf8ed38 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderActivityType.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderActivityType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderConfiguration.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderConfiguration.java index 272667b9150..f33628fad44 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderConfiguration.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderDimension.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderDimension.java index d88a31852cf..28df96ee4b1 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderDimension.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderDimension.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecution.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecution.java index 2ea7bad9734..a66c2a37922 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecution.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecution.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionAggregation.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionAggregation.java index 1352cd8c294..9728734e5cf 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionAggregation.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionAggregationCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionAggregationCollection.java index b537d769fcd..6008fb323ae 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionAggregationCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionAggregationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionCollection.java index d9a5e5eb098..0d16b7ce5b5 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionModes.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionModes.java index 7bfb4e6b0f2..79717521130 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionModes.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionModes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionStates.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionStates.java index d5cc3d53aa7..7f0a8f24e85 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionStates.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionStatus.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionStatus.java index 8749f9a256e..10bae5d28c3 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionStatus.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionSummary.java index 52f7dbaa24e..1d6ebf700e8 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionTrendAggregation.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionTrendAggregation.java index ff228e9ceb3..8d69c2e28c2 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionTrendAggregation.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionTrendAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionTrendAggregationCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionTrendAggregationCollection.java index 6638b424ca5..89cee4b3036 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionTrendAggregationCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderExecutionTrendAggregationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderModeTypes.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderModeTypes.java index 4f0e44147ce..7a894d04df6 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderModeTypes.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderModeTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipe.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipe.java index 4123c22100d..aa2e822beed 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipe.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipe.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipeCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipeCollection.java index c6e5a5e2a2e..90d9b1dc69c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipeCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipeResponderRule.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipeResponderRule.java index 6b2b41525a8..39ff1b3dfe6 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipeResponderRule.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipeResponderRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipeResponderRuleCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipeResponderRuleCollection.java index 7074e4a6385..4ebe1ce79e6 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipeResponderRuleCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipeResponderRuleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipeResponderRuleSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipeResponderRuleSummary.java index 2254c9f1641..53daf2743b0 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipeResponderRuleSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipeResponderRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipeSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipeSummary.java index 15d788bf097..c185808d89e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipeSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRecipeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRule.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRule.java index aa350428513..37a364b91b0 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRule.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRuleCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRuleCollection.java index d56c44ab5d3..b476e5a7526 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRuleCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRuleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRuleDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRuleDetails.java index bc8e2e28f3c..4ae0cd1a2ac 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRuleDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRuleExecutionDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRuleExecutionDetails.java index ed344da22bb..a40017ce99e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRuleExecutionDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRuleExecutionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRuleSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRuleSummary.java index e9327cf0f68..06fcd478cfa 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRuleSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderType.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderType.java index b8b0e649cc6..5bd15f3a062 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderType.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ResponderType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RiskLevel.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RiskLevel.java index a046ef76741..5e8e8209b60 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RiskLevel.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RiskLevel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RiskScoreAggregation.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RiskScoreAggregation.java index 4a1c2789fe5..ae8e282c3a2 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RiskScoreAggregation.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RiskScoreAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RiskScoreAggregationCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RiskScoreAggregationCollection.java index ef758f9091c..90ed3f69ae4 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RiskScoreAggregationCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RiskScoreAggregationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RuleSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RuleSummary.java index 1f54b01aa08..bf39905118c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RuleSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RuleType.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RuleType.java index fd1bf305c42..58e3f5bad53 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RuleType.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/RuleType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SavedQuery.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SavedQuery.java index d8ad547a8ab..354eaaed473 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SavedQuery.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SavedQuery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SavedQueryCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SavedQueryCollection.java index 0d8f2e6ace5..9ab2bedadfe 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SavedQueryCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SavedQueryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SavedQuerySummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SavedQuerySummary.java index 56cccb9a3c7..a6823ee8e3f 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SavedQuerySummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SavedQuerySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ScheduledQueryDataSourceObjDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ScheduledQueryDataSourceObjDetails.java index 2404f104ad9..edf02b16b39 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ScheduledQueryDataSourceObjDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ScheduledQueryDataSourceObjDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ScheduledQueryDataSourceSummaryObjDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ScheduledQueryDataSourceSummaryObjDetails.java index 574ff332486..82f55849478 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ScheduledQueryDataSourceSummaryObjDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ScheduledQueryDataSourceSummaryObjDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ScheduledQueryScopeDetail.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ScheduledQueryScopeDetail.java index fda4ae14521..387673e9323 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ScheduledQueryScopeDetail.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ScheduledQueryScopeDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityPolicy.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityPolicy.java index 07962958bfe..8632078ce2b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityPolicy.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityPolicyCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityPolicyCollection.java index 850f63d2bb9..6bb9e57f24c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityPolicyCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityPolicyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityPolicySummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityPolicySummary.java index 02be61a8926..df120ab20c4 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityPolicySummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityPolicySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityRating.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityRating.java index 667f6c528e3..dc6cf532755 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityRating.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityRating.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityRecipe.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityRecipe.java index 577862552fc..e4ccf812490 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityRecipe.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityRecipe.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityRecipeCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityRecipeCollection.java index 14970632126..eed851d29c8 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityRecipeCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityRecipeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityRecipeSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityRecipeSummary.java index 19cc337f55e..b30ba1d1b2a 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityRecipeSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityRecipeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityScoreAggregation.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityScoreAggregation.java index f90afbd088b..01e99f78ae0 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityScoreAggregation.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityScoreAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityScoreAggregationCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityScoreAggregationCollection.java index ffe0be67e3e..ecc20659123 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityScoreAggregationCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityScoreAggregationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityScoreTrendAggregation.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityScoreTrendAggregation.java index e17eed1f6d5..f4cee83449e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityScoreTrendAggregation.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityScoreTrendAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityScoreTrendAggregationCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityScoreTrendAggregationCollection.java index fea9a9af42d..7230a482d91 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityScoreTrendAggregationCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityScoreTrendAggregationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityZone.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityZone.java index 5c4b099c0a2..e80acb977e0 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityZone.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityZone.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityZoneCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityZoneCollection.java index 06dd6437427..9743f228117 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityZoneCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityZoneCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityZoneSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityZoneSummary.java index bc0663d6e1f..1930a518809 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityZoneSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityZoneSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityZoneTargetDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityZoneTargetDetails.java index bf86da2066f..919909f81c5 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityZoneTargetDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SecurityZoneTargetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ServiceConfiguration.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ServiceConfiguration.java index fb3950a26eb..996b0bac6db 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ServiceConfiguration.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ServiceConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ServiceTypeSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ServiceTypeSummary.java index 5d2299a92f8..4b5f00be8ed 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ServiceTypeSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/ServiceTypeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Severity.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Severity.java index 513a725e772..828b3b7d6be 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Severity.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Severity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Sighting.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Sighting.java index 70ceb98dcb5..0a651aecae7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Sighting.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Sighting.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingCollection.java index 99009ce8481..b0712529915 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingEndpointCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingEndpointCollection.java index c7282a8cc64..eb754958fd9 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingEndpointCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingEndpointCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingEndpointSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingEndpointSummary.java index c0d648d68ec..8f27351353b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingEndpointSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingEndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingImpactedResourceCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingImpactedResourceCollection.java index eda0f6a273d..11cf6c134e1 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingImpactedResourceCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingImpactedResourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingImpactedResourceSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingImpactedResourceSummary.java index 31f202f4388..b91d80f76bd 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingImpactedResourceSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingImpactedResourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingSummary.java index 0bcaae73326..09f17239f98 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingType.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingType.java index 582b3f94ce9..6a12034a5f0 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingType.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SightingType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SimpleCondition.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SimpleCondition.java index 6015ce3bfaf..c998ccfa68e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SimpleCondition.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SimpleCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SkipBulkResponderExecutionDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SkipBulkResponderExecutionDetails.java index adb82f18a49..3b626b506c0 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SkipBulkResponderExecutionDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SkipBulkResponderExecutionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SortOrders.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SortOrders.java index 909805f36f8..a6e76e407c5 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SortOrders.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/SortOrders.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TacticCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TacticCollection.java index fad8961ae84..01a46788021 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TacticCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TacticCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TacticSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TacticSummary.java index 1175f9eee4f..ad562be591f 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TacticSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TacticSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Target.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Target.java index a4431352a34..4b8c6e9e249 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Target.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/Target.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetCollection.java index 2221906846d..0146fbdd95b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetails.java index 924ee8ebaab..3ce32dfab41 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorDetails.java index 72fab4bb525..f065313ef1f 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipe.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipe.java index be1a10196ab..99ad0d929bf 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipe.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipe.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipeCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipeCollection.java index 2119966a014..fd9c49c8ddf 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipeCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipeDetectorRule.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipeDetectorRule.java index 95b08b4636d..a178f15c5f2 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipeDetectorRule.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipeDetectorRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipeDetectorRuleCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipeDetectorRuleCollection.java index ab1aa1efcec..ddafa1dd3a5 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipeDetectorRuleCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipeDetectorRuleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipeDetectorRuleSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipeDetectorRuleSummary.java index 2f325032217..a7317e99655 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipeDetectorRuleSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipeDetectorRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipeSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipeSummary.java index 1d9f44204bc..839c1b2e912 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipeSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetDetectorRecipeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetIdsSelected.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetIdsSelected.java index b00280f3233..998d10108fc 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetIdsSelected.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetIdsSelected.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResourceType.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResourceType.java index df8b690399a..82459b9f614 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResourceType.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResourceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResourceTypesSelected.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResourceTypesSelected.java index ffb8ad06742..196726b82eb 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResourceTypesSelected.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResourceTypesSelected.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipe.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipe.java index 5aeb62490f8..9226ce2d611 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipe.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipe.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipeCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipeCollection.java index d98ac80e7c8..0235f5c1e59 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipeCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipeResponderRule.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipeResponderRule.java index 30b822e716a..d9ced53cfea 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipeResponderRule.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipeResponderRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipeResponderRuleCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipeResponderRuleCollection.java index 5166fe3fb59..082d0ebb1c0 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipeResponderRuleCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipeResponderRuleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipeResponderRuleSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipeResponderRuleSummary.java index a426076f93a..030c2ccad94 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipeResponderRuleSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipeResponderRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipeSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipeSummary.java index 32409403fcb..57cdfb256b5 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipeSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetResponderRecipeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetSelected.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetSelected.java index d2a9a8fae34..bbffd3699d3 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetSelected.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetSelected.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetSummary.java index 8b286873612..efda35468c7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TargetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TechniqueCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TechniqueCollection.java index 9bb9435329e..ed3824722cb 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TechniqueCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TechniqueCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TechniqueSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TechniqueSummary.java index 87bd8fd505b..b8b7d1f678e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TechniqueSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TechniqueSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TriggerResponderDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TriggerResponderDetails.java index 95501644b9a..ac27c9d55cb 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TriggerResponderDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/TriggerResponderDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateBulkProblemStatusDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateBulkProblemStatusDetails.java index 6970e34890a..ec73577af98 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateBulkProblemStatusDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateBulkProblemStatusDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateConfigurationDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateConfigurationDetails.java index 71e5b040806..f04bbe825e7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateConfigurationDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDataMaskRuleDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDataMaskRuleDetails.java index a20d3e7d454..2aaedc06a52 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDataMaskRuleDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDataMaskRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDataSourceDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDataSourceDetails.java index b57c4ad296f..1dfef598ace 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDataSourceDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDataSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDetectorRecipeDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDetectorRecipeDetails.java index c0ef7ec2f84..78b9d1d625b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDetectorRecipeDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDetectorRecipeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDetectorRecipeDetectorRule.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDetectorRecipeDetectorRule.java index b9ed746bdcb..f27f9f10e60 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDetectorRecipeDetectorRule.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDetectorRecipeDetectorRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDetectorRecipeDetectorRuleDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDetectorRecipeDetectorRuleDetails.java index b213797b158..279d01534db 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDetectorRecipeDetectorRuleDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDetectorRecipeDetectorRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDetectorRuleDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDetectorRuleDetails.java index 3f9724b54d9..c0e15c6ec7b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDetectorRuleDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateDetectorRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateManagedListDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateManagedListDetails.java index bd0efb7020b..25b277c4ea9 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateManagedListDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateManagedListDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateProblemStatusDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateProblemStatusDetails.java index b38450fc9ff..308e4f08db7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateProblemStatusDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateProblemStatusDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateResponderRecipeDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateResponderRecipeDetails.java index ea67f3f4da4..685486aa568 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateResponderRecipeDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateResponderRecipeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateResponderRecipeResponderRule.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateResponderRecipeResponderRule.java index c94021f1375..b07705ec72d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateResponderRecipeResponderRule.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateResponderRecipeResponderRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateResponderRecipeResponderRuleDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateResponderRecipeResponderRuleDetails.java index 36cfef39e36..a95ff570b27 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateResponderRecipeResponderRuleDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateResponderRecipeResponderRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateResponderRuleDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateResponderRuleDetails.java index cb893d6d876..3b9968ba76d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateResponderRuleDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateResponderRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateSavedQueryDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateSavedQueryDetails.java index f377d03f34c..111d9123f7f 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateSavedQueryDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateSavedQueryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateSecurityPolicyDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateSecurityPolicyDetails.java index 3175254dad4..a9640a99094 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateSecurityPolicyDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateSecurityPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateSecurityRecipeDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateSecurityRecipeDetails.java index acbc2592756..c6e22a96805 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateSecurityRecipeDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateSecurityRecipeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateSecurityZoneDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateSecurityZoneDetails.java index a75438bd37d..0d59c8323ab 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateSecurityZoneDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateSecurityZoneDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetDetails.java index fffff11d871..c94cc3da79b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetDetectorRecipe.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetDetectorRecipe.java index 277e42c96d4..b02443d60e4 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetDetectorRecipe.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetDetectorRecipe.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetDetectorRecipeDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetDetectorRecipeDetails.java index 3f9b67b0f02..1c92a7102b2 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetDetectorRecipeDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetDetectorRecipeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetDetectorRecipeDetectorRuleDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetDetectorRecipeDetectorRuleDetails.java index f2c8b63beeb..fa27a346089 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetDetectorRecipeDetectorRuleDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetDetectorRecipeDetectorRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetDetectorRuleDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetDetectorRuleDetails.java index 25ef77c8c62..9f9e5a3b6c7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetDetectorRuleDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetDetectorRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetRecipeDetectorRuleDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetRecipeDetectorRuleDetails.java index 0107d128bdc..9e5931466f5 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetRecipeDetectorRuleDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetRecipeDetectorRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetRecipeResponderRuleDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetRecipeResponderRuleDetails.java index 5911f9faed6..70fc8991886 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetRecipeResponderRuleDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetRecipeResponderRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetResponderRecipe.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetResponderRecipe.java index 5c7a82766ec..9ee58a23dc2 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetResponderRecipe.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetResponderRecipe.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetResponderRecipeDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetResponderRecipeDetails.java index f1a5076898d..3fc5527c3cd 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetResponderRecipeDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetResponderRecipeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetResponderRecipeResponderRuleDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetResponderRecipeResponderRuleDetails.java index 1a00ef04298..f3a224b6cea 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetResponderRecipeResponderRuleDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetResponderRecipeResponderRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetResponderRuleDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetResponderRuleDetails.java index 5cbc2bf1bc1..d77011608ea 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetResponderRuleDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateTargetResponderRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateWlpAgentDetails.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateWlpAgentDetails.java index fca8db11d1d..7eaf6564ac7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateWlpAgentDetails.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/UpdateWlpAgentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WlpAgent.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WlpAgent.java index 730190936a6..d5da11f8ac7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WlpAgent.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WlpAgent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WlpAgentCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WlpAgentCollection.java index 3c2a4215994..5dd47977bcb 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WlpAgentCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WlpAgentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WlpAgentSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WlpAgentSummary.java index d6d1007d27f..783175264b9 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WlpAgentSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WlpAgentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequest.java index cdc910b7b3d..3300fa23fb7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestError.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestError.java index b8329db4484..c443d5662db 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestError.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestErrorCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestErrorCollection.java index b0ecbdef375..a7b05644c14 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestErrorCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestLogEntry.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestLogEntry.java index 51b72c21b6b..2a3b762e570 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestLogEntry.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestLogEntryCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestLogEntryCollection.java index 7ee7e0051d1..0aaefa2c39f 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestLogEntryCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestResource.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestResource.java index c7f57903430..b046c87da79 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestResource.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestResourceMetadataKey.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestResourceMetadataKey.java index 4ec245de875..c386e3e4888 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestResourceMetadataKey.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestSummary.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestSummary.java index ff49377f41b..ab79b0d5a87 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestSummary.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestSummaryCollection.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestSummaryCollection.java index aeb445de578..a2ba238df1e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestSummaryCollection.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.model; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/AddCompartmentRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/AddCompartmentRequest.java index bd3b11f414a..4ee1f15dd9c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/AddCompartmentRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/AddCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CancelWorkRequestRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CancelWorkRequestRequest.java index cb2a2086ad2..a47af3b2f5e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CancelWorkRequestRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeDataSourceCompartmentRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeDataSourceCompartmentRequest.java index 8f0b18ca1c3..90911ea7f8b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeDataSourceCompartmentRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeDataSourceCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeDetectorRecipeCompartmentRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeDetectorRecipeCompartmentRequest.java index bc810c9112d..249f737b27f 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeDetectorRecipeCompartmentRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeDetectorRecipeCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeManagedListCompartmentRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeManagedListCompartmentRequest.java index 3170ee6175b..8769e5de944 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeManagedListCompartmentRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeManagedListCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeResponderRecipeCompartmentRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeResponderRecipeCompartmentRequest.java index 8535405b083..63a36f6e409 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeResponderRecipeCompartmentRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeResponderRecipeCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeSavedQueryCompartmentRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeSavedQueryCompartmentRequest.java index 1ccd50fc058..c2b04971d5d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeSavedQueryCompartmentRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeSavedQueryCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeSecurityRecipeCompartmentRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeSecurityRecipeCompartmentRequest.java index 0177fba8d38..875a8bf32ac 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeSecurityRecipeCompartmentRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeSecurityRecipeCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeSecurityZoneCompartmentRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeSecurityZoneCompartmentRequest.java index e3f37f1db70..37a1cb81598 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeSecurityZoneCompartmentRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ChangeSecurityZoneCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateAdhocQueryRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateAdhocQueryRequest.java index e05f5b3dc17..b264a20f190 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateAdhocQueryRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateAdhocQueryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateDataMaskRuleRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateDataMaskRuleRequest.java index fd99107d2e3..e31808606ac 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateDataMaskRuleRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateDataMaskRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateDataSourceRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateDataSourceRequest.java index 4d8386d93ee..3ab85e4c3a2 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateDataSourceRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateDataSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateDetectorRecipeDetectorRuleRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateDetectorRecipeDetectorRuleRequest.java index 74c78663939..b139d90fe50 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateDetectorRecipeDetectorRuleRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateDetectorRecipeDetectorRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateDetectorRecipeRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateDetectorRecipeRequest.java index 912fa42b4ef..53a610fe36e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateDetectorRecipeRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateDetectorRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateManagedListRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateManagedListRequest.java index 424bf16be4e..9061f40a0c7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateManagedListRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateManagedListRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateResponderRecipeRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateResponderRecipeRequest.java index 56770138e39..2004b04b0f8 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateResponderRecipeRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateResponderRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateSavedQueryRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateSavedQueryRequest.java index 808e6e2f1cc..db7b2a30f0b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateSavedQueryRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateSavedQueryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateSecurityRecipeRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateSecurityRecipeRequest.java index 51d65ee6f37..273b64b23b5 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateSecurityRecipeRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateSecurityRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateSecurityZoneRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateSecurityZoneRequest.java index 8f36e325f40..707a1a03fcb 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateSecurityZoneRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateSecurityZoneRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateTargetDetectorRecipeRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateTargetDetectorRecipeRequest.java index 85b7019f813..909c1b9341d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateTargetDetectorRecipeRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateTargetDetectorRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateTargetRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateTargetRequest.java index 27335fb5a59..98ea09e6ca9 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateTargetRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateTargetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateTargetResponderRecipeRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateTargetResponderRecipeRequest.java index e2e5069fa9c..c5e9dc6d6f8 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateTargetResponderRecipeRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateTargetResponderRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateWlpAgentRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateWlpAgentRequest.java index 7a7ed268da7..febb6e9fe77 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateWlpAgentRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/CreateWlpAgentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteAdhocQueryRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteAdhocQueryRequest.java index 6587d82751a..dc0ccd2d92d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteAdhocQueryRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteAdhocQueryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteDataMaskRuleRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteDataMaskRuleRequest.java index 8be44ae1a7f..2598551ce3e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteDataMaskRuleRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteDataMaskRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteDataSourceRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteDataSourceRequest.java index b1b89f1079c..f542b83e59e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteDataSourceRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteDataSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteDetectorRecipeDetectorRuleDataSourceRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteDetectorRecipeDetectorRuleDataSourceRequest.java index 6dfc968532a..5ea13629d9c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteDetectorRecipeDetectorRuleDataSourceRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteDetectorRecipeDetectorRuleDataSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteDetectorRecipeDetectorRuleRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteDetectorRecipeDetectorRuleRequest.java index 30f70696691..296d84491f2 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteDetectorRecipeDetectorRuleRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteDetectorRecipeDetectorRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteDetectorRecipeRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteDetectorRecipeRequest.java index 97043b0b45b..43adf30b567 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteDetectorRecipeRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteDetectorRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteManagedListRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteManagedListRequest.java index 3c99ae392be..37e862571ad 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteManagedListRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteManagedListRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteResponderRecipeRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteResponderRecipeRequest.java index d827f22a24c..d0d5d1e0969 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteResponderRecipeRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteResponderRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteSavedQueryRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteSavedQueryRequest.java index 0fbf883ee2b..6b2b53f0745 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteSavedQueryRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteSavedQueryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteSecurityRecipeRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteSecurityRecipeRequest.java index 503466b1c9e..4d85bbee13b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteSecurityRecipeRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteSecurityRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteSecurityZoneRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteSecurityZoneRequest.java index 8054242410b..4c6db58a101 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteSecurityZoneRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteSecurityZoneRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteTargetDetectorRecipeRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteTargetDetectorRecipeRequest.java index 6d6be66a199..2aa18103c6e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteTargetDetectorRecipeRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteTargetDetectorRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteTargetRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteTargetRequest.java index 27caf889132..2362725f236 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteTargetRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteTargetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteTargetResponderRecipeRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteTargetResponderRecipeRequest.java index f2bfd22806f..1ddf5a2f3be 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteTargetResponderRecipeRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteTargetResponderRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteWlpAgentRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteWlpAgentRequest.java index 22a49e84508..22006847409 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteWlpAgentRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/DeleteWlpAgentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ExecuteResponderExecutionRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ExecuteResponderExecutionRequest.java index d39fc37b65e..313bf7165d3 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ExecuteResponderExecutionRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ExecuteResponderExecutionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetAdhocQueryRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetAdhocQueryRequest.java index 101d75e8326..afe935f9ccd 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetAdhocQueryRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetAdhocQueryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetAdhocQueryResultContentRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetAdhocQueryResultContentRequest.java index 7a2bc40ed43..7db13d2232f 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetAdhocQueryResultContentRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetAdhocQueryResultContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetConditionMetadataTypeRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetConditionMetadataTypeRequest.java index 11c42dcb42f..7a846f24d4e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetConditionMetadataTypeRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetConditionMetadataTypeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetConfigurationRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetConfigurationRequest.java index d4a05537bde..e68dbb75357 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetConfigurationRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDataMaskRuleRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDataMaskRuleRequest.java index 95728356d51..a436b77f4f7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDataMaskRuleRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDataMaskRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDataSourceRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDataSourceRequest.java index efa597fa92c..16bb1c443fe 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDataSourceRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDataSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDetectorRecipeDetectorRuleRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDetectorRecipeDetectorRuleRequest.java index 63c300874fa..df86109c483 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDetectorRecipeDetectorRuleRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDetectorRecipeDetectorRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDetectorRecipeRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDetectorRecipeRequest.java index 6e3cce978aa..58242169efc 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDetectorRecipeRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDetectorRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDetectorRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDetectorRequest.java index d9d8ce20854..8b5c6ed8f94 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDetectorRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDetectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDetectorRuleRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDetectorRuleRequest.java index d4cf972155f..7d3dd4294c2 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDetectorRuleRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetDetectorRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetManagedListRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetManagedListRequest.java index 27523a61ed9..9df86edea3b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetManagedListRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetManagedListRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetProblemRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetProblemRequest.java index 485d62744da..bb86952c4de 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetProblemRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetProblemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResourceProfileRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResourceProfileRequest.java index 991faf2fa26..85eb8179ba5 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResourceProfileRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResourceProfileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResourceRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResourceRequest.java index 0a0b103d9da..77fca75e000 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResourceRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResourceVulnerabilityRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResourceVulnerabilityRequest.java index c0e605b0a08..54ca2b1ff1b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResourceVulnerabilityRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResourceVulnerabilityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResponderExecutionRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResponderExecutionRequest.java index 74735801b05..978ca257624 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResponderExecutionRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResponderExecutionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResponderRecipeRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResponderRecipeRequest.java index 035a0559a7d..7418974ee38 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResponderRecipeRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResponderRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResponderRecipeResponderRuleRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResponderRecipeResponderRuleRequest.java index 8ac37a8dd73..8e61013123a 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResponderRecipeResponderRuleRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResponderRecipeResponderRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResponderRuleRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResponderRuleRequest.java index 5bb65f0934f..b3c6ccb5b38 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResponderRuleRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetResponderRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetSavedQueryRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetSavedQueryRequest.java index 8f32fc867b5..9a8a3c1daf9 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetSavedQueryRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetSavedQueryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetSecurityPolicyRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetSecurityPolicyRequest.java index 5d406ea1c93..961e04d08c2 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetSecurityPolicyRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetSecurityPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetSecurityRecipeRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetSecurityRecipeRequest.java index 9c9aaf53d0c..41d904ae55f 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetSecurityRecipeRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetSecurityRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetSecurityZoneRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetSecurityZoneRequest.java index 1b68877b384..e6950f344a1 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetSecurityZoneRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetSecurityZoneRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetSightingRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetSightingRequest.java index 251f752416c..92dfdf3d8ec 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetSightingRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetSightingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetTargetDetectorRecipeDetectorRuleRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetTargetDetectorRecipeDetectorRuleRequest.java index 1942c4aabc6..cf989190d6e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetTargetDetectorRecipeDetectorRuleRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetTargetDetectorRecipeDetectorRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetTargetDetectorRecipeRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetTargetDetectorRecipeRequest.java index a37b4729902..5c3c08d4e78 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetTargetDetectorRecipeRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetTargetDetectorRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetTargetRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetTargetRequest.java index 62c13bacda1..50b8315b3ff 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetTargetRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetTargetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetTargetResponderRecipeRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetTargetResponderRecipeRequest.java index bdb8ca96a38..a7a8676ec4c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetTargetResponderRecipeRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetTargetResponderRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetTargetResponderRecipeResponderRuleRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetTargetResponderRecipeResponderRuleRequest.java index 985b3da36a3..1461cb88c9c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetTargetResponderRecipeResponderRuleRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetTargetResponderRecipeResponderRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetWlpAgentRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetWlpAgentRequest.java index dbf3fdf0f71..b20fec2f550 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetWlpAgentRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetWlpAgentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetWorkRequestRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetWorkRequestRequest.java index 26b154e2883..831f0188a09 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetWorkRequestRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListAdhocQueriesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListAdhocQueriesRequest.java index 048d9e53382..c55f2e02ac3 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListAdhocQueriesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListAdhocQueriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListAdhocQueryResultsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListAdhocQueryResultsRequest.java index 1ffadfd4b46..0cef2f1c0f8 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListAdhocQueryResultsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListAdhocQueryResultsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListConditionMetadataTypesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListConditionMetadataTypesRequest.java index acf2a320c86..086484e3289 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListConditionMetadataTypesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListConditionMetadataTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDataMaskRulesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDataMaskRulesRequest.java index 99e548da3d3..20845625c10 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDataMaskRulesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDataMaskRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDataSourceEventsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDataSourceEventsRequest.java index 6ad6fac3363..b537d0a7d84 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDataSourceEventsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDataSourceEventsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDataSourcesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDataSourcesRequest.java index 04e449debaf..b0bc114c3bb 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDataSourcesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDataSourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDetectorRecipeDetectorRulesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDetectorRecipeDetectorRulesRequest.java index aefe8447ede..79454689f52 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDetectorRecipeDetectorRulesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDetectorRecipeDetectorRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDetectorRecipesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDetectorRecipesRequest.java index cb58c35c7e5..6ce668f92b6 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDetectorRecipesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDetectorRecipesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDetectorRulesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDetectorRulesRequest.java index d015c482e6d..a5e2c873c79 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDetectorRulesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDetectorRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDetectorsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDetectorsRequest.java index c5fba23cac9..e4a2cc10e1c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDetectorsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListDetectorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListImpactedResourcesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListImpactedResourcesRequest.java index 6c8d82ba005..1b621b9eecb 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListImpactedResourcesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListImpactedResourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListManagedListTypesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListManagedListTypesRequest.java index 57690aa4242..6743d3cb006 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListManagedListTypesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListManagedListTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListManagedListsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListManagedListsRequest.java index eb5a3bd7e77..da4dd3788e7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListManagedListsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListManagedListsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListPoliciesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListPoliciesRequest.java index a01fdf5d4d2..1f63038ef85 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListPoliciesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListProblemEndpointsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListProblemEndpointsRequest.java index d38f213ed90..04ccbc1720a 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListProblemEndpointsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListProblemEndpointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListProblemEntitiesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListProblemEntitiesRequest.java index eb6ccedbebc..cfa0d5b76a3 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListProblemEntitiesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListProblemEntitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListProblemHistoriesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListProblemHistoriesRequest.java index 56baf5f9437..be4c10b6842 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListProblemHistoriesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListProblemHistoriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListProblemsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListProblemsRequest.java index 0807bde1a53..ce223cad156 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListProblemsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListProblemsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListRecommendationsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListRecommendationsRequest.java index 356ef874279..4c4a2f29ee6 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListRecommendationsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListRecommendationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourcePortsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourcePortsRequest.java index 8397a7b0abd..0d518d3d7e0 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourcePortsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourcePortsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourceProfileEndpointsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourceProfileEndpointsRequest.java index 415ae7616bd..a7f8cee3c83 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourceProfileEndpointsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourceProfileEndpointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourceProfileImpactedResourcesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourceProfileImpactedResourcesRequest.java index 9003a2a1726..d35c5813ce9 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourceProfileImpactedResourcesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourceProfileImpactedResourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourceProfilesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourceProfilesRequest.java index 47bea8df8a2..68bebfe2cb4 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourceProfilesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourceProfilesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourceTypesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourceTypesRequest.java index af5d7ac597d..93594c22b9f 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourceTypesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourceTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourceVulnerabilitiesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourceVulnerabilitiesRequest.java index ae705408784..b3a4ae699a5 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourceVulnerabilitiesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourceVulnerabilitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourcesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourcesRequest.java index 6701b0d86e7..550da9d84d0 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourcesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResponderActivitiesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResponderActivitiesRequest.java index 53aa4a5b5d2..eeb2a9e75c1 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResponderActivitiesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResponderActivitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResponderExecutionsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResponderExecutionsRequest.java index eb509c8dcb3..6a728add9b0 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResponderExecutionsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResponderExecutionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResponderRecipeResponderRulesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResponderRecipeResponderRulesRequest.java index 29ec77cd595..56aef62c4b7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResponderRecipeResponderRulesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResponderRecipeResponderRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResponderRecipesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResponderRecipesRequest.java index a6126b407ca..92b5bb05504 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResponderRecipesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResponderRecipesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResponderRulesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResponderRulesRequest.java index d41f09f4d8d..1c69ee6c731 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResponderRulesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListResponderRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSavedQueriesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSavedQueriesRequest.java index a10f22491ec..7f3d69fc753 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSavedQueriesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSavedQueriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSecurityPoliciesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSecurityPoliciesRequest.java index 50e47378503..eb2169300da 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSecurityPoliciesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSecurityPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSecurityRecipesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSecurityRecipesRequest.java index eb700d9475b..bf2b02694d6 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSecurityRecipesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSecurityRecipesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSecurityZonesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSecurityZonesRequest.java index b71c11f2403..82de775e428 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSecurityZonesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSecurityZonesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSightingEndpointsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSightingEndpointsRequest.java index 3d307f00762..c32a209ff76 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSightingEndpointsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSightingEndpointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSightingImpactedResourcesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSightingImpactedResourcesRequest.java index d5ec4683082..cc78c053cd3 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSightingImpactedResourcesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSightingImpactedResourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSightingsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSightingsRequest.java index 20c993b2af6..95c40b7b69c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSightingsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListSightingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTacticsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTacticsRequest.java index a473308ed1b..c8b85c272b1 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTacticsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTacticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTargetDetectorRecipeDetectorRulesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTargetDetectorRecipeDetectorRulesRequest.java index 5357f84f798..90f3d61ed5d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTargetDetectorRecipeDetectorRulesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTargetDetectorRecipeDetectorRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTargetDetectorRecipesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTargetDetectorRecipesRequest.java index 11eabf492e9..6aa7566ba7c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTargetDetectorRecipesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTargetDetectorRecipesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTargetResponderRecipeResponderRulesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTargetResponderRecipeResponderRulesRequest.java index b562c8fd6c5..4501908fcb4 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTargetResponderRecipeResponderRulesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTargetResponderRecipeResponderRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTargetResponderRecipesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTargetResponderRecipesRequest.java index f275cd59977..27318c2256d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTargetResponderRecipesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTargetResponderRecipesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTargetsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTargetsRequest.java index f34e5f64958..578e68e0734 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTargetsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTargetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTechniquesRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTechniquesRequest.java index 3d83b30f9a1..ef85deeb77c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTechniquesRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListTechniquesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListWlpAgentsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListWlpAgentsRequest.java index 62ed7bbb0ba..ba18af91fe3 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListWlpAgentsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListWlpAgentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListWorkRequestErrorsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListWorkRequestErrorsRequest.java index a2742429822..a116642ff62 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListWorkRequestLogsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListWorkRequestLogsRequest.java index 4547c5688ea..367b07729ed 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListWorkRequestLogsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListWorkRequestsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListWorkRequestsRequest.java index 14468578552..226617c5112 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListWorkRequestsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RemoveCompartmentRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RemoveCompartmentRequest.java index 99a4006463e..dbe6899fde6 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RemoveCompartmentRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RemoveCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestRiskScoresRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestRiskScoresRequest.java index a30163c4d58..513c228052f 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestRiskScoresRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestRiskScoresRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSecurityScoreSummarizedTrendRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSecurityScoreSummarizedTrendRequest.java index b3295700646..7cc2399d4b9 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSecurityScoreSummarizedTrendRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSecurityScoreSummarizedTrendRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSecurityScoresRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSecurityScoresRequest.java index 4787cca24dd..8679e1e363d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSecurityScoresRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSecurityScoresRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedActivityProblemsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedActivityProblemsRequest.java index b17e656de78..97e7cc867b8 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedActivityProblemsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedActivityProblemsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedProblemsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedProblemsRequest.java index e32cd584e07..e5f2be9be7d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedProblemsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedProblemsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedResponderExecutionsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedResponderExecutionsRequest.java index 478ed3521c5..21a6ff1dd2a 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedResponderExecutionsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedResponderExecutionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedRiskScoresRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedRiskScoresRequest.java index c57afd31e7b..b8fc5a9e6b7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedRiskScoresRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedRiskScoresRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedSecurityScoresRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedSecurityScoresRequest.java index 2fb341c4802..cd461558001 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedSecurityScoresRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedSecurityScoresRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedTopTrendResourceProfileRiskScoresRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedTopTrendResourceProfileRiskScoresRequest.java index 4f5c3afe38d..9133ba5a4f7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedTopTrendResourceProfileRiskScoresRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedTopTrendResourceProfileRiskScoresRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedTrendProblemsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedTrendProblemsRequest.java index 02006e3ef80..f722560e16f 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedTrendProblemsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedTrendProblemsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedTrendResourceRiskScoresRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedTrendResourceRiskScoresRequest.java index 571ab679989..a86b322877a 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedTrendResourceRiskScoresRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedTrendResourceRiskScoresRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedTrendResponderExecutionsRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedTrendResponderExecutionsRequest.java index b8529eb8fc3..05792d5d76b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedTrendResponderExecutionsRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedTrendResponderExecutionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedTrendSecurityScoresRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedTrendSecurityScoresRequest.java index 14c2749ffee..ff1edc5c325 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedTrendSecurityScoresRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/RequestSummarizedTrendSecurityScoresRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/SkipBulkResponderExecutionRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/SkipBulkResponderExecutionRequest.java index e993c026596..ffc1c6c4453 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/SkipBulkResponderExecutionRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/SkipBulkResponderExecutionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/SkipResponderExecutionRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/SkipResponderExecutionRequest.java index a0abd55e757..b9e7a352261 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/SkipResponderExecutionRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/SkipResponderExecutionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/TriggerResponderRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/TriggerResponderRequest.java index a4488be99a2..16d2aa6ad2c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/TriggerResponderRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/TriggerResponderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateBulkProblemStatusRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateBulkProblemStatusRequest.java index 2797c68cf6e..eb319b54db6 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateBulkProblemStatusRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateBulkProblemStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateConfigurationRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateConfigurationRequest.java index a381215ca6b..aa79cb40ea8 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateConfigurationRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateDataMaskRuleRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateDataMaskRuleRequest.java index 0a756a53bb4..d3a0fe657e7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateDataMaskRuleRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateDataMaskRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateDataSourceRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateDataSourceRequest.java index 40f27b3e6f6..1fdbb50cd7e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateDataSourceRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateDataSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateDetectorRecipeDetectorRuleRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateDetectorRecipeDetectorRuleRequest.java index f7fcb9fac8b..291fcafbb64 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateDetectorRecipeDetectorRuleRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateDetectorRecipeDetectorRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateDetectorRecipeRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateDetectorRecipeRequest.java index 77ff1cc7fee..1d8ab4845af 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateDetectorRecipeRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateDetectorRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateManagedListRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateManagedListRequest.java index dffd1539c7a..e65844c6bbe 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateManagedListRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateManagedListRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateProblemStatusRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateProblemStatusRequest.java index 3d0b5be3dfe..a631d830f9c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateProblemStatusRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateProblemStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateResponderRecipeRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateResponderRecipeRequest.java index 71befd9f561..318f0d841d9 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateResponderRecipeRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateResponderRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateResponderRecipeResponderRuleRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateResponderRecipeResponderRuleRequest.java index 9086c07f1aa..ee839958c8c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateResponderRecipeResponderRuleRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateResponderRecipeResponderRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateSavedQueryRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateSavedQueryRequest.java index eea3be05498..43dabafb53d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateSavedQueryRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateSavedQueryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateSecurityRecipeRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateSecurityRecipeRequest.java index e5e0f7764b9..edd0c813bcc 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateSecurityRecipeRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateSecurityRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateSecurityZoneRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateSecurityZoneRequest.java index da46937c71a..4657e67252a 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateSecurityZoneRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateSecurityZoneRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateTargetDetectorRecipeDetectorRuleRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateTargetDetectorRecipeDetectorRuleRequest.java index 073fb5daa27..49677ae1f49 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateTargetDetectorRecipeDetectorRuleRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateTargetDetectorRecipeDetectorRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateTargetDetectorRecipeRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateTargetDetectorRecipeRequest.java index 0fcde5c0e60..0862fe440e8 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateTargetDetectorRecipeRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateTargetDetectorRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateTargetRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateTargetRequest.java index b9d3999cb04..96244db662a 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateTargetRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateTargetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateTargetResponderRecipeRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateTargetResponderRecipeRequest.java index 953acdb6504..13206f2a7e6 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateTargetResponderRecipeRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateTargetResponderRecipeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateTargetResponderRecipeResponderRuleRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateTargetResponderRecipeResponderRuleRequest.java index f512dc1918e..5a58e9a5172 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateTargetResponderRecipeResponderRuleRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateTargetResponderRecipeResponderRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateWlpAgentRequest.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateWlpAgentRequest.java index 224976c0e7f..4b4f6756233 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateWlpAgentRequest.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/requests/UpdateWlpAgentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.requests; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/AddCompartmentResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/AddCompartmentResponse.java index 7896cd64299..d8fb8274b1e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/AddCompartmentResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/AddCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CancelWorkRequestResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CancelWorkRequestResponse.java index c5e1da9042f..4dabb5f7cc0 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CancelWorkRequestResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeDataSourceCompartmentResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeDataSourceCompartmentResponse.java index 066c3576941..048235829f2 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeDataSourceCompartmentResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeDataSourceCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeDetectorRecipeCompartmentResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeDetectorRecipeCompartmentResponse.java index 68114729a78..372defc349c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeDetectorRecipeCompartmentResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeDetectorRecipeCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeManagedListCompartmentResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeManagedListCompartmentResponse.java index 6a2728cf373..24ad8a6345e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeManagedListCompartmentResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeManagedListCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeResponderRecipeCompartmentResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeResponderRecipeCompartmentResponse.java index 97ac9ebf09c..b0507d3c0c0 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeResponderRecipeCompartmentResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeResponderRecipeCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeSavedQueryCompartmentResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeSavedQueryCompartmentResponse.java index 5eba853821a..ae513f25f67 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeSavedQueryCompartmentResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeSavedQueryCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeSecurityRecipeCompartmentResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeSecurityRecipeCompartmentResponse.java index e2309183e42..22986beab45 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeSecurityRecipeCompartmentResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeSecurityRecipeCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeSecurityZoneCompartmentResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeSecurityZoneCompartmentResponse.java index 03f6ce783b3..dfd7a6e9203 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeSecurityZoneCompartmentResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ChangeSecurityZoneCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateAdhocQueryResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateAdhocQueryResponse.java index 8b5b9ca2378..6444fd72702 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateAdhocQueryResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateAdhocQueryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateDataMaskRuleResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateDataMaskRuleResponse.java index 82c246262ea..948e283670a 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateDataMaskRuleResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateDataMaskRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateDataSourceResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateDataSourceResponse.java index aa19556dcb7..a2812a7a7ac 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateDataSourceResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateDataSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateDetectorRecipeDetectorRuleResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateDetectorRecipeDetectorRuleResponse.java index 9ffa20a9959..3a172d71f87 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateDetectorRecipeDetectorRuleResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateDetectorRecipeDetectorRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateDetectorRecipeResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateDetectorRecipeResponse.java index 69ab9fae874..7bdc6108dac 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateDetectorRecipeResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateDetectorRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateManagedListResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateManagedListResponse.java index ee859fb11fd..948c366b357 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateManagedListResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateManagedListResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateResponderRecipeResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateResponderRecipeResponse.java index 5912a0d206c..6daf8effebf 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateResponderRecipeResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateResponderRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateSavedQueryResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateSavedQueryResponse.java index ed2f42f2cf0..a42a2247560 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateSavedQueryResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateSavedQueryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateSecurityRecipeResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateSecurityRecipeResponse.java index f47946bad0a..c1f55f952c0 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateSecurityRecipeResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateSecurityRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateSecurityZoneResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateSecurityZoneResponse.java index 77ce7e732a0..cc68b3a5398 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateSecurityZoneResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateSecurityZoneResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateTargetDetectorRecipeResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateTargetDetectorRecipeResponse.java index 0b5a2de679c..1f2a8a1c0a2 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateTargetDetectorRecipeResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateTargetDetectorRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateTargetResponderRecipeResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateTargetResponderRecipeResponse.java index 58072b1fcc4..f28bd04df0f 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateTargetResponderRecipeResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateTargetResponderRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateTargetResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateTargetResponse.java index fb7dd212f3a..21fbbb02372 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateTargetResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateTargetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateWlpAgentResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateWlpAgentResponse.java index b81eca18e78..9d33781cb78 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateWlpAgentResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/CreateWlpAgentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteAdhocQueryResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteAdhocQueryResponse.java index 7e580122ca7..8ad7370f20b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteAdhocQueryResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteAdhocQueryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteDataMaskRuleResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteDataMaskRuleResponse.java index 64115506d7e..c3740606061 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteDataMaskRuleResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteDataMaskRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteDataSourceResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteDataSourceResponse.java index 7233b6b3d91..e46bfbd3ff3 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteDataSourceResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteDataSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteDetectorRecipeDetectorRuleDataSourceResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteDetectorRecipeDetectorRuleDataSourceResponse.java index 45325440e3f..46f1882af90 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteDetectorRecipeDetectorRuleDataSourceResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteDetectorRecipeDetectorRuleDataSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteDetectorRecipeDetectorRuleResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteDetectorRecipeDetectorRuleResponse.java index 34000d5166f..73146f73673 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteDetectorRecipeDetectorRuleResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteDetectorRecipeDetectorRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteDetectorRecipeResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteDetectorRecipeResponse.java index 6b7df62a957..a008b763a4a 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteDetectorRecipeResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteDetectorRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteManagedListResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteManagedListResponse.java index 8602a17c0d5..4a217dcba3b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteManagedListResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteManagedListResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteResponderRecipeResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteResponderRecipeResponse.java index 50cb89c3f3b..241af8acfe7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteResponderRecipeResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteResponderRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteSavedQueryResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteSavedQueryResponse.java index cef45bc4424..94e10c00f93 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteSavedQueryResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteSavedQueryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteSecurityRecipeResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteSecurityRecipeResponse.java index 3d770d9826a..212c738f384 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteSecurityRecipeResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteSecurityRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteSecurityZoneResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteSecurityZoneResponse.java index 8a1d9a3a8fd..f162976fd3d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteSecurityZoneResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteSecurityZoneResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteTargetDetectorRecipeResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteTargetDetectorRecipeResponse.java index 2a6d2eac295..dc26e186918 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteTargetDetectorRecipeResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteTargetDetectorRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteTargetResponderRecipeResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteTargetResponderRecipeResponse.java index 1839ee16961..0bc74fc3875 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteTargetResponderRecipeResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteTargetResponderRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteTargetResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteTargetResponse.java index bf52f944b0c..ac01459899a 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteTargetResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteTargetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteWlpAgentResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteWlpAgentResponse.java index b6ebfb91036..858ad1204d2 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteWlpAgentResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/DeleteWlpAgentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ExecuteResponderExecutionResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ExecuteResponderExecutionResponse.java index 089e7fff05f..67ebbd8732b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ExecuteResponderExecutionResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ExecuteResponderExecutionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetAdhocQueryResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetAdhocQueryResponse.java index b17db72fe0c..95bd6b3449d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetAdhocQueryResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetAdhocQueryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetAdhocQueryResultContentResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetAdhocQueryResultContentResponse.java index 837dca6fce7..fcb59f90072 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetAdhocQueryResultContentResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetAdhocQueryResultContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetConditionMetadataTypeResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetConditionMetadataTypeResponse.java index e3dd0927267..83b952713c7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetConditionMetadataTypeResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetConditionMetadataTypeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetConfigurationResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetConfigurationResponse.java index 4531f6f991d..0300dc001da 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetConfigurationResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDataMaskRuleResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDataMaskRuleResponse.java index 2f25b31a33c..c70bf20743e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDataMaskRuleResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDataMaskRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDataSourceResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDataSourceResponse.java index 294fe8020e8..e64b0546558 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDataSourceResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDataSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDetectorRecipeDetectorRuleResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDetectorRecipeDetectorRuleResponse.java index f3c7ae43c94..451c3c30c9d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDetectorRecipeDetectorRuleResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDetectorRecipeDetectorRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDetectorRecipeResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDetectorRecipeResponse.java index a2f0dc67ef1..06ad1ab1cd1 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDetectorRecipeResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDetectorRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDetectorResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDetectorResponse.java index e9a8bd6da71..b08e161f4a1 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDetectorResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDetectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDetectorRuleResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDetectorRuleResponse.java index dfa73beba99..3f5f2392aad 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDetectorRuleResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetDetectorRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetManagedListResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetManagedListResponse.java index d4f6c1a81ab..8c84c437cd5 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetManagedListResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetManagedListResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetProblemResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetProblemResponse.java index 0bad2f029e5..afc3d7d5d09 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetProblemResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetProblemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResourceProfileResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResourceProfileResponse.java index e04d2704a9b..a3e4d0946b2 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResourceProfileResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResourceProfileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResourceResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResourceResponse.java index 2d08bb7c28c..3e4a29a3898 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResourceResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResourceVulnerabilityResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResourceVulnerabilityResponse.java index 1053cd2df85..6dcfdbb0203 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResourceVulnerabilityResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResourceVulnerabilityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResponderExecutionResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResponderExecutionResponse.java index c7b972ba3a9..d38824a72ea 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResponderExecutionResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResponderExecutionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResponderRecipeResponderRuleResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResponderRecipeResponderRuleResponse.java index 2b4c2bf4dbf..b2716ba3366 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResponderRecipeResponderRuleResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResponderRecipeResponderRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResponderRecipeResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResponderRecipeResponse.java index 081ece48a4c..44c25bd0740 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResponderRecipeResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResponderRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResponderRuleResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResponderRuleResponse.java index 24f91bdc230..cac470fe759 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResponderRuleResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetResponderRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetSavedQueryResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetSavedQueryResponse.java index 779afacc3bd..f091ba709db 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetSavedQueryResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetSavedQueryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetSecurityPolicyResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetSecurityPolicyResponse.java index 3723b1a7992..e5c5fdda7a6 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetSecurityPolicyResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetSecurityPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetSecurityRecipeResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetSecurityRecipeResponse.java index 0009d816095..bf22382a0ef 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetSecurityRecipeResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetSecurityRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetSecurityZoneResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetSecurityZoneResponse.java index 09c63603bf9..5cfbebc6280 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetSecurityZoneResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetSecurityZoneResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetSightingResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetSightingResponse.java index f28a6678dbf..d6d54cee17a 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetSightingResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetSightingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetTargetDetectorRecipeDetectorRuleResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetTargetDetectorRecipeDetectorRuleResponse.java index 5cf8915f4c2..1de30c7b2c1 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetTargetDetectorRecipeDetectorRuleResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetTargetDetectorRecipeDetectorRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetTargetDetectorRecipeResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetTargetDetectorRecipeResponse.java index a0344a986ab..7d8151a3a3d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetTargetDetectorRecipeResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetTargetDetectorRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetTargetResponderRecipeResponderRuleResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetTargetResponderRecipeResponderRuleResponse.java index 4e632f70a0b..e245a79a004 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetTargetResponderRecipeResponderRuleResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetTargetResponderRecipeResponderRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetTargetResponderRecipeResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetTargetResponderRecipeResponse.java index a4f7b0443ea..8708f4957a5 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetTargetResponderRecipeResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetTargetResponderRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetTargetResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetTargetResponse.java index 82bd9e7cc35..5866de9c896 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetTargetResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetTargetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetWlpAgentResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetWlpAgentResponse.java index 12a680ca920..e7239629e14 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetWlpAgentResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetWlpAgentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetWorkRequestResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetWorkRequestResponse.java index fe3ebd5de0c..ac2594f9c40 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetWorkRequestResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListAdhocQueriesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListAdhocQueriesResponse.java index 1aa3da9acbf..0520e67cf77 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListAdhocQueriesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListAdhocQueriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListAdhocQueryResultsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListAdhocQueryResultsResponse.java index 119b9f9d980..d350e6471f2 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListAdhocQueryResultsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListAdhocQueryResultsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListConditionMetadataTypesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListConditionMetadataTypesResponse.java index 0363e1e8359..e543200d326 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListConditionMetadataTypesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListConditionMetadataTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDataMaskRulesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDataMaskRulesResponse.java index 5ca935d5841..7290b945532 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDataMaskRulesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDataMaskRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDataSourceEventsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDataSourceEventsResponse.java index 13d98fd928a..94665999b4a 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDataSourceEventsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDataSourceEventsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDataSourcesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDataSourcesResponse.java index e30e4c1fdf4..f9964bf2b7c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDataSourcesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDataSourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDetectorRecipeDetectorRulesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDetectorRecipeDetectorRulesResponse.java index e14ac407460..c8c41f130ac 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDetectorRecipeDetectorRulesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDetectorRecipeDetectorRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDetectorRecipesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDetectorRecipesResponse.java index 79f5c0a6a1d..602fe88cd5b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDetectorRecipesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDetectorRecipesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDetectorRulesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDetectorRulesResponse.java index 71e74e05c1a..5bbf19987e5 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDetectorRulesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDetectorRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDetectorsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDetectorsResponse.java index d7e647cf351..e4ccc117a62 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDetectorsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListDetectorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListImpactedResourcesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListImpactedResourcesResponse.java index fab8a83e417..8de95aa1576 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListImpactedResourcesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListImpactedResourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListManagedListTypesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListManagedListTypesResponse.java index a5bbae6efc5..481874063ea 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListManagedListTypesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListManagedListTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListManagedListsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListManagedListsResponse.java index 924265db4e1..7933a41c2b5 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListManagedListsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListManagedListsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListPoliciesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListPoliciesResponse.java index d2db202989d..71429ab99e0 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListPoliciesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListProblemEndpointsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListProblemEndpointsResponse.java index ca3e6b2b29f..a26f8bb95f0 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListProblemEndpointsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListProblemEndpointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListProblemEntitiesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListProblemEntitiesResponse.java index 07583f49a2c..08d1778134e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListProblemEntitiesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListProblemEntitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListProblemHistoriesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListProblemHistoriesResponse.java index 95e1a42a39e..60194441c3b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListProblemHistoriesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListProblemHistoriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListProblemsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListProblemsResponse.java index 8339042efbc..dfa73f74cc2 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListProblemsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListProblemsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListRecommendationsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListRecommendationsResponse.java index 9a6b23f1114..9b8fdb80f59 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListRecommendationsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListRecommendationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourcePortsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourcePortsResponse.java index a7699169c44..02fb5376f4d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourcePortsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourcePortsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourceProfileEndpointsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourceProfileEndpointsResponse.java index 1bbcd4a8a29..167b43e5571 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourceProfileEndpointsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourceProfileEndpointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourceProfileImpactedResourcesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourceProfileImpactedResourcesResponse.java index ca639f345b8..a58dbfe70e1 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourceProfileImpactedResourcesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourceProfileImpactedResourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourceProfilesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourceProfilesResponse.java index 01cec376f38..353a6933273 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourceProfilesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourceProfilesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourceTypesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourceTypesResponse.java index 7371803fc18..115c5643090 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourceTypesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourceTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourceVulnerabilitiesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourceVulnerabilitiesResponse.java index ad9159de09b..44dfc6b346b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourceVulnerabilitiesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourceVulnerabilitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourcesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourcesResponse.java index 8e0cd59ef44..fc61394be17 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourcesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResponderActivitiesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResponderActivitiesResponse.java index 24530c3579a..5edf02d523b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResponderActivitiesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResponderActivitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResponderExecutionsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResponderExecutionsResponse.java index aed3fedcb96..f57ea4993df 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResponderExecutionsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResponderExecutionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResponderRecipeResponderRulesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResponderRecipeResponderRulesResponse.java index dc087e0a9dd..416c1931a71 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResponderRecipeResponderRulesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResponderRecipeResponderRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResponderRecipesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResponderRecipesResponse.java index afdbc8e7c7f..c35405eab79 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResponderRecipesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResponderRecipesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResponderRulesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResponderRulesResponse.java index 9ca5ee6d56d..2b448f38daa 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResponderRulesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListResponderRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSavedQueriesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSavedQueriesResponse.java index f2b819bd973..fde6dcebefb 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSavedQueriesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSavedQueriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSecurityPoliciesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSecurityPoliciesResponse.java index bc9def8e6f1..8f73641f8d0 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSecurityPoliciesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSecurityPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSecurityRecipesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSecurityRecipesResponse.java index fa6f04f1e96..7177a1f1d85 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSecurityRecipesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSecurityRecipesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSecurityZonesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSecurityZonesResponse.java index a8335d446d1..2c68e64723e 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSecurityZonesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSecurityZonesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSightingEndpointsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSightingEndpointsResponse.java index eb6178b8cfd..73cb6774811 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSightingEndpointsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSightingEndpointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSightingImpactedResourcesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSightingImpactedResourcesResponse.java index eeaa9a3a5e3..66836dbc7be 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSightingImpactedResourcesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSightingImpactedResourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSightingsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSightingsResponse.java index 4a84a5112ea..4a49076472c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSightingsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListSightingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTacticsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTacticsResponse.java index 2cc3e9b0e9e..15fef81870a 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTacticsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTacticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTargetDetectorRecipeDetectorRulesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTargetDetectorRecipeDetectorRulesResponse.java index 9260f9200a4..cf8070bbb2a 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTargetDetectorRecipeDetectorRulesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTargetDetectorRecipeDetectorRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTargetDetectorRecipesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTargetDetectorRecipesResponse.java index a390968c74f..4f8b14f64db 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTargetDetectorRecipesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTargetDetectorRecipesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTargetResponderRecipeResponderRulesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTargetResponderRecipeResponderRulesResponse.java index b456f7f066f..20860803437 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTargetResponderRecipeResponderRulesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTargetResponderRecipeResponderRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTargetResponderRecipesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTargetResponderRecipesResponse.java index 6576a1e965b..37b135f87e7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTargetResponderRecipesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTargetResponderRecipesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTargetsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTargetsResponse.java index d84bce3e2cd..d56434eb3ec 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTargetsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTargetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTechniquesResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTechniquesResponse.java index b19454a2c50..0c61300cf19 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTechniquesResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListTechniquesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListWlpAgentsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListWlpAgentsResponse.java index e5d05e21c6f..13a225e2fa3 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListWlpAgentsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListWlpAgentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListWorkRequestErrorsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListWorkRequestErrorsResponse.java index 8f1a5c48a3c..f070d5a91a4 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListWorkRequestLogsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListWorkRequestLogsResponse.java index 5f9fbfbc38b..1e784bbd458 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListWorkRequestLogsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListWorkRequestsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListWorkRequestsResponse.java index 0c091cac81e..3e65205b754 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListWorkRequestsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RemoveCompartmentResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RemoveCompartmentResponse.java index 1cbb56b81f5..5a548030f30 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RemoveCompartmentResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RemoveCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestRiskScoresResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestRiskScoresResponse.java index 4212cdf5e0d..ed19488e18d 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestRiskScoresResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestRiskScoresResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSecurityScoreSummarizedTrendResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSecurityScoreSummarizedTrendResponse.java index 7e3fbb52d9e..d60d28bdc79 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSecurityScoreSummarizedTrendResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSecurityScoreSummarizedTrendResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSecurityScoresResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSecurityScoresResponse.java index 379a76878b6..bece7b019de 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSecurityScoresResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSecurityScoresResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedActivityProblemsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedActivityProblemsResponse.java index f440ea2f7e7..78f2d928ffb 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedActivityProblemsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedActivityProblemsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedProblemsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedProblemsResponse.java index ed8a827caca..8facce54491 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedProblemsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedProblemsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedResponderExecutionsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedResponderExecutionsResponse.java index 3f51f747267..9d8804dd862 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedResponderExecutionsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedResponderExecutionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedRiskScoresResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedRiskScoresResponse.java index 04831dda545..aff4dd4b170 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedRiskScoresResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedRiskScoresResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedSecurityScoresResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedSecurityScoresResponse.java index 5a55bd8e120..cb07402cd8c 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedSecurityScoresResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedSecurityScoresResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedTopTrendResourceProfileRiskScoresResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedTopTrendResourceProfileRiskScoresResponse.java index 76bc3c98a46..c278845ad47 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedTopTrendResourceProfileRiskScoresResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedTopTrendResourceProfileRiskScoresResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedTrendProblemsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedTrendProblemsResponse.java index c249bb96946..1cf0c1010d3 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedTrendProblemsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedTrendProblemsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedTrendResourceRiskScoresResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedTrendResourceRiskScoresResponse.java index 1108a98342d..a4442724605 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedTrendResourceRiskScoresResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedTrendResourceRiskScoresResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedTrendResponderExecutionsResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedTrendResponderExecutionsResponse.java index 213a3f0ddf3..0718afec57b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedTrendResponderExecutionsResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedTrendResponderExecutionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedTrendSecurityScoresResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedTrendSecurityScoresResponse.java index 4b11947fde6..cb5cf6d7feb 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedTrendSecurityScoresResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/RequestSummarizedTrendSecurityScoresResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/SkipBulkResponderExecutionResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/SkipBulkResponderExecutionResponse.java index 03abe698aa5..09c0dbbb81f 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/SkipBulkResponderExecutionResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/SkipBulkResponderExecutionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/SkipResponderExecutionResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/SkipResponderExecutionResponse.java index 5d97865f955..5056294c920 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/SkipResponderExecutionResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/SkipResponderExecutionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/TriggerResponderResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/TriggerResponderResponse.java index 75d5613b10e..b20c0df7c66 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/TriggerResponderResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/TriggerResponderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateBulkProblemStatusResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateBulkProblemStatusResponse.java index 01359afdcc2..4f9268ea192 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateBulkProblemStatusResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateBulkProblemStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateConfigurationResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateConfigurationResponse.java index 27a1ed927d0..166031dc8b7 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateConfigurationResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateDataMaskRuleResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateDataMaskRuleResponse.java index 5ff65133a62..6430441f113 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateDataMaskRuleResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateDataMaskRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateDataSourceResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateDataSourceResponse.java index c55513d0b84..7fc9fabf415 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateDataSourceResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateDataSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateDetectorRecipeDetectorRuleResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateDetectorRecipeDetectorRuleResponse.java index 66bea939339..262f3b7267a 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateDetectorRecipeDetectorRuleResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateDetectorRecipeDetectorRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateDetectorRecipeResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateDetectorRecipeResponse.java index 15435ffc0c5..a41534869ef 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateDetectorRecipeResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateDetectorRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateManagedListResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateManagedListResponse.java index add852a1ff5..26d934be7ca 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateManagedListResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateManagedListResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateProblemStatusResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateProblemStatusResponse.java index 34b3e0bdce9..836c5661653 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateProblemStatusResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateProblemStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateResponderRecipeResponderRuleResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateResponderRecipeResponderRuleResponse.java index 61d58e267a2..19c16249dea 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateResponderRecipeResponderRuleResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateResponderRecipeResponderRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateResponderRecipeResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateResponderRecipeResponse.java index 79e98d65df5..3885a4935f0 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateResponderRecipeResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateResponderRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateSavedQueryResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateSavedQueryResponse.java index 8837f2dc057..6400b75f0ab 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateSavedQueryResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateSavedQueryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateSecurityRecipeResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateSecurityRecipeResponse.java index 072a547fe90..7ec50b195fc 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateSecurityRecipeResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateSecurityRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateSecurityZoneResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateSecurityZoneResponse.java index 433a29e62d3..601bb6085ec 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateSecurityZoneResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateSecurityZoneResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateTargetDetectorRecipeDetectorRuleResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateTargetDetectorRecipeDetectorRuleResponse.java index fd9cc094624..4c33efd9c46 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateTargetDetectorRecipeDetectorRuleResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateTargetDetectorRecipeDetectorRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateTargetDetectorRecipeResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateTargetDetectorRecipeResponse.java index 5d5b04b50df..08cdf7f87d6 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateTargetDetectorRecipeResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateTargetDetectorRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateTargetResponderRecipeResponderRuleResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateTargetResponderRecipeResponderRuleResponse.java index c2d90eb1a43..df60a15fa1b 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateTargetResponderRecipeResponderRuleResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateTargetResponderRecipeResponderRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateTargetResponderRecipeResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateTargetResponderRecipeResponse.java index b6141d71797..dd49446d657 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateTargetResponderRecipeResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateTargetResponderRecipeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateTargetResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateTargetResponse.java index 1062c94c502..c74e59a0244 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateTargetResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateTargetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateWlpAgentResponse.java b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateWlpAgentResponse.java index a9b1c560470..00534e267eb 100644 --- a/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateWlpAgentResponse.java +++ b/bmc-cloudguard/src/main/java/com/oracle/bmc/cloudguard/responses/UpdateWlpAgentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudguard.responses; diff --git a/bmc-cloudguard/src/main/resources/com/oracle/bmc/cloudguard/client.properties b/bmc-cloudguard/src/main/resources/com/oracle/bmc/cloudguard/client.properties index 07f1a8f2dca..40b4e55d62c 100644 --- a/bmc-cloudguard/src/main/resources/com/oracle/bmc/cloudguard/client.properties +++ b/bmc-cloudguard/src/main/resources/com/oracle/bmc/cloudguard/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-cloudmigrations/pom.xml b/bmc-cloudmigrations/pom.xml index acd13d28f29..619fc407ded 100644 --- a/bmc-cloudmigrations/pom.xml +++ b/bmc-cloudmigrations/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-cloudmigrations @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/Migration.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/Migration.java index 035c64c4394..0374582215e 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/Migration.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/Migration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/MigrationAsync.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/MigrationAsync.java index aabe2644713..0038b274430 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/MigrationAsync.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/MigrationAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/MigrationAsyncClient.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/MigrationAsyncClient.java index 6ea60fb02a8..d8e456afe84 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/MigrationAsyncClient.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/MigrationAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/MigrationClient.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/MigrationClient.java index a8ae341ab6a..4e83aab084f 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/MigrationClient.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/MigrationClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/MigrationPaginators.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/MigrationPaginators.java index fe5b828ec71..81160945050 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/MigrationPaginators.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/MigrationPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/MigrationWaiters.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/MigrationWaiters.java index b72cf387737..a4d643c1ed7 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/MigrationWaiters.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/MigrationWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AccessLevel.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AccessLevel.java index 6bbebb74d1e..99e5cceffa7 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AccessLevel.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AccessLevel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ActionType.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ActionType.java index 94f0c6526f0..dd3fc88b6fd 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ActionType.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AsIsResourceAssessmentStrategy.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AsIsResourceAssessmentStrategy.java index c62869e0df3..e38028f7f59 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AsIsResourceAssessmentStrategy.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AsIsResourceAssessmentStrategy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSource.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSource.java index 7e134c7e47e..84318dd9c91 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSource.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceCollection.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceCollection.java index 9c97100238e..b26117d5c3a 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceCollection.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceConnection.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceConnection.java index 774b2da3e88..af8a5aa5e62 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceConnection.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceConnectionCollection.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceConnectionCollection.java index bb71900189b..80ced8c517a 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceConnectionCollection.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceConnectionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceConnectionLifecycleState.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceConnectionLifecycleState.java index 16a1b595f6b..eda678333db 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceConnectionLifecycleState.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceConnectionLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceConnectionType.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceConnectionType.java index ca125eb1098..11607aec8b8 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceConnectionType.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceConnectionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceCredentials.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceCredentials.java index f3a19e49ef3..abfc77233fd 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceCredentials.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceCredentialsType.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceCredentialsType.java index 99999e7f98d..b35d247fa1a 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceCredentialsType.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceCredentialsType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceLifecycleState.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceLifecycleState.java index 70fe45d8236..c10148f88f1 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceLifecycleState.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceSummary.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceSummary.java index 8d7096be1cd..9ea33d5fd0a 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceSummary.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceType.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceType.java index 13babc566a7..9810b10dce4 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceType.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AssetSourceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AvailableShapeSummary.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AvailableShapeSummary.java index b7486c25fee..1257208643a 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AvailableShapeSummary.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AvailableShapeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AvailableShapesCollection.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AvailableShapesCollection.java index ea47879d36c..0aff2622a5a 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AvailableShapesCollection.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AvailableShapesCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AverageResourceAssessmentStrategy.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AverageResourceAssessmentStrategy.java index 3470de5ebc5..77b6d5d15f6 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AverageResourceAssessmentStrategy.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/AverageResourceAssessmentStrategy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ChangeAssetSourceCompartmentDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ChangeAssetSourceCompartmentDetails.java index eb2b67d2cf4..6a333548d22 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ChangeAssetSourceCompartmentDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ChangeAssetSourceCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ChangeDiscoveryScheduleCompartmentDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ChangeDiscoveryScheduleCompartmentDetails.java index 9a05f5afacc..4b151021cbb 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ChangeDiscoveryScheduleCompartmentDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ChangeDiscoveryScheduleCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ChangeMigrationCompartmentDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ChangeMigrationCompartmentDetails.java index 473728b6d20..5da4e12ea23 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ChangeMigrationCompartmentDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ChangeMigrationCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ChangeMigrationPlanCompartmentDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ChangeMigrationPlanCompartmentDetails.java index c90d83f47a3..264895245d5 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ChangeMigrationPlanCompartmentDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ChangeMigrationPlanCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ChangeReplicationScheduleCompartmentDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ChangeReplicationScheduleCompartmentDetails.java index d414fd93cb9..99e8888879d 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ChangeReplicationScheduleCompartmentDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ChangeReplicationScheduleCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CompatibilityMessage.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CompatibilityMessage.java index 7c8d6835ac5..5fddbc31d3a 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CompatibilityMessage.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CompatibilityMessage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ComputeCostEstimation.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ComputeCostEstimation.java index ea4b525ab4f..7d815cac520 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ComputeCostEstimation.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ComputeCostEstimation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CostEstimation.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CostEstimation.java index 629c36e4e41..632baead342 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CostEstimation.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CostEstimation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateAssetSourceDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateAssetSourceDetails.java index 3089099d701..a1f69494550 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateAssetSourceDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateAssetSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateDiscoveryScheduleDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateDiscoveryScheduleDetails.java index e6054f8afb0..2271a876788 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateDiscoveryScheduleDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateDiscoveryScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateMigrationAssetDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateMigrationAssetDetails.java index 94f70820e85..9a38d7774e4 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateMigrationAssetDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateMigrationAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateMigrationDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateMigrationDetails.java index d81dc2ffef7..d692568c7f7 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateMigrationDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateMigrationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateMigrationPlanDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateMigrationPlanDetails.java index d762013f5de..953cced6bb1 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateMigrationPlanDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateMigrationPlanDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateReplicationScheduleDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateReplicationScheduleDetails.java index 523612bc766..f42cf5cc774 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateReplicationScheduleDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateReplicationScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateTargetAssetDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateTargetAssetDetails.java index 9e5cdd581f3..b64ddd273e6 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateTargetAssetDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateTargetAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateVmTargetAssetDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateVmTargetAssetDetails.java index ef414c19277..fe12aba17fa 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateVmTargetAssetDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateVmTargetAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateVmWareAssetSourceDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateVmWareAssetSourceDetails.java index cff7b426626..a44cfa1f7e1 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateVmWareAssetSourceDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateVmWareAssetSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateVnicDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateVnicDetails.java index f1f84ff5682..c2d8d78d1b1 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateVnicDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/CreateVnicDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/DiscoverySchedule.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/DiscoverySchedule.java index bd934753e32..c6b118932ac 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/DiscoverySchedule.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/DiscoverySchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/DiscoveryScheduleCollection.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/DiscoveryScheduleCollection.java index 675a0b29028..a76ae60da09 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/DiscoveryScheduleCollection.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/DiscoveryScheduleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/DiscoveryScheduleLifecycleState.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/DiscoveryScheduleLifecycleState.java index 28f03700b4b..ffa697a8ae3 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/DiscoveryScheduleLifecycleState.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/DiscoveryScheduleLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/DiscoveryScheduleSummary.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/DiscoveryScheduleSummary.java index 7bccd791084..3d76d044fd1 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/DiscoveryScheduleSummary.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/DiscoveryScheduleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/HydratedVolume.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/HydratedVolume.java index f80173a141a..fb0cc98f7f2 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/HydratedVolume.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/HydratedVolume.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/InstanceAgentPluginConfigDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/InstanceAgentPluginConfigDetails.java index 71a53746c3c..2343ee833c3 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/InstanceAgentPluginConfigDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/InstanceAgentPluginConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/InstanceOptions.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/InstanceOptions.java index 15325810828..28ed2fb51b3 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/InstanceOptions.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/InstanceOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/InstanceSourceDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/InstanceSourceDetails.java index 95eb7b73d7e..96918daeb7f 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/InstanceSourceDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/InstanceSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/InstanceSourceViaBootVolumeDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/InstanceSourceViaBootVolumeDetails.java index 265025a053e..bf0c4600fa6 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/InstanceSourceViaBootVolumeDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/InstanceSourceViaBootVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/InstanceSourceViaImageDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/InstanceSourceViaImageDetails.java index 0c1264bcbb9..08560b47f4e 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/InstanceSourceViaImageDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/InstanceSourceViaImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/LaunchInstanceAgentConfigDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/LaunchInstanceAgentConfigDetails.java index 023b4d39e05..a666f151033 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/LaunchInstanceAgentConfigDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/LaunchInstanceAgentConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/LaunchInstanceDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/LaunchInstanceDetails.java index 2955b2fbd3c..bc0f5c4e855 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/LaunchInstanceDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/LaunchInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/LaunchInstanceShapeConfigDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/LaunchInstanceShapeConfigDetails.java index 8269f57fb78..c11adeb25f3 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/LaunchInstanceShapeConfigDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/LaunchInstanceShapeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MetricTimeWindow.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MetricTimeWindow.java index 64f2dee8a01..5c3dbca78c7 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MetricTimeWindow.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MetricTimeWindow.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MetricType.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MetricType.java index 3c82f10fbc9..8d0f985af9f 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MetricType.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MetricType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/Migration.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/Migration.java index bb65a2f3d56..330931d504e 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/Migration.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/Migration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationAsset.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationAsset.java index 36619d2351d..44db6d56b1e 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationAsset.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationAsset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationAssetCollection.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationAssetCollection.java index 5dcef48b1ce..48db8d301b4 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationAssetCollection.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationAssetCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationAssetSummary.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationAssetSummary.java index dfe5fdcd409..64ea243ac21 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationAssetSummary.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationAssetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationCollection.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationCollection.java index 351a31fea33..9f0a3fc57cd 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationCollection.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationPlan.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationPlan.java index 97edd50bd82..c543aff565c 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationPlan.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationPlan.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationPlanCollection.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationPlanCollection.java index 02c20ba9169..4ebc8742583 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationPlanCollection.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationPlanCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationPlanStats.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationPlanStats.java index aa1662e1c46..d2b6c894038 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationPlanStats.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationPlanStats.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationPlanSummary.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationPlanSummary.java index 755790d3346..7420dd27390 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationPlanSummary.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationPlanSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationSummary.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationSummary.java index e5abaa71221..feb32d81382 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationSummary.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/MigrationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/OperationStatus.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/OperationStatus.java index d778b1b3be5..280d7820531 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/OperationStatus.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/OperationType.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/OperationType.java index 00641fbd65e..12722b9d69d 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/OperationType.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/OsImageEstimation.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/OsImageEstimation.java index 0e48af24968..05eddad1b4e 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/OsImageEstimation.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/OsImageEstimation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/PeakResourceAssessmentStrategy.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/PeakResourceAssessmentStrategy.java index 4fa1a2c3906..15c2b00b501 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/PeakResourceAssessmentStrategy.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/PeakResourceAssessmentStrategy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/PercentileResourceAssessmentStrategy.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/PercentileResourceAssessmentStrategy.java index d062b86f3a9..40ec7e4b544 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/PercentileResourceAssessmentStrategy.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/PercentileResourceAssessmentStrategy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/PreemptibleInstanceConfigDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/PreemptibleInstanceConfigDetails.java index 93e8f9932ae..3e22a6f8cb3 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/PreemptibleInstanceConfigDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/PreemptibleInstanceConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/PreemptionAction.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/PreemptionAction.java index 31d8eb73bdb..c36345ddb1e 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/PreemptionAction.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/PreemptionAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ReplicationProgress.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ReplicationProgress.java index f1fb38548c9..a724372e01f 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ReplicationProgress.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ReplicationProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ReplicationSchedule.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ReplicationSchedule.java index 574995f5dea..7051e07197f 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ReplicationSchedule.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ReplicationSchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ReplicationScheduleCollection.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ReplicationScheduleCollection.java index 33d6769e9b5..05f6aba6455 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ReplicationScheduleCollection.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ReplicationScheduleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ReplicationScheduleSummary.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ReplicationScheduleSummary.java index 4130e843066..b3a765d8adf 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ReplicationScheduleSummary.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ReplicationScheduleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ResourceAssessmentStrategy.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ResourceAssessmentStrategy.java index 8a69b048c10..0a752f88776 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ResourceAssessmentStrategy.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/ResourceAssessmentStrategy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/SortOrder.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/SortOrder.java index 715bce94d42..4f1016477dd 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/SortOrder.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/StorageCostEstimation.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/StorageCostEstimation.java index 560d146f880..aa262bf4c2e 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/StorageCostEstimation.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/StorageCostEstimation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/TargetAsset.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/TargetAsset.java index 23a6f709306..2ba13f058df 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/TargetAsset.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/TargetAsset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/TargetAssetCollection.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/TargetAssetCollection.java index 446a898536c..49c69027f88 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/TargetAssetCollection.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/TargetAssetCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/TargetAssetSummary.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/TargetAssetSummary.java index dd877381ce3..9c37b2f2438 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/TargetAssetSummary.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/TargetAssetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/TargetEnvironment.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/TargetEnvironment.java index 692b6d3b0ef..9704893dc92 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/TargetEnvironment.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/TargetEnvironment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/TerminatePreemptionAction.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/TerminatePreemptionAction.java index 055f715e6e4..7f6b6f0009a 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/TerminatePreemptionAction.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/TerminatePreemptionAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateAssetSourceDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateAssetSourceDetails.java index bc97d8f3561..45f0e648c37 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateAssetSourceDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateAssetSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateDiscoveryScheduleDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateDiscoveryScheduleDetails.java index 2d301ac5abc..7450c28a6b0 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateDiscoveryScheduleDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateDiscoveryScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateMigrationAssetDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateMigrationAssetDetails.java index 53445ef5420..da9c018260d 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateMigrationAssetDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateMigrationAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateMigrationDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateMigrationDetails.java index 343452bac94..9ce4dffce5e 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateMigrationDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateMigrationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateMigrationPlanDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateMigrationPlanDetails.java index 5f6b3d9f178..b831c9dd443 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateMigrationPlanDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateMigrationPlanDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateReplicationScheduleDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateReplicationScheduleDetails.java index 262a163d0ff..0cdcb0686bb 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateReplicationScheduleDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateReplicationScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateTargetAssetDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateTargetAssetDetails.java index e7ac8cab0a2..eec47d75490 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateTargetAssetDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateTargetAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateVmTargetAssetDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateVmTargetAssetDetails.java index a2f88157784..548ce4f4345 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateVmTargetAssetDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateVmTargetAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateVmWareAssetSourceDetails.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateVmWareAssetSourceDetails.java index a30fed85e28..6803b49aaa2 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateVmWareAssetSourceDetails.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/UpdateVmWareAssetSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VmTargetAsset.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VmTargetAsset.java index 47b088a93ca..812aafbf01d 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VmTargetAsset.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VmTargetAsset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VmTargetAssetSummary.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VmTargetAssetSummary.java index 456206988e6..e56061df1dd 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VmTargetAssetSummary.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VmTargetAssetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VmTargetEnvironment.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VmTargetEnvironment.java index 9af531f162f..532b6077677 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VmTargetEnvironment.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VmTargetEnvironment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VmWareAssetSource.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VmWareAssetSource.java index 5c18af791ec..6e52110b0d0 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VmWareAssetSource.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VmWareAssetSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VmWareAssetSourceSummary.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VmWareAssetSourceSummary.java index fef5a87e965..66f711673c0 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VmWareAssetSourceSummary.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VmWareAssetSourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VolumeCostEstimation.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VolumeCostEstimation.java index 4964b9f37e9..35e4a02f5c8 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VolumeCostEstimation.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/VolumeCostEstimation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequest.java index 2c770624a34..61bd693f0b0 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestError.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestError.java index 02fe4a45e06..14582f607b2 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestError.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestErrorCollection.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestErrorCollection.java index 0266edb90b1..818a1dd6a25 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestErrorCollection.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestLogEntry.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestLogEntry.java index 9037fc173ee..8e6c9c656a2 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestLogEntry.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestLogEntryCollection.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestLogEntryCollection.java index 6ce31d933f9..1999d29c7c2 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestLogEntryCollection.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestResource.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestResource.java index 09d113b22fe..8373a4c9df7 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestResource.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestSummary.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestSummary.java index 80e8b574fa6..13be59b3113 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestSummary.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestSummaryCollection.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestSummaryCollection.java index 453b371768c..ca4760205d0 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestSummaryCollection.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.model; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CancelWorkRequestRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CancelWorkRequestRequest.java index ff68274fd3d..a60c010fc99 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CancelWorkRequestRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ChangeMigrationCompartmentRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ChangeMigrationCompartmentRequest.java index 0a06a3cdc08..b69fe65bddf 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ChangeMigrationCompartmentRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ChangeMigrationCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ChangeMigrationPlanCompartmentRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ChangeMigrationPlanCompartmentRequest.java index 090ad9b58fa..4b19cc8e065 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ChangeMigrationPlanCompartmentRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ChangeMigrationPlanCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ChangeReplicationScheduleCompartmentRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ChangeReplicationScheduleCompartmentRequest.java index ba6cc847d36..5df7659ce9c 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ChangeReplicationScheduleCompartmentRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ChangeReplicationScheduleCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CreateMigrationAssetRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CreateMigrationAssetRequest.java index f34e4a27fd3..10ce298e6b7 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CreateMigrationAssetRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CreateMigrationAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CreateMigrationPlanRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CreateMigrationPlanRequest.java index fb27b5de767..87a7a0056c2 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CreateMigrationPlanRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CreateMigrationPlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CreateMigrationRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CreateMigrationRequest.java index 7441eb895ae..6c702de04b3 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CreateMigrationRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CreateMigrationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CreateReplicationScheduleRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CreateReplicationScheduleRequest.java index 4192c946bc7..42088aaedbf 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CreateReplicationScheduleRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CreateReplicationScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CreateTargetAssetRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CreateTargetAssetRequest.java index d3dd231bbf4..10481b6b280 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CreateTargetAssetRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/CreateTargetAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/DeleteMigrationAssetRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/DeleteMigrationAssetRequest.java index 8cdb2a76d6c..a7801976fac 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/DeleteMigrationAssetRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/DeleteMigrationAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/DeleteMigrationPlanRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/DeleteMigrationPlanRequest.java index 0c70bab5f5b..f5bd88f2cec 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/DeleteMigrationPlanRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/DeleteMigrationPlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/DeleteMigrationRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/DeleteMigrationRequest.java index 0f18a7e7515..5b210c9c27f 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/DeleteMigrationRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/DeleteMigrationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/DeleteReplicationScheduleRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/DeleteReplicationScheduleRequest.java index 915563b587c..c4ac20d0ce1 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/DeleteReplicationScheduleRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/DeleteReplicationScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/DeleteTargetAssetRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/DeleteTargetAssetRequest.java index 53e0ed0bcba..aeda751ce3f 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/DeleteTargetAssetRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/DeleteTargetAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ExecuteMigrationPlanRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ExecuteMigrationPlanRequest.java index f21246dcef1..715bf06d16e 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ExecuteMigrationPlanRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ExecuteMigrationPlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ExportMigrationPlanRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ExportMigrationPlanRequest.java index 70f639bd5ba..5f4ca042614 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ExportMigrationPlanRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ExportMigrationPlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetMigrationAssetRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetMigrationAssetRequest.java index 449323e46e6..cb0638a2f6f 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetMigrationAssetRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetMigrationAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetMigrationPlanRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetMigrationPlanRequest.java index eb3a6293b3c..e766d0cd8b9 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetMigrationPlanRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetMigrationPlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetMigrationRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetMigrationRequest.java index 780d6fd2fad..5b70dfc06e3 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetMigrationRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetMigrationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetReplicationProgressRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetReplicationProgressRequest.java index 21b884f7286..0a6b5d498e3 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetReplicationProgressRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetReplicationProgressRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetReplicationScheduleRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetReplicationScheduleRequest.java index 7d993290a9d..9cedaff5faf 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetReplicationScheduleRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetReplicationScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetTargetAssetRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetTargetAssetRequest.java index 35c4636f07e..cb03eeebaab 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetTargetAssetRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetTargetAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetWorkRequestRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetWorkRequestRequest.java index 13ca5a9b77e..c004a9e4169 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetWorkRequestRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ImportMigrationPlanRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ImportMigrationPlanRequest.java index 2a15a2cc056..56daf1b364b 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ImportMigrationPlanRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ImportMigrationPlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListAvailableShapesRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListAvailableShapesRequest.java index 91de08df236..ae9acb97301 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListAvailableShapesRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListAvailableShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListMigrationAssetsRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListMigrationAssetsRequest.java index 974901a47e9..bc065825b76 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListMigrationAssetsRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListMigrationAssetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListMigrationPlansRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListMigrationPlansRequest.java index bcb655eae8b..fd30e1e9aaf 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListMigrationPlansRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListMigrationPlansRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListMigrationsRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListMigrationsRequest.java index 052c941a068..27d9115e1e7 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListMigrationsRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListMigrationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListReplicationSchedulesRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListReplicationSchedulesRequest.java index da1ddf9061c..15ca2bd12e5 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListReplicationSchedulesRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListReplicationSchedulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListTargetAssetsRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListTargetAssetsRequest.java index 91963594e64..9248a2a963c 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListTargetAssetsRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListTargetAssetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListWorkRequestErrorsRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListWorkRequestErrorsRequest.java index 6995d4865a4..87a0760474a 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListWorkRequestLogsRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListWorkRequestLogsRequest.java index 7654c659847..969a9270d9f 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListWorkRequestLogsRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListWorkRequestsRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListWorkRequestsRequest.java index b2a828dc90f..06586c57b59 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListWorkRequestsRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/RefreshMigrationAssetRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/RefreshMigrationAssetRequest.java index 7b6ef06d694..ef2e14154cf 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/RefreshMigrationAssetRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/RefreshMigrationAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/RefreshMigrationPlanRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/RefreshMigrationPlanRequest.java index 3ac8d83743c..099a64f567c 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/RefreshMigrationPlanRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/RefreshMigrationPlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/RefreshMigrationRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/RefreshMigrationRequest.java index 731477390d7..87eecc89dd0 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/RefreshMigrationRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/RefreshMigrationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/StartAssetReplicationRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/StartAssetReplicationRequest.java index c5c9ae969ac..6e008237264 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/StartAssetReplicationRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/StartAssetReplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/StartMigrationReplicationRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/StartMigrationReplicationRequest.java index e0cf42fa90f..c2a3c52d81c 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/StartMigrationReplicationRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/StartMigrationReplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/UpdateMigrationAssetRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/UpdateMigrationAssetRequest.java index 62539d1617c..be492f3e0d5 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/UpdateMigrationAssetRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/UpdateMigrationAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/UpdateMigrationPlanRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/UpdateMigrationPlanRequest.java index 4d531d67ec3..b69837c0b7d 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/UpdateMigrationPlanRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/UpdateMigrationPlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/UpdateMigrationRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/UpdateMigrationRequest.java index 0f3d0b063d3..c7969ee25f8 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/UpdateMigrationRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/UpdateMigrationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/UpdateReplicationScheduleRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/UpdateReplicationScheduleRequest.java index 7e0c9b34bbc..12398efc3ea 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/UpdateReplicationScheduleRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/UpdateReplicationScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/UpdateTargetAssetRequest.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/UpdateTargetAssetRequest.java index 0b741ed3bda..ab1f8cc37ad 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/UpdateTargetAssetRequest.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/requests/UpdateTargetAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.requests; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CancelWorkRequestResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CancelWorkRequestResponse.java index 1d8b4cbf20c..cf5ec48897a 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CancelWorkRequestResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ChangeMigrationCompartmentResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ChangeMigrationCompartmentResponse.java index 6a610504e6d..878896b680c 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ChangeMigrationCompartmentResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ChangeMigrationCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ChangeMigrationPlanCompartmentResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ChangeMigrationPlanCompartmentResponse.java index 0cfbeb1e42b..06f8a8a323b 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ChangeMigrationPlanCompartmentResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ChangeMigrationPlanCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ChangeReplicationScheduleCompartmentResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ChangeReplicationScheduleCompartmentResponse.java index 5fddc722dc4..13e169b1d5e 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ChangeReplicationScheduleCompartmentResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ChangeReplicationScheduleCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CreateMigrationAssetResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CreateMigrationAssetResponse.java index 7e2780053c6..c2a118d8709 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CreateMigrationAssetResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CreateMigrationAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CreateMigrationPlanResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CreateMigrationPlanResponse.java index 7e1ae65d289..7790bf57998 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CreateMigrationPlanResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CreateMigrationPlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CreateMigrationResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CreateMigrationResponse.java index 35961e6dc75..7c0c0f938da 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CreateMigrationResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CreateMigrationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CreateReplicationScheduleResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CreateReplicationScheduleResponse.java index 161b19035fa..5d3297b94a1 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CreateReplicationScheduleResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CreateReplicationScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CreateTargetAssetResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CreateTargetAssetResponse.java index 6b7a0971435..3b21c9b28e4 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CreateTargetAssetResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/CreateTargetAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/DeleteMigrationAssetResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/DeleteMigrationAssetResponse.java index f609c08664b..c0e520bcd49 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/DeleteMigrationAssetResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/DeleteMigrationAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/DeleteMigrationPlanResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/DeleteMigrationPlanResponse.java index 12c4f5a0500..b0a0cebb634 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/DeleteMigrationPlanResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/DeleteMigrationPlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/DeleteMigrationResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/DeleteMigrationResponse.java index 002045d18a9..6fcea7e3792 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/DeleteMigrationResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/DeleteMigrationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/DeleteReplicationScheduleResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/DeleteReplicationScheduleResponse.java index ac54da2c84c..366ee66c22f 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/DeleteReplicationScheduleResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/DeleteReplicationScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/DeleteTargetAssetResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/DeleteTargetAssetResponse.java index 2c6b10a5902..01f257c4363 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/DeleteTargetAssetResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/DeleteTargetAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ExecuteMigrationPlanResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ExecuteMigrationPlanResponse.java index 057e09a43c8..06b58c8f949 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ExecuteMigrationPlanResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ExecuteMigrationPlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ExportMigrationPlanResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ExportMigrationPlanResponse.java index 9d276ed05d1..212e6d3cbba 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ExportMigrationPlanResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ExportMigrationPlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetMigrationAssetResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetMigrationAssetResponse.java index 536afef4504..63e7c28a63a 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetMigrationAssetResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetMigrationAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetMigrationPlanResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetMigrationPlanResponse.java index 7b6d418d8de..b90ced2cec3 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetMigrationPlanResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetMigrationPlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetMigrationResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetMigrationResponse.java index f83b4645e4e..37d0ddc1fe8 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetMigrationResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetMigrationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetReplicationProgressResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetReplicationProgressResponse.java index 1d49ae145aa..585380a3109 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetReplicationProgressResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetReplicationProgressResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetReplicationScheduleResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetReplicationScheduleResponse.java index c187b7d6214..7a03a06a297 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetReplicationScheduleResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetReplicationScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetTargetAssetResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetTargetAssetResponse.java index abab96a61af..0c90975acc8 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetTargetAssetResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetTargetAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetWorkRequestResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetWorkRequestResponse.java index 519cb72d8cd..f2e47f6fd7e 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetWorkRequestResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ImportMigrationPlanResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ImportMigrationPlanResponse.java index 935cfc5154d..824fcec4407 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ImportMigrationPlanResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ImportMigrationPlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListAvailableShapesResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListAvailableShapesResponse.java index 1bd347d7118..db2738de843 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListAvailableShapesResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListAvailableShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListMigrationAssetsResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListMigrationAssetsResponse.java index 1a4e615f8e1..b036504db4e 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListMigrationAssetsResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListMigrationAssetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListMigrationPlansResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListMigrationPlansResponse.java index 9bab73e5f5a..f6a6390699c 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListMigrationPlansResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListMigrationPlansResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListMigrationsResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListMigrationsResponse.java index 21a3292c89b..22542734634 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListMigrationsResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListMigrationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListReplicationSchedulesResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListReplicationSchedulesResponse.java index 80780231108..b1ac5eff91a 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListReplicationSchedulesResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListReplicationSchedulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListTargetAssetsResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListTargetAssetsResponse.java index e23c01195dd..25da3e95a07 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListTargetAssetsResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListTargetAssetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListWorkRequestErrorsResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListWorkRequestErrorsResponse.java index 6fde7a1f371..f2a34e4b9a7 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListWorkRequestLogsResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListWorkRequestLogsResponse.java index 71f4f04ee12..9cac7a61692 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListWorkRequestLogsResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListWorkRequestsResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListWorkRequestsResponse.java index e4974537157..b1ed02fc9fe 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListWorkRequestsResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/RefreshMigrationAssetResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/RefreshMigrationAssetResponse.java index a85ae2e91c9..9b81d2c67b3 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/RefreshMigrationAssetResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/RefreshMigrationAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/RefreshMigrationPlanResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/RefreshMigrationPlanResponse.java index ab6631c47ec..4a0114a7a82 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/RefreshMigrationPlanResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/RefreshMigrationPlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/RefreshMigrationResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/RefreshMigrationResponse.java index 94a8b9c38ac..a6731e3f014 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/RefreshMigrationResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/RefreshMigrationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/StartAssetReplicationResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/StartAssetReplicationResponse.java index 935cf163aa2..e4eaf862b41 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/StartAssetReplicationResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/StartAssetReplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/StartMigrationReplicationResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/StartMigrationReplicationResponse.java index dde8fd50f62..b8e7e319121 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/StartMigrationReplicationResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/StartMigrationReplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/UpdateMigrationAssetResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/UpdateMigrationAssetResponse.java index 9863f3f5934..685f9422979 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/UpdateMigrationAssetResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/UpdateMigrationAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/UpdateMigrationPlanResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/UpdateMigrationPlanResponse.java index a1d06b50138..8bec217ea68 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/UpdateMigrationPlanResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/UpdateMigrationPlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/UpdateMigrationResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/UpdateMigrationResponse.java index 039c0b16ecf..75cd99b8cc2 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/UpdateMigrationResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/UpdateMigrationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/UpdateReplicationScheduleResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/UpdateReplicationScheduleResponse.java index 0af98dde4bd..0e5cea54b52 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/UpdateReplicationScheduleResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/UpdateReplicationScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/UpdateTargetAssetResponse.java b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/UpdateTargetAssetResponse.java index 38757f0ec5c..29e4a89c50d 100644 --- a/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/UpdateTargetAssetResponse.java +++ b/bmc-cloudmigrations/src/main/java/com/oracle/bmc/cloudmigrations/responses/UpdateTargetAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.cloudmigrations.responses; diff --git a/bmc-cloudmigrations/src/main/resources/com/oracle/bmc/cloudmigrations/client.properties b/bmc-cloudmigrations/src/main/resources/com/oracle/bmc/cloudmigrations/client.properties index 9c53267457e..eff104fb647 100644 --- a/bmc-cloudmigrations/src/main/resources/com/oracle/bmc/cloudmigrations/client.properties +++ b/bmc-cloudmigrations/src/main/resources/com/oracle/bmc/cloudmigrations/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-clusterplacementgroups/pom.xml b/bmc-clusterplacementgroups/pom.xml index 24812e2a303..7682bb43020 100644 --- a/bmc-clusterplacementgroups/pom.xml +++ b/bmc-clusterplacementgroups/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-clusterplacementgroups @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCP.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCP.java index 2335959959f..79f7caab4d5 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCP.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCP.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCPAsync.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCPAsync.java index 161a8602dd8..7852d151331 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCPAsync.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCPAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCPAsyncClient.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCPAsyncClient.java index 9fc3cd298df..583bc004f5c 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCPAsyncClient.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCPAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCPClient.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCPClient.java index d1c1255bf6a..8aa56207d6c 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCPClient.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCPClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCPPaginators.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCPPaginators.java index fc098693b93..496830feac4 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCPPaginators.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCPPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCPWaiters.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCPWaiters.java index b5606e9d73e..12bb804f783 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCPWaiters.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/ClusterPlacementGroupsCPWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ActionType.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ActionType.java index e38ff03d41e..4235e385eea 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ActionType.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/CapabilitiesCollection.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/CapabilitiesCollection.java index 2d69e296f7b..085383a37cb 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/CapabilitiesCollection.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/CapabilitiesCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/CapabilityDetails.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/CapabilityDetails.java index 3ccd4a7f866..4cb99dfb060 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/CapabilityDetails.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/CapabilityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ChangeClusterPlacementGroupCompartmentDetails.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ChangeClusterPlacementGroupCompartmentDetails.java index bfd96dba5b2..a01444b446f 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ChangeClusterPlacementGroupCompartmentDetails.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ChangeClusterPlacementGroupCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ClusterPlacementGroup.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ClusterPlacementGroup.java index ec088a0d0cc..f9ac611f1b4 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ClusterPlacementGroup.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ClusterPlacementGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ClusterPlacementGroupCollection.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ClusterPlacementGroupCollection.java index 9ef6cd96484..f041f1999d8 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ClusterPlacementGroupCollection.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ClusterPlacementGroupCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ClusterPlacementGroupSummary.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ClusterPlacementGroupSummary.java index b94fb0194e1..575c0e68969 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ClusterPlacementGroupSummary.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ClusterPlacementGroupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ClusterPlacementGroupType.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ClusterPlacementGroupType.java index e710d9b8a75..48fd6353355 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ClusterPlacementGroupType.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/ClusterPlacementGroupType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/CreateClusterPlacementGroupDetails.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/CreateClusterPlacementGroupDetails.java index 35c455f94b3..29214c948ae 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/CreateClusterPlacementGroupDetails.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/CreateClusterPlacementGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/OperationStatus.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/OperationStatus.java index 55c4fba63f0..88dba1859fa 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/OperationStatus.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/OperationType.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/OperationType.java index 4c784dac2a7..8e1e9e801fa 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/OperationType.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/PlacementInstructionDetails.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/PlacementInstructionDetails.java index 16e7cd33fa0..ec3077071af 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/PlacementInstructionDetails.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/PlacementInstructionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/SortOrder.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/SortOrder.java index 03714ee7c9b..a960b0bfbd7 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/SortOrder.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/UpdateClusterPlacementGroupDetails.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/UpdateClusterPlacementGroupDetails.java index 3f63d075e11..e7665fb7213 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/UpdateClusterPlacementGroupDetails.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/UpdateClusterPlacementGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequest.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequest.java index cd8724fe888..ec03643d85b 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequest.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestError.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestError.java index 481982f2c5d..7f31eae8ea8 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestError.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestErrorCollection.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestErrorCollection.java index f4b4743751a..c697cd278b3 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestErrorCollection.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestLogEntry.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestLogEntry.java index 6279076f4ee..8fd52deb007 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestLogEntry.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestLogEntryCollection.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestLogEntryCollection.java index 3760a5905f7..392ae50c917 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestLogEntryCollection.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestResource.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestResource.java index 5a91a787404..9ffcc93ab2b 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestResource.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestResourceMetadataKey.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestResourceMetadataKey.java index 1c904a432c0..4c688f54846 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestResourceMetadataKey.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestSummary.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestSummary.java index fa47cb30a00..985f6d01264 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestSummary.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestSummaryCollection.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestSummaryCollection.java index d1066bede01..36e269cfb70 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestSummaryCollection.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.model; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ActivateClusterPlacementGroupRequest.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ActivateClusterPlacementGroupRequest.java index 0531a1c95e7..e1b0c06fe9c 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ActivateClusterPlacementGroupRequest.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ActivateClusterPlacementGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.requests; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/CancelWorkRequestRequest.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/CancelWorkRequestRequest.java index 22c7b6c4f00..37c863f6bf2 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/CancelWorkRequestRequest.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.requests; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ChangeClusterPlacementGroupCompartmentRequest.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ChangeClusterPlacementGroupCompartmentRequest.java index efcda147706..d320166c2d1 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ChangeClusterPlacementGroupCompartmentRequest.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ChangeClusterPlacementGroupCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.requests; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/CreateClusterPlacementGroupRequest.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/CreateClusterPlacementGroupRequest.java index 59817122877..056f1bf2ecc 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/CreateClusterPlacementGroupRequest.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/CreateClusterPlacementGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.requests; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/DeactivateClusterPlacementGroupRequest.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/DeactivateClusterPlacementGroupRequest.java index a0078c04129..9a4edc83a42 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/DeactivateClusterPlacementGroupRequest.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/DeactivateClusterPlacementGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.requests; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/DeleteClusterPlacementGroupRequest.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/DeleteClusterPlacementGroupRequest.java index 80880b4a240..b9a13953669 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/DeleteClusterPlacementGroupRequest.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/DeleteClusterPlacementGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.requests; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/GetClusterPlacementGroupRequest.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/GetClusterPlacementGroupRequest.java index c8655b0d9fd..6a9e4b913f8 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/GetClusterPlacementGroupRequest.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/GetClusterPlacementGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.requests; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/GetWorkRequestRequest.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/GetWorkRequestRequest.java index 641468487c7..834b34febcc 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/GetWorkRequestRequest.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.requests; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ListClusterPlacementGroupsRequest.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ListClusterPlacementGroupsRequest.java index 40711c86cba..78d605d6f2d 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ListClusterPlacementGroupsRequest.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ListClusterPlacementGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.requests; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ListWorkRequestErrorsRequest.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ListWorkRequestErrorsRequest.java index ef911a9b6af..53b1b1b3640 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.requests; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ListWorkRequestLogsRequest.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ListWorkRequestLogsRequest.java index 22baf141f6b..79ca1376ad6 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ListWorkRequestLogsRequest.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.requests; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ListWorkRequestsRequest.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ListWorkRequestsRequest.java index ba6d1e4c5e7..d93d5521f78 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ListWorkRequestsRequest.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.requests; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/UpdateClusterPlacementGroupRequest.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/UpdateClusterPlacementGroupRequest.java index 75149573cbd..a59a4a30ea4 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/UpdateClusterPlacementGroupRequest.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/requests/UpdateClusterPlacementGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.requests; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ActivateClusterPlacementGroupResponse.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ActivateClusterPlacementGroupResponse.java index 5b886a42808..2aecb71dd32 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ActivateClusterPlacementGroupResponse.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ActivateClusterPlacementGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.responses; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/CancelWorkRequestResponse.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/CancelWorkRequestResponse.java index e01dec0b710..b5c38aeff9c 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/CancelWorkRequestResponse.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.responses; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ChangeClusterPlacementGroupCompartmentResponse.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ChangeClusterPlacementGroupCompartmentResponse.java index 996f773e45d..3c99ea3b2fb 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ChangeClusterPlacementGroupCompartmentResponse.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ChangeClusterPlacementGroupCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.responses; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/CreateClusterPlacementGroupResponse.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/CreateClusterPlacementGroupResponse.java index 671d948ecca..139a54807ac 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/CreateClusterPlacementGroupResponse.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/CreateClusterPlacementGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.responses; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/DeactivateClusterPlacementGroupResponse.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/DeactivateClusterPlacementGroupResponse.java index 5d352629b4a..4aa5fb42a4e 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/DeactivateClusterPlacementGroupResponse.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/DeactivateClusterPlacementGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.responses; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/DeleteClusterPlacementGroupResponse.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/DeleteClusterPlacementGroupResponse.java index de88d4e48d6..fddc773bd74 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/DeleteClusterPlacementGroupResponse.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/DeleteClusterPlacementGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.responses; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/GetClusterPlacementGroupResponse.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/GetClusterPlacementGroupResponse.java index 572c0e14214..e3d692b884b 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/GetClusterPlacementGroupResponse.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/GetClusterPlacementGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.responses; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/GetWorkRequestResponse.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/GetWorkRequestResponse.java index f1d37f1b020..f95c7b78510 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/GetWorkRequestResponse.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.responses; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ListClusterPlacementGroupsResponse.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ListClusterPlacementGroupsResponse.java index 9b8a0ca05a0..1a811c8392d 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ListClusterPlacementGroupsResponse.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ListClusterPlacementGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.responses; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ListWorkRequestErrorsResponse.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ListWorkRequestErrorsResponse.java index d19e9c7decc..7ddc2ad15da 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.responses; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ListWorkRequestLogsResponse.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ListWorkRequestLogsResponse.java index 645c02f30d4..79290c66f93 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ListWorkRequestLogsResponse.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.responses; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ListWorkRequestsResponse.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ListWorkRequestsResponse.java index 3f8dde701ab..f34b2bbbab1 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ListWorkRequestsResponse.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.responses; diff --git a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/UpdateClusterPlacementGroupResponse.java b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/UpdateClusterPlacementGroupResponse.java index 3ec479ba679..f63bb08875d 100644 --- a/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/UpdateClusterPlacementGroupResponse.java +++ b/bmc-clusterplacementgroups/src/main/java/com/oracle/bmc/clusterplacementgroups/responses/UpdateClusterPlacementGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.clusterplacementgroups.responses; diff --git a/bmc-clusterplacementgroups/src/main/resources/com/oracle/bmc/clusterplacementgroups/client.properties b/bmc-clusterplacementgroups/src/main/resources/com/oracle/bmc/clusterplacementgroups/client.properties index 3e1551aa288..e1ec1b6b372 100644 --- a/bmc-clusterplacementgroups/src/main/resources/com/oracle/bmc/clusterplacementgroups/client.properties +++ b/bmc-clusterplacementgroups/src/main/resources/com/oracle/bmc/clusterplacementgroups/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/pom.xml b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/pom.xml index 364dea47020..fd0da972287 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/pom.xml +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk-common-httpclient-choices - 3.77.2 + 3.78.0 ../pom.xml @@ -93,7 +93,7 @@ com.oracle.oci.sdk oci-java-sdk-addons-apache-configurator-jersey - 3.77.2 + 3.78.0 @@ -102,7 +102,7 @@ com.oracle.oci.sdk oci-java-sdk-common-httpclient - 3.77.2 + 3.78.0 org.glassfish.jersey.core diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/ApacheClientProperties.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/ApacheClientProperties.java index ab2eb2ff6fd..a6a457e1644 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/ApacheClientProperties.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/ApacheClientProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/ClientBuilderDecorator.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/ClientBuilderDecorator.java index 84b26e0bd57..06cbb786aad 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/ClientBuilderDecorator.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/ClientBuilderDecorator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyClientProperties.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyClientProperties.java index 98e2126b591..1f78b7f1235 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyClientProperties.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyClientProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyClientProperty.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyClientProperty.java index 636ef6aee7e..df83251e333 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyClientProperty.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyClientProperty.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyHttpClient.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyHttpClient.java index 4d10b9d9aa9..89c00801083 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyHttpClient.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyHttpClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyHttpClientBuilder.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyHttpClientBuilder.java index ba484467ca0..1498595ff61 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyHttpClientBuilder.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyHttpClientBuilder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyHttpProvider.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyHttpProvider.java index f789f63655b..a578fb492b8 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyHttpProvider.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyHttpProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyHttpRequest.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyHttpRequest.java index 7b2cbbabb54..0b5473f67f6 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyHttpRequest.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyHttpRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyHttpResponse.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyHttpResponse.java index c871ce9d260..2a081a4cf8b 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyHttpResponse.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/JerseyHttpResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/WrappedResponseInputStream.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/WrappedResponseInputStream.java index e44a9b2a374..b68d4d7e879 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/WrappedResponseInputStream.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/WrappedResponseInputStream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/ApacheDuplicatableInputStreamEntity.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/ApacheDuplicatableInputStreamEntity.java index 8cd087c901a..e23eeb8b91e 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/ApacheDuplicatableInputStreamEntity.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/ApacheDuplicatableInputStreamEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/ApacheInputStreamEntity.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/ApacheInputStreamEntity.java index 8727d0b1224..7c3a02c8ee9 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/ApacheInputStreamEntity.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/ApacheInputStreamEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/DaemonClientAsyncExecutorProvider.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/DaemonClientAsyncExecutorProvider.java index b39174a5374..24e4db518a1 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/DaemonClientAsyncExecutorProvider.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/DaemonClientAsyncExecutorProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/DelegationTokenClientFilter.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/DelegationTokenClientFilter.java index 589640d27b2..0ddb977543d 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/DelegationTokenClientFilter.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/DelegationTokenClientFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/IdleConnectionMonitor.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/IdleConnectionMonitor.java index d30e747ac05..5d387df0d26 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/IdleConnectionMonitor.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/IdleConnectionMonitor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/JerseyDelegationTokenClientFilterProvider.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/JerseyDelegationTokenClientFilterProvider.java index 07bbcfb371d..1564d7559a3 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/JerseyDelegationTokenClientFilterProvider.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/internal/JerseyDelegationTokenClientFilterProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/io/internal/AutoCloseableContentLengthVerifyingInputStream.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/io/internal/AutoCloseableContentLengthVerifyingInputStream.java index 24b9a29229d..3e736d8722b 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/io/internal/AutoCloseableContentLengthVerifyingInputStream.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/io/internal/AutoCloseableContentLengthVerifyingInputStream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey.io.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/io/internal/ContentLengthVerifyingInputStream.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/io/internal/ContentLengthVerifyingInputStream.java index 82dfe346d94..c14be7c266c 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/io/internal/ContentLengthVerifyingInputStream.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/io/internal/ContentLengthVerifyingInputStream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey.io.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/io/internal/LengthLimitedInputStream.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/io/internal/LengthLimitedInputStream.java index 045e5fc88bd..cd085eb1648 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/io/internal/LengthLimitedInputStream.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/http/client/jersey/io/internal/LengthLimitedInputStream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey.io.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/serialization/jackson/JacksonSerializer.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/serialization/jackson/JacksonSerializer.java index 2e698a1d75b..3d0cbe3d71f 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/serialization/jackson/JacksonSerializer.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/serialization/jackson/JacksonSerializer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.serialization.jackson; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/serialization/jackson/internal/ExplicitlySetFilter.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/serialization/jackson/internal/ExplicitlySetFilter.java index 5f7903eb1a7..5c86d2b784a 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/serialization/jackson/internal/ExplicitlySetFilter.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/serialization/jackson/internal/ExplicitlySetFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.serialization.jackson.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/serialization/jackson/internal/Rfc3339DateFormat.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/serialization/jackson/internal/Rfc3339DateFormat.java index f12e716aaef..dd1f3ba4916 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/serialization/jackson/internal/Rfc3339DateFormat.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/java/com/oracle/bmc/serialization/jackson/internal/Rfc3339DateFormat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.serialization.jackson.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-common-httpclient-jersey/native-image.properties b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-common-httpclient-jersey/native-image.properties index d05f0250ac6..f68c81b576a 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-common-httpclient-jersey/native-image.properties +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-common-httpclient-jersey/native-image.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/http/client/jersey/IdleConnectionMonitorTest.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/http/client/jersey/IdleConnectionMonitorTest.java index 8771a3fbe02..0d7ca7ca59a 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/http/client/jersey/IdleConnectionMonitorTest.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/http/client/jersey/IdleConnectionMonitorTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/http/client/jersey/JerseyHttpClientTest.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/http/client/jersey/JerseyHttpClientTest.java index 0d55f4492bb..d2ca88718cf 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/http/client/jersey/JerseyHttpClientTest.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/http/client/jersey/JerseyHttpClientTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/http/client/jersey/WrappedResponseInputStreamTest.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/http/client/jersey/WrappedResponseInputStreamTest.java index 050337f9054..b9bb24214de 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/http/client/jersey/WrappedResponseInputStreamTest.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/http/client/jersey/WrappedResponseInputStreamTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/http/client/jersey/io/internal/LengthLimitedInputStreamTest.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/http/client/jersey/io/internal/LengthLimitedInputStreamTest.java index 20a369dbbb2..96c3fac0c42 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/http/client/jersey/io/internal/LengthLimitedInputStreamTest.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/http/client/jersey/io/internal/LengthLimitedInputStreamTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey.io.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/serialization/jackson/ExplicitlySetFilterTest.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/serialization/jackson/ExplicitlySetFilterTest.java index 572b0b4c542..6bfe9103bdd 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/serialization/jackson/ExplicitlySetFilterTest.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/serialization/jackson/ExplicitlySetFilterTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.serialization.jackson; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/serialization/jackson/Rfc3339DateFormatTest.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/serialization/jackson/Rfc3339DateFormatTest.java index 300e67ec24a..2afa002d4af 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/serialization/jackson/Rfc3339DateFormatTest.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/serialization/jackson/Rfc3339DateFormatTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.serialization.jackson; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/serialization/jackson/SerializationTest.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/serialization/jackson/SerializationTest.java index 068afbb1fb6..e88d9ed3ef8 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/serialization/jackson/SerializationTest.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey/src/test/java/com/oracle/bmc/serialization/jackson/SerializationTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.serialization.jackson; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/pom.xml b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/pom.xml index f940f929d6e..084af8fe2e0 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/pom.xml +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk-common-httpclient-choices - 3.77.2 + 3.78.0 ../pom.xml @@ -93,7 +93,7 @@ com.oracle.oci.sdk oci-java-sdk-addons-apache-configurator-jersey3 - 3.77.2 + 3.78.0 @@ -102,7 +102,7 @@ com.oracle.oci.sdk oci-java-sdk-common-httpclient - 3.77.2 + 3.78.0 jakarta.ws.rs diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/ApacheClientProperties.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/ApacheClientProperties.java index 83b15be5120..5035b25e091 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/ApacheClientProperties.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/ApacheClientProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/ClientBuilderDecorator.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/ClientBuilderDecorator.java index 82ed5082c45..864305559e5 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/ClientBuilderDecorator.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/ClientBuilderDecorator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3ClientProperties.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3ClientProperties.java index 88d62f06407..26eff2388a1 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3ClientProperties.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3ClientProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3ClientProperty.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3ClientProperty.java index c3897843af4..28c06c5ea2f 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3ClientProperty.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3ClientProperty.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpClient.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpClient.java index dddeefe25fe..71a8ee601f7 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpClient.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpClientBuilder.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpClientBuilder.java index 645a0a07689..b7735627107 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpClientBuilder.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpClientBuilder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpProvider.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpProvider.java index f3003762fa1..0bdb17a7f78 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpProvider.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpRequest.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpRequest.java index 0f228521db0..47f5edf6615 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpRequest.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpResponse.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpResponse.java index 4f2de2f1b2e..c04a56db49e 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpResponse.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/WrappedResponseInputStream.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/WrappedResponseInputStream.java index 1f2b2ecc1ff..6b9137ff730 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/WrappedResponseInputStream.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/WrappedResponseInputStream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/ApacheDuplicatableInputStreamEntity.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/ApacheDuplicatableInputStreamEntity.java index 2f3ffa16ada..a457455a613 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/ApacheDuplicatableInputStreamEntity.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/ApacheDuplicatableInputStreamEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/ApacheInputStreamEntity.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/ApacheInputStreamEntity.java index ad4f0f81414..6134cedda02 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/ApacheInputStreamEntity.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/ApacheInputStreamEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/DaemonClientAsyncExecutorProvider.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/DaemonClientAsyncExecutorProvider.java index 2d101a3d04a..252c58b6c27 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/DaemonClientAsyncExecutorProvider.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/DaemonClientAsyncExecutorProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/DelegationTokenClientFilter.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/DelegationTokenClientFilter.java index 5e3d7234679..e14a8dd84ce 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/DelegationTokenClientFilter.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/DelegationTokenClientFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/IdleConnectionMonitor.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/IdleConnectionMonitor.java index ef1ec3847c9..43c4946e296 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/IdleConnectionMonitor.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/IdleConnectionMonitor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/Jersey3DelegationTokenClientFilterProvider.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/Jersey3DelegationTokenClientFilterProvider.java index 0fe7590ffb8..d4aff807400 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/Jersey3DelegationTokenClientFilterProvider.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/internal/Jersey3DelegationTokenClientFilterProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/io/internal/AutoCloseableContentLengthVerifyingInputStream.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/io/internal/AutoCloseableContentLengthVerifyingInputStream.java index 276e7a03789..609e6d5b9ab 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/io/internal/AutoCloseableContentLengthVerifyingInputStream.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/io/internal/AutoCloseableContentLengthVerifyingInputStream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3.io.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/io/internal/ContentLengthVerifyingInputStream.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/io/internal/ContentLengthVerifyingInputStream.java index 8899b7fabbc..8fd8069d983 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/io/internal/ContentLengthVerifyingInputStream.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/io/internal/ContentLengthVerifyingInputStream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3.io.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/io/internal/LengthLimitedInputStream.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/io/internal/LengthLimitedInputStream.java index 77b6733e245..23f07ad0478 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/io/internal/LengthLimitedInputStream.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/http/client/jersey3/io/internal/LengthLimitedInputStream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3.io.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/serialization/jackson/JacksonSerializer.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/serialization/jackson/JacksonSerializer.java index 2e698a1d75b..3d0cbe3d71f 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/serialization/jackson/JacksonSerializer.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/serialization/jackson/JacksonSerializer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.serialization.jackson; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/serialization/jackson/internal/ExplicitlySetFilter.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/serialization/jackson/internal/ExplicitlySetFilter.java index 5f7903eb1a7..5c86d2b784a 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/serialization/jackson/internal/ExplicitlySetFilter.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/serialization/jackson/internal/ExplicitlySetFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.serialization.jackson.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/serialization/jackson/internal/Rfc3339DateFormat.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/serialization/jackson/internal/Rfc3339DateFormat.java index f12e716aaef..dd1f3ba4916 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/serialization/jackson/internal/Rfc3339DateFormat.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/java/com/oracle/bmc/serialization/jackson/internal/Rfc3339DateFormat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.serialization.jackson.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-common-httpclient-jersey3/native-image.properties b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-common-httpclient-jersey3/native-image.properties index b4d6e59c798..66aa4c317c0 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-common-httpclient-jersey3/native-image.properties +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-common-httpclient-jersey3/native-image.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/IdleConnectionMonitorTest.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/IdleConnectionMonitorTest.java index 69c641e487d..1960a17ad7f 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/IdleConnectionMonitorTest.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/IdleConnectionMonitorTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpClientTest.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpClientTest.java index fad73500cda..08f20ce5dd2 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpClientTest.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/Jersey3HttpClientTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/WrappedResponseInputStreamTest.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/WrappedResponseInputStreamTest.java index 0b20d002c22..714ea66a6bc 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/WrappedResponseInputStreamTest.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/WrappedResponseInputStreamTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/io/internal/LengthLimitedInputStreamTest.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/io/internal/LengthLimitedInputStreamTest.java index 1ea10636592..05875ee4d39 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/io/internal/LengthLimitedInputStreamTest.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/http/client/jersey3/io/internal/LengthLimitedInputStreamTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.jersey3.io.internal; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/serialization/jackson/Jersey3ExplicitlySetFilterTest.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/serialization/jackson/Jersey3ExplicitlySetFilterTest.java index 0194b5579c7..c2cd7d8fd74 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/serialization/jackson/Jersey3ExplicitlySetFilterTest.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/serialization/jackson/Jersey3ExplicitlySetFilterTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.serialization.jackson; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/serialization/jackson/Jersey3Rfc3339DateFormatTest.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/serialization/jackson/Jersey3Rfc3339DateFormatTest.java index 5ec09c2da51..d0f35ada779 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/serialization/jackson/Jersey3Rfc3339DateFormatTest.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/serialization/jackson/Jersey3Rfc3339DateFormatTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.serialization.jackson; diff --git a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/serialization/jackson/Jersey3SerializationTest.java b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/serialization/jackson/Jersey3SerializationTest.java index 328db8654a9..5fefc2a466c 100644 --- a/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/serialization/jackson/Jersey3SerializationTest.java +++ b/bmc-common-httpclient-choices/bmc-common-httpclient-jersey3/src/test/java/com/oracle/bmc/serialization/jackson/Jersey3SerializationTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.serialization.jackson; diff --git a/bmc-common-httpclient-choices/pom.xml b/bmc-common-httpclient-choices/pom.xml index 2876e59f35c..99d0ea432ff 100644 --- a/bmc-common-httpclient-choices/pom.xml +++ b/bmc-common-httpclient-choices/pom.xml @@ -5,7 +5,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml diff --git a/bmc-common-httpclient/pom.xml b/bmc-common-httpclient/pom.xml index 582c2d4815b..b7f14f6f72d 100644 --- a/bmc-common-httpclient/pom.xml +++ b/bmc-common-httpclient/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/ClientProperty.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/ClientProperty.java index cc915db71d8..8f7b2dbee1e 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/ClientProperty.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/ClientProperty.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpClient.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpClient.java index 821a5687d69..7216bcb3513 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpClient.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpClientBuilder.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpClientBuilder.java index 4d0da2b949d..7b43f45505a 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpClientBuilder.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpClientBuilder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpProvider.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpProvider.java index 5d61bb4050b..7ab1add0046 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpProvider.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpProviderCapability.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpProviderCapability.java index b03b2fe03b8..0944ff3775e 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpProviderCapability.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpProviderCapability.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpRequest.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpRequest.java index ef5e5930eb1..c3f14bf3c8e 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpRequest.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpResponse.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpResponse.java index 82acfeffd42..a955cdbed1a 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpResponse.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/HttpResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/InternalSdk.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/InternalSdk.java index bbb73ae82e9..668815381b9 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/InternalSdk.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/InternalSdk.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/KeyStoreWithPassword.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/KeyStoreWithPassword.java index fc16d1dc953..9d1e2f98216 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/KeyStoreWithPassword.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/KeyStoreWithPassword.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/Method.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/Method.java index ce3bc50d09a..1b493e191c3 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/Method.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/Method.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/Options.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/Options.java index c1760b13ed0..0a4ede19495 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/Options.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/Options.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client; @@ -16,6 +16,29 @@ public enum Options { private static final String OCI_REALM_SPECIFIC_SERVICE_ENDPOINT_TEMPLATE_ENABLED_ENV_VAR = "OCI_REALM_SPECIFIC_SERVICE_ENDPOINT_TEMPLATE_ENABLED"; + /** The system property key for token refresh enablement. */ + private static final String JAVASDK_TOKEN_REFRESH_ENABLED_SYSTEM_PROPERTY = + "oci.javasdk.token.refresh.enabled"; + + /** + * Flag indicating whether token refresh retries are enabled. By default, the token refresh + * retries are enabled for 401s and processing exceptions. You have the flexibility to disable + * these retries if needed. This can be achieved by setting the system property. + * + *

+     * System.setProperty("oci.javasdk.token.refresh.enabled", "false");
+     * 
+ */ + private static volatile boolean TOKEN_REFRESH_RETRY_ENABLED; + + static { + /** + * Initializes token refresher. Token refresh can be managed by system property {@value + * #JAVASDK_TOKEN_REFRESH_ENABLED_SYSTEM_PROPERTY}. The default is true. + */ + initializeTokenRefreshRetryEnabled(); + } + /** * Sets the boolean value to indicate if the SDK should auto-close the InputStream stream * returned from the response once the stream has been read until the content-length of the @@ -83,4 +106,21 @@ public static void setUseOfRealmSpecificEndpointTemplateEnabledProgrammatically( USE_OF_REALM_SPECIFIC_ENDPOINT_TEMPLATE_ENABLED_PROGRAMMATICALLY = useOfRealmSpecificEndpointTemplateEnabledProgrammatically; } + + /** Initializes the token refresh retry enablement based on system property. */ + private static void initializeTokenRefreshRetryEnabled() { + TOKEN_REFRESH_RETRY_ENABLED = + Boolean.parseBoolean( + System.getProperty(JAVASDK_TOKEN_REFRESH_ENABLED_SYSTEM_PROPERTY, "true")); + LOG.debug("Setting token refresh retry to {}", TOKEN_REFRESH_RETRY_ENABLED); + } + + /** + * Returns the current status of token refresh retry enablement. + * + * @return true if token refresh retries are enabled; false otherwise. + */ + public static boolean isTokenRefreshRetrierEnabled() { + return TOKEN_REFRESH_RETRY_ENABLED; + } } diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/ProxyConfiguration.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/ProxyConfiguration.java index 05e481518e7..0b01fcbfde4 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/ProxyConfiguration.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/ProxyConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/RequestInterceptor.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/RequestInterceptor.java index bd9cf38bca5..571434fc845 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/RequestInterceptor.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/RequestInterceptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/Serializer.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/Serializer.java index 2f5b6d7666f..b26e61c7eb0 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/Serializer.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/Serializer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/StandardClientProperties.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/StandardClientProperties.java index 836c3f00fdd..5fd2e0a25d0 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/StandardClientProperties.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/StandardClientProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/StandardHttpProviderCapability.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/StandardHttpProviderCapability.java index 8556f750ad9..b49b5655834 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/StandardHttpProviderCapability.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/StandardHttpProviderCapability.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/internal/ClientThreadFactory.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/internal/ClientThreadFactory.java index 2b39c64c4a8..643c7b499f6 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/internal/ClientThreadFactory.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/internal/ClientThreadFactory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.internal; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/internal/DelegationTokenClientFilterProvider.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/internal/DelegationTokenClientFilterProvider.java index a5d280df27f..4cd316b55d0 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/internal/DelegationTokenClientFilterProvider.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/internal/DelegationTokenClientFilterProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.internal; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/internal/ExplicitlySetBmcModel.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/internal/ExplicitlySetBmcModel.java index d5466b23e16..d00ffb602dd 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/internal/ExplicitlySetBmcModel.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/internal/ExplicitlySetBmcModel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.internal; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/internal/parameterizedendpoints/ParameterizedEndpointUtil.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/internal/parameterizedendpoints/ParameterizedEndpointUtil.java index 0aaa5d2c75e..784958acf50 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/internal/parameterizedendpoints/ParameterizedEndpointUtil.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/internal/parameterizedendpoints/ParameterizedEndpointUtil.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.internal.parameterizedendpoints; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/io/DuplicatableInputStream.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/io/DuplicatableInputStream.java index ed91cdd2241..51b5572bdd3 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/io/DuplicatableInputStream.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/io/DuplicatableInputStream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.io; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Eraser.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Eraser.java index 647f49df08b..3e35fa96c2d 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Eraser.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Eraser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.pki; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Hex.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Hex.java index ac09e59fddb..c98276a4501 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Hex.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Hex.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.pki; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/OpenSslPbeSecretKeyFactory.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/OpenSslPbeSecretKeyFactory.java index 44048d74a83..5047f498e41 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/OpenSslPbeSecretKeyFactory.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/OpenSslPbeSecretKeyFactory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.pki; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/OpenSslPbeSecretKeyGenerator.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/OpenSslPbeSecretKeyGenerator.java index cb434ea3812..f2c27c5fe32 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/OpenSslPbeSecretKeyGenerator.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/OpenSslPbeSecretKeyGenerator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.pki; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Pem.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Pem.java index 8a16e722998..176de18647a 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Pem.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Pem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.pki; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/PemEncryptedKeyException.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/PemEncryptedKeyException.java index 27e076fcf1c..83b327d0dcf 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/PemEncryptedKeyException.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/PemEncryptedKeyException.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.pki; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/PemEncryptionException.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/PemEncryptionException.java index 9e01f9d695f..ca3af843eb1 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/PemEncryptionException.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/PemEncryptionException.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.pki; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/PemException.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/PemException.java index f45451bbb38..ab5d46cf9ff 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/PemException.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/PemException.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.pki; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Pkcs1EncryptedPrivateKeyInfo.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Pkcs1EncryptedPrivateKeyInfo.java index b762c0cf5d9..82aa8afae9c 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Pkcs1EncryptedPrivateKeyInfo.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Pkcs1EncryptedPrivateKeyInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.pki; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Sensitive.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Sensitive.java index a6e7a943844..72beed0e53a 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Sensitive.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Sensitive.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.pki; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Text.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Text.java index 5818c8ca6a8..e00a19da8a4 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Text.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Text.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.pki; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Utf8.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Utf8.java index 4e3e12a31ba..15bb4b4858c 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Utf8.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Utf8.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.pki; diff --git a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Utf8Utils.java b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Utf8Utils.java index e7124fca5f1..e40c864ba0a 100644 --- a/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Utf8Utils.java +++ b/bmc-common-httpclient/src/main/java/com/oracle/bmc/http/client/pki/Utf8Utils.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.pki; diff --git a/bmc-common-httpclient/src/test/java/com/oracle/bmc/http/client/internal/parameterizedendpoints/ParameterizedEndpointUtilTest.java b/bmc-common-httpclient/src/test/java/com/oracle/bmc/http/client/internal/parameterizedendpoints/ParameterizedEndpointUtilTest.java index 08a9c127de9..8e4f1b7a48f 100644 --- a/bmc-common-httpclient/src/test/java/com/oracle/bmc/http/client/internal/parameterizedendpoints/ParameterizedEndpointUtilTest.java +++ b/bmc-common-httpclient/src/test/java/com/oracle/bmc/http/client/internal/parameterizedendpoints/ParameterizedEndpointUtilTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.internal.parameterizedendpoints; diff --git a/bmc-common-httpclient/src/test/java/com/oracle/bmc/http/client/pki/Utf8DirectExecutorTest.java b/bmc-common-httpclient/src/test/java/com/oracle/bmc/http/client/pki/Utf8DirectExecutorTest.java index d9a49af47cc..ba9a11e5ed2 100644 --- a/bmc-common-httpclient/src/test/java/com/oracle/bmc/http/client/pki/Utf8DirectExecutorTest.java +++ b/bmc-common-httpclient/src/test/java/com/oracle/bmc/http/client/pki/Utf8DirectExecutorTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.pki; diff --git a/bmc-common-httpclient/src/test/java/com/oracle/bmc/http/client/pki/Utf8Test.java b/bmc-common-httpclient/src/test/java/com/oracle/bmc/http/client/pki/Utf8Test.java index 7843e955748..3ad54f11136 100644 --- a/bmc-common-httpclient/src/test/java/com/oracle/bmc/http/client/pki/Utf8Test.java +++ b/bmc-common-httpclient/src/test/java/com/oracle/bmc/http/client/pki/Utf8Test.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.pki; diff --git a/bmc-common/pom.xml b/bmc-common/pom.xml index d304e8dc9eb..56b7cd515c4 100644 --- a/bmc-common/pom.xml +++ b/bmc-common/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml @@ -87,12 +87,12 @@ com.oracle.oci.sdk oci-java-sdk-circuitbreaker - 3.77.2 + 3.78.0 com.oracle.oci.sdk oci-java-sdk-common-httpclient - 3.77.2 + 3.78.0 @@ -137,7 +137,7 @@ com.oracle.oci.sdk oci-java-sdk-common-httpclient-jersey - 3.77.2 + 3.78.0 test diff --git a/bmc-common/src/main/java/com/oracle/bmc/ClientConfiguration.java b/bmc-common/src/main/java/com/oracle/bmc/ClientConfiguration.java index e6259bfdecb..338edcfc5f4 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/ClientConfiguration.java +++ b/bmc-common/src/main/java/com/oracle/bmc/ClientConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc; diff --git a/bmc-common/src/main/java/com/oracle/bmc/ClientRuntime.java b/bmc-common/src/main/java/com/oracle/bmc/ClientRuntime.java index 3f81efa17a8..f6625f45c44 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/ClientRuntime.java +++ b/bmc-common/src/main/java/com/oracle/bmc/ClientRuntime.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc; diff --git a/bmc-common/src/main/java/com/oracle/bmc/ConfigFileReader.java b/bmc-common/src/main/java/com/oracle/bmc/ConfigFileReader.java index ab60b41f538..0aa64e4816b 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/ConfigFileReader.java +++ b/bmc-common/src/main/java/com/oracle/bmc/ConfigFileReader.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc; diff --git a/bmc-common/src/main/java/com/oracle/bmc/InternalSdk.java b/bmc-common/src/main/java/com/oracle/bmc/InternalSdk.java index 2ca20bf2280..3aaa520dd68 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/InternalSdk.java +++ b/bmc-common/src/main/java/com/oracle/bmc/InternalSdk.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc; diff --git a/bmc-common/src/main/java/com/oracle/bmc/OCID.java b/bmc-common/src/main/java/com/oracle/bmc/OCID.java index c660752081a..b217b41718c 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/OCID.java +++ b/bmc-common/src/main/java/com/oracle/bmc/OCID.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc; diff --git a/bmc-common/src/main/java/com/oracle/bmc/Realm.java b/bmc-common/src/main/java/com/oracle/bmc/Realm.java index 0fc66b03133..add0932b4d6 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/Realm.java +++ b/bmc-common/src/main/java/com/oracle/bmc/Realm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc; diff --git a/bmc-common/src/main/java/com/oracle/bmc/Region.java b/bmc-common/src/main/java/com/oracle/bmc/Region.java index 32610342934..3fe721cc2d4 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/Region.java +++ b/bmc-common/src/main/java/com/oracle/bmc/Region.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc; diff --git a/bmc-common/src/main/java/com/oracle/bmc/SdkClients.java b/bmc-common/src/main/java/com/oracle/bmc/SdkClients.java index 2d238d62ba6..c39be40c85d 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/SdkClients.java +++ b/bmc-common/src/main/java/com/oracle/bmc/SdkClients.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc; diff --git a/bmc-common/src/main/java/com/oracle/bmc/Service.java b/bmc-common/src/main/java/com/oracle/bmc/Service.java index 58c0374fb29..6cd65a7c19e 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/Service.java +++ b/bmc-common/src/main/java/com/oracle/bmc/Service.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc; diff --git a/bmc-common/src/main/java/com/oracle/bmc/ServiceDetails.java b/bmc-common/src/main/java/com/oracle/bmc/ServiceDetails.java index e915f4ddbac..7dc696ecb5c 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/ServiceDetails.java +++ b/bmc-common/src/main/java/com/oracle/bmc/ServiceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc; diff --git a/bmc-common/src/main/java/com/oracle/bmc/Services.java b/bmc-common/src/main/java/com/oracle/bmc/Services.java index eea0c14eb22..d704a8ba7a4 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/Services.java +++ b/bmc-common/src/main/java/com/oracle/bmc/Services.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/AbstractAuthenticationDetailsProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/AbstractAuthenticationDetailsProvider.java index 8578392dda1..1879d0d0603 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/AbstractAuthenticationDetailsProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/AbstractAuthenticationDetailsProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/AbstractFederationClientAuthenticationDetailsProviderBuilder.java b/bmc-common/src/main/java/com/oracle/bmc/auth/AbstractFederationClientAuthenticationDetailsProviderBuilder.java index 7ac26382d9e..7e11e3d7a91 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/AbstractFederationClientAuthenticationDetailsProviderBuilder.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/AbstractFederationClientAuthenticationDetailsProviderBuilder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/AbstractRequestingAuthenticationDetailsProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/AbstractRequestingAuthenticationDetailsProvider.java index 9cfef31f61e..d3b141ce5d1 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/AbstractRequestingAuthenticationDetailsProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/AbstractRequestingAuthenticationDetailsProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/AbstractServiceAccountTokenSupplier.java b/bmc-common/src/main/java/com/oracle/bmc/auth/AbstractServiceAccountTokenSupplier.java index 449a25b5fb8..79cf7cb8d40 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/AbstractServiceAccountTokenSupplier.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/AbstractServiceAccountTokenSupplier.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/AuthCachingPolicy.java b/bmc-common/src/main/java/com/oracle/bmc/auth/AuthCachingPolicy.java index 9ae53396656..97cc2b91326 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/AuthCachingPolicy.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/AuthCachingPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/AuthenticationDetailsProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/AuthenticationDetailsProvider.java index e0a34ded0f9..b317b928ae9 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/AuthenticationDetailsProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/AuthenticationDetailsProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/BasicAuthenticationDetailsProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/BasicAuthenticationDetailsProvider.java index 6e61dceb9e3..4f83170c8f8 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/BasicAuthenticationDetailsProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/BasicAuthenticationDetailsProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/BasicConfigFileAuthenticationProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/BasicConfigFileAuthenticationProvider.java index 79fe67bf437..f1fce8e4daf 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/BasicConfigFileAuthenticationProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/BasicConfigFileAuthenticationProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/ConfigFileAuthenticationDetailsProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/ConfigFileAuthenticationDetailsProvider.java index acd3ae4f5ca..98ec3e5d02d 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/ConfigFileAuthenticationDetailsProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/ConfigFileAuthenticationDetailsProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/ConfigurableRefreshOnNotAuthenticatedProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/ConfigurableRefreshOnNotAuthenticatedProvider.java index ca194bff917..a382468e102 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/ConfigurableRefreshOnNotAuthenticatedProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/ConfigurableRefreshOnNotAuthenticatedProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/CustomerAuthenticationDetailsProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/CustomerAuthenticationDetailsProvider.java index dcb70177e19..37266041858 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/CustomerAuthenticationDetailsProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/CustomerAuthenticationDetailsProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/CustomerKeyIdFormatter.java b/bmc-common/src/main/java/com/oracle/bmc/auth/CustomerKeyIdFormatter.java index b555f612b6c..c499f676b91 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/CustomerKeyIdFormatter.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/CustomerKeyIdFormatter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/DefaultServiceAccountTokenProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/DefaultServiceAccountTokenProvider.java index 6bb1f02e2e7..4d3f3b79cb5 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/DefaultServiceAccountTokenProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/DefaultServiceAccountTokenProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/InstancePrincipalsAuthenticationDetailsProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/InstancePrincipalsAuthenticationDetailsProvider.java index 6ec882d3a3f..528938cb236 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/InstancePrincipalsAuthenticationDetailsProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/InstancePrincipalsAuthenticationDetailsProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/ProvidesClientConfigurators.java b/bmc-common/src/main/java/com/oracle/bmc/auth/ProvidesClientConfigurators.java index bcae56089cf..b5f872e2048 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/ProvidesClientConfigurators.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/ProvidesClientConfigurators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/ProvidesConfigurableRefresh.java b/bmc-common/src/main/java/com/oracle/bmc/auth/ProvidesConfigurableRefresh.java index e6f77878df2..122d029ea28 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/ProvidesConfigurableRefresh.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/ProvidesConfigurableRefresh.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/ProvidesCustomRequestSigner.java b/bmc-common/src/main/java/com/oracle/bmc/auth/ProvidesCustomRequestSigner.java index 48284a123fc..00700ade0ae 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/ProvidesCustomRequestSigner.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/ProvidesCustomRequestSigner.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/RefreshableOnNotAuthenticatedProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/RefreshableOnNotAuthenticatedProvider.java index 5c6e9a6e4d5..11ea977e911 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/RefreshableOnNotAuthenticatedProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/RefreshableOnNotAuthenticatedProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/RegionProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/RegionProvider.java index 30dd9ba2a22..e764cde84c4 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/RegionProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/RegionProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/ResourcePrincipalAuthenticationDetailsProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/ResourcePrincipalAuthenticationDetailsProvider.java index 872ca7344df..761e46654ee 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/ResourcePrincipalAuthenticationDetailsProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/ResourcePrincipalAuthenticationDetailsProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/ResourcePrincipalsV3AuthenticationDetailsProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/ResourcePrincipalsV3AuthenticationDetailsProvider.java index 40be0045612..ee05cfa1098 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/ResourcePrincipalsV3AuthenticationDetailsProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/ResourcePrincipalsV3AuthenticationDetailsProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/ServiceAccountTokenSupplier.java b/bmc-common/src/main/java/com/oracle/bmc/auth/ServiceAccountTokenSupplier.java index 1a65fa4e629..124dbb05040 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/ServiceAccountTokenSupplier.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/ServiceAccountTokenSupplier.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/SessionKeySupplier.java b/bmc-common/src/main/java/com/oracle/bmc/auth/SessionKeySupplier.java index 12baa02710b..7acf223ad2d 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/SessionKeySupplier.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/SessionKeySupplier.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/SessionTokenAuthenticationDetailsProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/SessionTokenAuthenticationDetailsProvider.java index ef17b3b1eb1..1944311779a 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/SessionTokenAuthenticationDetailsProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/SessionTokenAuthenticationDetailsProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/SimpleAuthenticationDetailsProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/SimpleAuthenticationDetailsProvider.java index e07a55a395c..21bae877ab6 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/SimpleAuthenticationDetailsProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/SimpleAuthenticationDetailsProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/SimplePrivateKeySupplier.java b/bmc-common/src/main/java/com/oracle/bmc/auth/SimplePrivateKeySupplier.java index a32308400b5..5faca3febe5 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/SimplePrivateKeySupplier.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/SimplePrivateKeySupplier.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/StringPrivateKeySupplier.java b/bmc-common/src/main/java/com/oracle/bmc/auth/StringPrivateKeySupplier.java index 61526c02023..d47e9175019 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/StringPrivateKeySupplier.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/StringPrivateKeySupplier.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/SuppliedServiceAccountTokenProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/SuppliedServiceAccountTokenProvider.java index c25c4e66093..ec4ebda2862 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/SuppliedServiceAccountTokenProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/SuppliedServiceAccountTokenProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/URLBasedX509CertificateSupplier.java b/bmc-common/src/main/java/com/oracle/bmc/auth/URLBasedX509CertificateSupplier.java index 7fb3b634d53..d16ba21e131 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/URLBasedX509CertificateSupplier.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/URLBasedX509CertificateSupplier.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/X509CertificateSupplier.java b/bmc-common/src/main/java/com/oracle/bmc/auth/X509CertificateSupplier.java index 4d8a73f9a6b..b2a08d9eb9e 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/X509CertificateSupplier.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/X509CertificateSupplier.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/exception/AuthClientException.java b/bmc-common/src/main/java/com/oracle/bmc/auth/exception/AuthClientException.java index 5f882ae3b8a..f89b6388f5a 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/exception/AuthClientException.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/exception/AuthClientException.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.exception; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/exception/AuthClientForbiddenException.java b/bmc-common/src/main/java/com/oracle/bmc/auth/exception/AuthClientForbiddenException.java index 8a92f77a634..9ac224592b1 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/exception/AuthClientForbiddenException.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/exception/AuthClientForbiddenException.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.exception; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/exception/AuthClientNotAuthorizedException.java b/bmc-common/src/main/java/com/oracle/bmc/auth/exception/AuthClientNotAuthorizedException.java index 018b649cf9c..121f06e70cf 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/exception/AuthClientNotAuthorizedException.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/exception/AuthClientNotAuthorizedException.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.exception; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/exception/AuthServerException.java b/bmc-common/src/main/java/com/oracle/bmc/auth/exception/AuthServerException.java index 519fd8d027c..8d135280c51 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/exception/AuthServerException.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/exception/AuthServerException.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.exception; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/exception/AuthServerUnavailableException.java b/bmc-common/src/main/java/com/oracle/bmc/auth/exception/AuthServerUnavailableException.java index e74674f59e6..dc56907fc74 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/exception/AuthServerUnavailableException.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/exception/AuthServerUnavailableException.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.exception; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/exception/InstancePrincipalUnavailableException.java b/bmc-common/src/main/java/com/oracle/bmc/auth/exception/InstancePrincipalUnavailableException.java index 4458e4e1058..6a13ede311d 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/exception/InstancePrincipalUnavailableException.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/exception/InstancePrincipalUnavailableException.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.exception; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/AbstractFederationClient.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/AbstractFederationClient.java index a845d0dea97..003acaa0ac5 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/AbstractFederationClient.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/AbstractFederationClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/AbstractTemplateRptPathProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/AbstractTemplateRptPathProvider.java index 4a07ad9864a..bd4bc908b4d 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/AbstractTemplateRptPathProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/AbstractTemplateRptPathProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/AuthUtils.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/AuthUtils.java index 47758888989..2f887eb8dbb 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/AuthUtils.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/AuthUtils.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ConfigFileDelegationTokenUtils.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ConfigFileDelegationTokenUtils.java index cab6fd80cf9..c026baf648d 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ConfigFileDelegationTokenUtils.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ConfigFileDelegationTokenUtils.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/DefaultLeafRptPathProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/DefaultLeafRptPathProvider.java index 020b3a1d0ac..9c2c8719d11 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/DefaultLeafRptPathProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/DefaultLeafRptPathProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/DefaultRptPathProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/DefaultRptPathProvider.java index 0b648b78f06..f182d02a1ac 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/DefaultRptPathProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/DefaultRptPathProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/DelegationTokenConfigurator.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/DelegationTokenConfigurator.java index 7ff6a215a14..f8078e6b3b8 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/DelegationTokenConfigurator.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/DelegationTokenConfigurator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/EnvironmentRptPathProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/EnvironmentRptPathProvider.java index 15ce1a0d1c5..203071be519 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/EnvironmentRptPathProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/EnvironmentRptPathProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/FederationClient.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/FederationClient.java index dad79736c9a..f263a2ec250 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/FederationClient.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/FederationClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/FileBasedKeySupplier.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/FileBasedKeySupplier.java index 6741497112b..b77fe266b33 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/FileBasedKeySupplier.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/FileBasedKeySupplier.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/FileBasedResourcePrincipalFederationClient.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/FileBasedResourcePrincipalFederationClient.java index e28f0a9c842..19dc6e6f790 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/FileBasedResourcePrincipalFederationClient.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/FileBasedResourcePrincipalFederationClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/FixedContentKeySupplier.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/FixedContentKeySupplier.java index 310f12312b8..d4b48dce0ce 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/FixedContentKeySupplier.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/FixedContentKeySupplier.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/FixedContentResourcePrincipalFederationClient.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/FixedContentResourcePrincipalFederationClient.java index 3eb833292af..141dcedeab9 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/FixedContentResourcePrincipalFederationClient.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/FixedContentResourcePrincipalFederationClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ForwardingX509Certificate.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ForwardingX509Certificate.java index 7df2685811a..4032edb20b6 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ForwardingX509Certificate.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ForwardingX509Certificate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/GetResourcePrincipalSessionTokenRequest.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/GetResourcePrincipalSessionTokenRequest.java index 4fd06cc0606..d85469710e2 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/GetResourcePrincipalSessionTokenRequest.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/GetResourcePrincipalSessionTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/GetResourcePrincipalTokenResponse.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/GetResourcePrincipalTokenResponse.java index ce93b39edc7..dfba303d269 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/GetResourcePrincipalTokenResponse.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/GetResourcePrincipalTokenResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ImdsRptPathProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ImdsRptPathProvider.java index 0bf39c21047..f4f0ae04040 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ImdsRptPathProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ImdsRptPathProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/JWK.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/JWK.java index 1458fb23c20..751e6e8f6e8 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/JWK.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/JWK.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/JwtClaimsSet.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/JwtClaimsSet.java index 457f6c5a62e..eb990a2b257 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/JwtClaimsSet.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/JwtClaimsSet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/KeyPairAuthenticationDetailProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/KeyPairAuthenticationDetailProvider.java index 0037495cca9..0e0122e762f 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/KeyPairAuthenticationDetailProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/KeyPairAuthenticationDetailProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ResourcePrincipalV2FederationClient.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ResourcePrincipalV2FederationClient.java index f409a889a79..562e0c2cc85 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ResourcePrincipalV2FederationClient.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ResourcePrincipalV2FederationClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ResourcePrincipalsFederationClient.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ResourcePrincipalsFederationClient.java index a947c31a234..974d69c80c8 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ResourcePrincipalsFederationClient.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ResourcePrincipalsFederationClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ResourcePrincipalsV3FederationClient.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ResourcePrincipalsV3FederationClient.java index f4b9b0cd23b..67fbf8e20d8 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ResourcePrincipalsV3FederationClient.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/ResourcePrincipalsV3FederationClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/RptPathProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/RptPathProvider.java index 475e87a738a..47fa1f44245 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/RptPathProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/RptPathProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/SecurityTokenAdapter.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/SecurityTokenAdapter.java index 322f19db9f7..aef6577def6 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/SecurityTokenAdapter.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/SecurityTokenAdapter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/StringRptPathProvider.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/StringRptPathProvider.java index be66b80d10e..4c94a58705e 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/StringRptPathProvider.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/StringRptPathProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/X509CertificateWithOriginalPem.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/X509CertificateWithOriginalPem.java index 7dadb34be6b..843073da7dd 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/X509CertificateWithOriginalPem.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/X509CertificateWithOriginalPem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/X509FederationClient.java b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/X509FederationClient.java index 6a384d1cb66..fb8e65350c2 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/auth/internal/X509FederationClient.java +++ b/bmc-common/src/main/java/com/oracle/bmc/auth/internal/X509FederationClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/common/ClientBuilderBase.java b/bmc-common/src/main/java/com/oracle/bmc/common/ClientBuilderBase.java index ddda6f9a7eb..3916a7b63fe 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/common/ClientBuilderBase.java +++ b/bmc-common/src/main/java/com/oracle/bmc/common/ClientBuilderBase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.common; diff --git a/bmc-common/src/main/java/com/oracle/bmc/common/InternalBuilderAccess.java b/bmc-common/src/main/java/com/oracle/bmc/common/InternalBuilderAccess.java index 2c3371d421c..13d71d2bdeb 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/common/InternalBuilderAccess.java +++ b/bmc-common/src/main/java/com/oracle/bmc/common/InternalBuilderAccess.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.common; diff --git a/bmc-common/src/main/java/com/oracle/bmc/common/RegionalClientBuilder.java b/bmc-common/src/main/java/com/oracle/bmc/common/RegionalClientBuilder.java index 1a6546f84c3..1d8eea88b3d 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/common/RegionalClientBuilder.java +++ b/bmc-common/src/main/java/com/oracle/bmc/common/RegionalClientBuilder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.common; diff --git a/bmc-common/src/main/java/com/oracle/bmc/helper/EnvironmentVariablesHelper.java b/bmc-common/src/main/java/com/oracle/bmc/helper/EnvironmentVariablesHelper.java index b16176fa552..c6498b0902a 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/helper/EnvironmentVariablesHelper.java +++ b/bmc-common/src/main/java/com/oracle/bmc/helper/EnvironmentVariablesHelper.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.helper; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/ApacheConfigurator.java b/bmc-common/src/main/java/com/oracle/bmc/http/ApacheConfigurator.java index a1325cad2a1..f8c6013cc0a 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/ApacheConfigurator.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/ApacheConfigurator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/ApacheConnectionPoolConfig.java b/bmc-common/src/main/java/com/oracle/bmc/http/ApacheConnectionPoolConfig.java index ad3adf0d5a9..89e54e5a495 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/ApacheConnectionPoolConfig.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/ApacheConnectionPoolConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/ApacheConnectorProperties.java b/bmc-common/src/main/java/com/oracle/bmc/http/ApacheConnectorProperties.java index 2c2f8fc29ec..4e8db0302fb 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/ApacheConnectorProperties.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/ApacheConnectorProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/ApacheProxyConfig.java b/bmc-common/src/main/java/com/oracle/bmc/http/ApacheProxyConfig.java index 1884e47241a..718dc850fbd 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/ApacheProxyConfig.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/ApacheProxyConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/ApacheProxyConfigDecorator.java b/bmc-common/src/main/java/com/oracle/bmc/http/ApacheProxyConfigDecorator.java index 78dd47af9e4..85e2985dc04 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/ApacheProxyConfigDecorator.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/ApacheProxyConfigDecorator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/ClientConfigurator.java b/bmc-common/src/main/java/com/oracle/bmc/http/ClientConfigurator.java index df78bc5a2b9..aef3ca95d3e 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/ClientConfigurator.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/ClientConfigurator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/CompositeClientConfigurator.java b/bmc-common/src/main/java/com/oracle/bmc/http/CompositeClientConfigurator.java index 0f6cb17afac..d961b6b3b00 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/CompositeClientConfigurator.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/CompositeClientConfigurator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/CrossTenancyRequestConfigurator.java b/bmc-common/src/main/java/com/oracle/bmc/http/CrossTenancyRequestConfigurator.java index 4f57ec484cf..a81742d52dd 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/CrossTenancyRequestConfigurator.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/CrossTenancyRequestConfigurator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/DefaultConfigurator.java b/bmc-common/src/main/java/com/oracle/bmc/http/DefaultConfigurator.java index ffdd80fef23..deabd053779 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/DefaultConfigurator.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/DefaultConfigurator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/DefaultConnectorConfigurator.java b/bmc-common/src/main/java/com/oracle/bmc/http/DefaultConnectorConfigurator.java index 1143a7752de..d8ceebaf824 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/DefaultConnectorConfigurator.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/DefaultConnectorConfigurator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/HasEffectiveClientConfigurator.java b/bmc-common/src/main/java/com/oracle/bmc/http/HasEffectiveClientConfigurator.java index cab6c2f1088..80a7bcf8922 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/HasEffectiveClientConfigurator.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/HasEffectiveClientConfigurator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/JerseyLoggingClientConfigurator.java b/bmc-common/src/main/java/com/oracle/bmc/http/JerseyLoggingClientConfigurator.java index 4755ef4c8f3..4d8e9757e3d 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/JerseyLoggingClientConfigurator.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/JerseyLoggingClientConfigurator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/Priorities.java b/bmc-common/src/main/java/com/oracle/bmc/http/Priorities.java index 0b91b895571..f7c47bf8f66 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/Priorities.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/Priorities.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/internal/AuthnClientFilter.java b/bmc-common/src/main/java/com/oracle/bmc/http/internal/AuthnClientFilter.java index f67dfd5af82..fc8ad853093 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/internal/AuthnClientFilter.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/internal/AuthnClientFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/internal/BaseAsyncClient.java b/bmc-common/src/main/java/com/oracle/bmc/http/internal/BaseAsyncClient.java index f96848ca3c1..b74f2ea7015 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/internal/BaseAsyncClient.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/internal/BaseAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/internal/BaseClient.java b/bmc-common/src/main/java/com/oracle/bmc/http/internal/BaseClient.java index bf3d7031e80..eb0334e7ff2 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/internal/BaseClient.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/internal/BaseClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/internal/BaseSyncClient.java b/bmc-common/src/main/java/com/oracle/bmc/http/internal/BaseSyncClient.java index 403ae90514d..07fd6049192 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/internal/BaseSyncClient.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/internal/BaseSyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/internal/BmcEnum.java b/bmc-common/src/main/java/com/oracle/bmc/http/internal/BmcEnum.java index 4b2dce6e3ad..64225de6336 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/internal/BmcEnum.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/internal/BmcEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/internal/CircuitBreakerHelper.java b/bmc-common/src/main/java/com/oracle/bmc/http/internal/CircuitBreakerHelper.java index f4276900183..baa7a1d742a 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/internal/CircuitBreakerHelper.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/internal/CircuitBreakerHelper.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/internal/ClientCall.java b/bmc-common/src/main/java/com/oracle/bmc/http/internal/ClientCall.java index df991c423a1..8af8d5e1ab5 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/internal/ClientCall.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/internal/ClientCall.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/internal/ClientIdFilter.java b/bmc-common/src/main/java/com/oracle/bmc/http/internal/ClientIdFilter.java index 01d822d405a..2ffcac33c19 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/internal/ClientIdFilter.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/internal/ClientIdFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/internal/CrossTenancyRequestClientFilter.java b/bmc-common/src/main/java/com/oracle/bmc/http/internal/CrossTenancyRequestClientFilter.java index 9931274a8a2..8fbb18616e1 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/internal/CrossTenancyRequestClientFilter.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/internal/CrossTenancyRequestClientFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/internal/ErrorConsumer.java b/bmc-common/src/main/java/com/oracle/bmc/http/internal/ErrorConsumer.java index 06879f52979..989af572f65 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/internal/ErrorConsumer.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/internal/ErrorConsumer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/internal/HeaderUtils.java b/bmc-common/src/main/java/com/oracle/bmc/http/internal/HeaderUtils.java index f0cc0e5206a..83e0e7e6d74 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/internal/HeaderUtils.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/internal/HeaderUtils.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/internal/HttpDateUtils.java b/bmc-common/src/main/java/com/oracle/bmc/http/internal/HttpDateUtils.java index 848cbc31118..26a12a6b9de 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/internal/HttpDateUtils.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/internal/HttpDateUtils.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/internal/LogHeadersFilter.java b/bmc-common/src/main/java/com/oracle/bmc/http/internal/LogHeadersFilter.java index 4e1769728c7..a00b263d348 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/internal/LogHeadersFilter.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/internal/LogHeadersFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/internal/ParamEncoder.java b/bmc-common/src/main/java/com/oracle/bmc/http/internal/ParamEncoder.java index c37715477ac..d6c1cd82212 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/internal/ParamEncoder.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/internal/ParamEncoder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/internal/ResponseErrorBmcExceptionFactory.java b/bmc-common/src/main/java/com/oracle/bmc/http/internal/ResponseErrorBmcExceptionFactory.java index 57c28691141..0df3ee62929 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/internal/ResponseErrorBmcExceptionFactory.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/internal/ResponseErrorBmcExceptionFactory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/internal/ResponseErrorRuntimeExceptionFactory.java b/bmc-common/src/main/java/com/oracle/bmc/http/internal/ResponseErrorRuntimeExceptionFactory.java index aa2e80b8c75..85fe8ce2bc7 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/internal/ResponseErrorRuntimeExceptionFactory.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/internal/ResponseErrorRuntimeExceptionFactory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/internal/ResponseHelper.java b/bmc-common/src/main/java/com/oracle/bmc/http/internal/ResponseHelper.java index 891e7a67af8..cfe930bdd63 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/internal/ResponseHelper.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/internal/ResponseHelper.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/internal/RetryTokenUtils.java b/bmc-common/src/main/java/com/oracle/bmc/http/internal/RetryTokenUtils.java index 80aecb891b5..8f5d1d7a1e4 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/internal/RetryTokenUtils.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/internal/RetryTokenUtils.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/internal/SyncFutureWaiter.java b/bmc-common/src/main/java/com/oracle/bmc/http/internal/SyncFutureWaiter.java index 0747b94e39d..f1ceb018548 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/internal/SyncFutureWaiter.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/internal/SyncFutureWaiter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/signing/DefaultRequestSigner.java b/bmc-common/src/main/java/com/oracle/bmc/http/signing/DefaultRequestSigner.java index 6c95cae3029..f2579b87b24 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/signing/DefaultRequestSigner.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/signing/DefaultRequestSigner.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.signing; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/signing/RequestSigner.java b/bmc-common/src/main/java/com/oracle/bmc/http/signing/RequestSigner.java index d5d69b804db..6a56b6ce035 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/signing/RequestSigner.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/signing/RequestSigner.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.signing; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/signing/RequestSignerException.java b/bmc-common/src/main/java/com/oracle/bmc/http/signing/RequestSignerException.java index fb430cc9940..5870b88a1ac 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/signing/RequestSignerException.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/signing/RequestSignerException.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.signing; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/signing/RequestSignerFactory.java b/bmc-common/src/main/java/com/oracle/bmc/http/signing/RequestSignerFactory.java index 3692676da7c..5458004a1f1 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/signing/RequestSignerFactory.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/signing/RequestSignerFactory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.signing; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/signing/RequestSigningFilter.java b/bmc-common/src/main/java/com/oracle/bmc/http/signing/RequestSigningFilter.java index 90b4ebf7ac6..a743bcec114 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/signing/RequestSigningFilter.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/signing/RequestSigningFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.signing; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/signing/SigningStrategy.java b/bmc-common/src/main/java/com/oracle/bmc/http/signing/SigningStrategy.java index fa4bcf7d3f0..ee8e7cd82c8 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/signing/SigningStrategy.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/signing/SigningStrategy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.signing; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/Algorithm.java b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/Algorithm.java index 26d78457f4f..4f6f6bff8d7 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/Algorithm.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/Algorithm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.signing.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/Constants.java b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/Constants.java index 5b73e587e72..801c072ca8b 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/Constants.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/Constants.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.signing.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/DefaultRequestSignerFactory.java b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/DefaultRequestSignerFactory.java index aeb9b70dbee..90c10cfe9ae 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/DefaultRequestSignerFactory.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/DefaultRequestSignerFactory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.signing.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/KeyIdType.java b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/KeyIdType.java index be9031d5673..5cb5f07fe06 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/KeyIdType.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/KeyIdType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.signing.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/KeySupplier.java b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/KeySupplier.java index 5876ccce228..03ae9c99825 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/KeySupplier.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/KeySupplier.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.signing.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/PEMFileRSAPrivateKeySupplier.java b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/PEMFileRSAPrivateKeySupplier.java index ea46c998582..5ce0e50a222 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/PEMFileRSAPrivateKeySupplier.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/PEMFileRSAPrivateKeySupplier.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.signing.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/PEMStreamRSAPrivateKeySupplier.java b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/PEMStreamRSAPrivateKeySupplier.java index 8014b8e08cf..256d4aca1dd 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/PEMStreamRSAPrivateKeySupplier.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/PEMStreamRSAPrivateKeySupplier.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.signing.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/RequestSignerImpl.java b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/RequestSignerImpl.java index 807526c6dd7..a984931aeb8 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/RequestSignerImpl.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/RequestSignerImpl.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.signing.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/SignatureSigner.java b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/SignatureSigner.java index fe081724918..9df532a08b0 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/SignatureSigner.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/SignatureSigner.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.signing.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/SignedRequestException.java b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/SignedRequestException.java index 3838273b810..1f64335f8ae 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/SignedRequestException.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/SignedRequestException.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.signing.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/SignedRequestVersion.java b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/SignedRequestVersion.java index b325aabe922..8facb7c0ad6 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/SignedRequestVersion.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/SignedRequestVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.signing.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/Version.java b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/Version.java index b5a5a2672f6..3ed7099dd60 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/Version.java +++ b/bmc-common/src/main/java/com/oracle/bmc/http/signing/internal/Version.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.signing.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/internal/Alloy.java b/bmc-common/src/main/java/com/oracle/bmc/internal/Alloy.java index 832d2ec64fb..a933d2e085e 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/internal/Alloy.java +++ b/bmc-common/src/main/java/com/oracle/bmc/internal/Alloy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/internal/ClientThreadFactory.java b/bmc-common/src/main/java/com/oracle/bmc/internal/ClientThreadFactory.java index 47222c6e630..989e4867a7f 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/internal/ClientThreadFactory.java +++ b/bmc-common/src/main/java/com/oracle/bmc/internal/ClientThreadFactory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/internal/DefaultEndpointConfiguration.java b/bmc-common/src/main/java/com/oracle/bmc/internal/DefaultEndpointConfiguration.java index 323cdecf8de..ebc43be0839 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/internal/DefaultEndpointConfiguration.java +++ b/bmc-common/src/main/java/com/oracle/bmc/internal/DefaultEndpointConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/internal/EndpointBuilder.java b/bmc-common/src/main/java/com/oracle/bmc/internal/EndpointBuilder.java index 3a423bf3038..35ab95c0ff6 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/internal/EndpointBuilder.java +++ b/bmc-common/src/main/java/com/oracle/bmc/internal/EndpointBuilder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/internal/SpiClientConfigurator.java b/bmc-common/src/main/java/com/oracle/bmc/internal/SpiClientConfigurator.java index a5b3d6009b6..6559d3f8163 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/internal/SpiClientConfigurator.java +++ b/bmc-common/src/main/java/com/oracle/bmc/internal/SpiClientConfigurator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/io/internal/KeepOpenInputStream.java b/bmc-common/src/main/java/com/oracle/bmc/io/internal/KeepOpenInputStream.java index f6151722a36..064856e5b43 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/io/internal/KeepOpenInputStream.java +++ b/bmc-common/src/main/java/com/oracle/bmc/io/internal/KeepOpenInputStream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.io.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/io/internal/ResettableFileInputStream.java b/bmc-common/src/main/java/com/oracle/bmc/io/internal/ResettableFileInputStream.java index 9419c4f2489..22afca578e1 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/io/internal/ResettableFileInputStream.java +++ b/bmc-common/src/main/java/com/oracle/bmc/io/internal/ResettableFileInputStream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.io.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/io/internal/WrappedByteArrayInputStream.java b/bmc-common/src/main/java/com/oracle/bmc/io/internal/WrappedByteArrayInputStream.java index ba9eb6e34bb..0ef6cbf6109 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/io/internal/WrappedByteArrayInputStream.java +++ b/bmc-common/src/main/java/com/oracle/bmc/io/internal/WrappedByteArrayInputStream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.io.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/io/internal/WrappedFileInputStream.java b/bmc-common/src/main/java/com/oracle/bmc/io/internal/WrappedFileInputStream.java index 8bddcaa3bd0..0dc3201e81b 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/io/internal/WrappedFileInputStream.java +++ b/bmc-common/src/main/java/com/oracle/bmc/io/internal/WrappedFileInputStream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.io.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/model/BmcException.java b/bmc-common/src/main/java/com/oracle/bmc/model/BmcException.java index 11716db186b..7deca062c69 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/model/BmcException.java +++ b/bmc-common/src/main/java/com/oracle/bmc/model/BmcException.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.model; diff --git a/bmc-common/src/main/java/com/oracle/bmc/model/Range.java b/bmc-common/src/main/java/com/oracle/bmc/model/Range.java index 19942d52ecf..65dcb24cf06 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/model/Range.java +++ b/bmc-common/src/main/java/com/oracle/bmc/model/Range.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.model; diff --git a/bmc-common/src/main/java/com/oracle/bmc/model/RegionAlloySchema.java b/bmc-common/src/main/java/com/oracle/bmc/model/RegionAlloySchema.java index e94a44a0907..d079dc00a2a 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/model/RegionAlloySchema.java +++ b/bmc-common/src/main/java/com/oracle/bmc/model/RegionAlloySchema.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.model; diff --git a/bmc-common/src/main/java/com/oracle/bmc/model/RegionSchema.java b/bmc-common/src/main/java/com/oracle/bmc/model/RegionSchema.java index 2ebf4fc3fab..cd6dab6d8a7 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/model/RegionSchema.java +++ b/bmc-common/src/main/java/com/oracle/bmc/model/RegionSchema.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.model; diff --git a/bmc-common/src/main/java/com/oracle/bmc/model/SdkRuntimeException.java b/bmc-common/src/main/java/com/oracle/bmc/model/SdkRuntimeException.java index 738c2e0327a..3e9cb787909 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/model/SdkRuntimeException.java +++ b/bmc-common/src/main/java/com/oracle/bmc/model/SdkRuntimeException.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.model; diff --git a/bmc-common/src/main/java/com/oracle/bmc/model/internal/JsonConverter.java b/bmc-common/src/main/java/com/oracle/bmc/model/internal/JsonConverter.java index d4930b931ab..8f9a845b8ae 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/model/internal/JsonConverter.java +++ b/bmc-common/src/main/java/com/oracle/bmc/model/internal/JsonConverter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.model.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/AbstractResponseIterator.java b/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/AbstractResponseIterator.java index 0a9bff526e5..2173637f503 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/AbstractResponseIterator.java +++ b/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/AbstractResponseIterator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.paginator.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/RequestBuilderAndToken.java b/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/RequestBuilderAndToken.java index 2de4b49d6c2..7579b677ca6 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/RequestBuilderAndToken.java +++ b/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/RequestBuilderAndToken.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.paginator.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/ResponseIterable.java b/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/ResponseIterable.java index 611951feee0..83813a44b9c 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/ResponseIterable.java +++ b/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/ResponseIterable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.paginator.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/ResponseIterator.java b/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/ResponseIterator.java index fc90df4d1ac..cf30a094653 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/ResponseIterator.java +++ b/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/ResponseIterator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.paginator.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/ResponseRecordIterable.java b/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/ResponseRecordIterable.java index 00a0684d054..5a4a3d464eb 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/ResponseRecordIterable.java +++ b/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/ResponseRecordIterable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.paginator.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/ResponseRecordIterator.java b/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/ResponseRecordIterator.java index 4792eb27da3..c6047898e3d 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/ResponseRecordIterator.java +++ b/bmc-common/src/main/java/com/oracle/bmc/paginator/internal/ResponseRecordIterator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.paginator.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/requests/BmcRequest.java b/bmc-common/src/main/java/com/oracle/bmc/requests/BmcRequest.java index 7a50250f8ba..48254845c13 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/requests/BmcRequest.java +++ b/bmc-common/src/main/java/com/oracle/bmc/requests/BmcRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.requests; diff --git a/bmc-common/src/main/java/com/oracle/bmc/requests/HasContentLength.java b/bmc-common/src/main/java/com/oracle/bmc/requests/HasContentLength.java index e3503305d81..3adcbf66080 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/requests/HasContentLength.java +++ b/bmc-common/src/main/java/com/oracle/bmc/requests/HasContentLength.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.requests; diff --git a/bmc-common/src/main/java/com/oracle/bmc/responses/AsyncHandler.java b/bmc-common/src/main/java/com/oracle/bmc/responses/AsyncHandler.java index 774049eb374..51702db6cd1 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/responses/AsyncHandler.java +++ b/bmc-common/src/main/java/com/oracle/bmc/responses/AsyncHandler.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.responses; diff --git a/bmc-common/src/main/java/com/oracle/bmc/responses/BmcResponse.java b/bmc-common/src/main/java/com/oracle/bmc/responses/BmcResponse.java index 97152bfbb84..9f6974d6ae3 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/responses/BmcResponse.java +++ b/bmc-common/src/main/java/com/oracle/bmc/responses/BmcResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.responses; diff --git a/bmc-common/src/main/java/com/oracle/bmc/responses/internal/ForwardingAsyncHandler.java b/bmc-common/src/main/java/com/oracle/bmc/responses/internal/ForwardingAsyncHandler.java index 241c8fba0d3..6fbc3684ee5 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/responses/internal/ForwardingAsyncHandler.java +++ b/bmc-common/src/main/java/com/oracle/bmc/responses/internal/ForwardingAsyncHandler.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.responses.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/responses/internal/NoOpAsyncHandler.java b/bmc-common/src/main/java/com/oracle/bmc/responses/internal/NoOpAsyncHandler.java index 8f3fe934a7b..af95f65f09a 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/responses/internal/NoOpAsyncHandler.java +++ b/bmc-common/src/main/java/com/oracle/bmc/responses/internal/NoOpAsyncHandler.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.responses.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/responses/internal/StreamClosingAsyncHandler.java b/bmc-common/src/main/java/com/oracle/bmc/responses/internal/StreamClosingAsyncHandler.java index 98d4975924b..5a02557d65d 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/responses/internal/StreamClosingAsyncHandler.java +++ b/bmc-common/src/main/java/com/oracle/bmc/responses/internal/StreamClosingAsyncHandler.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.responses.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/retrier/BmcGenericRetrier.java b/bmc-common/src/main/java/com/oracle/bmc/retrier/BmcGenericRetrier.java index 315cb82556d..a87bcf6f252 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/retrier/BmcGenericRetrier.java +++ b/bmc-common/src/main/java/com/oracle/bmc/retrier/BmcGenericRetrier.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.retrier; diff --git a/bmc-common/src/main/java/com/oracle/bmc/retrier/DefaultRetryCondition.java b/bmc-common/src/main/java/com/oracle/bmc/retrier/DefaultRetryCondition.java index 28312798042..a3a140bd93e 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/retrier/DefaultRetryCondition.java +++ b/bmc-common/src/main/java/com/oracle/bmc/retrier/DefaultRetryCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.retrier; @@ -12,6 +12,7 @@ import java.util.Set; import com.oracle.bmc.circuitbreaker.CallNotAllowedException; +import com.oracle.bmc.http.client.Options; import com.oracle.bmc.model.BmcException; import jakarta.annotation.Nonnull; @@ -34,6 +35,21 @@ public class DefaultRetryCondition implements RetryCondition { private static final String PROCESSING_EXCEPTION_MSG = "[.|\\s\\S]*processing(\\s)+exception[.|\\s\\S]*"; + /** + * Check if the operation should be retried based on the given {@link BmcException}. The + * operation will be retried if: + * + *
    + *
  • The exception is client-side and not caused by a {@link CallNotAllowedException}. + *
  • The exception is a timeout. + *
  • The HTTP status code is 429, 500, 502, 503, or 504. + *
  • The HTTP status code and service code are in the {@link #RETRYABLE_SERVICE_ERRORS} map. + *
  • The exception is a "processing exception" and token refresh retry is enabled. + *
+ * + * @param exception The exception from the previous unsuccessful operation. + * @return {@code true} if the operation should be retried, else {@code false}. + */ @Override public boolean shouldBeRetried(@Nonnull final BmcException exception) { if (exception == null) { @@ -51,7 +67,7 @@ public boolean shouldBeRetried(@Nonnull final BmcException exception) { && RETRYABLE_SERVICE_ERRORS .get(exception.getStatusCode()) .contains(exception.getServiceCode())) - || isProcessingException(exception); + || (Options.isTokenRefreshRetrierEnabled() && isProcessingException(exception)); } public static boolean isProcessingException(final BmcException exception) { diff --git a/bmc-common/src/main/java/com/oracle/bmc/retrier/Retriers.java b/bmc-common/src/main/java/com/oracle/bmc/retrier/Retriers.java index 151a239925b..e2ae5ba319c 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/retrier/Retriers.java +++ b/bmc-common/src/main/java/com/oracle/bmc/retrier/Retriers.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.retrier; diff --git a/bmc-common/src/main/java/com/oracle/bmc/retrier/RetryCondition.java b/bmc-common/src/main/java/com/oracle/bmc/retrier/RetryCondition.java index 921dab7153a..3da92019ec3 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/retrier/RetryCondition.java +++ b/bmc-common/src/main/java/com/oracle/bmc/retrier/RetryCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.retrier; diff --git a/bmc-common/src/main/java/com/oracle/bmc/retrier/RetryConfiguration.java b/bmc-common/src/main/java/com/oracle/bmc/retrier/RetryConfiguration.java index 8abb7f630c4..c30e5893bb1 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/retrier/RetryConfiguration.java +++ b/bmc-common/src/main/java/com/oracle/bmc/retrier/RetryConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.retrier; diff --git a/bmc-common/src/main/java/com/oracle/bmc/retrier/RetryOnOpenCircuitBreakerDefaultRetryCondition.java b/bmc-common/src/main/java/com/oracle/bmc/retrier/RetryOnOpenCircuitBreakerDefaultRetryCondition.java index b78a7676add..8c76e31ee4d 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/retrier/RetryOnOpenCircuitBreakerDefaultRetryCondition.java +++ b/bmc-common/src/main/java/com/oracle/bmc/retrier/RetryOnOpenCircuitBreakerDefaultRetryCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.retrier; diff --git a/bmc-common/src/main/java/com/oracle/bmc/retrier/RetryOptions.java b/bmc-common/src/main/java/com/oracle/bmc/retrier/RetryOptions.java index e8b4b0b0dac..f92874c3f88 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/retrier/RetryOptions.java +++ b/bmc-common/src/main/java/com/oracle/bmc/retrier/RetryOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.retrier; diff --git a/bmc-common/src/main/java/com/oracle/bmc/retrier/TokenRefreshRetrier.java b/bmc-common/src/main/java/com/oracle/bmc/retrier/TokenRefreshRetrier.java index 53fd59cffb9..bf444004e97 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/retrier/TokenRefreshRetrier.java +++ b/bmc-common/src/main/java/com/oracle/bmc/retrier/TokenRefreshRetrier.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.retrier; @@ -10,6 +10,7 @@ import com.oracle.bmc.waiter.FixedTimeDelayStrategy; import com.oracle.bmc.waiter.MaxAttemptsTerminationStrategy; import com.oracle.bmc.waiter.TerminationStrategy; +import com.oracle.bmc.http.client.Options; import jakarta.annotation.Nonnull; @@ -28,27 +29,35 @@ private static RetryConfiguration createTokenRefreshRetryConfiguration( throw new java.lang.NullPointerException( "authenticationDetailsProvider is marked non-null but is null"); } - final RetryConfiguration tokenRefreshRetryConfiguration = - RetryConfiguration.builder() - .terminationStrategy(TOKEN_REFRESH_TERMINATION_STRATEGY) - .delayStrategy(TOKEN_REFRESH_DELAY_STRATEGY) - .retryCondition( - e -> { - if ((e.getStatusCode() == 401 - || DefaultRetryCondition.isProcessingException( - e)) - && authenticationDetailsProvider - instanceof - RefreshableOnNotAuthenticatedProvider) { - ((RefreshableOnNotAuthenticatedProvider) - authenticationDetailsProvider) - .refresh(); - return true; - } - return false; - }) - .build(); - return tokenRefreshRetryConfiguration; + final RetryConfiguration.Builder tokenRefreshRetryConfigurationBuilder = + RetryConfiguration.builder(); + + if (Options.isTokenRefreshRetrierEnabled()) { + tokenRefreshRetryConfigurationBuilder + .terminationStrategy(TOKEN_REFRESH_TERMINATION_STRATEGY) + .delayStrategy(TOKEN_REFRESH_DELAY_STRATEGY) + .retryCondition( + e -> { + if ((e.getStatusCode() == 401 + || DefaultRetryCondition.isProcessingException(e)) + && authenticationDetailsProvider + instanceof RefreshableOnNotAuthenticatedProvider) { + ((RefreshableOnNotAuthenticatedProvider) + authenticationDetailsProvider) + .refresh(); + return true; + } + return false; + }); + } else { + // Added to disable the DefaultRetryCondition() from RetryConfiguration + tokenRefreshRetryConfigurationBuilder.retryCondition( + e -> { + return false; + }); + } + + return tokenRefreshRetryConfigurationBuilder.build(); } /** diff --git a/bmc-common/src/main/java/com/oracle/bmc/util/CircuitBreakerUtils.java b/bmc-common/src/main/java/com/oracle/bmc/util/CircuitBreakerUtils.java index be12b3776e9..09c7da13e01 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/util/CircuitBreakerUtils.java +++ b/bmc-common/src/main/java/com/oracle/bmc/util/CircuitBreakerUtils.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util; diff --git a/bmc-common/src/main/java/com/oracle/bmc/util/JavaRuntimeUtils.java b/bmc-common/src/main/java/com/oracle/bmc/util/JavaRuntimeUtils.java index 1b4a92a6209..eba0fe3eff2 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/util/JavaRuntimeUtils.java +++ b/bmc-common/src/main/java/com/oracle/bmc/util/JavaRuntimeUtils.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util; diff --git a/bmc-common/src/main/java/com/oracle/bmc/util/StreamUtils.java b/bmc-common/src/main/java/com/oracle/bmc/util/StreamUtils.java index c28621c03bf..d08386cffd4 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/util/StreamUtils.java +++ b/bmc-common/src/main/java/com/oracle/bmc/util/StreamUtils.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util; diff --git a/bmc-common/src/main/java/com/oracle/bmc/util/VisibleForTesting.java b/bmc-common/src/main/java/com/oracle/bmc/util/VisibleForTesting.java index 7033091ece8..6526c205bde 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/util/VisibleForTesting.java +++ b/bmc-common/src/main/java/com/oracle/bmc/util/VisibleForTesting.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util; diff --git a/bmc-common/src/main/java/com/oracle/bmc/util/internal/ClientCompatibilityChecker.java b/bmc-common/src/main/java/com/oracle/bmc/util/internal/ClientCompatibilityChecker.java index 3900eeafe66..0f1b96dff43 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/util/internal/ClientCompatibilityChecker.java +++ b/bmc-common/src/main/java/com/oracle/bmc/util/internal/ClientCompatibilityChecker.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/util/internal/CollectionFormatType.java b/bmc-common/src/main/java/com/oracle/bmc/util/internal/CollectionFormatType.java index 5d73b3cbf60..0016d2b25c6 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/util/internal/CollectionFormatType.java +++ b/bmc-common/src/main/java/com/oracle/bmc/util/internal/CollectionFormatType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/util/internal/ComparableVersion.java b/bmc-common/src/main/java/com/oracle/bmc/util/internal/ComparableVersion.java index 1e774da190e..32ffc07c0d0 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/util/internal/ComparableVersion.java +++ b/bmc-common/src/main/java/com/oracle/bmc/util/internal/ComparableVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/util/internal/EndpointTemplateForOptionsUtils.java b/bmc-common/src/main/java/com/oracle/bmc/util/internal/EndpointTemplateForOptionsUtils.java index eb24fb5f1ee..b1935f16c04 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/util/internal/EndpointTemplateForOptionsUtils.java +++ b/bmc-common/src/main/java/com/oracle/bmc/util/internal/EndpointTemplateForOptionsUtils.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/util/internal/FileUtils.java b/bmc-common/src/main/java/com/oracle/bmc/util/internal/FileUtils.java index 3a6b28cc935..58ee0c0de12 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/util/internal/FileUtils.java +++ b/bmc-common/src/main/java/com/oracle/bmc/util/internal/FileUtils.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/util/internal/NameUtils.java b/bmc-common/src/main/java/com/oracle/bmc/util/internal/NameUtils.java index 5c441eb6958..8856e9e4c0a 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/util/internal/NameUtils.java +++ b/bmc-common/src/main/java/com/oracle/bmc/util/internal/NameUtils.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/util/internal/RefreshAuthTokenTransformingFuture.java b/bmc-common/src/main/java/com/oracle/bmc/util/internal/RefreshAuthTokenTransformingFuture.java index 5be5851b452..bf2273fa76b 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/util/internal/RefreshAuthTokenTransformingFuture.java +++ b/bmc-common/src/main/java/com/oracle/bmc/util/internal/RefreshAuthTokenTransformingFuture.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/util/internal/RefreshAuthTokenWrapper.java b/bmc-common/src/main/java/com/oracle/bmc/util/internal/RefreshAuthTokenWrapper.java index cfdd7babc97..701581cbe8d 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/util/internal/RefreshAuthTokenWrapper.java +++ b/bmc-common/src/main/java/com/oracle/bmc/util/internal/RefreshAuthTokenWrapper.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/util/internal/RefreshAuthTokenWrappingAsyncHandler.java b/bmc-common/src/main/java/com/oracle/bmc/util/internal/RefreshAuthTokenWrappingAsyncHandler.java index 53c2f447833..1e2d6135d84 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/util/internal/RefreshAuthTokenWrappingAsyncHandler.java +++ b/bmc-common/src/main/java/com/oracle/bmc/util/internal/RefreshAuthTokenWrappingAsyncHandler.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/util/internal/StringUtils.java b/bmc-common/src/main/java/com/oracle/bmc/util/internal/StringUtils.java index d5ff3e8f1d1..0cdde6a2a15 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/util/internal/StringUtils.java +++ b/bmc-common/src/main/java/com/oracle/bmc/util/internal/StringUtils.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/util/internal/TransformingFuture.java b/bmc-common/src/main/java/com/oracle/bmc/util/internal/TransformingFuture.java index 2ad11160571..fbfb8412389 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/util/internal/TransformingFuture.java +++ b/bmc-common/src/main/java/com/oracle/bmc/util/internal/TransformingFuture.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/util/internal/Validate.java b/bmc-common/src/main/java/com/oracle/bmc/util/internal/Validate.java index dadc27d8bda..6c635cb1b3e 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/util/internal/Validate.java +++ b/bmc-common/src/main/java/com/oracle/bmc/util/internal/Validate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util.internal; diff --git a/bmc-common/src/main/java/com/oracle/bmc/waiter/BmcGenericWaiter.java b/bmc-common/src/main/java/com/oracle/bmc/waiter/BmcGenericWaiter.java index 1a8b777be5e..fa8b09d2dd7 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/waiter/BmcGenericWaiter.java +++ b/bmc-common/src/main/java/com/oracle/bmc/waiter/BmcGenericWaiter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.waiter; diff --git a/bmc-common/src/main/java/com/oracle/bmc/waiter/DelayStrategy.java b/bmc-common/src/main/java/com/oracle/bmc/waiter/DelayStrategy.java index ae902ba482c..25f3c4804a4 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/waiter/DelayStrategy.java +++ b/bmc-common/src/main/java/com/oracle/bmc/waiter/DelayStrategy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.waiter; diff --git a/bmc-common/src/main/java/com/oracle/bmc/waiter/ExponentialBackoffDelayStrategy.java b/bmc-common/src/main/java/com/oracle/bmc/waiter/ExponentialBackoffDelayStrategy.java index f10dd492e0f..add49b60e68 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/waiter/ExponentialBackoffDelayStrategy.java +++ b/bmc-common/src/main/java/com/oracle/bmc/waiter/ExponentialBackoffDelayStrategy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.waiter; diff --git a/bmc-common/src/main/java/com/oracle/bmc/waiter/ExponentialBackoffDelayStrategyWithJitter.java b/bmc-common/src/main/java/com/oracle/bmc/waiter/ExponentialBackoffDelayStrategyWithJitter.java index ee3389467c1..9bc26a191e7 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/waiter/ExponentialBackoffDelayStrategyWithJitter.java +++ b/bmc-common/src/main/java/com/oracle/bmc/waiter/ExponentialBackoffDelayStrategyWithJitter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.waiter; diff --git a/bmc-common/src/main/java/com/oracle/bmc/waiter/FixedTimeDelayStrategy.java b/bmc-common/src/main/java/com/oracle/bmc/waiter/FixedTimeDelayStrategy.java index 4548bd18e01..bfb78ba0ad8 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/waiter/FixedTimeDelayStrategy.java +++ b/bmc-common/src/main/java/com/oracle/bmc/waiter/FixedTimeDelayStrategy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.waiter; diff --git a/bmc-common/src/main/java/com/oracle/bmc/waiter/GenericWaiter.java b/bmc-common/src/main/java/com/oracle/bmc/waiter/GenericWaiter.java index 3450ab3effe..deee9f01cee 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/waiter/GenericWaiter.java +++ b/bmc-common/src/main/java/com/oracle/bmc/waiter/GenericWaiter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.waiter; diff --git a/bmc-common/src/main/java/com/oracle/bmc/waiter/MaxAttemptsTerminationStrategy.java b/bmc-common/src/main/java/com/oracle/bmc/waiter/MaxAttemptsTerminationStrategy.java index 21f824402e4..6a5ba4c0b54 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/waiter/MaxAttemptsTerminationStrategy.java +++ b/bmc-common/src/main/java/com/oracle/bmc/waiter/MaxAttemptsTerminationStrategy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.waiter; diff --git a/bmc-common/src/main/java/com/oracle/bmc/waiter/MaxTimeTerminationStrategy.java b/bmc-common/src/main/java/com/oracle/bmc/waiter/MaxTimeTerminationStrategy.java index 7a814a8a6fa..d34aa37640a 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/waiter/MaxTimeTerminationStrategy.java +++ b/bmc-common/src/main/java/com/oracle/bmc/waiter/MaxTimeTerminationStrategy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.waiter; diff --git a/bmc-common/src/main/java/com/oracle/bmc/waiter/TerminationStrategy.java b/bmc-common/src/main/java/com/oracle/bmc/waiter/TerminationStrategy.java index b916b3b2470..639faeffe37 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/waiter/TerminationStrategy.java +++ b/bmc-common/src/main/java/com/oracle/bmc/waiter/TerminationStrategy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.waiter; diff --git a/bmc-common/src/main/java/com/oracle/bmc/waiter/Waiter.java b/bmc-common/src/main/java/com/oracle/bmc/waiter/Waiter.java index 9181765d922..89164aceb17 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/waiter/Waiter.java +++ b/bmc-common/src/main/java/com/oracle/bmc/waiter/Waiter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.waiter; diff --git a/bmc-common/src/main/java/com/oracle/bmc/waiter/WaiterConfiguration.java b/bmc-common/src/main/java/com/oracle/bmc/waiter/WaiterConfiguration.java index 5f631325170..b8f10ab8156 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/waiter/WaiterConfiguration.java +++ b/bmc-common/src/main/java/com/oracle/bmc/waiter/WaiterConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.waiter; diff --git a/bmc-common/src/main/java/com/oracle/bmc/waiter/WaiterScheduler.java b/bmc-common/src/main/java/com/oracle/bmc/waiter/WaiterScheduler.java index 673888a9076..e8ac05c78a2 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/waiter/WaiterScheduler.java +++ b/bmc-common/src/main/java/com/oracle/bmc/waiter/WaiterScheduler.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.waiter; diff --git a/bmc-common/src/main/java/com/oracle/bmc/waiter/Waiters.java b/bmc-common/src/main/java/com/oracle/bmc/waiter/Waiters.java index 58b511316da..48ad519b2ef 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/waiter/Waiters.java +++ b/bmc-common/src/main/java/com/oracle/bmc/waiter/Waiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.waiter; diff --git a/bmc-common/src/main/java/com/oracle/bmc/waiter/internal/SimpleWaiterImpl.java b/bmc-common/src/main/java/com/oracle/bmc/waiter/internal/SimpleWaiterImpl.java index 6d703ccbe45..475d48e33ba 100644 --- a/bmc-common/src/main/java/com/oracle/bmc/waiter/internal/SimpleWaiterImpl.java +++ b/bmc-common/src/main/java/com/oracle/bmc/waiter/internal/SimpleWaiterImpl.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.waiter.internal; diff --git a/bmc-common/src/main/resources/com/oracle/bmc/sdk.properties b/bmc-common/src/main/resources/com/oracle/bmc/sdk.properties index 5ba0474559a..fc19667c275 100644 --- a/bmc-common/src/main/resources/com/oracle/bmc/sdk.properties +++ b/bmc-common/src/main/resources/com/oracle/bmc/sdk.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-common/src/test/java/com/oracle/bmc/AlloyConfigTest.java b/bmc-common/src/test/java/com/oracle/bmc/AlloyConfigTest.java index 899d0a0c524..6ee9f959e38 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/AlloyConfigTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/AlloyConfigTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc; diff --git a/bmc-common/src/test/java/com/oracle/bmc/ConfigFileReaderTest.java b/bmc-common/src/test/java/com/oracle/bmc/ConfigFileReaderTest.java index 0680655af12..fbe9a7f6c12 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/ConfigFileReaderTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/ConfigFileReaderTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc; diff --git a/bmc-common/src/test/java/com/oracle/bmc/OCIDTest.java b/bmc-common/src/test/java/com/oracle/bmc/OCIDTest.java index 3a2d2ef53c0..8682f3843de 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/OCIDTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/OCIDTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc; diff --git a/bmc-common/src/test/java/com/oracle/bmc/RealmTest.java b/bmc-common/src/test/java/com/oracle/bmc/RealmTest.java index a85e0c088a9..9193d06f93f 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/RealmTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/RealmTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc; diff --git a/bmc-common/src/test/java/com/oracle/bmc/RegionTest.java b/bmc-common/src/test/java/com/oracle/bmc/RegionTest.java index 6a7773490f4..5b9a584dd0c 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/RegionTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/RegionTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc; diff --git a/bmc-common/src/test/java/com/oracle/bmc/ServicesTest.java b/bmc-common/src/test/java/com/oracle/bmc/ServicesTest.java index 08694c1bcc4..3cc170bec18 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/ServicesTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/ServicesTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc; diff --git a/bmc-common/src/test/java/com/oracle/bmc/auth/ConfigFileAuthenticationDetailsProviderTest.java b/bmc-common/src/test/java/com/oracle/bmc/auth/ConfigFileAuthenticationDetailsProviderTest.java index 8202a13e1d5..7a60ef0be46 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/auth/ConfigFileAuthenticationDetailsProviderTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/auth/ConfigFileAuthenticationDetailsProviderTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/test/java/com/oracle/bmc/auth/SessionTokenAuthTest.java b/bmc-common/src/test/java/com/oracle/bmc/auth/SessionTokenAuthTest.java index 05e4dad500c..09cae4240c1 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/auth/SessionTokenAuthTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/auth/SessionTokenAuthTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/test/java/com/oracle/bmc/auth/StringPrivateKeySupplierTest.java b/bmc-common/src/test/java/com/oracle/bmc/auth/StringPrivateKeySupplierTest.java index f20fa2db752..c228b3fc275 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/auth/StringPrivateKeySupplierTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/auth/StringPrivateKeySupplierTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/test/java/com/oracle/bmc/auth/TestAbstractFederationClientAuthenticationDetailsProviderBuilder.java b/bmc-common/src/test/java/com/oracle/bmc/auth/TestAbstractFederationClientAuthenticationDetailsProviderBuilder.java index 1b55a209aa3..d4a243f90ba 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/auth/TestAbstractFederationClientAuthenticationDetailsProviderBuilder.java +++ b/bmc-common/src/test/java/com/oracle/bmc/auth/TestAbstractFederationClientAuthenticationDetailsProviderBuilder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth; diff --git a/bmc-common/src/test/java/com/oracle/bmc/auth/internal/AuthUtilsTest.java b/bmc-common/src/test/java/com/oracle/bmc/auth/internal/AuthUtilsTest.java index 73d83aec00d..95262041350 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/auth/internal/AuthUtilsTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/auth/internal/AuthUtilsTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/auth/internal/ConfigFileDelegationTokenUtilsTest.java b/bmc-common/src/test/java/com/oracle/bmc/auth/internal/ConfigFileDelegationTokenUtilsTest.java index 9fcd35ecf2c..07fb1a08a52 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/auth/internal/ConfigFileDelegationTokenUtilsTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/auth/internal/ConfigFileDelegationTokenUtilsTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/auth/internal/FileBasedResourcePrincipalFederationClientTest.java b/bmc-common/src/test/java/com/oracle/bmc/auth/internal/FileBasedResourcePrincipalFederationClientTest.java index b11b72cc3aa..9ae14a3601d 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/auth/internal/FileBasedResourcePrincipalFederationClientTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/auth/internal/FileBasedResourcePrincipalFederationClientTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/auth/internal/JwtClaimsSetTest.java b/bmc-common/src/test/java/com/oracle/bmc/auth/internal/JwtClaimsSetTest.java index 7a285aeadf4..0e248495ccc 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/auth/internal/JwtClaimsSetTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/auth/internal/JwtClaimsSetTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/auth/internal/X509FederationClientTest.java b/bmc-common/src/test/java/com/oracle/bmc/auth/internal/X509FederationClientTest.java index 1bc4904acc0..5312d25fa39 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/auth/internal/X509FederationClientTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/auth/internal/X509FederationClientTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.auth.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/http/client/pki/PemTest.java b/bmc-common/src/test/java/com/oracle/bmc/http/client/pki/PemTest.java index b7ee05c2d35..95af9e078d1 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/http/client/pki/PemTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/http/client/pki/PemTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.client.pki; diff --git a/bmc-common/src/test/java/com/oracle/bmc/http/internal/AlloyClientTest.java b/bmc-common/src/test/java/com/oracle/bmc/http/internal/AlloyClientTest.java index 1674d33e6c2..155ed0c65ad 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/http/internal/AlloyClientTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/http/internal/AlloyClientTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/http/internal/BaseClientTest.java b/bmc-common/src/test/java/com/oracle/bmc/http/internal/BaseClientTest.java index 6e094ba8f40..a57ca8fff4b 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/http/internal/BaseClientTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/http/internal/BaseClientTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/http/internal/ClientCallTest.java b/bmc-common/src/test/java/com/oracle/bmc/http/internal/ClientCallTest.java index bb269a7539c..45cd3d158fc 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/http/internal/ClientCallTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/http/internal/ClientCallTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/http/internal/ClientCallTransientRequestLeakTest.java b/bmc-common/src/test/java/com/oracle/bmc/http/internal/ClientCallTransientRequestLeakTest.java index a14d6937445..20f4dea29f4 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/http/internal/ClientCallTransientRequestLeakTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/http/internal/ClientCallTransientRequestLeakTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/http/internal/HttpDateUtilsTest.java b/bmc-common/src/test/java/com/oracle/bmc/http/internal/HttpDateUtilsTest.java index 2ddf4939e9a..3d38783b044 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/http/internal/HttpDateUtilsTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/http/internal/HttpDateUtilsTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/http/internal/LogHeadersFilterTest.java b/bmc-common/src/test/java/com/oracle/bmc/http/internal/LogHeadersFilterTest.java index 35ab79bef31..a1ce693bc2d 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/http/internal/LogHeadersFilterTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/http/internal/LogHeadersFilterTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/http/internal/ParamEncoderTest.java b/bmc-common/src/test/java/com/oracle/bmc/http/internal/ParamEncoderTest.java index dcb40da0e97..977945feae4 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/http/internal/ParamEncoderTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/http/internal/ParamEncoderTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/http/internal/ProvidesClientConfiguratorTest.java b/bmc-common/src/test/java/com/oracle/bmc/http/internal/ProvidesClientConfiguratorTest.java index 6ecf2eb184f..0b95c3fcd77 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/http/internal/ProvidesClientConfiguratorTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/http/internal/ProvidesClientConfiguratorTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/http/signing/internal/PEMFileRSAPrivateKeySupplierTest.java b/bmc-common/src/test/java/com/oracle/bmc/http/signing/internal/PEMFileRSAPrivateKeySupplierTest.java index 0ce5455ad96..abab130c985 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/http/signing/internal/PEMFileRSAPrivateKeySupplierTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/http/signing/internal/PEMFileRSAPrivateKeySupplierTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.signing.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/http/signing/internal/RequestSignerImplStaticTest.java b/bmc-common/src/test/java/com/oracle/bmc/http/signing/internal/RequestSignerImplStaticTest.java index db7bc89ef50..04e2ebae81a 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/http/signing/internal/RequestSignerImplStaticTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/http/signing/internal/RequestSignerImplStaticTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.signing.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/http/signing/internal/RequestSignerImplTest.java b/bmc-common/src/test/java/com/oracle/bmc/http/signing/internal/RequestSignerImplTest.java index 124f4040ab5..109549516f3 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/http/signing/internal/RequestSignerImplTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/http/signing/internal/RequestSignerImplTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.http.signing.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/internal/DefaultEndpointConfigurationTest.java b/bmc-common/src/test/java/com/oracle/bmc/internal/DefaultEndpointConfigurationTest.java index b1e5cda1475..1eaa72ce354 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/internal/DefaultEndpointConfigurationTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/internal/DefaultEndpointConfigurationTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/internal/EndpointBuilderTest.java b/bmc-common/src/test/java/com/oracle/bmc/internal/EndpointBuilderTest.java index 14e6842248b..53123e94159 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/internal/EndpointBuilderTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/internal/EndpointBuilderTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/internal/SpiClientConfiguratorTest.java b/bmc-common/src/test/java/com/oracle/bmc/internal/SpiClientConfiguratorTest.java index 35a11309951..fcc297e5318 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/internal/SpiClientConfiguratorTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/internal/SpiClientConfiguratorTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/io/internal/KeepOpenInputStreamTest.java b/bmc-common/src/test/java/com/oracle/bmc/io/internal/KeepOpenInputStreamTest.java index e510158ffbe..2e44ca1e51b 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/io/internal/KeepOpenInputStreamTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/io/internal/KeepOpenInputStreamTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.io.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/io/internal/ResettableFileInputStreamTest.java b/bmc-common/src/test/java/com/oracle/bmc/io/internal/ResettableFileInputStreamTest.java index a15cfa26b19..a2be02ca36c 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/io/internal/ResettableFileInputStreamTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/io/internal/ResettableFileInputStreamTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.io.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/io/internal/WrappedByteArrayInputStreamTest.java b/bmc-common/src/test/java/com/oracle/bmc/io/internal/WrappedByteArrayInputStreamTest.java index 91bd28e7713..621ab3f06a2 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/io/internal/WrappedByteArrayInputStreamTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/io/internal/WrappedByteArrayInputStreamTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.io.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/io/internal/WrappedFileInputStreamTest.java b/bmc-common/src/test/java/com/oracle/bmc/io/internal/WrappedFileInputStreamTest.java index 7c840a8d815..61921ae9253 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/io/internal/WrappedFileInputStreamTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/io/internal/WrappedFileInputStreamTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.io.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/model/RangeTest.java b/bmc-common/src/test/java/com/oracle/bmc/model/RangeTest.java index a9753bf2491..3b2eaca46c9 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/model/RangeTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/model/RangeTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.model; diff --git a/bmc-common/src/test/java/com/oracle/bmc/model/internal/JsonConverterTest.java b/bmc-common/src/test/java/com/oracle/bmc/model/internal/JsonConverterTest.java index 22cf2cdc9fb..71ae64f42fa 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/model/internal/JsonConverterTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/model/internal/JsonConverterTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.model.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/paginator/internal/ResponseIteratorTest.java b/bmc-common/src/test/java/com/oracle/bmc/paginator/internal/ResponseIteratorTest.java index 1cd6b558b01..c7b84e8cdc9 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/paginator/internal/ResponseIteratorTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/paginator/internal/ResponseIteratorTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.paginator.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/paginator/internal/ResponseRecordIteratorTest.java b/bmc-common/src/test/java/com/oracle/bmc/paginator/internal/ResponseRecordIteratorTest.java index 96103bc0421..bb686a2b811 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/paginator/internal/ResponseRecordIteratorTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/paginator/internal/ResponseRecordIteratorTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.paginator.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/requests/BmcRequestTest.java b/bmc-common/src/test/java/com/oracle/bmc/requests/BmcRequestTest.java index 75329b16df6..9c2b1258bf2 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/requests/BmcRequestTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/requests/BmcRequestTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.requests; diff --git a/bmc-common/src/test/java/com/oracle/bmc/retrier/BmcGenericRetrierTest.java b/bmc-common/src/test/java/com/oracle/bmc/retrier/BmcGenericRetrierTest.java index bdd4cc167fb..b679182020d 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/retrier/BmcGenericRetrierTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/retrier/BmcGenericRetrierTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.retrier; diff --git a/bmc-common/src/test/java/com/oracle/bmc/retrier/RetriersTest.java b/bmc-common/src/test/java/com/oracle/bmc/retrier/RetriersTest.java index 8eeb8869903..93a5d19c1bb 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/retrier/RetriersTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/retrier/RetriersTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.retrier; diff --git a/bmc-common/src/test/java/com/oracle/bmc/retrier/TokenRefreshRetrierTest.java b/bmc-common/src/test/java/com/oracle/bmc/retrier/TokenRefreshRetrierTest.java new file mode 100644 index 00000000000..643470d435d --- /dev/null +++ b/bmc-common/src/test/java/com/oracle/bmc/retrier/TokenRefreshRetrierTest.java @@ -0,0 +1,166 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.retrier; + +import com.oracle.bmc.auth.InstancePrincipalsAuthenticationDetailsProvider; +import com.oracle.bmc.http.client.Options; +import com.oracle.bmc.model.BmcException; +import com.oracle.bmc.waiter.FixedTimeDelayStrategy; +import com.oracle.bmc.waiter.MaxAttemptsTerminationStrategy; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.powermock.api.mockito.PowerMockito; +import org.powermock.core.classloader.annotations.PowerMockIgnore; +import org.powermock.core.classloader.annotations.PrepareForTest; +import org.powermock.modules.junit4.PowerMockRunner; + +import java.util.function.Supplier; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.fail; +import static org.mockito.Mockito.doThrow; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.when; + +@RunWith(PowerMockRunner.class) +@PrepareForTest({Options.class}) +@PowerMockIgnore({ + "jdk.internal.reflect.*", +}) +public class TokenRefreshRetrierTest { + + private static final RetryConfiguration CUSTOM_RETRY_CONFIGURATION = + RetryConfiguration.builder() + .terminationStrategy(new MaxAttemptsTerminationStrategy(2)) + .delayStrategy(new FixedTimeDelayStrategy(0L)) + .build(); + + @Before + public void setUp() { + PowerMockito.mockStatic(Options.class); + } + + private Supplier setupMockRequest(int httpStatusCode, final String serviceCode) { + final Supplier request = mock(Supplier.class); + doThrow(new BmcException(httpStatusCode, serviceCode, "bar", "baz")).when(request).get(); + return request; + } + + /** + * Verifies that by default, the TokenRefreshRetrier will perform up to 2 retries before failing + * with 401 error. + */ + @Test + public void enabledDefaultTokenRefreshRetries() { + when(Options.isTokenRefreshRetrierEnabled()).thenReturn(true); + final Supplier request = setupMockRequest(401, "Unauthorized"); + final InstancePrincipalsAuthenticationDetailsProvider mockProvider = + mock(InstancePrincipalsAuthenticationDetailsProvider.class); + final BmcGenericRetrier defaultRetrier = new BmcGenericRetrier(CUSTOM_RETRY_CONFIGURATION); + try { + defaultRetrier.execute( + request, + retryRequest -> { + final TokenRefreshRetrier tokenRefreshRetrier = + new TokenRefreshRetrier(mockProvider); + return tokenRefreshRetrier.execute(retryRequest, Supplier::get); + }); + fail("Should have thrown"); + } catch (BmcException e) { + assertEquals(401, e.getStatusCode()); + } + + verify(request, times(2)).get(); + } + + /** + * Ensures that setting the system property 'oci.javasdk.token.refresh.enabled' to false + * disables the TokenRefreshRetrier from performing any additional retries after the initial 401 + * failure. + */ + @Test + public void disabledTokenRefreshRetries() { + when(Options.isTokenRefreshRetrierEnabled()).thenReturn(false); + final Supplier request = setupMockRequest(401, "Unauthorized"); + final InstancePrincipalsAuthenticationDetailsProvider mockProvider = + mock(InstancePrincipalsAuthenticationDetailsProvider.class); + final BmcGenericRetrier defaultRetrier = new BmcGenericRetrier(CUSTOM_RETRY_CONFIGURATION); + + try { + defaultRetrier.execute( + request, + retryRequest -> { + final TokenRefreshRetrier tokenRefreshRetrier = + new TokenRefreshRetrier(mockProvider); + return tokenRefreshRetrier.execute(retryRequest, Supplier::get); + }); + fail("Should have thrown"); + } catch (BmcException e) { + assertEquals(401, e.getStatusCode()); + } + verify(request, times(1)).get(); + } + + /** + * Verifies that by default, the TokenRefreshRetrier will perform up to 4 retries before failing + * with Processing Exception. + */ + @Test + public void enabledTokenRefreshRetriesForProcessingException() { + when(Options.isTokenRefreshRetrierEnabled()).thenReturn(true); + final Supplier request = + setupMockRequest(-1, "Processing exception while communicating to"); + final InstancePrincipalsAuthenticationDetailsProvider mockProvider = + mock(InstancePrincipalsAuthenticationDetailsProvider.class); + final BmcGenericRetrier defaultRetrier = new BmcGenericRetrier(CUSTOM_RETRY_CONFIGURATION); + + try { + defaultRetrier.execute( + request, + retryRequest -> { + final TokenRefreshRetrier tokenRefreshRetrier = + new TokenRefreshRetrier(mockProvider); + return tokenRefreshRetrier.execute(retryRequest, Supplier::get); + }); + fail("Should have thrown"); + } catch (BmcException e) { + assertEquals(-1, e.getStatusCode()); + } + // 2(Token retries) + 2(Custom retries) + verify(request, times(4)).get(); + } + + /** + * Ensures that setting the system property 'oci.javasdk.token.refresh.enabled' to false + * disables the TokenRefreshRetrier from performing any additional retries after the initial + * Processing exception. + */ + @Test + public void disabledTokenRefreshRetriesForProcessingException() { + when(Options.isTokenRefreshRetrierEnabled()).thenReturn(false); + final Supplier request = + setupMockRequest(-1, "Processing exception while communicating to"); + final InstancePrincipalsAuthenticationDetailsProvider mockProvider = + mock(InstancePrincipalsAuthenticationDetailsProvider.class); + final BmcGenericRetrier defaultRetrier = new BmcGenericRetrier(CUSTOM_RETRY_CONFIGURATION); + + try { + defaultRetrier.execute( + request, + retryRequest -> { + final TokenRefreshRetrier tokenRefreshRetrier = + new TokenRefreshRetrier(mockProvider); + return tokenRefreshRetrier.execute(retryRequest, Supplier::get); + }); + fail("Should have thrown"); + } catch (BmcException e) { + assertEquals(-1, e.getStatusCode()); + } + verify(request, times(1)).get(); + } +} diff --git a/bmc-common/src/test/java/com/oracle/bmc/util/JavaRuntimeUtilsTest.java b/bmc-common/src/test/java/com/oracle/bmc/util/JavaRuntimeUtilsTest.java index 33f08ec8016..aa8b0ab959a 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/util/JavaRuntimeUtilsTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/util/JavaRuntimeUtilsTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util; diff --git a/bmc-common/src/test/java/com/oracle/bmc/util/StreamUtilsTest.java b/bmc-common/src/test/java/com/oracle/bmc/util/StreamUtilsTest.java index fa62b63a956..2c81b0d2b16 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/util/StreamUtilsTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/util/StreamUtilsTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util; diff --git a/bmc-common/src/test/java/com/oracle/bmc/util/StringUtilsTest.java b/bmc-common/src/test/java/com/oracle/bmc/util/StringUtilsTest.java index f12828bebc9..9dd95dfb43d 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/util/StringUtilsTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/util/StringUtilsTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util; diff --git a/bmc-common/src/test/java/com/oracle/bmc/util/internal/ClientCompatibilityCheckerTest.java b/bmc-common/src/test/java/com/oracle/bmc/util/internal/ClientCompatibilityCheckerTest.java index 3b427f704d8..7932ba05525 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/util/internal/ClientCompatibilityCheckerTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/util/internal/ClientCompatibilityCheckerTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/util/internal/ComparableVersionTest.java b/bmc-common/src/test/java/com/oracle/bmc/util/internal/ComparableVersionTest.java index 79e84c15a56..b8af4427b07 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/util/internal/ComparableVersionTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/util/internal/ComparableVersionTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/util/internal/EndpointTemplateForOptionsUtilsTest.java b/bmc-common/src/test/java/com/oracle/bmc/util/internal/EndpointTemplateForOptionsUtilsTest.java index f614e011c10..8a606e82ebb 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/util/internal/EndpointTemplateForOptionsUtilsTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/util/internal/EndpointTemplateForOptionsUtilsTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/util/internal/FileUtilsTest.java b/bmc-common/src/test/java/com/oracle/bmc/util/internal/FileUtilsTest.java index ae4362e3b82..796fb50bb62 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/util/internal/FileUtilsTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/util/internal/FileUtilsTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/util/internal/NameUtilsTest.java b/bmc-common/src/test/java/com/oracle/bmc/util/internal/NameUtilsTest.java index 76c5f80edd8..76ece56f7f8 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/util/internal/NameUtilsTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/util/internal/NameUtilsTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/util/internal/ValidateTest.java b/bmc-common/src/test/java/com/oracle/bmc/util/internal/ValidateTest.java index cab99eeb8b6..bdb6ec24ce4 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/util/internal/ValidateTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/util/internal/ValidateTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.util.internal; diff --git a/bmc-common/src/test/java/com/oracle/bmc/waiter/ExponentialBackoffDelayStrategyTest.java b/bmc-common/src/test/java/com/oracle/bmc/waiter/ExponentialBackoffDelayStrategyTest.java index c8cb5d9d29e..78245b25369 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/waiter/ExponentialBackoffDelayStrategyTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/waiter/ExponentialBackoffDelayStrategyTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.waiter; diff --git a/bmc-common/src/test/java/com/oracle/bmc/waiter/ExponentialBackoffDelayStrategyWithJitterTest.java b/bmc-common/src/test/java/com/oracle/bmc/waiter/ExponentialBackoffDelayStrategyWithJitterTest.java index 8b099c97244..220b13db31c 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/waiter/ExponentialBackoffDelayStrategyWithJitterTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/waiter/ExponentialBackoffDelayStrategyWithJitterTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.waiter; diff --git a/bmc-common/src/test/java/com/oracle/bmc/waiter/MaxAttemptsTerminationStrategyTest.java b/bmc-common/src/test/java/com/oracle/bmc/waiter/MaxAttemptsTerminationStrategyTest.java index c3a883753e8..664aee43a0e 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/waiter/MaxAttemptsTerminationStrategyTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/waiter/MaxAttemptsTerminationStrategyTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.waiter; diff --git a/bmc-common/src/test/java/com/oracle/bmc/waiter/MaxTimeTerminationStrategyTest.java b/bmc-common/src/test/java/com/oracle/bmc/waiter/MaxTimeTerminationStrategyTest.java index d3ecc9b4618..3481adfc70a 100644 --- a/bmc-common/src/test/java/com/oracle/bmc/waiter/MaxTimeTerminationStrategyTest.java +++ b/bmc-common/src/test/java/com/oracle/bmc/waiter/MaxTimeTerminationStrategyTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.waiter; diff --git a/bmc-common/src/test/resources/org/powermock/extensions/configuration.properties b/bmc-common/src/test/resources/org/powermock/extensions/configuration.properties index 81085fc6f7b..6aadb6053dd 100644 --- a/bmc-common/src/test/resources/org/powermock/extensions/configuration.properties +++ b/bmc-common/src/test/resources/org/powermock/extensions/configuration.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-computecloudatcustomer/pom.xml b/bmc-computecloudatcustomer/pom.xml index fc27aef97ce..4ff4611e51d 100644 --- a/bmc-computecloudatcustomer/pom.xml +++ b/bmc-computecloudatcustomer/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-computecloudatcustomer @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomer.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomer.java index 3e8adeec661..97a11a5cf79 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomer.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomerAsync.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomerAsync.java index a3711f1f318..4e1941ad7e9 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomerAsync.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomerAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomerAsyncClient.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomerAsyncClient.java index e6bc92d1612..5a32d9e623c 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomerAsyncClient.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomerAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomerClient.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomerClient.java index 4e20836863e..1476c54a80c 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomerClient.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomerClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomerPaginators.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomerPaginators.java index 3ea86a2d12c..ff8c0dca5e8 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomerPaginators.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomerPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomerWaiters.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomerWaiters.java index b69f9501bd4..29f0c52fa6d 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomerWaiters.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/ComputeCloudAtCustomerWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructure.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructure.java index fd5a3400b2a..6f18bafc5c0 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructure.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructure.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureCollection.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureCollection.java index 21928ee7898..bc6456d8ab1 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureCollection.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureInventory.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureInventory.java index 7d1538dd587..06508d9e8c9 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureInventory.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureInventory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureManagementNode.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureManagementNode.java index a78017c2d9f..d216720211e 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureManagementNode.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureManagementNode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureNetworkConfiguration.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureNetworkConfiguration.java index c174b774c5f..bf91303e19c 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureNetworkConfiguration.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureNetworkConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureRoutingDynamicDetails.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureRoutingDynamicDetails.java index f44737b334e..fa273aec0bc 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureRoutingDynamicDetails.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureRoutingDynamicDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureRoutingStaticDetails.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureRoutingStaticDetails.java index 0f7f1bb119e..aaa3c4ad46e 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureRoutingStaticDetails.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureRoutingStaticDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureSummary.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureSummary.java index f15cd4bf517..fbced96a1f7 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureSummary.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccInfrastructureSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccScheduleEvent.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccScheduleEvent.java index f775e333454..733f2f62559 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccScheduleEvent.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccScheduleEvent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccUpgradeInformation.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccUpgradeInformation.java index 6ff37fd467d..e6cc32fa57e 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccUpgradeInformation.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccUpgradeInformation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccUpgradeSchedule.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccUpgradeSchedule.java index a495a91c5a7..8b77c5c0180 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccUpgradeSchedule.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccUpgradeSchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccUpgradeScheduleCollection.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccUpgradeScheduleCollection.java index 8614babf8b6..418fdfdce62 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccUpgradeScheduleCollection.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccUpgradeScheduleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccUpgradeScheduleSummary.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccUpgradeScheduleSummary.java index 6aff914751c..f06a7f95fde 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccUpgradeScheduleSummary.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CccUpgradeScheduleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/ChangeCccInfrastructureCompartmentDetails.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/ChangeCccInfrastructureCompartmentDetails.java index f3c58513fbf..aa9770cab86 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/ChangeCccInfrastructureCompartmentDetails.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/ChangeCccInfrastructureCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/ChangeCccUpgradeScheduleCompartmentDetails.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/ChangeCccUpgradeScheduleCompartmentDetails.java index 35de0d842ae..bf97b56a3d4 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/ChangeCccUpgradeScheduleCompartmentDetails.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/ChangeCccUpgradeScheduleCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CreateCccInfrastructureDetails.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CreateCccInfrastructureDetails.java index 4d899af8deb..95677de2911 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CreateCccInfrastructureDetails.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CreateCccInfrastructureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CreateCccScheduleEvent.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CreateCccScheduleEvent.java index 38e8bf9b5ec..056a5c27395 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CreateCccScheduleEvent.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CreateCccScheduleEvent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CreateCccUpgradeScheduleDetails.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CreateCccUpgradeScheduleDetails.java index d539466465f..b58230e690d 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CreateCccUpgradeScheduleDetails.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/CreateCccUpgradeScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/PeerInformation.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/PeerInformation.java index 4af8576ad9a..860b12c70cf 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/PeerInformation.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/PeerInformation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/SortOrder.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/SortOrder.java index b134ede53b4..de29723a34c 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/SortOrder.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/UpdateCccInfrastructureDetails.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/UpdateCccInfrastructureDetails.java index b0576e7efdd..30ecb33ec7a 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/UpdateCccInfrastructureDetails.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/UpdateCccInfrastructureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/UpdateCccScheduleEvent.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/UpdateCccScheduleEvent.java index 9fd3d75dd70..7cb8d2c8f1b 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/UpdateCccScheduleEvent.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/UpdateCccScheduleEvent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/UpdateCccUpgradeScheduleDetails.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/UpdateCccUpgradeScheduleDetails.java index 6ba9f3e614f..980d033d99c 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/UpdateCccUpgradeScheduleDetails.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/model/UpdateCccUpgradeScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.model; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/ChangeCccInfrastructureCompartmentRequest.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/ChangeCccInfrastructureCompartmentRequest.java index a93b55bfeeb..d1014a89a69 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/ChangeCccInfrastructureCompartmentRequest.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/ChangeCccInfrastructureCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.requests; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/ChangeCccUpgradeScheduleCompartmentRequest.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/ChangeCccUpgradeScheduleCompartmentRequest.java index 45bc566b35c..a1963be96ac 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/ChangeCccUpgradeScheduleCompartmentRequest.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/ChangeCccUpgradeScheduleCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.requests; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/CreateCccInfrastructureRequest.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/CreateCccInfrastructureRequest.java index b4c94995c35..57092612b89 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/CreateCccInfrastructureRequest.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/CreateCccInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.requests; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/CreateCccUpgradeScheduleRequest.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/CreateCccUpgradeScheduleRequest.java index 44658f30637..93e60d7d407 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/CreateCccUpgradeScheduleRequest.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/CreateCccUpgradeScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.requests; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/DeleteCccInfrastructureRequest.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/DeleteCccInfrastructureRequest.java index d80af2b1872..40e6a3c25b4 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/DeleteCccInfrastructureRequest.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/DeleteCccInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.requests; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/DeleteCccUpgradeScheduleRequest.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/DeleteCccUpgradeScheduleRequest.java index 12db8c79bf8..1a0f5a7fceb 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/DeleteCccUpgradeScheduleRequest.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/DeleteCccUpgradeScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.requests; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/GetCccInfrastructureRequest.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/GetCccInfrastructureRequest.java index 60c02114208..3233efc7216 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/GetCccInfrastructureRequest.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/GetCccInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.requests; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/GetCccUpgradeScheduleRequest.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/GetCccUpgradeScheduleRequest.java index cb026e53ac6..20b20c37af7 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/GetCccUpgradeScheduleRequest.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/GetCccUpgradeScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.requests; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/ListCccInfrastructuresRequest.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/ListCccInfrastructuresRequest.java index 0eaa680a690..33919594118 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/ListCccInfrastructuresRequest.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/ListCccInfrastructuresRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.requests; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/ListCccUpgradeSchedulesRequest.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/ListCccUpgradeSchedulesRequest.java index 808cf6c5479..dc8be6179aa 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/ListCccUpgradeSchedulesRequest.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/ListCccUpgradeSchedulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.requests; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/UpdateCccInfrastructureRequest.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/UpdateCccInfrastructureRequest.java index 0609242f70b..346abd60dba 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/UpdateCccInfrastructureRequest.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/UpdateCccInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.requests; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/UpdateCccUpgradeScheduleRequest.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/UpdateCccUpgradeScheduleRequest.java index 5f5dc798f5b..8313e04e54b 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/UpdateCccUpgradeScheduleRequest.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/requests/UpdateCccUpgradeScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.requests; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/ChangeCccInfrastructureCompartmentResponse.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/ChangeCccInfrastructureCompartmentResponse.java index 28463382355..555988120cb 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/ChangeCccInfrastructureCompartmentResponse.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/ChangeCccInfrastructureCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.responses; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/ChangeCccUpgradeScheduleCompartmentResponse.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/ChangeCccUpgradeScheduleCompartmentResponse.java index 7719f79ee40..692fb9613ba 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/ChangeCccUpgradeScheduleCompartmentResponse.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/ChangeCccUpgradeScheduleCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.responses; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/CreateCccInfrastructureResponse.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/CreateCccInfrastructureResponse.java index f333d02cf1b..068f9072e00 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/CreateCccInfrastructureResponse.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/CreateCccInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.responses; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/CreateCccUpgradeScheduleResponse.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/CreateCccUpgradeScheduleResponse.java index 61e417e79ac..63f85fe39a0 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/CreateCccUpgradeScheduleResponse.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/CreateCccUpgradeScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.responses; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/DeleteCccInfrastructureResponse.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/DeleteCccInfrastructureResponse.java index 95fb10e349a..ba99037914e 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/DeleteCccInfrastructureResponse.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/DeleteCccInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.responses; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/DeleteCccUpgradeScheduleResponse.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/DeleteCccUpgradeScheduleResponse.java index 6cb190cedf4..cb5d48afd65 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/DeleteCccUpgradeScheduleResponse.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/DeleteCccUpgradeScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.responses; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/GetCccInfrastructureResponse.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/GetCccInfrastructureResponse.java index 89774f30968..8c70b05315a 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/GetCccInfrastructureResponse.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/GetCccInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.responses; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/GetCccUpgradeScheduleResponse.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/GetCccUpgradeScheduleResponse.java index 1b8ada9d7ab..1aa998117cc 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/GetCccUpgradeScheduleResponse.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/GetCccUpgradeScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.responses; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/ListCccInfrastructuresResponse.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/ListCccInfrastructuresResponse.java index 1cfce92acdf..2ea7bf7824f 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/ListCccInfrastructuresResponse.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/ListCccInfrastructuresResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.responses; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/ListCccUpgradeSchedulesResponse.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/ListCccUpgradeSchedulesResponse.java index e75b7fe45bd..21cdae5c756 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/ListCccUpgradeSchedulesResponse.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/ListCccUpgradeSchedulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.responses; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/UpdateCccInfrastructureResponse.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/UpdateCccInfrastructureResponse.java index f6c28a5380c..c06fccd66a0 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/UpdateCccInfrastructureResponse.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/UpdateCccInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.responses; diff --git a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/UpdateCccUpgradeScheduleResponse.java b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/UpdateCccUpgradeScheduleResponse.java index 50ae841d0bb..12fd689f72a 100644 --- a/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/UpdateCccUpgradeScheduleResponse.java +++ b/bmc-computecloudatcustomer/src/main/java/com/oracle/bmc/computecloudatcustomer/responses/UpdateCccUpgradeScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computecloudatcustomer.responses; diff --git a/bmc-computecloudatcustomer/src/main/resources/com/oracle/bmc/computecloudatcustomer/client.properties b/bmc-computecloudatcustomer/src/main/resources/com/oracle/bmc/computecloudatcustomer/client.properties index e03e7ee7f78..315cca0f3fb 100644 --- a/bmc-computecloudatcustomer/src/main/resources/com/oracle/bmc/computecloudatcustomer/client.properties +++ b/bmc-computecloudatcustomer/src/main/resources/com/oracle/bmc/computecloudatcustomer/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-computeinstanceagent/pom.xml b/bmc-computeinstanceagent/pom.xml index a04091d2353..c3a05362b6a 100644 --- a/bmc-computeinstanceagent/pom.xml +++ b/bmc-computeinstanceagent/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-computeinstanceagent @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgent.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgent.java index 20c880171b5..903e4e47851 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgent.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgentAsync.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgentAsync.java index e2b0b031f7c..49c2bab56a8 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgentAsync.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgentAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgentAsyncClient.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgentAsyncClient.java index 64a0aaa65e4..0e30ee57ca5 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgentAsyncClient.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgentAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgentClient.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgentClient.java index c788f32dd83..185efd92b41 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgentClient.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgentClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgentPaginators.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgentPaginators.java index b86982dbd41..3cf34045da5 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgentPaginators.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgentPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgentWaiters.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgentWaiters.java index d93ece8b23f..c1b3377b95a 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgentWaiters.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/ComputeInstanceAgentWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/Plugin.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/Plugin.java index 0f9c565c40c..f9ebe600095 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/Plugin.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/Plugin.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginAsync.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginAsync.java index 3d2946f562f..42b8df405a2 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginAsync.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginAsyncClient.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginAsyncClient.java index 1853a278934..462888f70f3 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginAsyncClient.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginClient.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginClient.java index 185764a1e5d..215be855988 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginClient.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginPaginators.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginPaginators.java index 12c885e0faa..7becf2f70ea 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginPaginators.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/Pluginconfig.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/Pluginconfig.java index f442fb05cdd..2a1edb71c12 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/Pluginconfig.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/Pluginconfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginconfigAsync.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginconfigAsync.java index f430e7d72cd..9d3259c3f33 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginconfigAsync.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginconfigAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginconfigAsyncClient.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginconfigAsyncClient.java index fd4ea9d2c6a..ac27fd0db32 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginconfigAsyncClient.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginconfigAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginconfigClient.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginconfigClient.java index 6b0ac74e3d4..6dc86c536db 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginconfigClient.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginconfigClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginconfigPaginators.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginconfigPaginators.java index b006f2e684c..0c72864a202 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginconfigPaginators.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/PluginconfigPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/AvailablePluginSummary.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/AvailablePluginSummary.java index 977d3d7e70e..a9216f5162a 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/AvailablePluginSummary.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/AvailablePluginSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/CreateInstanceAgentCommandDetails.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/CreateInstanceAgentCommandDetails.java index 5745dfcc121..e90dddb4452 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/CreateInstanceAgentCommandDetails.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/CreateInstanceAgentCommandDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommand.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommand.java index ec2763436d9..9877186cffb 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommand.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommand.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandContent.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandContent.java index 9a409ce3e15..1d24de1bcde 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandContent.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandContent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecution.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecution.java index 2a4f331a88b..d537b90c386 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecution.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecution.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecutionOutputContent.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecutionOutputContent.java index 8f7885f6f94..fecfc7e8451 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecutionOutputContent.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecutionOutputContent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecutionOutputViaObjectStorageTupleDetails.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecutionOutputViaObjectStorageTupleDetails.java index f3e62692093..dce73c41db9 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecutionOutputViaObjectStorageTupleDetails.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecutionOutputViaObjectStorageTupleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecutionOutputViaObjectStorageUriDetails.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecutionOutputViaObjectStorageUriDetails.java index 9ff89aff39c..f11876a4d80 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecutionOutputViaObjectStorageUriDetails.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecutionOutputViaObjectStorageUriDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecutionOutputViaTextDetails.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecutionOutputViaTextDetails.java index 39eec4e88cc..2b3d05a37a7 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecutionOutputViaTextDetails.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecutionOutputViaTextDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecutionSummary.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecutionSummary.java index 2f40ff0f6df..8284850f36a 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecutionSummary.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandExecutionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandOutputDetails.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandOutputDetails.java index f742da819f5..135541afbf9 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandOutputDetails.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandOutputDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandOutputViaObjectStorageTupleDetails.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandOutputViaObjectStorageTupleDetails.java index df8e149ba3c..239d885b9f5 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandOutputViaObjectStorageTupleDetails.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandOutputViaObjectStorageTupleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandOutputViaObjectStorageUriDetails.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandOutputViaObjectStorageUriDetails.java index e3ad65ed92a..bea4107ac54 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandOutputViaObjectStorageUriDetails.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandOutputViaObjectStorageUriDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandOutputViaTextDetails.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandOutputViaTextDetails.java index 674e3a04318..d0260193e00 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandOutputViaTextDetails.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandOutputViaTextDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandSourceDetails.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandSourceDetails.java index 8fd3bef8edc..efb1043fb2f 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandSourceDetails.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandSourceViaObjectStorageTupleDetails.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandSourceViaObjectStorageTupleDetails.java index 5bb055c0e10..a3a42cb9d6a 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandSourceViaObjectStorageTupleDetails.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandSourceViaObjectStorageTupleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandSourceViaObjectStorageUriDetails.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandSourceViaObjectStorageUriDetails.java index c91d973c529..e7a5aba720e 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandSourceViaObjectStorageUriDetails.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandSourceViaObjectStorageUriDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandSourceViaTextDetails.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandSourceViaTextDetails.java index f83baf87a0f..556bc75cf3f 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandSourceViaTextDetails.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandSourceViaTextDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandSummary.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandSummary.java index 8d1f70db13c..36652f312c8 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandSummary.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandTarget.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandTarget.java index dafed4ccd3f..f060b1ff3c9 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandTarget.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentCommandTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentPlugin.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentPlugin.java index 235f2683d5c..21022418048 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentPlugin.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentPlugin.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentPluginSummary.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentPluginSummary.java index 5233cd0d724..64c305c2c8f 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentPluginSummary.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/InstanceAgentPluginSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/Plugin.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/Plugin.java index 77a21e4bcbe..9c2d8757275 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/Plugin.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/model/Plugin.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.model; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/CancelInstanceAgentCommandRequest.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/CancelInstanceAgentCommandRequest.java index f4ba8260ec6..4b460f00698 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/CancelInstanceAgentCommandRequest.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/CancelInstanceAgentCommandRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.requests; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/CreateInstanceAgentCommandRequest.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/CreateInstanceAgentCommandRequest.java index d218927aab1..b9c4199261a 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/CreateInstanceAgentCommandRequest.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/CreateInstanceAgentCommandRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.requests; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/GetInstanceAgentCommandExecutionRequest.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/GetInstanceAgentCommandExecutionRequest.java index 5747908833f..f5024d609c9 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/GetInstanceAgentCommandExecutionRequest.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/GetInstanceAgentCommandExecutionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.requests; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/GetInstanceAgentCommandRequest.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/GetInstanceAgentCommandRequest.java index b7103daaab9..7ef7642d8ac 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/GetInstanceAgentCommandRequest.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/GetInstanceAgentCommandRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.requests; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/GetInstanceAgentPluginRequest.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/GetInstanceAgentPluginRequest.java index 069e7a3ff3c..1863fc4a241 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/GetInstanceAgentPluginRequest.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/GetInstanceAgentPluginRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.requests; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/ListInstanceAgentCommandExecutionsRequest.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/ListInstanceAgentCommandExecutionsRequest.java index 682c48e54ed..b22d4ab5f54 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/ListInstanceAgentCommandExecutionsRequest.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/ListInstanceAgentCommandExecutionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.requests; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/ListInstanceAgentCommandsRequest.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/ListInstanceAgentCommandsRequest.java index 277b5504102..af862cc769e 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/ListInstanceAgentCommandsRequest.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/ListInstanceAgentCommandsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.requests; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/ListInstanceAgentPluginsRequest.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/ListInstanceAgentPluginsRequest.java index 4204359f0c2..b6027862504 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/ListInstanceAgentPluginsRequest.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/ListInstanceAgentPluginsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.requests; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/ListInstanceagentAvailablePluginsRequest.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/ListInstanceagentAvailablePluginsRequest.java index 0a161725474..9a8f6f1d209 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/ListInstanceagentAvailablePluginsRequest.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/requests/ListInstanceagentAvailablePluginsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.requests; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/CancelInstanceAgentCommandResponse.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/CancelInstanceAgentCommandResponse.java index 7f23dffb079..0332516f88c 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/CancelInstanceAgentCommandResponse.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/CancelInstanceAgentCommandResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.responses; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/CreateInstanceAgentCommandResponse.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/CreateInstanceAgentCommandResponse.java index f00820ce021..810a3a7fc21 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/CreateInstanceAgentCommandResponse.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/CreateInstanceAgentCommandResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.responses; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/GetInstanceAgentCommandExecutionResponse.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/GetInstanceAgentCommandExecutionResponse.java index 1bd5e798103..d7c08907d73 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/GetInstanceAgentCommandExecutionResponse.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/GetInstanceAgentCommandExecutionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.responses; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/GetInstanceAgentCommandResponse.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/GetInstanceAgentCommandResponse.java index edb2dbbcd3c..927281e6374 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/GetInstanceAgentCommandResponse.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/GetInstanceAgentCommandResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.responses; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/GetInstanceAgentPluginResponse.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/GetInstanceAgentPluginResponse.java index 1e9493bee1c..bb86ee2935c 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/GetInstanceAgentPluginResponse.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/GetInstanceAgentPluginResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.responses; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/ListInstanceAgentCommandExecutionsResponse.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/ListInstanceAgentCommandExecutionsResponse.java index 017744b5649..888155aaa2d 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/ListInstanceAgentCommandExecutionsResponse.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/ListInstanceAgentCommandExecutionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.responses; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/ListInstanceAgentCommandsResponse.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/ListInstanceAgentCommandsResponse.java index 25bd74913b2..0a528c097f8 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/ListInstanceAgentCommandsResponse.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/ListInstanceAgentCommandsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.responses; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/ListInstanceAgentPluginsResponse.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/ListInstanceAgentPluginsResponse.java index f2cf6d83a8a..94f870b5ac6 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/ListInstanceAgentPluginsResponse.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/ListInstanceAgentPluginsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.responses; diff --git a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/ListInstanceagentAvailablePluginsResponse.java b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/ListInstanceagentAvailablePluginsResponse.java index 3188fe06d46..5b673b8c325 100644 --- a/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/ListInstanceagentAvailablePluginsResponse.java +++ b/bmc-computeinstanceagent/src/main/java/com/oracle/bmc/computeinstanceagent/responses/ListInstanceagentAvailablePluginsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.computeinstanceagent.responses; diff --git a/bmc-computeinstanceagent/src/main/resources/com/oracle/bmc/computeinstanceagent/client.properties b/bmc-computeinstanceagent/src/main/resources/com/oracle/bmc/computeinstanceagent/client.properties index 8a6d5a8fe4e..a828f14b385 100644 --- a/bmc-computeinstanceagent/src/main/resources/com/oracle/bmc/computeinstanceagent/client.properties +++ b/bmc-computeinstanceagent/src/main/resources/com/oracle/bmc/computeinstanceagent/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-containerengine/pom.xml b/bmc-containerengine/pom.xml index e7a964f0928..111f0007de1 100644 --- a/bmc-containerengine/pom.xml +++ b/bmc-containerengine/pom.xml @@ -5,7 +5,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml @@ -18,7 +18,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEngine.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEngine.java index 3b67c127bca..c6f53816f52 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEngine.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEngine.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEngineAsync.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEngineAsync.java index e265514245f..615cfb7181c 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEngineAsync.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEngineAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEngineAsyncClient.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEngineAsyncClient.java index 1181075a8de..a3e74f63edf 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEngineAsyncClient.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEngineAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEngineClient.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEngineClient.java index 88c528d3d5f..edd0312e4ef 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEngineClient.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEngineClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEnginePaginators.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEnginePaginators.java index 1a365593c94..f265dbaa1eb 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEnginePaginators.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEnginePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEngineWaiters.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEngineWaiters.java index 0648eb859e0..6b5df27bb52 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEngineWaiters.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/ContainerEngineWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddOnOptions.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddOnOptions.java index c362ceffa49..f154094c705 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddOnOptions.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddOnOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/Addon.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/Addon.java index 494ec91aee3..e0e683a6604 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/Addon.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/Addon.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonConfiguration.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonConfiguration.java index 271b6b05426..ce72f1a5920 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonConfiguration.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonError.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonError.java index 883ff43ac48..d27439aa2b9 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonError.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonLifecycleState.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonLifecycleState.java index dbf3b7255c0..f441e0b387f 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonLifecycleState.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonOptionSummary.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonOptionSummary.java index 3d3013b2b19..68a644c65d7 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonOptionSummary.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonOptionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonSummary.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonSummary.java index 126632ecb95..79a894e4184 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonSummary.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonVersionConfiguration.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonVersionConfiguration.java index ca4738c1f55..e627da70f52 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonVersionConfiguration.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonVersionConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonVersions.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonVersions.java index cc902918014..d328dee387e 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonVersions.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AddonVersions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AdmissionControllerOptions.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AdmissionControllerOptions.java index 10e02b58052..2ce5a4b128b 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AdmissionControllerOptions.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/AdmissionControllerOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/Cluster.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/Cluster.java index f45d47ba19f..021a4f8f230 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/Cluster.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/Cluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterCreateOptions.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterCreateOptions.java index 3c065f4b493..53c09a8c3e0 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterCreateOptions.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterCreateOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterEndpointConfig.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterEndpointConfig.java index 40d923c190b..5aad3abd38c 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterEndpointConfig.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterEndpointConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterEndpoints.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterEndpoints.java index 02e801b8a73..9df5cba1e24 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterEndpoints.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterEndpoints.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterLifecycleState.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterLifecycleState.java index 0c8386f6fd3..a0524c991f4 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterLifecycleState.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterMetadata.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterMetadata.java index 28d2121eb6e..ad866bd1839 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterMetadata.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterMigrateToNativeVcnDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterMigrateToNativeVcnDetails.java index 2f32a2b572f..73905244909 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterMigrateToNativeVcnDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterMigrateToNativeVcnDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterMigrateToNativeVcnStatus.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterMigrateToNativeVcnStatus.java index 7c057b39f66..d70b2f2de86 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterMigrateToNativeVcnStatus.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterMigrateToNativeVcnStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterNode.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterNode.java index 330fd5cc199..6dab2e65603 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterNode.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterNode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterOptions.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterOptions.java index 346c79927f3..ee6ae19661f 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterOptions.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterPodNetworkOptionDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterPodNetworkOptionDetails.java index 92e44536aed..b44ebd738f0 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterPodNetworkOptionDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterPodNetworkOptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterSummary.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterSummary.java index 9e0832460d6..309d28a6362 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterSummary.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterType.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterType.java index 8d6ba469243..1e72bc66c65 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterType.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ClusterType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateClusterDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateClusterDetails.java index b327d5dfbf1..17467bb5e73 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateClusterDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateClusterEndpointConfigDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateClusterEndpointConfigDetails.java index 4206e986b48..c4b22f4271c 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateClusterEndpointConfigDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateClusterEndpointConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateClusterKubeconfigContentDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateClusterKubeconfigContentDetails.java index 927a56474de..b1cba981a72 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateClusterKubeconfigContentDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateClusterKubeconfigContentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateImagePolicyConfigDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateImagePolicyConfigDetails.java index f9edad4d81f..38cd9013ba1 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateImagePolicyConfigDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateImagePolicyConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateNodePoolDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateNodePoolDetails.java index 930cc43002b..bf8eb92d3ad 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateNodePoolDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateNodePoolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateNodePoolNodeConfigDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateNodePoolNodeConfigDetails.java index dfa4caeae6b..5cf9fcb0513 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateNodePoolNodeConfigDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateNodePoolNodeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateNodeShapeConfigDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateNodeShapeConfigDetails.java index ba4aae344a8..7dba295cb6b 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateNodeShapeConfigDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateNodeShapeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateVirtualNodePoolDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateVirtualNodePoolDetails.java index 6a104768c0e..011463afa64 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateVirtualNodePoolDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateVirtualNodePoolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateWorkloadMappingDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateWorkloadMappingDetails.java index 8532bdc944f..9e98f98279f 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateWorkloadMappingDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CreateWorkloadMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CredentialRotationStatus.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CredentialRotationStatus.java index fcc965d9526..d55c651f951 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CredentialRotationStatus.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CredentialRotationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CycleMode.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CycleMode.java index 7cf773ba908..db4bd1165cc 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CycleMode.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/CycleMode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/FlannelOverlayClusterPodNetworkOptionDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/FlannelOverlayClusterPodNetworkOptionDetails.java index 9207bfbc741..daa43811a57 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/FlannelOverlayClusterPodNetworkOptionDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/FlannelOverlayClusterPodNetworkOptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/FlannelOverlayNodePoolPodNetworkOptionDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/FlannelOverlayNodePoolPodNetworkOptionDetails.java index f6477885c6f..45a316ac85b 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/FlannelOverlayNodePoolPodNetworkOptionDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/FlannelOverlayNodePoolPodNetworkOptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/Image.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/Image.java index ba1c707b2fb..596cdb88e92 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/Image.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/Image.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ImagePolicyConfig.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ImagePolicyConfig.java index a1df2d69b6b..094229063e8 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ImagePolicyConfig.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ImagePolicyConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/InitialVirtualNodeLabel.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/InitialVirtualNodeLabel.java index c3bea2fe0ae..04b2ed295c2 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/InitialVirtualNodeLabel.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/InitialVirtualNodeLabel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/InstallAddonDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/InstallAddonDetails.java index a534b09a888..e67738c97f8 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/InstallAddonDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/InstallAddonDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/KeyDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/KeyDetails.java index 5ef78f995e6..c8b8ccc28a4 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/KeyDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/KeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/KeyValue.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/KeyValue.java index 0dd4319db86..7c84d4ffe71 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/KeyValue.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/KeyValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/KubernetesNetworkConfig.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/KubernetesNetworkConfig.java index 27577c79f9b..50d1e2adc26 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/KubernetesNetworkConfig.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/KubernetesNetworkConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/KubernetesVersionsFilters.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/KubernetesVersionsFilters.java index cce871d9233..c36fb42ad6b 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/KubernetesVersionsFilters.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/KubernetesVersionsFilters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/Node.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/Node.java index 564e5cd9722..d3a4f33a521 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/Node.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/Node.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeError.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeError.java index f8ae95b4663..a8701f41429 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeError.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeEvictionNodePoolSettings.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeEvictionNodePoolSettings.java index 466c53136c2..56b449a3d55 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeEvictionNodePoolSettings.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeEvictionNodePoolSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeEvictionSettings.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeEvictionSettings.java index 3cffe87fd0c..cc1537cca43 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeEvictionSettings.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeEvictionSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePool.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePool.java index e8e383508c3..46a07ab9071 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePool.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePool.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolCyclingDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolCyclingDetails.java index d45d2ff7a25..1bc1496987f 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolCyclingDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolCyclingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolLifecycleState.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolLifecycleState.java index 16c049b2dd6..a82dd4fa233 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolLifecycleState.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolNodeConfigDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolNodeConfigDetails.java index 722eebf9d28..e3aa974e9e0 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolNodeConfigDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolNodeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolOptions.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolOptions.java index 1153016e8d6..dcaba2dd93d 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolOptions.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolPlacementConfigDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolPlacementConfigDetails.java index 806b859cbb7..0b851ed5fc0 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolPlacementConfigDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolPlacementConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolPodNetworkOptionDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolPodNetworkOptionDetails.java index 1728fa35e1b..78998602925 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolPodNetworkOptionDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolPodNetworkOptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolSummary.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolSummary.java index 39b60621f44..5f70f39af2d 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolSummary.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodePoolSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeShapeConfig.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeShapeConfig.java index a32dce942cc..368e836a1eb 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeShapeConfig.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeShapeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeSourceDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeSourceDetails.java index f2f6c1a7310..1f8684369cc 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeSourceDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeSourceOption.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeSourceOption.java index 9556ffbe9c9..90327b712b3 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeSourceOption.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeSourceOption.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeSourceType.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeSourceType.java index 1e58fb2de0f..312b741e95a 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeSourceType.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeSourceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeSourceViaImageDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeSourceViaImageDetails.java index bfd8ed9b9a0..c323e605c68 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeSourceViaImageDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeSourceViaImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeSourceViaImageOption.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeSourceViaImageOption.java index 3bbe43b9183..eec1168ef0f 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeSourceViaImageOption.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/NodeSourceViaImageOption.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/OciVcnIpNativeClusterPodNetworkOptionDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/OciVcnIpNativeClusterPodNetworkOptionDetails.java index 2ebfc295af1..8fdef73ac34 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/OciVcnIpNativeClusterPodNetworkOptionDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/OciVcnIpNativeClusterPodNetworkOptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/OciVcnIpNativeNodePoolPodNetworkOptionDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/OciVcnIpNativeNodePoolPodNetworkOptionDetails.java index e51fe07f1dc..0b397ea1659 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/OciVcnIpNativeNodePoolPodNetworkOptionDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/OciVcnIpNativeNodePoolPodNetworkOptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/OpenIdConnectDiscovery.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/OpenIdConnectDiscovery.java index 6f515dd3e48..35c2074e797 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/OpenIdConnectDiscovery.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/OpenIdConnectDiscovery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/OpenIdConnectTokenAuthenticationConfig.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/OpenIdConnectTokenAuthenticationConfig.java index 599f41add18..968e9eee08f 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/OpenIdConnectTokenAuthenticationConfig.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/OpenIdConnectTokenAuthenticationConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PersistentVolumeConfigDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PersistentVolumeConfigDetails.java index 63ad64c6d64..8f2c5676f20 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PersistentVolumeConfigDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PersistentVolumeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PlacementConfiguration.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PlacementConfiguration.java index 6857ebe3d3c..d664002b7d7 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PlacementConfiguration.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PlacementConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PodConfiguration.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PodConfiguration.java index e8a35160c4e..6c5c722b1cc 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PodConfiguration.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PodConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PodShape.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PodShape.java index 2f65f0f8ba0..6a6a93798bb 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PodShape.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PodShape.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PodShapeSummary.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PodShapeSummary.java index 0a2af95bc78..775400a3fa4 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PodShapeSummary.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PodShapeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PreemptibleNodeConfigDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PreemptibleNodeConfigDetails.java index b18f071837e..925b090ef6d 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PreemptibleNodeConfigDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PreemptibleNodeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PreemptionAction.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PreemptionAction.java index 62b8ddc0da4..3018b08f0b9 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PreemptionAction.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/PreemptionAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/RebootClusterNodeDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/RebootClusterNodeDetails.java index cb87582bc5d..4ce63f99c63 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/RebootClusterNodeDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/RebootClusterNodeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ReplaceBootVolumeClusterNodeDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ReplaceBootVolumeClusterNodeDetails.java index d2a57841cd9..d4cb26977a8 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ReplaceBootVolumeClusterNodeDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ReplaceBootVolumeClusterNodeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ServiceLbConfigDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ServiceLbConfigDetails.java index a7278905c93..42be47dd7f7 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ServiceLbConfigDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ServiceLbConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ShapeMemoryOptions.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ShapeMemoryOptions.java index f14ef26f0a8..3621b48aa24 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ShapeMemoryOptions.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ShapeMemoryOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ShapeNetworkBandwidthOptions.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ShapeNetworkBandwidthOptions.java index 7b49be7b7ca..8926bbbdaa0 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ShapeNetworkBandwidthOptions.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ShapeNetworkBandwidthOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ShapeOcpuOptions.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ShapeOcpuOptions.java index 33669ceb866..eeb118f8f09 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ShapeOcpuOptions.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/ShapeOcpuOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/SortOrder.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/SortOrder.java index ed2cb05b54b..f573e2cc080 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/SortOrder.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/StartCredentialRotationDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/StartCredentialRotationDetails.java index 201a2ec553f..22f9ad34822 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/StartCredentialRotationDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/StartCredentialRotationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/Taint.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/Taint.java index b57bca2c45b..c3ec2a969f9 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/Taint.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/Taint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/TerminatePreemptionAction.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/TerminatePreemptionAction.java index 78b3caef41b..e049f022174 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/TerminatePreemptionAction.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/TerminatePreemptionAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateAddonDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateAddonDetails.java index a73ded7c912..e01ce6b4370 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateAddonDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateAddonDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateClusterDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateClusterDetails.java index 409e5e93659..bc60849eeec 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateClusterDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateClusterEndpointConfigDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateClusterEndpointConfigDetails.java index 196fafc99f9..fee80f44811 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateClusterEndpointConfigDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateClusterEndpointConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateClusterOptionsDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateClusterOptionsDetails.java index f1a1899d2dd..69a13b650cb 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateClusterOptionsDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateClusterOptionsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateImagePolicyConfigDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateImagePolicyConfigDetails.java index 8e8b7f36a93..59966ceabd6 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateImagePolicyConfigDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateImagePolicyConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateNodePoolDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateNodePoolDetails.java index 9f3d97a6e90..3645cd841e0 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateNodePoolDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateNodePoolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateNodePoolNodeConfigDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateNodePoolNodeConfigDetails.java index 79922aeda87..b3bcc64f880 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateNodePoolNodeConfigDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateNodePoolNodeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateNodeShapeConfigDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateNodeShapeConfigDetails.java index 26f528f732f..5bf446781df 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateNodeShapeConfigDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateNodeShapeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateVirtualNodePoolDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateVirtualNodePoolDetails.java index 772639fdfff..b089014270e 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateVirtualNodePoolDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateVirtualNodePoolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateWorkloadMappingDetails.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateWorkloadMappingDetails.java index dad4a1928b5..8e4c35226da 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateWorkloadMappingDetails.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/UpdateWorkloadMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNode.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNode.java index 38c0c633938..224fb23997e 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNode.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodeLifecycleState.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodeLifecycleState.java index a8e0158b85f..621c3b9dc76 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodeLifecycleState.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodeLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodePool.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodePool.java index ec6c46915e2..03f9a46f346 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodePool.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodePool.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodePoolLifecycleState.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodePoolLifecycleState.java index 4e571e1d1b0..394cc29ef8d 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodePoolLifecycleState.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodePoolLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodePoolSummary.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodePoolSummary.java index 35bd0777b10..de477c97ffa 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodePoolSummary.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodePoolSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodeSummary.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodeSummary.java index f2cc4b98163..5aeda963ec9 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodeSummary.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodeTags.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodeTags.java index 3e0f0c29f7b..8b89ae66351 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodeTags.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/VirtualNodeTags.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequest.java index 27500df679f..d929b1b7ee9 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestError.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestError.java index fe9abd33930..c1051d223cf 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestError.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestLogEntry.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestLogEntry.java index 7f24432bf8b..7ad4c1bfada 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestLogEntry.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestOperationType.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestOperationType.java index 54243720c1c..089414e7b76 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestOperationType.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestOperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestResource.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestResource.java index 07371c7c504..573e4e66508 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestResource.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestStatus.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestStatus.java index 43607f97e28..f23ad1664a7 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestStatus.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestSummary.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestSummary.java index 1ed33d7e66d..f164f7b7bec 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestSummary.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkloadMapping.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkloadMapping.java index d4a4649d37b..d31da470fe4 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkloadMapping.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkloadMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkloadMappingLifecycleState.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkloadMappingLifecycleState.java index 0bfe128b414..1d88369405b 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkloadMappingLifecycleState.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkloadMappingLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkloadMappingSummary.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkloadMappingSummary.java index 5acccde08b3..1a8f754c4cc 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkloadMappingSummary.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/model/WorkloadMappingSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.model; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ClusterMigrateToNativeVcnRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ClusterMigrateToNativeVcnRequest.java index b279f757262..eacee010404 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ClusterMigrateToNativeVcnRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ClusterMigrateToNativeVcnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CompleteCredentialRotationRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CompleteCredentialRotationRequest.java index e718ff01c68..cd00f9daa90 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CompleteCredentialRotationRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CompleteCredentialRotationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CreateClusterRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CreateClusterRequest.java index 36f0933c5c1..9450ceb01c2 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CreateClusterRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CreateClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CreateKubeconfigRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CreateKubeconfigRequest.java index f608e2ae08d..e1fce1fec78 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CreateKubeconfigRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CreateKubeconfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CreateNodePoolRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CreateNodePoolRequest.java index 482da06564d..95efbd693b5 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CreateNodePoolRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CreateNodePoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CreateVirtualNodePoolRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CreateVirtualNodePoolRequest.java index aa5a72db0de..d779bd7cd0d 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CreateVirtualNodePoolRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CreateVirtualNodePoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CreateWorkloadMappingRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CreateWorkloadMappingRequest.java index 76c27d5c6d9..7256e1dc7b4 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CreateWorkloadMappingRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/CreateWorkloadMappingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteClusterRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteClusterRequest.java index 1159842aea9..aa1ee913043 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteClusterRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteNodePoolRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteNodePoolRequest.java index 9adaec69ce7..d2d187696c1 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteNodePoolRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteNodePoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteNodeRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteNodeRequest.java index 4e6f7e0da30..d2bcb63833d 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteNodeRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteNodeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteVirtualNodePoolRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteVirtualNodePoolRequest.java index 3fd1d03a76c..18e8202903e 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteVirtualNodePoolRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteVirtualNodePoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteWorkRequestRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteWorkRequestRequest.java index b51edfb51cf..321f3eedb03 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteWorkRequestRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteWorkloadMappingRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteWorkloadMappingRequest.java index 6135b293a18..25b023ee247 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteWorkloadMappingRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DeleteWorkloadMappingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DisableAddonRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DisableAddonRequest.java index de537a4c9a6..58de7f634cb 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DisableAddonRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/DisableAddonRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetAddonRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetAddonRequest.java index bd543484750..46543f6becf 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetAddonRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetAddonRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetClusterMigrateToNativeVcnStatusRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetClusterMigrateToNativeVcnStatusRequest.java index 86afe5005fb..66b2d060ab3 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetClusterMigrateToNativeVcnStatusRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetClusterMigrateToNativeVcnStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetClusterOptionsRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetClusterOptionsRequest.java index 4f4fefe27d0..9f458bb1e58 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetClusterOptionsRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetClusterOptionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetClusterRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetClusterRequest.java index 562aa13b9da..1bf8f14df0b 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetClusterRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetCredentialRotationStatusRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetCredentialRotationStatusRequest.java index 0a4ae95dba8..19a22d2fd33 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetCredentialRotationStatusRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetCredentialRotationStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetNodePoolOptionsRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetNodePoolOptionsRequest.java index 942e05623fa..0632d58ed03 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetNodePoolOptionsRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetNodePoolOptionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetNodePoolRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetNodePoolRequest.java index b8a2d3691c9..3bc2cf25901 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetNodePoolRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetNodePoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetVirtualNodePoolRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetVirtualNodePoolRequest.java index a7dda62d1c9..61fc031478a 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetVirtualNodePoolRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetVirtualNodePoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetVirtualNodeRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetVirtualNodeRequest.java index be88768a808..5424d44a04b 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetVirtualNodeRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetVirtualNodeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetWorkRequestRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetWorkRequestRequest.java index b16cc091a4e..60e6624ba24 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetWorkRequestRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetWorkloadMappingRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetWorkloadMappingRequest.java index 3a6d7cbbead..bfe8854a21b 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetWorkloadMappingRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/GetWorkloadMappingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/InstallAddonRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/InstallAddonRequest.java index 25879b5a471..9f260b6b686 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/InstallAddonRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/InstallAddonRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListAddonOptionsRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListAddonOptionsRequest.java index 1d2e44442bb..d772737dcf1 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListAddonOptionsRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListAddonOptionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListAddonsRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListAddonsRequest.java index 7e33d0781ad..00f5f804adc 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListAddonsRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListAddonsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListClustersRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListClustersRequest.java index c91ad28ecd7..1d55c73dc20 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListClustersRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListClustersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListNodePoolsRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListNodePoolsRequest.java index 5c7a90410e1..2c80d0a6f51 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListNodePoolsRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListNodePoolsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListPodShapesRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListPodShapesRequest.java index aaf56f385cc..6c3e8cdb551 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListPodShapesRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListPodShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListVirtualNodePoolsRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListVirtualNodePoolsRequest.java index fe368ccb8b8..e29420ba78d 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListVirtualNodePoolsRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListVirtualNodePoolsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListVirtualNodesRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListVirtualNodesRequest.java index c356484e085..661f4303245 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListVirtualNodesRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListVirtualNodesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListWorkRequestErrorsRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListWorkRequestErrorsRequest.java index 50ecd011bef..d8d9d470ef7 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListWorkRequestLogsRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListWorkRequestLogsRequest.java index 480fff209c8..360a8c87a8e 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListWorkRequestLogsRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListWorkRequestsRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListWorkRequestsRequest.java index afcc6087387..c30b38ca414 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListWorkRequestsRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListWorkloadMappingsRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListWorkloadMappingsRequest.java index 986d104bbed..d4366733e67 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListWorkloadMappingsRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ListWorkloadMappingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/RebootClusterNodeRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/RebootClusterNodeRequest.java index 74db92739b2..62c65ab26d4 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/RebootClusterNodeRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/RebootClusterNodeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ReplaceBootVolumeClusterNodeRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ReplaceBootVolumeClusterNodeRequest.java index a609f6826a8..260048f241c 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ReplaceBootVolumeClusterNodeRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/ReplaceBootVolumeClusterNodeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/StartCredentialRotationRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/StartCredentialRotationRequest.java index 5cd4df46d51..974730fe456 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/StartCredentialRotationRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/StartCredentialRotationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateAddonRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateAddonRequest.java index 1fd1a193c32..dd1abf3b39a 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateAddonRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateAddonRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateClusterEndpointConfigRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateClusterEndpointConfigRequest.java index 6f393568196..001dcac47b1 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateClusterEndpointConfigRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateClusterEndpointConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateClusterRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateClusterRequest.java index cc825eb3912..b1970ec6fbc 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateClusterRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateNodePoolRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateNodePoolRequest.java index 39b38030b17..4670bd6d0ca 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateNodePoolRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateNodePoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateVirtualNodePoolRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateVirtualNodePoolRequest.java index 6d491dd1955..b7cd0983ad6 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateVirtualNodePoolRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateVirtualNodePoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateWorkloadMappingRequest.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateWorkloadMappingRequest.java index 6ea5a79a9f7..7964c085604 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateWorkloadMappingRequest.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/requests/UpdateWorkloadMappingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.requests; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ClusterMigrateToNativeVcnResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ClusterMigrateToNativeVcnResponse.java index 9b8613f61ee..9b3661c4d19 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ClusterMigrateToNativeVcnResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ClusterMigrateToNativeVcnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CompleteCredentialRotationResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CompleteCredentialRotationResponse.java index 38a9245062a..2ef53130d04 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CompleteCredentialRotationResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CompleteCredentialRotationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CreateClusterResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CreateClusterResponse.java index 531ea9d479f..76c6a61085c 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CreateClusterResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CreateClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CreateKubeconfigResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CreateKubeconfigResponse.java index 69c531d891f..a6433c57a5a 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CreateKubeconfigResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CreateKubeconfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CreateNodePoolResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CreateNodePoolResponse.java index b1a8b11b921..a8bb2e8789b 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CreateNodePoolResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CreateNodePoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CreateVirtualNodePoolResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CreateVirtualNodePoolResponse.java index e0a05e302ad..296926bbf7f 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CreateVirtualNodePoolResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CreateVirtualNodePoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CreateWorkloadMappingResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CreateWorkloadMappingResponse.java index 32df1efd7cd..d81875e6b70 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CreateWorkloadMappingResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/CreateWorkloadMappingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteClusterResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteClusterResponse.java index 11542f3dfd7..181b22fe56f 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteClusterResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteNodePoolResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteNodePoolResponse.java index 491a5107dcb..741d8a9e8da 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteNodePoolResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteNodePoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteNodeResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteNodeResponse.java index 63732fcde3b..2ea8c5144a1 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteNodeResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteNodeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteVirtualNodePoolResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteVirtualNodePoolResponse.java index 9f8c5472527..59c561f0749 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteVirtualNodePoolResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteVirtualNodePoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteWorkRequestResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteWorkRequestResponse.java index dd0100cbac0..231988970c1 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteWorkRequestResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteWorkloadMappingResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteWorkloadMappingResponse.java index 86e0bd553cb..3246cb41e78 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteWorkloadMappingResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DeleteWorkloadMappingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DisableAddonResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DisableAddonResponse.java index eb5e42a465d..109c1fa1e68 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DisableAddonResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/DisableAddonResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetAddonResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetAddonResponse.java index ee5f2ae661c..e428aa23ba8 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetAddonResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetAddonResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetClusterMigrateToNativeVcnStatusResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetClusterMigrateToNativeVcnStatusResponse.java index 7da4ba88834..5a1861d0531 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetClusterMigrateToNativeVcnStatusResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetClusterMigrateToNativeVcnStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetClusterOptionsResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetClusterOptionsResponse.java index 5af5019e92c..39c0b37cdd6 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetClusterOptionsResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetClusterOptionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetClusterResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetClusterResponse.java index c013a6e676f..575062bcc33 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetClusterResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetCredentialRotationStatusResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetCredentialRotationStatusResponse.java index 2a009ab7ff7..ad72b66cec3 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetCredentialRotationStatusResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetCredentialRotationStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetNodePoolOptionsResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetNodePoolOptionsResponse.java index e0ebd324542..19937cb0943 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetNodePoolOptionsResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetNodePoolOptionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetNodePoolResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetNodePoolResponse.java index 35fdd65ef3a..6d6478877aa 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetNodePoolResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetNodePoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetVirtualNodePoolResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetVirtualNodePoolResponse.java index 377dae70257..b76434a7e31 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetVirtualNodePoolResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetVirtualNodePoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetVirtualNodeResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetVirtualNodeResponse.java index 2598e1ebf06..0aa89e02868 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetVirtualNodeResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetVirtualNodeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetWorkRequestResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetWorkRequestResponse.java index 5b0deed9737..e93d82196cb 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetWorkRequestResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetWorkloadMappingResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetWorkloadMappingResponse.java index 19f88e20103..32a9a2bb40b 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetWorkloadMappingResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/GetWorkloadMappingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/InstallAddonResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/InstallAddonResponse.java index 7bde56406ca..ade9d01774a 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/InstallAddonResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/InstallAddonResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListAddonOptionsResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListAddonOptionsResponse.java index a3fc7003a03..22e90a7a4b8 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListAddonOptionsResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListAddonOptionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListAddonsResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListAddonsResponse.java index a38f43d32c3..35c78b50053 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListAddonsResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListAddonsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListClustersResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListClustersResponse.java index d6dbc2f1ed5..1f2140f3c28 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListClustersResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListClustersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListNodePoolsResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListNodePoolsResponse.java index b3badc39460..6b8c1cd738f 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListNodePoolsResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListNodePoolsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListPodShapesResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListPodShapesResponse.java index de26a4862a7..40949c2fc08 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListPodShapesResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListPodShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListVirtualNodePoolsResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListVirtualNodePoolsResponse.java index eceb7cc29e6..04e61f2f452 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListVirtualNodePoolsResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListVirtualNodePoolsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListVirtualNodesResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListVirtualNodesResponse.java index 12f5639431a..de5f9e0f39e 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListVirtualNodesResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListVirtualNodesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListWorkRequestErrorsResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListWorkRequestErrorsResponse.java index c60a8ae5843..3202b65906e 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListWorkRequestLogsResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListWorkRequestLogsResponse.java index f1762b74e26..4facd32a2ea 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListWorkRequestLogsResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListWorkRequestsResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListWorkRequestsResponse.java index b3e9afc94bd..3890a23dd4e 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListWorkRequestsResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListWorkloadMappingsResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListWorkloadMappingsResponse.java index bfc0f38cdbe..d3a6a67776e 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListWorkloadMappingsResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ListWorkloadMappingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/RebootClusterNodeResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/RebootClusterNodeResponse.java index 058ef91fee2..80c799aafc5 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/RebootClusterNodeResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/RebootClusterNodeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ReplaceBootVolumeClusterNodeResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ReplaceBootVolumeClusterNodeResponse.java index c7f8b885810..4158506ba07 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ReplaceBootVolumeClusterNodeResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/ReplaceBootVolumeClusterNodeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/StartCredentialRotationResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/StartCredentialRotationResponse.java index 1b392d6a91e..02b5dd02a15 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/StartCredentialRotationResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/StartCredentialRotationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateAddonResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateAddonResponse.java index 64b929d119a..e1d6c9b1ffb 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateAddonResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateAddonResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateClusterEndpointConfigResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateClusterEndpointConfigResponse.java index be5dcdf1951..0ae781e9c24 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateClusterEndpointConfigResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateClusterEndpointConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateClusterResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateClusterResponse.java index 9724a53d834..1f6e64c0815 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateClusterResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateNodePoolResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateNodePoolResponse.java index 585d06f667c..d0c0f5de347 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateNodePoolResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateNodePoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateVirtualNodePoolResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateVirtualNodePoolResponse.java index 2d4f5bc9390..73bdad207eb 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateVirtualNodePoolResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateVirtualNodePoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateWorkloadMappingResponse.java b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateWorkloadMappingResponse.java index 4cf4e5643f4..e4fa0837aea 100644 --- a/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateWorkloadMappingResponse.java +++ b/bmc-containerengine/src/main/java/com/oracle/bmc/containerengine/responses/UpdateWorkloadMappingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerengine.responses; diff --git a/bmc-containerengine/src/main/resources/com/oracle/bmc/containerengine/client.properties b/bmc-containerengine/src/main/resources/com/oracle/bmc/containerengine/client.properties index d8c4f862af7..7bf9d3ff973 100644 --- a/bmc-containerengine/src/main/resources/com/oracle/bmc/containerengine/client.properties +++ b/bmc-containerengine/src/main/resources/com/oracle/bmc/containerengine/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-containerinstances/pom.xml b/bmc-containerinstances/pom.xml index b5747e2688d..7d96d8f2552 100644 --- a/bmc-containerinstances/pom.xml +++ b/bmc-containerinstances/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-containerinstances @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstance.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstance.java index b3fc576e8e5..a7748f881ae 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstance.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstanceAsync.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstanceAsync.java index cf956da919f..8618c8fa0f5 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstanceAsync.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstanceAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstanceAsyncClient.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstanceAsyncClient.java index 9c0cde62f4c..4c8fa903d68 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstanceAsyncClient.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstanceAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstanceClient.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstanceClient.java index b302b20c275..8f1e7a3c195 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstanceClient.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstanceClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstancePaginators.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstancePaginators.java index 75509735426..cc63dbbda4d 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstancePaginators.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstancePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstanceWaiters.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstanceWaiters.java index a5696031f24..e008b248893 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstanceWaiters.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/ContainerInstanceWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ActionType.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ActionType.java index 90096a5dc2b..75bffe0ec4c 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ActionType.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/BasicImagePullSecret.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/BasicImagePullSecret.java index b8d549a51e6..29defa5c8c8 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/BasicImagePullSecret.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/BasicImagePullSecret.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ChangeContainerInstanceCompartmentDetails.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ChangeContainerInstanceCompartmentDetails.java index 7c62cd54710..2762d866672 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ChangeContainerInstanceCompartmentDetails.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ChangeContainerInstanceCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/Container.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/Container.java index 2d00385634a..3c1322e3f6a 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/Container.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/Container.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerCapabilities.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerCapabilities.java index bfe0e0c3efd..7862cfda317 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerCapabilities.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerCapabilities.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerCapability.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerCapability.java index f947a916384..a5a38fc525b 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerCapability.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerCapability.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerCapabilityType.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerCapabilityType.java index a1257ef194a..48794ea3ef9 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerCapabilityType.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerCapabilityType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerCollection.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerCollection.java index cfccedc87f2..d43eff7ca41 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerCollection.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerConfigFile.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerConfigFile.java index 85b0b8da214..7e8d2ce2f43 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerConfigFile.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerConfigFile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerConfigFileVolume.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerConfigFileVolume.java index 66d327a7b41..cca8a3fd5cc 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerConfigFileVolume.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerConfigFileVolume.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerDnsConfig.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerDnsConfig.java index 259bf07c4ac..eca033ab72f 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerDnsConfig.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerDnsConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerEmptyDirVolume.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerEmptyDirVolume.java index 28cf9e05ad9..a1240cd4dc6 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerEmptyDirVolume.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerEmptyDirVolume.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerHealthCheck.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerHealthCheck.java index 8c5bb47b23c..744c8068bc4 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerHealthCheck.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerHealthCheck.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerHealthCheckFailureAction.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerHealthCheckFailureAction.java index f294811c386..a59c34110b8 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerHealthCheckFailureAction.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerHealthCheckFailureAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerHealthCheckType.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerHealthCheckType.java index f5a5e639082..c99d0f30401 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerHealthCheckType.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerHealthCheckType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerHttpHealthCheck.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerHttpHealthCheck.java index 85b31ce6679..991c14d9918 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerHttpHealthCheck.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerHttpHealthCheck.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstance.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstance.java index 0c1f621868d..c8771e397c0 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstance.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceCollection.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceCollection.java index e08ea8bef8a..b64eb03954a 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceCollection.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceContainer.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceContainer.java index 3f8b4651435..566936b27e7 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceContainer.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceContainer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceShapeCollection.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceShapeCollection.java index 7fdcd130783..3abc9ee7831 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceShapeCollection.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceShapeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceShapeConfig.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceShapeConfig.java index e00d63c0f9f..3be4915d734 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceShapeConfig.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceShapeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceShapeSummary.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceShapeSummary.java index 3aa531d7792..1f7df5cef7e 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceShapeSummary.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceShapeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceSummary.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceSummary.java index 3e667689c71..6b64cc386d7 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceSummary.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerInstanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerResourceConfig.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerResourceConfig.java index 2b7455712a1..ed321d0eb3e 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerResourceConfig.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerResourceConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerSummary.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerSummary.java index a433bb52efe..d97601f60b9 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerSummary.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerTcpHealthCheck.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerTcpHealthCheck.java index ad90d380e99..fdbcbdb4710 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerTcpHealthCheck.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerTcpHealthCheck.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerVnic.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerVnic.java index d2afaabf71e..25e7300f19c 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerVnic.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerVnic.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerVolume.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerVolume.java index 899a7ab6c51..cea4638542c 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerVolume.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerVolume.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerVolumeType.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerVolumeType.java index be50be395f3..383730cfe18 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerVolumeType.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ContainerVolumeType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateBasicImagePullSecretDetails.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateBasicImagePullSecretDetails.java index 713ccc686cb..6d64efb4c5f 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateBasicImagePullSecretDetails.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateBasicImagePullSecretDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerConfigFileVolumeDetails.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerConfigFileVolumeDetails.java index d51115d27c3..047416ba4ee 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerConfigFileVolumeDetails.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerConfigFileVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerDetails.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerDetails.java index 1630d40d4f1..6c120eedb2c 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerDetails.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerDnsConfigDetails.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerDnsConfigDetails.java index d907d072389..d8f0a4ca0bc 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerDnsConfigDetails.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerDnsConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerEmptyDirVolumeDetails.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerEmptyDirVolumeDetails.java index 644c808cc93..0dac196f443 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerEmptyDirVolumeDetails.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerEmptyDirVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerHealthCheckDetails.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerHealthCheckDetails.java index fd3476fcab9..e25bf686104 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerHealthCheckDetails.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerHealthCheckDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerHttpHealthCheckDetails.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerHttpHealthCheckDetails.java index ba3eb22d6a2..8c04b948c0e 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerHttpHealthCheckDetails.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerHttpHealthCheckDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerInstanceDetails.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerInstanceDetails.java index 803b95cbcaa..1d52fec89e9 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerInstanceDetails.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerInstanceShapeConfigDetails.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerInstanceShapeConfigDetails.java index d6e977c963f..e1a43fbc83b 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerInstanceShapeConfigDetails.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerInstanceShapeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerResourceConfigDetails.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerResourceConfigDetails.java index da3cd4cc3e3..37eb788a01d 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerResourceConfigDetails.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerResourceConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerTcpHealthCheckDetails.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerTcpHealthCheckDetails.java index 4176a3d0604..eaae9d037af 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerTcpHealthCheckDetails.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerTcpHealthCheckDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerVnicDetails.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerVnicDetails.java index cd1a34dadea..04465c51eae 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerVnicDetails.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerVnicDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerVolumeDetails.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerVolumeDetails.java index a7381afb8fe..22169b4c96c 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerVolumeDetails.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateContainerVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateImagePullSecretDetails.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateImagePullSecretDetails.java index 9708f7ae760..11150240b0f 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateImagePullSecretDetails.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateImagePullSecretDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateLinuxSecurityContextDetails.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateLinuxSecurityContextDetails.java index 257411b1ad9..6389454f25d 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateLinuxSecurityContextDetails.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateLinuxSecurityContextDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateSecurityContextDetails.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateSecurityContextDetails.java index c13450e21f6..10e2e460ff5 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateSecurityContextDetails.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateSecurityContextDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateVaultImagePullSecretDetails.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateVaultImagePullSecretDetails.java index 4c9f6d5aaae..aa7593dabdd 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateVaultImagePullSecretDetails.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateVaultImagePullSecretDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateVolumeMountDetails.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateVolumeMountDetails.java index 9dda3848a00..7c049c3f7d1 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateVolumeMountDetails.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/CreateVolumeMountDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/HealthCheckHttpHeader.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/HealthCheckHttpHeader.java index 808cb310d6c..913494d0f68 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/HealthCheckHttpHeader.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/HealthCheckHttpHeader.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ImagePullSecret.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ImagePullSecret.java index d0e9f90e3b6..cb761b80c85 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ImagePullSecret.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ImagePullSecret.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/LinuxSecurityContext.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/LinuxSecurityContext.java index 26a9506c8eb..0d85e282489 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/LinuxSecurityContext.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/LinuxSecurityContext.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/OperationStatus.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/OperationStatus.java index 73156087064..5e10594f2c4 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/OperationStatus.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/OperationType.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/OperationType.java index 3cd40c09647..f7c9d14a8a7 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/OperationType.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/SecurityContext.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/SecurityContext.java index 976f1c9e165..d65e6cec22c 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/SecurityContext.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/SecurityContext.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ShapeMemoryOptions.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ShapeMemoryOptions.java index 12ee24f335c..1e26afc5679 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ShapeMemoryOptions.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ShapeMemoryOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ShapeNetworkingBandwidthOptions.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ShapeNetworkingBandwidthOptions.java index f734e552f6a..aafc64937a3 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ShapeNetworkingBandwidthOptions.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ShapeNetworkingBandwidthOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ShapeOcpuOptions.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ShapeOcpuOptions.java index 7724bb241a5..928c1940d80 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ShapeOcpuOptions.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/ShapeOcpuOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/SortOrder.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/SortOrder.java index f94e1dde3da..971aee25c43 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/SortOrder.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/UpdateContainerDetails.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/UpdateContainerDetails.java index 2fc7826f17e..65811ede7ee 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/UpdateContainerDetails.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/UpdateContainerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/UpdateContainerInstanceDetails.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/UpdateContainerInstanceDetails.java index 8bde260a771..a2528328265 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/UpdateContainerInstanceDetails.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/UpdateContainerInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/VaultImagePullSecret.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/VaultImagePullSecret.java index 947b3a579db..99686464b34 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/VaultImagePullSecret.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/VaultImagePullSecret.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/VolumeMount.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/VolumeMount.java index 3acc9faf332..50896029be7 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/VolumeMount.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/VolumeMount.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequest.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequest.java index cbba4f5547b..c15d677f64f 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequest.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestError.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestError.java index 44eebbf3c6d..5f56a5e3c91 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestError.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestErrorCollection.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestErrorCollection.java index 674fee3e6a1..7464b600006 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestErrorCollection.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestLogEntry.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestLogEntry.java index b36a01f40aa..009eeea4fd1 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestLogEntry.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestLogEntryCollection.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestLogEntryCollection.java index 792035f72d4..68c18ae5aae 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestLogEntryCollection.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestResource.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestResource.java index 8445a92f2fb..2bbc98643e8 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestResource.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestSummary.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestSummary.java index e47616fa57a..8a501d84ce5 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestSummary.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestSummaryCollection.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestSummaryCollection.java index decb53cd165..c192d2d0ad2 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestSummaryCollection.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.model; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ChangeContainerInstanceCompartmentRequest.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ChangeContainerInstanceCompartmentRequest.java index 4c08302c03c..d4002b9e07d 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ChangeContainerInstanceCompartmentRequest.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ChangeContainerInstanceCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.requests; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/CreateContainerInstanceRequest.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/CreateContainerInstanceRequest.java index 4151f4de120..e262f8d2f05 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/CreateContainerInstanceRequest.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/CreateContainerInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.requests; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/DeleteContainerInstanceRequest.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/DeleteContainerInstanceRequest.java index 0841acfa4a7..69ca9a2e883 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/DeleteContainerInstanceRequest.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/DeleteContainerInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.requests; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/GetContainerInstanceRequest.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/GetContainerInstanceRequest.java index c94eb0d0830..bd54a06d5cb 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/GetContainerInstanceRequest.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/GetContainerInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.requests; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/GetContainerRequest.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/GetContainerRequest.java index eb8ea70e732..0309c3cc53c 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/GetContainerRequest.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/GetContainerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.requests; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/GetWorkRequestRequest.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/GetWorkRequestRequest.java index 660a03da177..42c18f981a5 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/GetWorkRequestRequest.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.requests; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListContainerInstanceShapesRequest.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListContainerInstanceShapesRequest.java index f8554fdbd81..bf8bd07fc9f 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListContainerInstanceShapesRequest.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListContainerInstanceShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.requests; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListContainerInstancesRequest.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListContainerInstancesRequest.java index 131e61eaf08..ef26745daea 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListContainerInstancesRequest.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListContainerInstancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.requests; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListContainersRequest.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListContainersRequest.java index 84eef865e0d..b3c5a041172 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListContainersRequest.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListContainersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.requests; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListWorkRequestErrorsRequest.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListWorkRequestErrorsRequest.java index 49b294781d5..37c1fdf8172 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.requests; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListWorkRequestLogsRequest.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListWorkRequestLogsRequest.java index 4c1a9420050..8a4e7cfab33 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListWorkRequestLogsRequest.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.requests; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListWorkRequestsRequest.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListWorkRequestsRequest.java index b5d9df8be2f..2bfb6cc85cc 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListWorkRequestsRequest.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.requests; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/RestartContainerInstanceRequest.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/RestartContainerInstanceRequest.java index 9d8a177b3fc..f975c9fc8ef 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/RestartContainerInstanceRequest.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/RestartContainerInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.requests; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/RetrieveLogsRequest.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/RetrieveLogsRequest.java index 10f519e4a9f..381c5760858 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/RetrieveLogsRequest.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/RetrieveLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.requests; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/StartContainerInstanceRequest.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/StartContainerInstanceRequest.java index f47feee4bdf..687c9f43a4d 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/StartContainerInstanceRequest.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/StartContainerInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.requests; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/StopContainerInstanceRequest.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/StopContainerInstanceRequest.java index 6604ebf2ba8..f9093c24b35 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/StopContainerInstanceRequest.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/StopContainerInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.requests; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/UpdateContainerInstanceRequest.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/UpdateContainerInstanceRequest.java index 7fc93c2002c..491ec03ec15 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/UpdateContainerInstanceRequest.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/UpdateContainerInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.requests; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/UpdateContainerRequest.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/UpdateContainerRequest.java index 8e0444f499a..3526a1eb424 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/UpdateContainerRequest.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/requests/UpdateContainerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.requests; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ChangeContainerInstanceCompartmentResponse.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ChangeContainerInstanceCompartmentResponse.java index 2e79b4d1b6b..31175a372db 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ChangeContainerInstanceCompartmentResponse.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ChangeContainerInstanceCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.responses; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/CreateContainerInstanceResponse.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/CreateContainerInstanceResponse.java index 05349d3b415..bae3bf4f6af 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/CreateContainerInstanceResponse.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/CreateContainerInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.responses; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/DeleteContainerInstanceResponse.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/DeleteContainerInstanceResponse.java index c6c47eee48c..0aa3ae72e29 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/DeleteContainerInstanceResponse.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/DeleteContainerInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.responses; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/GetContainerInstanceResponse.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/GetContainerInstanceResponse.java index 7b59549bfd5..81d39cde73b 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/GetContainerInstanceResponse.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/GetContainerInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.responses; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/GetContainerResponse.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/GetContainerResponse.java index 623e19a37d2..c5e3e2a5237 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/GetContainerResponse.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/GetContainerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.responses; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/GetWorkRequestResponse.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/GetWorkRequestResponse.java index 30d27648afb..f0b4862e09b 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/GetWorkRequestResponse.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.responses; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListContainerInstanceShapesResponse.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListContainerInstanceShapesResponse.java index 863d595a621..b1420c4c009 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListContainerInstanceShapesResponse.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListContainerInstanceShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.responses; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListContainerInstancesResponse.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListContainerInstancesResponse.java index d8077bd2825..01e660a35d5 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListContainerInstancesResponse.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListContainerInstancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.responses; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListContainersResponse.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListContainersResponse.java index cf0821e5356..af67e6833a9 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListContainersResponse.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListContainersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.responses; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListWorkRequestErrorsResponse.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListWorkRequestErrorsResponse.java index 396e9c35a1c..d5da7dfe2cc 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.responses; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListWorkRequestLogsResponse.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListWorkRequestLogsResponse.java index 4d603e97334..e6754e1b359 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListWorkRequestLogsResponse.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.responses; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListWorkRequestsResponse.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListWorkRequestsResponse.java index 47fe75c2ac1..8eb6f08e9b8 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListWorkRequestsResponse.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.responses; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/RestartContainerInstanceResponse.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/RestartContainerInstanceResponse.java index f46662889e2..2076aa0007a 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/RestartContainerInstanceResponse.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/RestartContainerInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.responses; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/RetrieveLogsResponse.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/RetrieveLogsResponse.java index ad25f908283..98ac5dd90a3 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/RetrieveLogsResponse.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/RetrieveLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.responses; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/StartContainerInstanceResponse.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/StartContainerInstanceResponse.java index 44dd6cd389f..86973ca17cb 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/StartContainerInstanceResponse.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/StartContainerInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.responses; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/StopContainerInstanceResponse.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/StopContainerInstanceResponse.java index ae8f0918b12..bc5a5ec3f3a 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/StopContainerInstanceResponse.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/StopContainerInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.responses; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/UpdateContainerInstanceResponse.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/UpdateContainerInstanceResponse.java index 1e3b3dc0420..644762c78b9 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/UpdateContainerInstanceResponse.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/UpdateContainerInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.responses; diff --git a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/UpdateContainerResponse.java b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/UpdateContainerResponse.java index a5d04cf67a6..c84428c6963 100644 --- a/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/UpdateContainerResponse.java +++ b/bmc-containerinstances/src/main/java/com/oracle/bmc/containerinstances/responses/UpdateContainerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.containerinstances.responses; diff --git a/bmc-containerinstances/src/main/resources/com/oracle/bmc/containerinstances/client.properties b/bmc-containerinstances/src/main/resources/com/oracle/bmc/containerinstances/client.properties index c4dadfb42d2..936b2281507 100644 --- a/bmc-containerinstances/src/main/resources/com/oracle/bmc/containerinstances/client.properties +++ b/bmc-containerinstances/src/main/resources/com/oracle/bmc/containerinstances/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-core/pom.xml b/bmc-core/pom.xml index 8827e4c58de..c6673f3f94d 100644 --- a/bmc-core/pom.xml +++ b/bmc-core/pom.xml @@ -5,7 +5,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml @@ -18,12 +18,12 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 com.oracle.oci.sdk oci-java-sdk-workrequests - 3.77.2 + 3.78.0 diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/Blockstorage.java b/bmc-core/src/main/java/com/oracle/bmc/core/Blockstorage.java index a1753706d86..9a42750f98b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/Blockstorage.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/Blockstorage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/BlockstorageAsync.java b/bmc-core/src/main/java/com/oracle/bmc/core/BlockstorageAsync.java index 8ede9ac9fcb..d879baaa370 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/BlockstorageAsync.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/BlockstorageAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/BlockstorageAsyncClient.java b/bmc-core/src/main/java/com/oracle/bmc/core/BlockstorageAsyncClient.java index a9068608c7d..49e8a36b4df 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/BlockstorageAsyncClient.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/BlockstorageAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/BlockstorageClient.java b/bmc-core/src/main/java/com/oracle/bmc/core/BlockstorageClient.java index ee36d0105c0..5a78dc73bae 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/BlockstorageClient.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/BlockstorageClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/BlockstoragePaginators.java b/bmc-core/src/main/java/com/oracle/bmc/core/BlockstoragePaginators.java index bd605a6cb03..f5c949a115f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/BlockstoragePaginators.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/BlockstoragePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/BlockstorageWaiters.java b/bmc-core/src/main/java/com/oracle/bmc/core/BlockstorageWaiters.java index 78512172100..e44b0f19e67 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/BlockstorageWaiters.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/BlockstorageWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/Compute.java b/bmc-core/src/main/java/com/oracle/bmc/core/Compute.java index 535123f0dda..798b38e93d5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/Compute.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/Compute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/ComputeAsync.java b/bmc-core/src/main/java/com/oracle/bmc/core/ComputeAsync.java index ae444996986..743c6055a61 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/ComputeAsync.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/ComputeAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/ComputeAsyncClient.java b/bmc-core/src/main/java/com/oracle/bmc/core/ComputeAsyncClient.java index b5ee2f524b0..fffa6d8dd70 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/ComputeAsyncClient.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/ComputeAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/ComputeClient.java b/bmc-core/src/main/java/com/oracle/bmc/core/ComputeClient.java index 596daa8247e..5b6a0a9c82c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/ComputeClient.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/ComputeClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagement.java b/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagement.java index 709f6bb25a1..c648a69f3f6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagement.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagementAsync.java b/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagementAsync.java index f2be64c72f4..7c1b6c5a247 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagementAsync.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagementAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagementAsyncClient.java b/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagementAsyncClient.java index 403f2e7b7a9..5b28d50e96b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagementAsyncClient.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagementAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagementClient.java b/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagementClient.java index 7fb95d7b216..1b0d53a54c0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagementClient.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagementClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagementPaginators.java b/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagementPaginators.java index 7e8d03980c9..da2654a4158 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagementPaginators.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagementPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagementWaiters.java b/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagementWaiters.java index 47a8053d557..7825f241840 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagementWaiters.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/ComputeManagementWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/ComputePaginators.java b/bmc-core/src/main/java/com/oracle/bmc/core/ComputePaginators.java index 87a3f0729d4..c0c23eb48fe 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/ComputePaginators.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/ComputePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/ComputeWaiters.java b/bmc-core/src/main/java/com/oracle/bmc/core/ComputeWaiters.java index fba70a580eb..c7b64e5ad68 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/ComputeWaiters.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/ComputeWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetwork.java b/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetwork.java index 4a78aff612f..8530036e474 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetwork.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetwork.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetworkAsync.java b/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetworkAsync.java index 53e8fe6b3dc..534a473ce3f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetworkAsync.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetworkAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetworkAsyncClient.java b/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetworkAsyncClient.java index 87378a3add5..c4d33fb130e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetworkAsyncClient.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetworkAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetworkClient.java b/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetworkClient.java index 7974fbbdea9..21873e44580 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetworkClient.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetworkClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetworkPaginators.java b/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetworkPaginators.java index 277d46b2cd9..138a7a9455d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetworkPaginators.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetworkPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetworkWaiters.java b/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetworkWaiters.java index 44234182d63..5ef6cdea181 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetworkWaiters.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/VirtualNetworkWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddDrgRouteDistributionStatementDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddDrgRouteDistributionStatementDetails.java index 1b31c59012e..87b7ff2826c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddDrgRouteDistributionStatementDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddDrgRouteDistributionStatementDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddDrgRouteDistributionStatementsDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddDrgRouteDistributionStatementsDetails.java index ba0b38b7a58..20860fd5a54 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddDrgRouteDistributionStatementsDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddDrgRouteDistributionStatementsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddDrgRouteRuleDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddDrgRouteRuleDetails.java index a0e2e1e973c..1a873681644 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddDrgRouteRuleDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddDrgRouteRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddDrgRouteRulesDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddDrgRouteRulesDetails.java index bffaccd6746..716df0bd550 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddDrgRouteRulesDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddDrgRouteRulesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddImageShapeCompatibilityEntryDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddImageShapeCompatibilityEntryDetails.java index 716035372e5..62c0570e092 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddImageShapeCompatibilityEntryDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddImageShapeCompatibilityEntryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddIpv4SubnetCidrDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddIpv4SubnetCidrDetails.java index d243f73dff1..d8239835944 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddIpv4SubnetCidrDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddIpv4SubnetCidrDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddNetworkSecurityGroupSecurityRulesDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddNetworkSecurityGroupSecurityRulesDetails.java index a8bbe1a709f..03090b849c4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddNetworkSecurityGroupSecurityRulesDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddNetworkSecurityGroupSecurityRulesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddPublicIpPoolCapacityDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddPublicIpPoolCapacityDetails.java index 6bab9b0413b..a89eda192bd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddPublicIpPoolCapacityDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddPublicIpPoolCapacityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddSecurityRuleDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddSecurityRuleDetails.java index d9092c1c8cc..c6a849aa964 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddSecurityRuleDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddSecurityRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddSubnetIpv6CidrDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddSubnetIpv6CidrDetails.java index e039be13c7e..48012661877 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddSubnetIpv6CidrDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddSubnetIpv6CidrDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddVcnCidrDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddVcnCidrDetails.java index c14c38d025e..3a24e0b548c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddVcnCidrDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddVcnCidrDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddVcnIpv6CidrDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddVcnIpv6CidrDetails.java index 41b11c3c25d..553f0a36980 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddVcnIpv6CidrDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddVcnIpv6CidrDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddedNetworkSecurityGroupSecurityRules.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddedNetworkSecurityGroupSecurityRules.java index fa53076f7f9..c36c4455c77 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddedNetworkSecurityGroupSecurityRules.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddedNetworkSecurityGroupSecurityRules.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddressType.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddressType.java index 0d339e115fd..9f52c542d12 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AddressType.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AddressType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AllowedIkeIPSecParameters.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AllowedIkeIPSecParameters.java index bcd1bd3e9a0..82330348f9b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AllowedIkeIPSecParameters.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AllowedIkeIPSecParameters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AllowedPhaseOneParameters.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AllowedPhaseOneParameters.java index 6e8d2923415..d616694d0e1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AllowedPhaseOneParameters.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AllowedPhaseOneParameters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AllowedPhaseTwoParameters.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AllowedPhaseTwoParameters.java index fc54f0fc44a..e25b2f0157e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AllowedPhaseTwoParameters.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AllowedPhaseTwoParameters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdMilanBmGpuLaunchInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdMilanBmGpuLaunchInstancePlatformConfig.java index 97f56f456ef..d634ddcf79b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdMilanBmGpuLaunchInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdMilanBmGpuLaunchInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdMilanBmGpuPlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdMilanBmGpuPlatformConfig.java index 60864b1d7f2..185de8fef62 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdMilanBmGpuPlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdMilanBmGpuPlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdMilanBmLaunchInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdMilanBmLaunchInstancePlatformConfig.java index 1d5de9d50a8..2514bb50ee8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdMilanBmLaunchInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdMilanBmLaunchInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdMilanBmPlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdMilanBmPlatformConfig.java index 130de075c82..27a1ba7a965 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdMilanBmPlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdMilanBmPlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdRomeBmGpuLaunchInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdRomeBmGpuLaunchInstancePlatformConfig.java index de2e21a7009..9f6e7d270a4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdRomeBmGpuLaunchInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdRomeBmGpuLaunchInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdRomeBmGpuPlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdRomeBmGpuPlatformConfig.java index 9a13665c66a..b971ec5ff72 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdRomeBmGpuPlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdRomeBmGpuPlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdRomeBmLaunchInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdRomeBmLaunchInstancePlatformConfig.java index 7343a866b67..42714ca69db 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdRomeBmLaunchInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdRomeBmLaunchInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdRomeBmPlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdRomeBmPlatformConfig.java index 1e1fec4980e..bb77e22b0c7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdRomeBmPlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdRomeBmPlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdVmLaunchInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdVmLaunchInstancePlatformConfig.java index 3387ea62c04..6b515e16a4a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdVmLaunchInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdVmLaunchInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdVmPlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdVmPlatformConfig.java index 8907a9e3572..e03920b0d53 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdVmPlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdVmPlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdVmUpdateInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdVmUpdateInstancePlatformConfig.java index b4507799057..dcba463c211 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdVmUpdateInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AmdVmUpdateInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogListing.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogListing.java index 29356438df2..54237c82bc1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogListing.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogListing.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogListingResourceVersion.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogListingResourceVersion.java index 1d6308150a4..1520bf3bd64 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogListingResourceVersion.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogListingResourceVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogListingResourceVersionAgreements.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogListingResourceVersionAgreements.java index 87c8d3f37d2..d66377c5f46 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogListingResourceVersionAgreements.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogListingResourceVersionAgreements.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogListingResourceVersionSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogListingResourceVersionSummary.java index 76ace0ac6f2..4d9cf2e29a9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogListingResourceVersionSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogListingResourceVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogListingSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogListingSummary.java index 7e41c3c1107..a0b7fe02386 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogListingSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogListingSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogSubscription.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogSubscription.java index 791633c77ae..06102bb3729 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogSubscription.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogSubscription.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogSubscriptionSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogSubscriptionSummary.java index cff3fa691bf..489cde1a395 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogSubscriptionSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AppCatalogSubscriptionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachBootVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachBootVolumeDetails.java index 455bbb2dcab..2bc6faa4296 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachBootVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachBootVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachComputeHostGroupHostDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachComputeHostGroupHostDetails.java index 5d00589bd83..73960d9c644 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachComputeHostGroupHostDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachComputeHostGroupHostDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachEmulatedVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachEmulatedVolumeDetails.java index bd756482998..5ce08384a44 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachEmulatedVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachEmulatedVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachIScsiVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachIScsiVolumeDetails.java index b0c24f36d22..7e736db38d4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachIScsiVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachIScsiVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachInstancePoolInstanceDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachInstancePoolInstanceDetails.java index c0844d23aed..3af93376b49 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachInstancePoolInstanceDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachInstancePoolInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachLoadBalancerDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachLoadBalancerDetails.java index 584e268b07b..6759e9de8bd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachLoadBalancerDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachLoadBalancerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachParavirtualizedVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachParavirtualizedVolumeDetails.java index 4f3c866e40b..eb715b409b0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachParavirtualizedVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachParavirtualizedVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachServiceDeterminedVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachServiceDeterminedVolumeDetails.java index f6f3a820f28..9c82ae12d53 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachServiceDeterminedVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachServiceDeterminedVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachVnicDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachVnicDetails.java index b4366966fde..a5581e0e0e3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachVnicDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachVnicDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachVolumeDetails.java index c2308e1b8cb..4811132d72d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AttachVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/AutotunePolicy.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/AutotunePolicy.java index b99c947bd6b..87e197ade2a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/AutotunePolicy.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/AutotunePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/BgpSessionInfo.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/BgpSessionInfo.java index 0b5e60b1d63..2356f63306a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/BgpSessionInfo.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/BgpSessionInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/BlockVolumeReplica.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/BlockVolumeReplica.java index c4aa0997929..41a4a152b13 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/BlockVolumeReplica.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/BlockVolumeReplica.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/BlockVolumeReplicaDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/BlockVolumeReplicaDetails.java index 3a40cb57fce..0eb9329e1b1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/BlockVolumeReplicaDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/BlockVolumeReplicaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/BlockVolumeReplicaInfo.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/BlockVolumeReplicaInfo.java index e387c3fafc1..964c00160d3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/BlockVolumeReplicaInfo.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/BlockVolumeReplicaInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/BooleanImageCapabilitySchemaDescriptor.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/BooleanImageCapabilitySchemaDescriptor.java index bcb68cea42a..b9594c9021f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/BooleanImageCapabilitySchemaDescriptor.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/BooleanImageCapabilitySchemaDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolume.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolume.java index a2636c0f5bd..2519d88795f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolume.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolume.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeAttachment.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeAttachment.java index eb43dfa61a8..0e8028856a8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeAttachment.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeBackup.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeBackup.java index 09e8df2d14a..52a1b1a9580 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeBackup.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeBackup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeKmsKey.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeKmsKey.java index 72ce04debcd..e58043045bc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeKmsKey.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeKmsKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeReplica.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeReplica.java index 53e410c1c26..672e4e078fe 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeReplica.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeReplica.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeReplicaDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeReplicaDetails.java index 8536c01ee09..eb11bbd9faa 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeReplicaDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeReplicaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeReplicaInfo.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeReplicaInfo.java index 0531b0a80d1..585c25d7a8f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeReplicaInfo.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeReplicaInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeSourceDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeSourceDetails.java index b8e8e698e74..5f3c12058e8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeSourceDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeSourceFromBootVolumeBackupDeltaDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeSourceFromBootVolumeBackupDeltaDetails.java index 2df9625db30..d807f25a756 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeSourceFromBootVolumeBackupDeltaDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeSourceFromBootVolumeBackupDeltaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeSourceFromBootVolumeBackupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeSourceFromBootVolumeBackupDetails.java index bdcdb4fe2c3..6657cad7201 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeSourceFromBootVolumeBackupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeSourceFromBootVolumeBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeSourceFromBootVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeSourceFromBootVolumeDetails.java index 64052c13798..924a3baaa42 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeSourceFromBootVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeSourceFromBootVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeSourceFromBootVolumeReplicaDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeSourceFromBootVolumeReplicaDetails.java index e960325b03c..9d3b41ca9b7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeSourceFromBootVolumeReplicaDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/BootVolumeSourceFromBootVolumeReplicaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/BulkAddVirtualCircuitPublicPrefixesDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/BulkAddVirtualCircuitPublicPrefixesDetails.java index 06a586112df..3dd93f80630 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/BulkAddVirtualCircuitPublicPrefixesDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/BulkAddVirtualCircuitPublicPrefixesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/BulkDeleteVirtualCircuitPublicPrefixesDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/BulkDeleteVirtualCircuitPublicPrefixesDetails.java index 3720093110b..77f6ff5eb4d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/BulkDeleteVirtualCircuitPublicPrefixesDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/BulkDeleteVirtualCircuitPublicPrefixesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/Byoasn.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/Byoasn.java index b577805540f..57b5ec0f561 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/Byoasn.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/Byoasn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoasnByoipRange.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoasnByoipRange.java index 9c8ae69b2b7..570220f289e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoasnByoipRange.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoasnByoipRange.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoasnCollection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoasnCollection.java index 0cf7f351e18..5d3df597a5e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoasnCollection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoasnCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoasnSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoasnSummary.java index 923f47413a8..96f698b97d4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoasnSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoasnSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipAllocatedRangeCollection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipAllocatedRangeCollection.java index a93ceeb7c13..331714a337f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipAllocatedRangeCollection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipAllocatedRangeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipAllocatedRangeSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipAllocatedRangeSummary.java index bb876d87aae..1ea2b3509f7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipAllocatedRangeSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipAllocatedRangeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipRange.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipRange.java index 2ff67c65752..4e2ea6c3743 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipRange.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipRange.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipRangeCollection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipRangeCollection.java index 1009db8a37d..007e08d40b3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipRangeCollection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipRangeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipRangeOriginAsn.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipRangeOriginAsn.java index 3c931e1c968..7d7157b03b3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipRangeOriginAsn.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipRangeOriginAsn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipRangeSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipRangeSummary.java index 1a13989a258..080f0cd762a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipRangeSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipRangeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipRangeVcnIpv6AllocationSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipRangeVcnIpv6AllocationSummary.java index ab314ca4c3e..9845d289793 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipRangeVcnIpv6AllocationSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ByoipRangeVcnIpv6AllocationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/Byoipv6CidrDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/Byoipv6CidrDetails.java index 8aab67ef930..e575b533cda 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/Byoipv6CidrDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/Byoipv6CidrDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityBin.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityBin.java index 6ef692b92df..e0c802dccb1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityBin.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityBin.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityBinPreview.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityBinPreview.java index 8e3ac20d168..54c9092f3a9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityBinPreview.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityBinPreview.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityConfig.java index 26fa51c73b6..179ea5b0846 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityReportInstanceShapeConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityReportInstanceShapeConfig.java index 914c6611860..1f9482e14cf 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityReportInstanceShapeConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityReportInstanceShapeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityReportShapeAvailability.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityReportShapeAvailability.java index e1f89824f6f..47b2a3301e0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityReportShapeAvailability.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityReportShapeAvailability.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityReservationInstanceSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityReservationInstanceSummary.java index a8d8e321704..df0ac6411b7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityReservationInstanceSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacityReservationInstanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacitySource.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacitySource.java index a62642f3203..15615387cc8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacitySource.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CapacitySource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CaptureConsoleHistoryDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CaptureConsoleHistoryDetails.java index 75da67e5d51..9492a4d1612 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CaptureConsoleHistoryDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CaptureConsoleHistoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CaptureFilter.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CaptureFilter.java index 70a21880991..20e099000b8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CaptureFilter.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CaptureFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeBootVolumeBackupCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeBootVolumeBackupCompartmentDetails.java index 253889c95f8..429dc7a0127 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeBootVolumeBackupCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeBootVolumeBackupCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeBootVolumeCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeBootVolumeCompartmentDetails.java index 2a153fa86b6..1003afda424 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeBootVolumeCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeBootVolumeCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeByoasnCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeByoasnCompartmentDetails.java index fd2553ae004..69e38359006 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeByoasnCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeByoasnCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeByoipRangeCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeByoipRangeCompartmentDetails.java index e412565eb61..736c7e866a6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeByoipRangeCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeByoipRangeCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeCaptureFilterCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeCaptureFilterCompartmentDetails.java index 5a8e0d6c84c..0b6e4be8bb3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeCaptureFilterCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeCaptureFilterCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeClusterNetworkCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeClusterNetworkCompartmentDetails.java index fe29d80ae3e..6c3722465f5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeClusterNetworkCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeClusterNetworkCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeCapacityReservationCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeCapacityReservationCompartmentDetails.java index b11d4448af9..fe87afa8711 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeCapacityReservationCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeCapacityReservationCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeCapacityTopologyCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeCapacityTopologyCompartmentDetails.java index d9e391d553e..819353cbc40 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeCapacityTopologyCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeCapacityTopologyCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeClusterCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeClusterCompartmentDetails.java index 5fa7f5476bf..adcf1bf765e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeClusterCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeClusterCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeGpuMemoryClusterCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeGpuMemoryClusterCompartmentDetails.java index 9da2507af47..f3263ecf665 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeGpuMemoryClusterCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeGpuMemoryClusterCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeGpuMemoryFabricCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeGpuMemoryFabricCompartmentDetails.java index c54670e93a0..8cb038d8ac6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeGpuMemoryFabricCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeGpuMemoryFabricCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeHostCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeHostCompartmentDetails.java index ef0d6a0d32c..a937e0e54b3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeHostCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeHostCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeHostGroupCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeHostGroupCompartmentDetails.java index 863cd8c0342..3e91ffece11 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeHostGroupCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeHostGroupCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeImageCapabilitySchemaCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeImageCapabilitySchemaCompartmentDetails.java index da2ebd49c48..5a9a9528e05 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeImageCapabilitySchemaCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeComputeImageCapabilitySchemaCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeCpeCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeCpeCompartmentDetails.java index 2d9ccb1489a..17782af07bc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeCpeCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeCpeCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeCrossConnectCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeCrossConnectCompartmentDetails.java index f2da0444061..5fc92880244 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeCrossConnectCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeCrossConnectCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeCrossConnectGroupCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeCrossConnectGroupCompartmentDetails.java index 63eb1d2b4ee..cccf0434eda 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeCrossConnectGroupCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeCrossConnectGroupCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeDedicatedVmHostCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeDedicatedVmHostCompartmentDetails.java index fe2e8974656..dfa87c0f33d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeDedicatedVmHostCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeDedicatedVmHostCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeDhcpOptionsCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeDhcpOptionsCompartmentDetails.java index c7056467913..02ec18bcfde 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeDhcpOptionsCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeDhcpOptionsCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeDrgCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeDrgCompartmentDetails.java index 689f21e500e..2e50a5d93fe 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeDrgCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeDrgCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeIPSecConnectionCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeIPSecConnectionCompartmentDetails.java index a4985e3a2ce..9bfe07e70f6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeIPSecConnectionCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeIPSecConnectionCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeImageCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeImageCompartmentDetails.java index 4c5fae7ac44..989e53c8e43 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeImageCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeImageCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeInstanceCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeInstanceCompartmentDetails.java index 7120b05bfb3..5e287c6b5f3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeInstanceCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeInstanceCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeInstanceConfigurationCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeInstanceConfigurationCompartmentDetails.java index c5aa5caea31..f90c2a72fce 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeInstanceConfigurationCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeInstanceConfigurationCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeInstancePoolCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeInstancePoolCompartmentDetails.java index 78d56fee2a1..859ed6278b3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeInstancePoolCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeInstancePoolCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeInternetGatewayCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeInternetGatewayCompartmentDetails.java index f49663f931d..2fe4a068dbf 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeInternetGatewayCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeInternetGatewayCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeLocalPeeringGatewayCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeLocalPeeringGatewayCompartmentDetails.java index 5f5f76a1e01..399503e149d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeLocalPeeringGatewayCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeLocalPeeringGatewayCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeNatGatewayCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeNatGatewayCompartmentDetails.java index ebd420a00cc..6f220ee8462 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeNatGatewayCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeNatGatewayCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeNetworkSecurityGroupCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeNetworkSecurityGroupCompartmentDetails.java index 6b6b01e0ddd..8218d9b1bd1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeNetworkSecurityGroupCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeNetworkSecurityGroupCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangePublicIpCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangePublicIpCompartmentDetails.java index afbd0541cb2..b923f9cbfec 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangePublicIpCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangePublicIpCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangePublicIpPoolCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangePublicIpPoolCompartmentDetails.java index 31c5194743b..4e89cf56240 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangePublicIpPoolCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangePublicIpPoolCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeRemotePeeringConnectionCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeRemotePeeringConnectionCompartmentDetails.java index 3bc74851508..162e9d91bc6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeRemotePeeringConnectionCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeRemotePeeringConnectionCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeRouteTableCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeRouteTableCompartmentDetails.java index 3fc3413216a..5d071fee696 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeRouteTableCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeRouteTableCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeSecurityListCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeSecurityListCompartmentDetails.java index 625277f71e8..80d4279dac5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeSecurityListCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeSecurityListCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeServiceGatewayCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeServiceGatewayCompartmentDetails.java index af76d52b529..6d58e1d8c68 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeServiceGatewayCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeServiceGatewayCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeSubnetCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeSubnetCompartmentDetails.java index ee43be4a0cf..65f8febf44a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeSubnetCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeSubnetCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVcnCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVcnCompartmentDetails.java index f2cefa86006..de76f1b2bda 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVcnCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVcnCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVirtualCircuitCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVirtualCircuitCompartmentDetails.java index 089c36c327a..a7e831c6da8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVirtualCircuitCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVirtualCircuitCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVlanCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVlanCompartmentDetails.java index 7e6bdb25189..e754194aa02 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVlanCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVlanCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVolumeBackupCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVolumeBackupCompartmentDetails.java index 1155720645e..69fb315256d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVolumeBackupCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVolumeBackupCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVolumeCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVolumeCompartmentDetails.java index 4477db285c9..bd666a00a74 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVolumeCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVolumeCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVolumeGroupBackupCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVolumeGroupBackupCompartmentDetails.java index 559ea68750a..8650a6d941e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVolumeGroupBackupCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVolumeGroupBackupCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVolumeGroupCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVolumeGroupCompartmentDetails.java index 74e697bc9f1..76bd72ccac8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVolumeGroupCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVolumeGroupCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVtapCompartmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVtapCompartmentDetails.java index afa463861c5..a08924c6fb0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVtapCompartmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ChangeVtapCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ClusterConfigDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ClusterConfigDetails.java index bed3aaadd35..9630510adf6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ClusterConfigDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ClusterConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ClusterConfigurationDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ClusterConfigurationDetails.java index c7506eaa7ef..788abb84f6a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ClusterConfigurationDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ClusterConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ClusterNetwork.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ClusterNetwork.java index 05785528faa..42c3817d594 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ClusterNetwork.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ClusterNetwork.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ClusterNetworkPlacementConfigurationDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ClusterNetworkPlacementConfigurationDetails.java index f9a45520dfd..a7c48babb6d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ClusterNetworkPlacementConfigurationDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ClusterNetworkPlacementConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ClusterNetworkSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ClusterNetworkSummary.java index be022f0cb14..5badde23ed8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ClusterNetworkSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ClusterNetworkSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CompartmentInternal.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CompartmentInternal.java index 80d6f621e6e..adfaf40acd3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CompartmentInternal.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CompartmentInternal.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComponentVersion.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComponentVersion.java index ae8df8b46ef..64422208120 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComponentVersion.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComponentVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeBareMetalHost.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeBareMetalHost.java index 0e7f42314b6..5c89101d9e7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeBareMetalHost.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeBareMetalHost.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeBareMetalHostCollection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeBareMetalHostCollection.java index a35991b49af..c679f643b51 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeBareMetalHostCollection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeBareMetalHostCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeBareMetalHostPlacementConstraintDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeBareMetalHostPlacementConstraintDetails.java index f79f7cee4dc..8601de90e80 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeBareMetalHostPlacementConstraintDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeBareMetalHostPlacementConstraintDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeBareMetalHostSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeBareMetalHostSummary.java index 59b259ec85c..b8ba30b5e26 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeBareMetalHostSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeBareMetalHostSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityReport.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityReport.java index e9bead100f4..c412155b0ac 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityReport.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityReservation.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityReservation.java index 1df5da6dc91..e8946db3c22 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityReservation.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityReservation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityReservationInstanceShapeSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityReservationInstanceShapeSummary.java index 7dff9613003..2b43722dd14 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityReservationInstanceShapeSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityReservationInstanceShapeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityReservationSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityReservationSummary.java index 2a44f83732a..461e1cbb056 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityReservationSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityReservationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityTopology.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityTopology.java index 150745e3fbe..aa8ddba6a24 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityTopology.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityTopology.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityTopologyCollection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityTopologyCollection.java index 7b4d1453f3d..c98239fedb9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityTopologyCollection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityTopologyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityTopologySummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityTopologySummary.java index 683e6d0fae4..b44fc264cb9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityTopologySummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCapacityTopologySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCluster.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCluster.java index a2da5c82ba0..ec4fff653c2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCluster.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeCluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeClusterCollection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeClusterCollection.java index a0ca6188093..be74ccb698f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeClusterCollection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeClusterCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeClusterSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeClusterSummary.java index b2ebcb0affb..19596e3bc73 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeClusterSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeClusterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGlobalImageCapabilitySchema.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGlobalImageCapabilitySchema.java index 0ab6cd658c5..8d71601042f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGlobalImageCapabilitySchema.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGlobalImageCapabilitySchema.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGlobalImageCapabilitySchemaSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGlobalImageCapabilitySchemaSummary.java index 615f5c4af4a..efee737f19a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGlobalImageCapabilitySchemaSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGlobalImageCapabilitySchemaSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGlobalImageCapabilitySchemaVersion.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGlobalImageCapabilitySchemaVersion.java index 1f0ee82d5e9..c7ed9dd190f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGlobalImageCapabilitySchemaVersion.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGlobalImageCapabilitySchemaVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGlobalImageCapabilitySchemaVersionSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGlobalImageCapabilitySchemaVersionSummary.java index 3fff04d652a..35fe4b075df 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGlobalImageCapabilitySchemaVersionSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGlobalImageCapabilitySchemaVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryCluster.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryCluster.java index b8b43a1e2a9..360a8ff0acd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryCluster.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryCluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryClusterCollection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryClusterCollection.java index a288545826a..d3055184493 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryClusterCollection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryClusterCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryClusterInstanceCollection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryClusterInstanceCollection.java index a1e32e36246..068363845b5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryClusterInstanceCollection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryClusterInstanceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryClusterInstanceSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryClusterInstanceSummary.java index c9bcf904ec3..6a30f9e47e7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryClusterInstanceSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryClusterInstanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryClusterSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryClusterSummary.java index 215cef65b48..7e79dd987b0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryClusterSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryClusterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryFabric.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryFabric.java index 3c345428e46..125043ffe98 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryFabric.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryFabric.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryFabricCollection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryFabricCollection.java index f7e6cc8327c..a2b125c376a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryFabricCollection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryFabricCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryFabricSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryFabricSummary.java index f7e798bc569..e16176625ce 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryFabricSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeGpuMemoryFabricSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHost.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHost.java index 0fcb7947a0c..d17cbfae416 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHost.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHost.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostCollection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostCollection.java index e392b797fd3..42357eeda3d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostCollection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostConfigurationCheckDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostConfigurationCheckDetails.java index 263eba3ee18..27401c3002c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostConfigurationCheckDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostConfigurationCheckDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostConfigurationData.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostConfigurationData.java index f742795016d..de4eafd6fc8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostConfigurationData.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostConfigurationData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostGroup.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostGroup.java index 4b126ec6952..907c77953c3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostGroup.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostGroupCollection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostGroupCollection.java index 43ac0db1ff9..ee38de05606 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostGroupCollection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostGroupCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostGroupSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostGroupSummary.java index 77a2f264331..07789866790 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostGroupSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostGroupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostSummary.java index 03b6e1cad98..8649252ce03 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHostSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHpcIsland.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHpcIsland.java index 653612c3ccc..545b122fc7e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHpcIsland.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHpcIsland.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHpcIslandCollection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHpcIslandCollection.java index 5568c0e2488..91726c8146c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHpcIslandCollection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHpcIslandCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHpcIslandSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHpcIslandSummary.java index 5217e57b448..dfc70af7984 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHpcIslandSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeHpcIslandSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeImageCapabilitySchema.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeImageCapabilitySchema.java index 5cac6539c12..29414ee011f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeImageCapabilitySchema.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeImageCapabilitySchema.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeImageCapabilitySchemaSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeImageCapabilitySchemaSummary.java index 6266afa1b8b..fbdd9ce6e7a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeImageCapabilitySchemaSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeImageCapabilitySchemaSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeInstanceDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeInstanceDetails.java index 20264e1973b..c59d537c546 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeInstanceDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeInstanceOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeInstanceOptions.java index 99ac63be488..9f8c846519c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeInstanceOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeInstanceOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeNetworkBlock.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeNetworkBlock.java index 1892ff73dd7..3b7db69046f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeNetworkBlock.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeNetworkBlock.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeNetworkBlockCollection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeNetworkBlockCollection.java index 5f92ca97760..d9102717fae 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeNetworkBlockCollection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeNetworkBlockCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeNetworkBlockSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeNetworkBlockSummary.java index f15fcb1997d..38667c29a9e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeNetworkBlockSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ComputeNetworkBlockSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ConfigurationState.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ConfigurationState.java index 48bf5e5d01b..ac31c8d1b64 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ConfigurationState.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ConfigurationState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ConnectLocalPeeringGatewaysDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ConnectLocalPeeringGatewaysDetails.java index 06972b06d7a..eff42364775 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ConnectLocalPeeringGatewaysDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ConnectLocalPeeringGatewaysDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ConnectRemotePeeringConnectionsDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ConnectRemotePeeringConnectionsDetails.java index 203728484c9..a5f2c07fcdf 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ConnectRemotePeeringConnectionsDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ConnectRemotePeeringConnectionsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ConsoleHistory.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ConsoleHistory.java index f5da5270a92..c51814db7d9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ConsoleHistory.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ConsoleHistory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CopyBootVolumeBackupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CopyBootVolumeBackupDetails.java index 91b25c0e3bb..3612f1b08d5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CopyBootVolumeBackupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CopyBootVolumeBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CopyVolumeBackupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CopyVolumeBackupDetails.java index 41582473e05..5d005129c36 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CopyVolumeBackupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CopyVolumeBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CopyVolumeGroupBackupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CopyVolumeGroupBackupDetails.java index b36d5eca8c6..ddf2c2f2d28 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CopyVolumeGroupBackupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CopyVolumeGroupBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/Cpe.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/Cpe.java index dd8f8eef230..54eecbd9327 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/Cpe.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/Cpe.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CpeDeviceConfigAnswer.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CpeDeviceConfigAnswer.java index 5439d2fb1f6..171b95a5c46 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CpeDeviceConfigAnswer.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CpeDeviceConfigAnswer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CpeDeviceConfigQuestion.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CpeDeviceConfigQuestion.java index 806f1e69a86..2fabd0d6f5b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CpeDeviceConfigQuestion.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CpeDeviceConfigQuestion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CpeDeviceInfo.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CpeDeviceInfo.java index 1b285fde6f4..c7c958d6c91 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CpeDeviceInfo.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CpeDeviceInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CpeDeviceShapeDetail.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CpeDeviceShapeDetail.java index 858ba7bdb83..8a93d6a8e18 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CpeDeviceShapeDetail.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CpeDeviceShapeDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CpeDeviceShapeSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CpeDeviceShapeSummary.java index 4ef1f3544ef..cfb6e278c67 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CpeDeviceShapeSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CpeDeviceShapeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateAppCatalogSubscriptionDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateAppCatalogSubscriptionDetails.java index c7872379167..806ca56fc48 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateAppCatalogSubscriptionDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateAppCatalogSubscriptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateBootVolumeBackupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateBootVolumeBackupDetails.java index dc0d1481d2a..fcde0c4a1f2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateBootVolumeBackupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateBootVolumeBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateBootVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateBootVolumeDetails.java index 254e8822288..a215223d7e8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateBootVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateBootVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateByoasnDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateByoasnDetails.java index 8a63960fb9d..dc26a41deb4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateByoasnDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateByoasnDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateByoipRangeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateByoipRangeDetails.java index 1d74eef9443..1fdfe5b9e51 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateByoipRangeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateByoipRangeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCapacityReportShapeAvailabilityDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCapacityReportShapeAvailabilityDetails.java index 6e3ebbcabbf..e07fa352531 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCapacityReportShapeAvailabilityDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCapacityReportShapeAvailabilityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCapacitySourceDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCapacitySourceDetails.java index c7e4e01d62a..e5a458501e2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCapacitySourceDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCapacitySourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCaptureFilterDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCaptureFilterDetails.java index 3414491baeb..4512e12446d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCaptureFilterDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCaptureFilterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateClusterNetworkDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateClusterNetworkDetails.java index 65509f2a479..de882ef325a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateClusterNetworkDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateClusterNetworkDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateClusterNetworkInstancePoolDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateClusterNetworkInstancePoolDetails.java index 390534b910c..4f7d630979e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateClusterNetworkInstancePoolDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateClusterNetworkInstancePoolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeCapacityReportDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeCapacityReportDetails.java index e18cdd63510..a6876527072 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeCapacityReportDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeCapacityReportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeCapacityReservationDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeCapacityReservationDetails.java index 097b57ea1ab..5b05e526e47 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeCapacityReservationDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeCapacityReservationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeCapacityTopologyDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeCapacityTopologyDetails.java index dadf95570f7..2583810ec73 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeCapacityTopologyDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeCapacityTopologyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeClusterDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeClusterDetails.java index 434b33390b0..ccd7bc3dccc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeClusterDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeGpuMemoryClusterDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeGpuMemoryClusterDetails.java index ac91200cea8..022724f4c0c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeGpuMemoryClusterDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeGpuMemoryClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeHostGroupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeHostGroupDetails.java index 5d42a78aa93..10defb77575 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeHostGroupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeHostGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeImageCapabilitySchemaDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeImageCapabilitySchemaDetails.java index b6e1e57c6f5..ba3175a1528 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeImageCapabilitySchemaDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateComputeImageCapabilitySchemaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCpeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCpeDetails.java index 41fd2a65c8b..54980369b23 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCpeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCpeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCrossConnectDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCrossConnectDetails.java index e2ea5195c8e..dca12d0ef48 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCrossConnectDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCrossConnectDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCrossConnectGroupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCrossConnectGroupDetails.java index 307fc742d4e..efe741005f4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCrossConnectGroupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateCrossConnectGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDedicatedCapacitySourceDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDedicatedCapacitySourceDetails.java index 6a42890880e..758e633c644 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDedicatedCapacitySourceDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDedicatedCapacitySourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDedicatedVmHostDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDedicatedVmHostDetails.java index 290c8eaed39..c5812b39385 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDedicatedVmHostDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDedicatedVmHostDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDhcpDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDhcpDetails.java index 035124153be..ae1a59aa1c8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDhcpDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDhcpDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDrgAttachmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDrgAttachmentDetails.java index 5665f64186f..c179414eba4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDrgAttachmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDrgAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDrgDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDrgDetails.java index 63933ad811b..36c1e061594 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDrgDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDrgDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDrgRouteDistributionDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDrgRouteDistributionDetails.java index c0b43cbb146..b65da236056 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDrgRouteDistributionDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDrgRouteDistributionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDrgRouteTableDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDrgRouteTableDetails.java index 843fa818a05..93a555b1581 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDrgRouteTableDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateDrgRouteTableDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateIPSecConnectionDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateIPSecConnectionDetails.java index eaa0561375f..c5359b4db67 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateIPSecConnectionDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateIPSecConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateIPSecConnectionTunnelDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateIPSecConnectionTunnelDetails.java index 4ca90dccf7a..e88046a3dee 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateIPSecConnectionTunnelDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateIPSecConnectionTunnelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateIPSecTunnelBgpSessionDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateIPSecTunnelBgpSessionDetails.java index f80892e2b70..ec8c72fd3c7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateIPSecTunnelBgpSessionDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateIPSecTunnelBgpSessionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateIPSecTunnelEncryptionDomainDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateIPSecTunnelEncryptionDomainDetails.java index be8149b1aae..b984aaaee9b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateIPSecTunnelEncryptionDomainDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateIPSecTunnelEncryptionDomainDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateImageDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateImageDetails.java index b2a0cb34f37..541d5324e43 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateImageDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstanceConfigurationBase.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstanceConfigurationBase.java index c75e0bcf45e..3c946d06abe 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstanceConfigurationBase.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstanceConfigurationBase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstanceConfigurationDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstanceConfigurationDetails.java index b9cff169170..42340021ffe 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstanceConfigurationDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstanceConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstanceConfigurationFromInstanceDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstanceConfigurationFromInstanceDetails.java index d58e171b496..59a9629717c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstanceConfigurationFromInstanceDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstanceConfigurationFromInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstanceConsoleConnectionDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstanceConsoleConnectionDetails.java index 0d1a919cbd4..e73c52d9034 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstanceConsoleConnectionDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstanceConsoleConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstancePoolDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstancePoolDetails.java index cf274abcf00..9b2fc63ae1f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstancePoolDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstancePoolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstancePoolPlacementConfigurationDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstancePoolPlacementConfigurationDetails.java index d2ce9d25012..01c392fed57 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstancePoolPlacementConfigurationDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInstancePoolPlacementConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInternetGatewayDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInternetGatewayDetails.java index eab1c04d432..dc5d72a020d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInternetGatewayDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateInternetGatewayDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateIpv6Details.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateIpv6Details.java index 009be0c5a37..7eb64c27d5c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateIpv6Details.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateIpv6Details.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateLocalPeeringGatewayDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateLocalPeeringGatewayDetails.java index 3df2c8fcbfb..70bf4e5d2db 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateLocalPeeringGatewayDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateLocalPeeringGatewayDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateMacsecKey.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateMacsecKey.java index b9e91c6ef30..d5126d5d969 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateMacsecKey.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateMacsecKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateMacsecProperties.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateMacsecProperties.java index 691100c255e..639365e344f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateMacsecProperties.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateMacsecProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateNatGatewayDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateNatGatewayDetails.java index 11772549734..287cc914ecd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateNatGatewayDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateNatGatewayDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateNetworkSecurityGroupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateNetworkSecurityGroupDetails.java index d67bab7449a..6e9de3fa823 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateNetworkSecurityGroupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateNetworkSecurityGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreatePrivateIpDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreatePrivateIpDetails.java index 492fce7fe59..6a1d8ca6aec 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreatePrivateIpDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreatePrivateIpDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreatePublicIpDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreatePublicIpDetails.java index bf697af3fbf..a092b97ee9f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreatePublicIpDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreatePublicIpDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreatePublicIpPoolDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreatePublicIpPoolDetails.java index 6cc95273520..3618a397ae8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreatePublicIpPoolDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreatePublicIpPoolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateRemotePeeringConnectionDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateRemotePeeringConnectionDetails.java index 9b9bca041be..aed46ac5daa 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateRemotePeeringConnectionDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateRemotePeeringConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateRouteTableDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateRouteTableDetails.java index 651bdd89290..e9dae39025d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateRouteTableDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateRouteTableDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateSecurityListDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateSecurityListDetails.java index 747521129b0..af5c47360e7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateSecurityListDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateSecurityListDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateServiceGatewayDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateServiceGatewayDetails.java index f4865437f51..4f54ad29ab5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateServiceGatewayDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateServiceGatewayDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateSubnetDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateSubnetDetails.java index 5fb49c6ae41..0de10a6d0da 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateSubnetDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateSubnetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVcnDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVcnDetails.java index 2a8d6393e3f..c59754f56e9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVcnDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVcnDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVirtualCircuitDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVirtualCircuitDetails.java index ddedd019d02..bd52fbc35fa 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVirtualCircuitDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVirtualCircuitDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVirtualCircuitPublicPrefixDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVirtualCircuitPublicPrefixDetails.java index b81b3394e47..4a48ee0167f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVirtualCircuitPublicPrefixDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVirtualCircuitPublicPrefixDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVlanDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVlanDetails.java index b0391a5894a..4e913fae97e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVlanDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVlanDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVnicDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVnicDetails.java index d050937294e..187b3bff430 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVnicDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVnicDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeBackupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeBackupDetails.java index 7a5800738f3..64a26d5b490 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeBackupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeBackupPolicyAssignmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeBackupPolicyAssignmentDetails.java index 0f0fce45032..c33abe5a528 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeBackupPolicyAssignmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeBackupPolicyAssignmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeBackupPolicyDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeBackupPolicyDetails.java index 9c9926619f4..d7ffb1f47c2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeBackupPolicyDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeBackupPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeDetails.java index f32c0e6cf83..392d152907f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeGroupBackupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeGroupBackupDetails.java index fb04fc8330b..cd69df301b5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeGroupBackupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeGroupBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeGroupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeGroupDetails.java index 121e565789f..ca374f5a2a3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeGroupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVolumeGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVtapDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVtapDetails.java index 105a875bbe7..3f13b2e1055 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVtapDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CreateVtapDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnect.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnect.java index 0680195ffde..d80821369e3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnect.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnect.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectGroup.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectGroup.java index 571f1eb8d55..f68e745d57c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectGroup.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectLocation.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectLocation.java index 76cebb4a424..8ffa09d9a57 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectLocation.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectMapping.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectMapping.java index 905fbb8d0a6..dcaa4bd2548 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectMapping.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectMappingDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectMappingDetails.java index e0ae2add45d..e77d15d6835 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectMappingDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectMappingDetailsCollection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectMappingDetailsCollection.java index 2a2bb5524f5..dc306700457 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectMappingDetailsCollection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectMappingDetailsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectPortSpeedShape.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectPortSpeedShape.java index fbcb6f252df..0535973661c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectPortSpeedShape.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectPortSpeedShape.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectStatus.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectStatus.java index fb4be8fdb22..9b1a7cadaf0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectStatus.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/CrossConnectStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedCapacitySource.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedCapacitySource.java index 164f7ea2a8c..bbb9541a213 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedCapacitySource.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedCapacitySource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedVmHost.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedVmHost.java index d3e30618cf6..68d5968f3e4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedVmHost.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedVmHost.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedVmHostInstanceShapeSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedVmHostInstanceShapeSummary.java index f419e9ff590..c54d6a984a2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedVmHostInstanceShapeSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedVmHostInstanceShapeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedVmHostInstanceSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedVmHostInstanceSummary.java index b34898e8353..7a1b3973fec 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedVmHostInstanceSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedVmHostInstanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedVmHostShapeSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedVmHostShapeSummary.java index 3cace6c061a..bef4964d3c3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedVmHostShapeSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedVmHostShapeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedVmHostSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedVmHostSummary.java index cdb5b6eec5b..31533a94974 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedVmHostSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DedicatedVmHostSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DefaultDrgRouteTables.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DefaultDrgRouteTables.java index 79243c2beac..7a812ef16b5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DefaultDrgRouteTables.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DefaultDrgRouteTables.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DefaultPhaseOneParameters.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DefaultPhaseOneParameters.java index cbd4855f583..4fbe329bfa0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DefaultPhaseOneParameters.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DefaultPhaseOneParameters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DefaultPhaseTwoParameters.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DefaultPhaseTwoParameters.java index dfc89e00a8b..db83e1cb826 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DefaultPhaseTwoParameters.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DefaultPhaseTwoParameters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DeleteVirtualCircuitPublicPrefixDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DeleteVirtualCircuitPublicPrefixDetails.java index a88fa9e481e..82b60c1ce5e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DeleteVirtualCircuitPublicPrefixDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DeleteVirtualCircuitPublicPrefixDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DetachComputeHostGroupHostDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DetachComputeHostGroupHostDetails.java index 067be69f654..ec89bb16614 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DetachComputeHostGroupHostDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DetachComputeHostGroupHostDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DetachInstancePoolInstanceDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DetachInstancePoolInstanceDetails.java index 6ca6b7f7f74..d6fc2fce9fb 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DetachInstancePoolInstanceDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DetachInstancePoolInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DetachLoadBalancerDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DetachLoadBalancerDetails.java index c527c4efef3..bba37ec6395 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DetachLoadBalancerDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DetachLoadBalancerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DetachedVolumeAutotunePolicy.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DetachedVolumeAutotunePolicy.java index 9c309abe829..29e0a39e432 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DetachedVolumeAutotunePolicy.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DetachedVolumeAutotunePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/Device.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/Device.java index dca62ad76bd..302230c1a1d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/Device.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/Device.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DhcpDnsOption.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DhcpDnsOption.java index 82557046cab..b2aeff10382 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DhcpDnsOption.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DhcpDnsOption.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DhcpOption.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DhcpOption.java index e16d70b7516..7c4fed010de 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DhcpOption.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DhcpOption.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DhcpOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DhcpOptions.java index 8410b00ee14..bca54c37382 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DhcpOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DhcpOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DhcpSearchDomainOption.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DhcpSearchDomainOption.java index 36afe31bf14..0b17209254b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DhcpSearchDomainOption.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DhcpSearchDomainOption.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DpdConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DpdConfig.java index 3fc127d714f..d1c4127a475 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DpdConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DpdConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/Drg.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/Drg.java index cde2bdf2dac..fa0b4780fcc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/Drg.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/Drg.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachment.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachment.java index bee6b9ff18d..d127ae2581b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachment.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentIdDrgRouteDistributionMatchCriteria.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentIdDrgRouteDistributionMatchCriteria.java index c8c26b0f2f8..732d4c2d033 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentIdDrgRouteDistributionMatchCriteria.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentIdDrgRouteDistributionMatchCriteria.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentInfo.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentInfo.java index 238f1b9671b..04a7f5f8348 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentInfo.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentMatchAllDrgRouteDistributionMatchCriteria.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentMatchAllDrgRouteDistributionMatchCriteria.java index 940aa7c2e33..98e0aa8ab2a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentMatchAllDrgRouteDistributionMatchCriteria.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentMatchAllDrgRouteDistributionMatchCriteria.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentNetworkCreateDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentNetworkCreateDetails.java index a7718c06dc5..c7d60b210ac 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentNetworkCreateDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentNetworkCreateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentNetworkDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentNetworkDetails.java index c678ff64164..111f161c44f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentNetworkDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentNetworkDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentNetworkUpdateDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentNetworkUpdateDetails.java index 00caff8108a..726a651a9a0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentNetworkUpdateDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentNetworkUpdateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentTypeDrgRouteDistributionMatchCriteria.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentTypeDrgRouteDistributionMatchCriteria.java index 30eefe26460..4b706934ef1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentTypeDrgRouteDistributionMatchCriteria.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgAttachmentTypeDrgRouteDistributionMatchCriteria.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgCustomer.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgCustomer.java index 67c20d4db0b..10828a87c34 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgCustomer.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgCustomer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgCustomerResource.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgCustomerResource.java index 813c3d708f5..9befe993300 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgCustomerResource.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgCustomerResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgPromotionStatusResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgPromotionStatusResponse.java index a0c146753e7..0029dffceea 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgPromotionStatusResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgPromotionStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRedundancyStatus.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRedundancyStatus.java index df13d25eb36..09cb533bd8a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRedundancyStatus.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRedundancyStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRouteDistribution.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRouteDistribution.java index 986dde23428..486e4d429fb 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRouteDistribution.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRouteDistribution.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRouteDistributionMatchCriteria.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRouteDistributionMatchCriteria.java index 98d1fdbd6ea..64012b1951d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRouteDistributionMatchCriteria.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRouteDistributionMatchCriteria.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRouteDistributionStatement.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRouteDistributionStatement.java index 7ea58820fa7..41a44bd2d22 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRouteDistributionStatement.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRouteDistributionStatement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRouteRule.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRouteRule.java index 00102bb4fbc..bd028c655f2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRouteRule.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRouteRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRouteTable.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRouteTable.java index a5d8d69ad8b..15caa74dd57 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRouteTable.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/DrgRouteTable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/EgressSecurityRule.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/EgressSecurityRule.java index 450ba9a73ff..1a4651b9002 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/EgressSecurityRule.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/EgressSecurityRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/EmulatedVolumeAttachment.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/EmulatedVolumeAttachment.java index 51c90a31e64..3edcdd27541 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/EmulatedVolumeAttachment.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/EmulatedVolumeAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/EncryptionDomainConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/EncryptionDomainConfig.java index 3bd9d9f74f6..dc6e5ffaed3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/EncryptionDomainConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/EncryptionDomainConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/EncryptionInTransitType.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/EncryptionInTransitType.java index 5fb1229b9f1..4c2b52b2721 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/EncryptionInTransitType.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/EncryptionInTransitType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/EnumIntegerImageCapabilityDescriptor.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/EnumIntegerImageCapabilityDescriptor.java index 1705eeda52e..9fba7699d23 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/EnumIntegerImageCapabilityDescriptor.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/EnumIntegerImageCapabilityDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/EnumStringImageCapabilitySchemaDescriptor.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/EnumStringImageCapabilitySchemaDescriptor.java index 49e11b3c6c7..b86c633278f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/EnumStringImageCapabilitySchemaDescriptor.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/EnumStringImageCapabilitySchemaDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ExportImageDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ExportImageDetails.java index bb27aa7bab2..8e294240c9d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ExportImageDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ExportImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ExportImageViaObjectStorageTupleDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ExportImageViaObjectStorageTupleDetails.java index 33bdef336c9..1b9a58dabce 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ExportImageViaObjectStorageTupleDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ExportImageViaObjectStorageTupleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ExportImageViaObjectStorageUriDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ExportImageViaObjectStorageUriDetails.java index 5fa31b73fc3..72bd9d3d0e3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ExportImageViaObjectStorageUriDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ExportImageViaObjectStorageUriDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/FastConnectProviderService.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/FastConnectProviderService.java index 8780681f22f..c80a2f7e9fa 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/FastConnectProviderService.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/FastConnectProviderService.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/FastConnectProviderServiceKey.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/FastConnectProviderServiceKey.java index 80e73b5ea93..6d2d215aa7a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/FastConnectProviderServiceKey.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/FastConnectProviderServiceKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/FirmwareBundle.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/FirmwareBundle.java index 20b6e609bc3..329b064fe35 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/FirmwareBundle.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/FirmwareBundle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/FirmwareBundleSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/FirmwareBundleSummary.java index 462ea425aaf..fa7293c756a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/FirmwareBundleSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/FirmwareBundleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/FirmwareBundleTransitions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/FirmwareBundleTransitions.java index e0fd790d634..fd2b8dbee8e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/FirmwareBundleTransitions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/FirmwareBundleTransitions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/FirmwareBundlesCollection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/FirmwareBundlesCollection.java index cf394e9d481..dc5ed66f7c0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/FirmwareBundlesCollection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/FirmwareBundlesCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/FlowLogCaptureFilterRuleDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/FlowLogCaptureFilterRuleDetails.java index 62ecda7f4b9..b5af713dfc9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/FlowLogCaptureFilterRuleDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/FlowLogCaptureFilterRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/GenericBmLaunchInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/GenericBmLaunchInstancePlatformConfig.java index 6d13b6182a3..d04a20dabaa 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/GenericBmLaunchInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/GenericBmLaunchInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/GenericBmPlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/GenericBmPlatformConfig.java index 65e297b4406..f96d4c7579d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/GenericBmPlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/GenericBmPlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/GetIpInventoryVcnOverlapDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/GetIpInventoryVcnOverlapDetails.java index 38a4ff9b2b8..6126a613baa 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/GetIpInventoryVcnOverlapDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/GetIpInventoryVcnOverlapDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/GetPublicIpByIpAddressDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/GetPublicIpByIpAddressDetails.java index d516bccfc0b..c89779763ce 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/GetPublicIpByIpAddressDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/GetPublicIpByIpAddressDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/GetPublicIpByPrivateIpIdDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/GetPublicIpByPrivateIpIdDetails.java index 38da18e0819..70d498986f0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/GetPublicIpByPrivateIpIdDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/GetPublicIpByPrivateIpIdDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/HostGroupConfiguration.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/HostGroupConfiguration.java index 96409832760..466b17e6f85 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/HostGroupConfiguration.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/HostGroupConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/HostGroupPlacementConstraintDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/HostGroupPlacementConstraintDetails.java index 84a3b14f698..24834aa4736 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/HostGroupPlacementConstraintDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/HostGroupPlacementConstraintDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnection.java index eaea6514650..1a4318bdd8a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnectionDeviceConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnectionDeviceConfig.java index 75bffd44702..8a577202f81 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnectionDeviceConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnectionDeviceConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnectionDeviceStatus.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnectionDeviceStatus.java index ced7e4af235..7060a7bf545 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnectionDeviceStatus.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnectionDeviceStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnectionTunnel.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnectionTunnel.java index 3037ae215f8..5b0809da2fc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnectionTunnel.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnectionTunnel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnectionTunnelErrorDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnectionTunnelErrorDetails.java index 7b17bc0d39f..320982b943a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnectionTunnelErrorDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnectionTunnelErrorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnectionTunnelSharedSecret.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnectionTunnelSharedSecret.java index 04b2cc123e9..b68f6d66686 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnectionTunnelSharedSecret.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IPSecConnectionTunnelSharedSecret.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IScsiVolumeAttachment.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IScsiVolumeAttachment.java index 4687b5d9cb8..1c6bafabaa7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IScsiVolumeAttachment.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IScsiVolumeAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IcmpOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IcmpOptions.java index f66f7e71182..920699a2cfe 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IcmpOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IcmpOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/Image.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/Image.java index 1d699944f62..4da5c0993ce 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/Image.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/Image.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageCapabilitySchemaDescriptor.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageCapabilitySchemaDescriptor.java index b1fdc8d4014..3116ae30c64 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageCapabilitySchemaDescriptor.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageCapabilitySchemaDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageMemoryConstraints.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageMemoryConstraints.java index 99bbdd7d772..fd0f30f1a6a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageMemoryConstraints.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageMemoryConstraints.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageOcpuConstraints.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageOcpuConstraints.java index 628e18925dc..729beac9ea6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageOcpuConstraints.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageOcpuConstraints.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageShapeCompatibilityEntry.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageShapeCompatibilityEntry.java index a5c1cdf89ea..ad37ae32f18 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageShapeCompatibilityEntry.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageShapeCompatibilityEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageShapeCompatibilitySummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageShapeCompatibilitySummary.java index dcb2fc30805..aac6ee0e24d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageShapeCompatibilitySummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageShapeCompatibilitySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageSourceDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageSourceDetails.java index 79b97086ae6..d51dba3b0f2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageSourceDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageSourceViaObjectStorageTupleDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageSourceViaObjectStorageTupleDetails.java index 913074ddd0a..0db96af4c39 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageSourceViaObjectStorageTupleDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageSourceViaObjectStorageTupleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageSourceViaObjectStorageUriDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageSourceViaObjectStorageUriDetails.java index 506717ff364..853f533baaa 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageSourceViaObjectStorageUriDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ImageSourceViaObjectStorageUriDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IngressSecurityRule.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IngressSecurityRule.java index 46bba5bc036..dda533714b1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IngressSecurityRule.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IngressSecurityRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/Instance.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/Instance.java index 48392805ff0..c4d57b33e37 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/Instance.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/Instance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceAgentConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceAgentConfig.java index e3cbfb0e03c..ffc4299945a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceAgentConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceAgentConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceAgentFeatures.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceAgentFeatures.java index c865534915f..8c95a21e027 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceAgentFeatures.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceAgentFeatures.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceAgentPluginConfigDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceAgentPluginConfigDetails.java index 910257d689a..c19fef54409 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceAgentPluginConfigDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceAgentPluginConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceAvailabilityConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceAvailabilityConfig.java index 70f3c4777e9..d1be47f9e38 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceAvailabilityConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceAvailabilityConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfiguration.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfiguration.java index 0041539ad34..0d2b15d2211 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfiguration.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAmdMilanBmGpuLaunchInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAmdMilanBmGpuLaunchInstancePlatformConfig.java index b074bc8e58f..fc75056ca1d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAmdMilanBmGpuLaunchInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAmdMilanBmGpuLaunchInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAmdMilanBmLaunchInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAmdMilanBmLaunchInstancePlatformConfig.java index 849dc752d4c..f8634c800c4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAmdMilanBmLaunchInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAmdMilanBmLaunchInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAmdRomeBmGpuLaunchInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAmdRomeBmGpuLaunchInstancePlatformConfig.java index 70c7d3264fc..86746ca9c8a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAmdRomeBmGpuLaunchInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAmdRomeBmGpuLaunchInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAmdRomeBmLaunchInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAmdRomeBmLaunchInstancePlatformConfig.java index 959456d6d20..e3a24384cc1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAmdRomeBmLaunchInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAmdRomeBmLaunchInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAmdVmLaunchInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAmdVmLaunchInstancePlatformConfig.java index a9f67cec579..e67e83bb130 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAmdVmLaunchInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAmdVmLaunchInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAttachVnicDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAttachVnicDetails.java index b64ce6c3e69..8a7b03e9ba7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAttachVnicDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAttachVnicDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAttachVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAttachVolumeDetails.java index 6defc9c4a50..d36ca4adaa6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAttachVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAttachVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAutotunePolicy.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAutotunePolicy.java index 6932c8a8034..b929ac37606 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAutotunePolicy.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAutotunePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAvailabilityConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAvailabilityConfig.java index 744a563cc54..16b9b9ee856 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAvailabilityConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationAvailabilityConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationBlockVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationBlockVolumeDetails.java index 9b262e2e814..a8a82e62a28 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationBlockVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationBlockVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationBlockVolumeReplicaDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationBlockVolumeReplicaDetails.java index 07f465a32ab..f63c9ca9f42 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationBlockVolumeReplicaDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationBlockVolumeReplicaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationCreateVnicDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationCreateVnicDetails.java index 869b8f3be1e..0366629a45a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationCreateVnicDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationCreateVnicDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationCreateVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationCreateVolumeDetails.java index 7ea9a0d021c..af2dd946e2b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationCreateVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationCreateVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationDetachedVolumeAutotunePolicy.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationDetachedVolumeAutotunePolicy.java index 46965e9cbf6..a8b275b8eaf 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationDetachedVolumeAutotunePolicy.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationDetachedVolumeAutotunePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationGenericBmLaunchInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationGenericBmLaunchInstancePlatformConfig.java index e90be4ac96c..4f1e3e50c59 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationGenericBmLaunchInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationGenericBmLaunchInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationHostGroupPlacementConstraintDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationHostGroupPlacementConstraintDetails.java index 299f4c071f7..c59233fae48 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationHostGroupPlacementConstraintDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationHostGroupPlacementConstraintDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceDetails.java index d57c9848649..7dd5b80e555 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceOptions.java index 6ab765e91cb..21c253bfaa6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceSourceDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceSourceDetails.java index 9ef837a4713..fd2ceff770f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceSourceDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceSourceImageFilterDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceSourceImageFilterDetails.java index 20c28a8113d..c1d43ff1236 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceSourceImageFilterDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceSourceImageFilterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceSourceViaBootVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceSourceViaBootVolumeDetails.java index c87e562fb12..fa98b1194f6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceSourceViaBootVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceSourceViaBootVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceSourceViaImageDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceSourceViaImageDetails.java index 4e933cd2c47..c4fbcb29272 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceSourceViaImageDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationInstanceSourceViaImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationIntelIcelakeBmLaunchInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationIntelIcelakeBmLaunchInstancePlatformConfig.java index 555beb55cc2..a933deddbca 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationIntelIcelakeBmLaunchInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationIntelIcelakeBmLaunchInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationIntelSkylakeBmLaunchInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationIntelSkylakeBmLaunchInstancePlatformConfig.java index 28a052b6bbe..3c7c9031dbf 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationIntelSkylakeBmLaunchInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationIntelSkylakeBmLaunchInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationIntelVmLaunchInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationIntelVmLaunchInstancePlatformConfig.java index 802f72b8d37..e56ccaf390a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationIntelVmLaunchInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationIntelVmLaunchInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationIpv6AddressIpv6SubnetCidrPairDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationIpv6AddressIpv6SubnetCidrPairDetails.java index 99d4dc69d20..9d57cf1cd2f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationIpv6AddressIpv6SubnetCidrPairDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationIpv6AddressIpv6SubnetCidrPairDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationIscsiAttachVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationIscsiAttachVolumeDetails.java index d0d0c81d077..c9463f110b6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationIscsiAttachVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationIscsiAttachVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationLaunchInstanceAgentConfigDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationLaunchInstanceAgentConfigDetails.java index 70ed014ebe7..bd116788923 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationLaunchInstanceAgentConfigDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationLaunchInstanceAgentConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationLaunchInstanceDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationLaunchInstanceDetails.java index bfc65becc4a..974d053449f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationLaunchInstanceDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationLaunchInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationLaunchInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationLaunchInstancePlatformConfig.java index 913315c62cc..d3d2f414dcc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationLaunchInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationLaunchInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationLaunchInstanceShapeConfigDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationLaunchInstanceShapeConfigDetails.java index 29b610fefc7..1e80da0d029 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationLaunchInstanceShapeConfigDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationLaunchInstanceShapeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationLaunchOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationLaunchOptions.java index 872e98fad81..f6fa26943ce 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationLaunchOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationLaunchOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationParavirtualizedAttachVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationParavirtualizedAttachVolumeDetails.java index b8f41eafc47..f69b114a827 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationParavirtualizedAttachVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationParavirtualizedAttachVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationPerformanceBasedAutotunePolicy.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationPerformanceBasedAutotunePolicy.java index cf369fe515f..9114a1c2a71 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationPerformanceBasedAutotunePolicy.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationPerformanceBasedAutotunePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationPlacementConstraintDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationPlacementConstraintDetails.java index 7136da587cd..8b4752c5a9c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationPlacementConstraintDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationPlacementConstraintDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationSummary.java index 2a5468eed2b..bd2f56d4420 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationVolumeSourceDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationVolumeSourceDetails.java index e3455ac0352..0512dbe463c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationVolumeSourceDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationVolumeSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationVolumeSourceFromVolumeBackupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationVolumeSourceFromVolumeBackupDetails.java index 04ebe33b078..a8ea00f9d52 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationVolumeSourceFromVolumeBackupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationVolumeSourceFromVolumeBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationVolumeSourceFromVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationVolumeSourceFromVolumeDetails.java index afc6811f35d..a1f19eec1ba 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationVolumeSourceFromVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConfigurationVolumeSourceFromVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConsoleConnection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConsoleConnection.java index a233e5704d0..c9e97dba51a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConsoleConnection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceConsoleConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceCredentials.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceCredentials.java index b5140d7109a..35860d3ff93 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceCredentials.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceMaintenanceAlternativeResolutionActions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceMaintenanceAlternativeResolutionActions.java index 517b1302399..9645856e30a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceMaintenanceAlternativeResolutionActions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceMaintenanceAlternativeResolutionActions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceMaintenanceEvent.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceMaintenanceEvent.java index c46a63a97e2..992d5be3c51 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceMaintenanceEvent.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceMaintenanceEvent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceMaintenanceEventSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceMaintenanceEventSummary.java index 4e09e2b1cad..7d62990f527 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceMaintenanceEventSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceMaintenanceEventSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceMaintenanceReboot.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceMaintenanceReboot.java index 4a975026bad..7423a40703b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceMaintenanceReboot.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceMaintenanceReboot.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceOptions.java index 26e53102016..e89cc62d782 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePool.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePool.java index 4b776129109..8a332f0479b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePool.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePool.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolInstance.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolInstance.java index cefd19c7766..d5a222546ce 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolInstance.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolInstanceLoadBalancerBackend.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolInstanceLoadBalancerBackend.java index 0746bcb9c77..b8c0fd000ca 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolInstanceLoadBalancerBackend.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolInstanceLoadBalancerBackend.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolLifecycleActionsDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolLifecycleActionsDetails.java index 51e7bd3f6c9..2f3966006ea 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolLifecycleActionsDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolLifecycleActionsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolLifecycleManagementDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolLifecycleManagementDetails.java index 2953104ef3b..fc6aa79e9e6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolLifecycleManagementDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolLifecycleManagementDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolLoadBalancerAttachment.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolLoadBalancerAttachment.java index 9259d70c56b..33c13b04c44 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolLoadBalancerAttachment.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolLoadBalancerAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPlacementConfiguration.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPlacementConfiguration.java index 13a956b708b..73bf85914c4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPlacementConfiguration.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPlacementConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPlacementIpv6AddressIpv6SubnetCidrDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPlacementIpv6AddressIpv6SubnetCidrDetails.java index 28a80a956b4..bae17a790bc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPlacementIpv6AddressIpv6SubnetCidrDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPlacementIpv6AddressIpv6SubnetCidrDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPlacementPrimarySubnet.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPlacementPrimarySubnet.java index 4d791ba9e03..a5f5dd6f983 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPlacementPrimarySubnet.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPlacementPrimarySubnet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPlacementSecondaryVnicSubnet.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPlacementSecondaryVnicSubnet.java index 3c90186158a..1d30ffce753 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPlacementSecondaryVnicSubnet.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPlacementSecondaryVnicSubnet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPlacementSubnetDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPlacementSubnetDetails.java index e511a5087e1..3ce0157efca 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPlacementSubnetDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPlacementSubnetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPreTerminationActionDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPreTerminationActionDetails.java index 12e227e6c9e..1af43741c9a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPreTerminationActionDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPreTerminationActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPreTerminationActionHandleTimeoutDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPreTerminationActionHandleTimeoutDetails.java index f06f95c7bff..031a5a76fb1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPreTerminationActionHandleTimeoutDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolPreTerminationActionHandleTimeoutDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolSummary.java index d7725f41eb2..744a8b03df0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePoolSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePowerActionDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePowerActionDetails.java index 9d2834bab3b..379aa3ade51 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePowerActionDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstancePowerActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceReservationConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceReservationConfig.java index 7c335e7ab35..3bca18ae7b6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceReservationConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceReservationConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceReservationConfigDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceReservationConfigDetails.java index a7be1a84b68..13b085ebd2b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceReservationConfigDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceReservationConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceReservationShapeConfigDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceReservationShapeConfigDetails.java index 7c02286e2c3..989818eb21b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceReservationShapeConfigDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceReservationShapeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceShapeConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceShapeConfig.java index e94d068e72b..e72fed6ac66 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceShapeConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceShapeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceSourceDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceSourceDetails.java index 5ef95ebf075..b054cbf5699 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceSourceDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceSourceImageFilterDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceSourceImageFilterDetails.java index 76b107fe55f..c27df498bc9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceSourceImageFilterDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceSourceImageFilterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceSourceViaBootVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceSourceViaBootVolumeDetails.java index 5e5361dc215..e11cad2beb4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceSourceViaBootVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceSourceViaBootVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceSourceViaImageDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceSourceViaImageDetails.java index 7d517408659..78027261179 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceSourceViaImageDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceSourceViaImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceSummary.java index 33ed15c2fef..3947e342339 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InstanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelIcelakeBmLaunchInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelIcelakeBmLaunchInstancePlatformConfig.java index 44ecae4dc78..245ee7a3a24 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelIcelakeBmLaunchInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelIcelakeBmLaunchInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelIcelakeBmPlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelIcelakeBmPlatformConfig.java index ede103ca0d3..519d349dfed 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelIcelakeBmPlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelIcelakeBmPlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelSkylakeBmLaunchInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelSkylakeBmLaunchInstancePlatformConfig.java index 0102879baeb..0aff2e81bfa 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelSkylakeBmLaunchInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelSkylakeBmLaunchInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelSkylakeBmPlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelSkylakeBmPlatformConfig.java index 4d6667d7bc3..db307876497 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelSkylakeBmPlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelSkylakeBmPlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelVmLaunchInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelVmLaunchInstancePlatformConfig.java index 1b1e7f067b1..00c4a958561 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelVmLaunchInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelVmLaunchInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelVmPlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelVmPlatformConfig.java index fa1de8ffa54..2303b17715e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelVmPlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelVmPlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelVmUpdateInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelVmUpdateInstancePlatformConfig.java index 5b0972cc60d..d2d71b06f06 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelVmUpdateInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IntelVmUpdateInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InternetGateway.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InternetGateway.java index 5d7f1296883..1b7b05aa127 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InternetGateway.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InternetGateway.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InventoryIpAddressSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InventoryIpAddressSummary.java index d0c140d6f47..8ea29807a0b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InventoryIpAddressSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InventoryIpAddressSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InventoryResourceSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InventoryResourceSummary.java index 84d02770eb9..16011186b96 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InventoryResourceSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InventoryResourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InventorySubnetCidrBlockSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InventorySubnetCidrBlockSummary.java index a4032e0cd4d..c74ae25ad61 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InventorySubnetCidrBlockSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InventorySubnetCidrBlockSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InventorySubnetSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InventorySubnetSummary.java index 2dc288e343d..19ced6935c7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InventorySubnetSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InventorySubnetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InventoryVcnCidrBlockSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InventoryVcnCidrBlockSummary.java index 8956f00e3db..5b9e988da71 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InventoryVcnCidrBlockSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InventoryVcnCidrBlockSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/InventoryVcnSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/InventoryVcnSummary.java index d7f706ed7ab..a5cffcc7594 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/InventoryVcnSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/InventoryVcnSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventoryCidrUtilizationCollection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventoryCidrUtilizationCollection.java index 98cc665ea5d..e0f9ac17a63 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventoryCidrUtilizationCollection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventoryCidrUtilizationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventoryCidrUtilizationSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventoryCidrUtilizationSummary.java index 8ed5aef2062..0606c22d773 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventoryCidrUtilizationSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventoryCidrUtilizationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventoryCollection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventoryCollection.java index cf4845db4b4..655d381a6c6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventoryCollection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventoryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventorySubnetResourceCollection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventorySubnetResourceCollection.java index 02dd96896f1..de572d6c05e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventorySubnetResourceCollection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventorySubnetResourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventorySubnetResourceSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventorySubnetResourceSummary.java index f138f4ae383..1487582503c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventorySubnetResourceSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventorySubnetResourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventoryVcnOverlapCollection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventoryVcnOverlapCollection.java index 66d5d261444..9ef304095b6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventoryVcnOverlapCollection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventoryVcnOverlapCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventoryVcnOverlapSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventoryVcnOverlapSummary.java index 6e89f05788c..78cb4a97b13 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventoryVcnOverlapSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IpInventoryVcnOverlapSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/Ipam.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/Ipam.java index 0cde821f099..d641a83e30c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/Ipam.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/Ipam.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/IpsecTunnelDrgAttachmentNetworkDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/IpsecTunnelDrgAttachmentNetworkDetails.java index 9db9d42a6eb..5b6315b5d79 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/IpsecTunnelDrgAttachmentNetworkDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/IpsecTunnelDrgAttachmentNetworkDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/Ipv6.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/Ipv6.java index 511ecdd7bb7..060a5a04b86 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/Ipv6.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/Ipv6.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/Ipv6AddressIpv6SubnetCidrPairDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/Ipv6AddressIpv6SubnetCidrPairDetails.java index b8f105f4ded..0a0c0daeec1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/Ipv6AddressIpv6SubnetCidrPairDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/Ipv6AddressIpv6SubnetCidrPairDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchAttachIScsiVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchAttachIScsiVolumeDetails.java index 4e6abf5ec2f..aaf54946915 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchAttachIScsiVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchAttachIScsiVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchAttachParavirtualizedVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchAttachParavirtualizedVolumeDetails.java index 65345313b88..90649e06c91 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchAttachParavirtualizedVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchAttachParavirtualizedVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchAttachVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchAttachVolumeDetails.java index 20971565658..2a7039d674a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchAttachVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchAttachVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchCreateVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchCreateVolumeDetails.java index 9bf93c040a1..da6b815dfa9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchCreateVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchCreateVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchCreateVolumeFromAttributes.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchCreateVolumeFromAttributes.java index fae70505224..50a4d8bd305 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchCreateVolumeFromAttributes.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchCreateVolumeFromAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceAgentConfigDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceAgentConfigDetails.java index 91876011c64..b23a1fe85fc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceAgentConfigDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceAgentConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceAvailabilityConfigDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceAvailabilityConfigDetails.java index 102b91140a8..cba56916c0b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceAvailabilityConfigDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceAvailabilityConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceDetails.java index dde6a665f75..209cf8693a1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceLicensingConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceLicensingConfig.java index 13ace078916..4c0a50d0f11 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceLicensingConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceLicensingConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstancePlatformConfig.java index 709b66d7f2a..d8ca83db164 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceShapeConfigDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceShapeConfigDetails.java index 5aab27430b6..ef9f79ce33f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceShapeConfigDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceShapeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceWindowsLicensingConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceWindowsLicensingConfig.java index 2bd603145a3..cc694c19c15 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceWindowsLicensingConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchInstanceWindowsLicensingConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchOptions.java index 50f80bddcbb..7e568ab7b82 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/LaunchOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/LetterOfAuthority.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/LetterOfAuthority.java index 94445e38e43..8dc0488fec2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/LetterOfAuthority.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/LetterOfAuthority.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/LicensingConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/LicensingConfig.java index 2ee64ce3e77..23571fabf98 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/LicensingConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/LicensingConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ListIpInventoryDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ListIpInventoryDetails.java index 4955240bad2..14549f3e259 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ListIpInventoryDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ListIpInventoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/LocalPeeringGateway.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/LocalPeeringGateway.java index 3391e899b54..cb56610a5cd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/LocalPeeringGateway.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/LocalPeeringGateway.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/LoopBackDrgAttachmentNetworkDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/LoopBackDrgAttachmentNetworkDetails.java index b3c2546624c..88bcaeb1e84 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/LoopBackDrgAttachmentNetworkDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/LoopBackDrgAttachmentNetworkDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/MacsecEncryptionCipher.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/MacsecEncryptionCipher.java index f382e75c2f0..960e80ee8a7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/MacsecEncryptionCipher.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/MacsecEncryptionCipher.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/MacsecKey.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/MacsecKey.java index 5a62cf96880..1d208a70716 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/MacsecKey.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/MacsecKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/MacsecProperties.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/MacsecProperties.java index ee4bbb7c94a..6ade5d20583 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/MacsecProperties.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/MacsecProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/MacsecState.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/MacsecState.java index cf7c419ac28..137b74b2534 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/MacsecState.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/MacsecState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/MeasuredBootEntry.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/MeasuredBootEntry.java index 409c9eac847..6978d8a272e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/MeasuredBootEntry.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/MeasuredBootEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/MeasuredBootReport.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/MeasuredBootReport.java index 783b57d90d2..2c0c673b63e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/MeasuredBootReport.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/MeasuredBootReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/MeasuredBootReportMeasurements.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/MeasuredBootReportMeasurements.java index a9146edacb6..45c37436096 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/MeasuredBootReportMeasurements.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/MeasuredBootReportMeasurements.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/MemberReplica.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/MemberReplica.java index efccd1fb2e3..43c3ae9e779 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/MemberReplica.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/MemberReplica.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/MemoryFabricPreferencesDescriptor.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/MemoryFabricPreferencesDescriptor.java index df595de6e47..916839b09f7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/MemoryFabricPreferencesDescriptor.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/MemoryFabricPreferencesDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ModifyIpv4SubnetCidrDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ModifyIpv4SubnetCidrDetails.java index d283ff88b1f..53ce5f2d788 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ModifyIpv4SubnetCidrDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ModifyIpv4SubnetCidrDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ModifyVcnCidrDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ModifyVcnCidrDetails.java index 5dbb585d8f2..1d02a39811d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ModifyVcnCidrDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ModifyVcnCidrDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/MultipathDevice.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/MultipathDevice.java index 0c0270c6625..0ecb43ce074 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/MultipathDevice.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/MultipathDevice.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/NatGateway.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/NatGateway.java index a0c419a88b7..6bd5141d822 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/NatGateway.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/NatGateway.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/NetworkSecurityGroup.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/NetworkSecurityGroup.java index 22bdcc24b68..4e12c210c44 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/NetworkSecurityGroup.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/NetworkSecurityGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/NetworkSecurityGroupVnic.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/NetworkSecurityGroupVnic.java index c6b5dc0ed24..2eaaa9dc955 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/NetworkSecurityGroupVnic.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/NetworkSecurityGroupVnic.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/NetworkingTopology.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/NetworkingTopology.java index 3ecbc146c16..921f2822726 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/NetworkingTopology.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/NetworkingTopology.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ParavirtualizedVolumeAttachment.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ParavirtualizedVolumeAttachment.java index 55698066c78..80fac349650 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ParavirtualizedVolumeAttachment.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ParavirtualizedVolumeAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/PeerRegionForRemotePeering.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/PeerRegionForRemotePeering.java index b7952ff6bb0..f62d1c3f512 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/PeerRegionForRemotePeering.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/PeerRegionForRemotePeering.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/PercentageOfCoresEnabledOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/PercentageOfCoresEnabledOptions.java index df0038e876e..eeb1a3c248b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/PercentageOfCoresEnabledOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/PercentageOfCoresEnabledOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/PerformanceBasedAutotunePolicy.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/PerformanceBasedAutotunePolicy.java index 490a8171d53..718e8e3142b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/PerformanceBasedAutotunePolicy.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/PerformanceBasedAutotunePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/PhaseOneConfigDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/PhaseOneConfigDetails.java index 06fb09f822e..b3c54f20c08 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/PhaseOneConfigDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/PhaseOneConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/PhaseTwoConfigDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/PhaseTwoConfigDetails.java index 6f206ba9fbf..40b2add7147 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/PhaseTwoConfigDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/PhaseTwoConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/PlacementConstraintDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/PlacementConstraintDetails.java index b63d4637bd2..3ebd995c9e9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/PlacementConstraintDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/PlacementConstraintDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/PlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/PlatformConfig.java index abb86b7cb22..0c3c4c19222 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/PlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/PlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/PlatformVersions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/PlatformVersions.java index 8b1ffd4517e..63030b4e82e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/PlatformVersions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/PlatformVersions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/PortRange.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/PortRange.java index 0536b3851c2..9a96f9a3979 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/PortRange.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/PortRange.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/PreemptibleInstanceConfigDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/PreemptibleInstanceConfigDetails.java index b792a47f961..c93fce78569 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/PreemptibleInstanceConfigDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/PreemptibleInstanceConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/PreemptionAction.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/PreemptionAction.java index e635d2092b8..2f2a0e68ac8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/PreemptionAction.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/PreemptionAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/PrivateIp.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/PrivateIp.java index 7334fd163a6..d64a81dd425 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/PrivateIp.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/PrivateIp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/PublicIp.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/PublicIp.java index 2a55489f99f..c0f621958cd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/PublicIp.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/PublicIp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/PublicIpPool.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/PublicIpPool.java index dcbb03287ca..2811b8eb2f6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/PublicIpPool.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/PublicIpPool.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/PublicIpPoolCollection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/PublicIpPoolCollection.java index 55ad7ca1992..54b09fafa0a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/PublicIpPoolCollection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/PublicIpPoolCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/PublicIpPoolSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/PublicIpPoolSummary.java index 99ae50b536f..db1112492a2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/PublicIpPoolSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/PublicIpPoolSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/RebootMigrateActionDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/RebootMigrateActionDetails.java index 850a3be289d..6ba8ce16f23 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/RebootMigrateActionDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/RebootMigrateActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/RecycleDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/RecycleDetails.java index 6804e8b0dad..755f5e4b04c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/RecycleDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/RecycleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/RemotePeeringConnection.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/RemotePeeringConnection.java index 406cc83d9a1..536f638b919 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/RemotePeeringConnection.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/RemotePeeringConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/RemotePeeringConnectionDrgAttachmentNetworkDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/RemotePeeringConnectionDrgAttachmentNetworkDetails.java index 1ebd6c7376d..6f6ffb1f2f7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/RemotePeeringConnectionDrgAttachmentNetworkDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/RemotePeeringConnectionDrgAttachmentNetworkDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveDrgRouteDistributionStatementsDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveDrgRouteDistributionStatementsDetails.java index 8e650ea6b84..cf2ceecb47b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveDrgRouteDistributionStatementsDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveDrgRouteDistributionStatementsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveDrgRouteRulesDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveDrgRouteRulesDetails.java index e1288228308..8db44009fd6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveDrgRouteRulesDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveDrgRouteRulesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveIpv4SubnetCidrDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveIpv4SubnetCidrDetails.java index b3def4c0008..aa1df0d85c2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveIpv4SubnetCidrDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveIpv4SubnetCidrDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveNetworkSecurityGroupSecurityRulesDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveNetworkSecurityGroupSecurityRulesDetails.java index 4d83e7c19cc..70e8afab6a5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveNetworkSecurityGroupSecurityRulesDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveNetworkSecurityGroupSecurityRulesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/RemovePublicIpPoolCapacityDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/RemovePublicIpPoolCapacityDetails.java index f4e495bdc40..aacc0640931 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/RemovePublicIpPoolCapacityDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/RemovePublicIpPoolCapacityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveSubnetIpv6CidrDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveSubnetIpv6CidrDetails.java index a0d81cf9078..54922e913a9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveSubnetIpv6CidrDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveSubnetIpv6CidrDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveVcnCidrDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveVcnCidrDetails.java index 7e4cc97c47a..b683eb70aee 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveVcnCidrDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveVcnCidrDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveVcnIpv6CidrDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveVcnIpv6CidrDetails.java index 0c477aa6a15..ef59a8ee601 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveVcnIpv6CidrDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/RemoveVcnIpv6CidrDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ResetActionDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ResetActionDetails.java index 74f65c29451..2abd546e66f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ResetActionDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ResetActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/RouteRule.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/RouteRule.java index 02286d06fb2..ed1a209bd27 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/RouteRule.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/RouteRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/RouteTable.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/RouteTable.java index de983159d0b..defcc8de609 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/RouteTable.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/RouteTable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/SecurityList.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/SecurityList.java index 63b82bc3808..053abb52514 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/SecurityList.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/SecurityList.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/SecurityRule.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/SecurityRule.java index 3ba312d1d84..102370abda8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/SecurityRule.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/SecurityRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/Service.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/Service.java index 1847ab94637..4deb63e727e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/Service.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/Service.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ServiceGateway.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ServiceGateway.java index 0136c22e864..2b6ddca4a26 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ServiceGateway.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ServiceGateway.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ServiceIdRequestDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ServiceIdRequestDetails.java index 86eef41eab4..cfdaaf28b49 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ServiceIdRequestDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ServiceIdRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ServiceIdResponseDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ServiceIdResponseDetails.java index 024bdd6469b..492647ede12 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ServiceIdResponseDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ServiceIdResponseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/SetOriginAsnDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/SetOriginAsnDetails.java index 961e1286d14..6fd2d408e6f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/SetOriginAsnDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/SetOriginAsnDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/Shape.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/Shape.java index fbefe2d273b..77a8277b059 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/Shape.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/Shape.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeAccessControlServiceEnabledPlatformOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeAccessControlServiceEnabledPlatformOptions.java index 075c601952f..172b61d6c15 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeAccessControlServiceEnabledPlatformOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeAccessControlServiceEnabledPlatformOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeAlternativeObject.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeAlternativeObject.java index 2c2f5d6f6bb..ac3c351257a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeAlternativeObject.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeAlternativeObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeInputOutputMemoryManagementUnitEnabledPlatformOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeInputOutputMemoryManagementUnitEnabledPlatformOptions.java index e0cff1c33c8..a4de113d15d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeInputOutputMemoryManagementUnitEnabledPlatformOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeInputOutputMemoryManagementUnitEnabledPlatformOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeMaxVnicAttachmentOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeMaxVnicAttachmentOptions.java index 8181056966d..ae595559057 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeMaxVnicAttachmentOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeMaxVnicAttachmentOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeMeasuredBootOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeMeasuredBootOptions.java index 7a63de36172..7e4718cc040 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeMeasuredBootOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeMeasuredBootOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeMemoryEncryptionOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeMemoryEncryptionOptions.java index 62c38e27739..9651d775580 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeMemoryEncryptionOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeMemoryEncryptionOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeMemoryOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeMemoryOptions.java index 2bd700cfde1..4929bbebbcc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeMemoryOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeMemoryOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeNetworkingBandwidthOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeNetworkingBandwidthOptions.java index 015436f95fe..e85c49ed8de 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeNetworkingBandwidthOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeNetworkingBandwidthOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeNumaNodesPerSocketPlatformOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeNumaNodesPerSocketPlatformOptions.java index 8c625626e4c..e62a9b59e02 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeNumaNodesPerSocketPlatformOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeNumaNodesPerSocketPlatformOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeOcpuOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeOcpuOptions.java index 69b9d05446a..088af6679e0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeOcpuOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeOcpuOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapePlatformConfigOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapePlatformConfigOptions.java index 7754971f473..d901911acc9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapePlatformConfigOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapePlatformConfigOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeSecureBootOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeSecureBootOptions.java index e13c66e891b..9a697cce0a4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeSecureBootOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeSecureBootOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeSymmetricMultiThreadingEnabledPlatformOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeSymmetricMultiThreadingEnabledPlatformOptions.java index 7229715a9c1..c4c94beb1fa 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeSymmetricMultiThreadingEnabledPlatformOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeSymmetricMultiThreadingEnabledPlatformOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeTrustedPlatformModuleOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeTrustedPlatformModuleOptions.java index 10f6e62e191..8a7a9990bf8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeTrustedPlatformModuleOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeTrustedPlatformModuleOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeVirtualInstructionsEnabledPlatformOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeVirtualInstructionsEnabledPlatformOptions.java index 74f975b0619..711c40e6d01 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeVirtualInstructionsEnabledPlatformOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/ShapeVirtualInstructionsEnabledPlatformOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/SoftResetActionDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/SoftResetActionDetails.java index e5a0c5bfb62..ce7f122fdf0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/SoftResetActionDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/SoftResetActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/Subnet.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/Subnet.java index db6e22f1fc8..cd8e8ff2132 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/Subnet.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/Subnet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/SubnetTopology.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/SubnetTopology.java index a07905d6ab0..049e3d58852 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/SubnetTopology.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/SubnetTopology.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/SupportedCapabilities.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/SupportedCapabilities.java index 761fd8147da..6aaa12d6f08 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/SupportedCapabilities.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/SupportedCapabilities.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/TcpOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/TcpOptions.java index e2f9103db2b..cf6c91ea280 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/TcpOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/TcpOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/TerminatePreemptionAction.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/TerminatePreemptionAction.java index 0162f965486..135344d04d0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/TerminatePreemptionAction.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/TerminatePreemptionAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/TerminationProceedInstancePoolInstanceDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/TerminationProceedInstancePoolInstanceDetails.java index ebeaa5b2cce..73c250deac0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/TerminationProceedInstancePoolInstanceDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/TerminationProceedInstancePoolInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/Topology.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/Topology.java index d5ae6c7aaa5..033cbd51fbb 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/Topology.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/Topology.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyAssociatedWithEntityRelationship.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyAssociatedWithEntityRelationship.java index b9b9e16c4a9..b2f605d45d2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyAssociatedWithEntityRelationship.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyAssociatedWithEntityRelationship.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyAssociatedWithRelationshipDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyAssociatedWithRelationshipDetails.java index 2b571bd57cf..09af303be00 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyAssociatedWithRelationshipDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyAssociatedWithRelationshipDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyContainsEntityRelationship.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyContainsEntityRelationship.java index 2045ecb4d25..f54dfcd6310 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyContainsEntityRelationship.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyContainsEntityRelationship.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyEntityRelationship.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyEntityRelationship.java index dc18ad26a41..d8739d5b91d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyEntityRelationship.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyEntityRelationship.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyRoutesToEntityRelationship.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyRoutesToEntityRelationship.java index 09cd1d9799c..e5fa3bbaed8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyRoutesToEntityRelationship.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyRoutesToEntityRelationship.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyRoutesToRelationshipDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyRoutesToRelationshipDetails.java index d0295ae471c..931235e32e8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyRoutesToRelationshipDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/TopologyRoutesToRelationshipDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelConfig.java index 2c66cc7b6bd..a20c14571a1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelCpeDeviceConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelCpeDeviceConfig.java index d4d1ed1fd22..f2d2d9598e7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelCpeDeviceConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelCpeDeviceConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelPhaseOneDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelPhaseOneDetails.java index 6f7111ceff6..270f68cf154 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelPhaseOneDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelPhaseOneDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelPhaseTwoDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelPhaseTwoDetails.java index cd1db5e0286..421d498d2cb 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelPhaseTwoDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelPhaseTwoDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelRouteSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelRouteSummary.java index 5a95abd8ad4..3247c085c4a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelRouteSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelRouteSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelSecurityAssociationSummary.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelSecurityAssociationSummary.java index d1caf624c15..ad9ae00439e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelSecurityAssociationSummary.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelSecurityAssociationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelStatus.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelStatus.java index 90098e5d312..342e6bcf29b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelStatus.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/TunnelStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UdpOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UdpOptions.java index 88ec49461b2..57e44fe62f7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UdpOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UdpOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateBootVolumeBackupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateBootVolumeBackupDetails.java index de4fb901c0a..a3123c3326a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateBootVolumeBackupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateBootVolumeBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateBootVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateBootVolumeDetails.java index 8c74a11b8e8..6ea2cc961af 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateBootVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateBootVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateBootVolumeKmsKeyDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateBootVolumeKmsKeyDetails.java index 5e13335d363..fa67c799c12 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateBootVolumeKmsKeyDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateBootVolumeKmsKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateByoasnDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateByoasnDetails.java index 596970084b6..fbfd93f5579 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateByoasnDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateByoasnDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateByoipRangeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateByoipRangeDetails.java index bc17d3932cb..7331e70cc4a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateByoipRangeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateByoipRangeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateCapacitySourceDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateCapacitySourceDetails.java index e810f9a8fbc..3c7b03078ad 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateCapacitySourceDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateCapacitySourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateCaptureFilterDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateCaptureFilterDetails.java index 4fbbabea075..dadc149b67c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateCaptureFilterDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateCaptureFilterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateClusterNetworkDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateClusterNetworkDetails.java index ac24daaf41c..6469300de55 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateClusterNetworkDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateClusterNetworkDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateClusterNetworkInstancePoolDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateClusterNetworkInstancePoolDetails.java index 3e04d310554..b8a1052f566 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateClusterNetworkInstancePoolDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateClusterNetworkInstancePoolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeCapacityReservationDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeCapacityReservationDetails.java index c8505418799..467164bd1a7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeCapacityReservationDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeCapacityReservationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeCapacityTopologyDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeCapacityTopologyDetails.java index 06b213b83a9..817c6b06fca 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeCapacityTopologyDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeCapacityTopologyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeClusterDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeClusterDetails.java index 3ad962c857e..8c1fba69593 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeClusterDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeGpuMemoryClusterDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeGpuMemoryClusterDetails.java index acd496a8c6f..3a0498c4362 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeGpuMemoryClusterDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeGpuMemoryClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeGpuMemoryFabricDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeGpuMemoryFabricDetails.java index 9df8fd256cc..9ce776bb6eb 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeGpuMemoryFabricDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeGpuMemoryFabricDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeHostDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeHostDetails.java index 3f9af1c8343..b62f6d12c1d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeHostDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeHostDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeHostGroupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeHostGroupDetails.java index 53f1f839c43..51d8bb434c8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeHostGroupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeHostGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeImageCapabilitySchemaDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeImageCapabilitySchemaDetails.java index 209911847f9..0ea2b0d3df4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeImageCapabilitySchemaDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateComputeImageCapabilitySchemaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateConsoleHistoryDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateConsoleHistoryDetails.java index 75838a00ad3..8170c4e1874 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateConsoleHistoryDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateConsoleHistoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateCpeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateCpeDetails.java index e1bd1a3160b..45af97c99d0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateCpeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateCpeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateCrossConnectDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateCrossConnectDetails.java index dea1494bd41..c3ada2960bf 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateCrossConnectDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateCrossConnectDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateCrossConnectGroupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateCrossConnectGroupDetails.java index 784eb903f14..82cbf8e5daa 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateCrossConnectGroupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateCrossConnectGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDedicatedCapacitySourceDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDedicatedCapacitySourceDetails.java index 458cf1e5067..1c0a93db338 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDedicatedCapacitySourceDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDedicatedCapacitySourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDedicatedVmHostDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDedicatedVmHostDetails.java index 237081702d3..230b1e02959 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDedicatedVmHostDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDedicatedVmHostDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDhcpDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDhcpDetails.java index 246efe81e9b..a43ffa0fa89 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDhcpDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDhcpDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgAttachmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgAttachmentDetails.java index 89b136b05e3..3a9c046aa9c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgAttachmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgDetails.java index f418d8028de..cf9ca9f6971 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteDistributionDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteDistributionDetails.java index 3d65b59c789..bf98b6741ec 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteDistributionDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteDistributionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteDistributionStatementDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteDistributionStatementDetails.java index d53215b35f3..410bde921e2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteDistributionStatementDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteDistributionStatementDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteDistributionStatementsDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteDistributionStatementsDetails.java index 46dbce0d8df..f61d70691bb 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteDistributionStatementsDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteDistributionStatementsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteRuleDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteRuleDetails.java index 4e8ceda1550..c4b5874f71f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteRuleDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteRulesDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteRulesDetails.java index 2654db13450..ff6909917e9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteRulesDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteRulesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteTableDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteTableDetails.java index 3b74b5f5a0c..0fe6846267b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteTableDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateDrgRouteTableDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIPSecConnectionDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIPSecConnectionDetails.java index 2024a8a6670..5a6ba2c126b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIPSecConnectionDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIPSecConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIPSecConnectionTunnelDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIPSecConnectionTunnelDetails.java index 2c1dedf36ca..bc6ee79bf92 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIPSecConnectionTunnelDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIPSecConnectionTunnelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIPSecConnectionTunnelSharedSecretDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIPSecConnectionTunnelSharedSecretDetails.java index b92300f46ba..98b432cbbcd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIPSecConnectionTunnelSharedSecretDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIPSecConnectionTunnelSharedSecretDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIPSecTunnelBgpSessionDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIPSecTunnelBgpSessionDetails.java index ebae286d38f..ed8859d0cb8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIPSecTunnelBgpSessionDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIPSecTunnelBgpSessionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIPSecTunnelEncryptionDomainDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIPSecTunnelEncryptionDomainDetails.java index d27e6dc8d82..c495959b0a8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIPSecTunnelEncryptionDomainDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIPSecTunnelEncryptionDomainDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateImageDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateImageDetails.java index f025d76de42..283ef5f08f2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateImageDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceAgentConfigDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceAgentConfigDetails.java index d2ffb270d91..e5ccb3bbb41 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceAgentConfigDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceAgentConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceAvailabilityConfigDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceAvailabilityConfigDetails.java index 2254ade507e..97c89a5fd4f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceAvailabilityConfigDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceAvailabilityConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceConfigurationDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceConfigurationDetails.java index 256296e9125..13dd83d1b12 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceConfigurationDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceConsoleConnectionDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceConsoleConnectionDetails.java index b80514eac71..645eeeff1d1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceConsoleConnectionDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceConsoleConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceDetails.java index e8667d24686..6626d5e57d2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceLicensingConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceLicensingConfig.java index 94caa002955..9b6e9fad97b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceLicensingConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceLicensingConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceMaintenanceEventDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceMaintenanceEventDetails.java index 1d866ebb4c4..1c81e528632 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceMaintenanceEventDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceMaintenanceEventDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstancePlatformConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstancePlatformConfig.java index 33fa959f3dd..09e59b21d22 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstancePlatformConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstancePlatformConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstancePoolDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstancePoolDetails.java index 351dff52ae9..f657ce10002 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstancePoolDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstancePoolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstancePoolPlacementConfigurationDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstancePoolPlacementConfigurationDetails.java index 4ac050d2429..7dd515a2de2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstancePoolPlacementConfigurationDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstancePoolPlacementConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceShapeConfigDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceShapeConfigDetails.java index 85bd60f9df7..d37afb808fa 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceShapeConfigDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceShapeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceSourceDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceSourceDetails.java index 75394ac059a..cb364071792 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceSourceDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceSourceViaBootVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceSourceViaBootVolumeDetails.java index b8cc168369d..59b3b1f4845 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceSourceViaBootVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceSourceViaBootVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceSourceViaImageDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceSourceViaImageDetails.java index 73a5ba4216a..9627a73f874 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceSourceViaImageDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceSourceViaImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceWindowsLicensingConfig.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceWindowsLicensingConfig.java index c590f0db411..2cc954d2648 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceWindowsLicensingConfig.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInstanceWindowsLicensingConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInternetGatewayDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInternetGatewayDetails.java index 0582849b354..c9a2c4ed839 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInternetGatewayDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateInternetGatewayDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIpv6Details.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIpv6Details.java index 45ac18e5973..f96cfc26512 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIpv6Details.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateIpv6Details.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateLaunchOptions.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateLaunchOptions.java index 0884d2a987a..ea7b80baddf 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateLaunchOptions.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateLaunchOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateLocalPeeringGatewayDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateLocalPeeringGatewayDetails.java index 70e1e11347a..bfa1919220b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateLocalPeeringGatewayDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateLocalPeeringGatewayDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateMacsecKey.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateMacsecKey.java index bac427fa1f1..d3895d614e7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateMacsecKey.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateMacsecKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateMacsecProperties.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateMacsecProperties.java index 0a4bd54f570..2ae95899300 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateMacsecProperties.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateMacsecProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateNatGatewayDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateNatGatewayDetails.java index 0bf2e0277eb..6ee86099bae 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateNatGatewayDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateNatGatewayDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateNetworkSecurityGroupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateNetworkSecurityGroupDetails.java index dae29c7434d..da72427f048 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateNetworkSecurityGroupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateNetworkSecurityGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateNetworkSecurityGroupSecurityRulesDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateNetworkSecurityGroupSecurityRulesDetails.java index 73e72b748f1..4b990436b9d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateNetworkSecurityGroupSecurityRulesDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateNetworkSecurityGroupSecurityRulesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdatePrivateIpDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdatePrivateIpDetails.java index 5a2469f468f..454ce31df5a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdatePrivateIpDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdatePrivateIpDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdatePublicIpDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdatePublicIpDetails.java index 6ca375e50f9..921291ceab9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdatePublicIpDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdatePublicIpDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdatePublicIpPoolDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdatePublicIpPoolDetails.java index a0784d54090..325e82a09f9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdatePublicIpPoolDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdatePublicIpPoolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateRemotePeeringConnectionDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateRemotePeeringConnectionDetails.java index 58dae4c0120..ecb19f74da5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateRemotePeeringConnectionDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateRemotePeeringConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateRouteTableDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateRouteTableDetails.java index 5cdaa01f901..65e5e4f456a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateRouteTableDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateRouteTableDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateSecurityListDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateSecurityListDetails.java index f7d1f748cd9..3cb3469ce20 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateSecurityListDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateSecurityListDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateSecurityRuleDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateSecurityRuleDetails.java index 2c9401f51c4..9792a63132a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateSecurityRuleDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateSecurityRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateServiceGatewayDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateServiceGatewayDetails.java index 6376af2db54..aaff97a4e67 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateServiceGatewayDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateServiceGatewayDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateSubnetDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateSubnetDetails.java index cbb57acf59f..d19101e399d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateSubnetDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateSubnetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateTunnelCpeDeviceConfigDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateTunnelCpeDeviceConfigDetails.java index 8517bbed13c..769e7abb921 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateTunnelCpeDeviceConfigDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateTunnelCpeDeviceConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVcnDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVcnDetails.java index b03abf1fa21..d88408a6267 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVcnDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVcnDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVirtualCircuitDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVirtualCircuitDetails.java index 16ed6a54eb8..816e36a5bf3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVirtualCircuitDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVirtualCircuitDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVlanDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVlanDetails.java index baeb98a0975..a9ea1928272 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVlanDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVlanDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVnicDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVnicDetails.java index 7ba0396bf56..f10ae295f1d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVnicDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVnicDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeAttachmentDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeAttachmentDetails.java index 0f88f448f66..e68d13f7d40 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeAttachmentDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeBackupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeBackupDetails.java index 18231cb9a95..4627efdc121 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeBackupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeBackupPolicyDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeBackupPolicyDetails.java index 045231ab9ae..6133c5ccfda 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeBackupPolicyDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeBackupPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeDetails.java index 97df4824854..7d46de8320e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeGroupBackupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeGroupBackupDetails.java index fc85b1920ce..1b09240d6c9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeGroupBackupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeGroupBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeGroupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeGroupDetails.java index 0143f1a1900..6fd0a9a9fc6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeGroupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeKmsKeyDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeKmsKeyDetails.java index 85b280950a1..bb7b8958185 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeKmsKeyDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVolumeKmsKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVtapDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVtapDetails.java index c1d159a68bf..5d178751b0b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVtapDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdateVtapDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdatedNetworkSecurityGroupSecurityRules.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdatedNetworkSecurityGroupSecurityRules.java index 1dfc97193d2..625925f0e8e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdatedNetworkSecurityGroupSecurityRules.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpdatedNetworkSecurityGroupSecurityRules.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpgradeStatus.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpgradeStatus.java index fbbb5e200af..4f6ef581e73 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/UpgradeStatus.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/UpgradeStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/Vcn.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/Vcn.java index 1fbf9efcf5e..23431b64490 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/Vcn.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/Vcn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VcnDnsResolverAssociation.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VcnDnsResolverAssociation.java index d60038aca37..b886e6ab08a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VcnDnsResolverAssociation.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VcnDnsResolverAssociation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VcnDrgAttachmentNetworkCreateDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VcnDrgAttachmentNetworkCreateDetails.java index f0de9d51947..7991d63bfce 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VcnDrgAttachmentNetworkCreateDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VcnDrgAttachmentNetworkCreateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VcnDrgAttachmentNetworkDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VcnDrgAttachmentNetworkDetails.java index 5670be73420..06e66423b4d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VcnDrgAttachmentNetworkDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VcnDrgAttachmentNetworkDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VcnDrgAttachmentNetworkUpdateDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VcnDrgAttachmentNetworkUpdateDetails.java index eb0900acb56..172d680c179 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VcnDrgAttachmentNetworkUpdateDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VcnDrgAttachmentNetworkUpdateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VcnTopology.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VcnTopology.java index 4fb55a11a3c..8399be1f3e8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VcnTopology.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VcnTopology.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuit.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuit.java index 6333d4ab52f..c862e9b2b86 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuit.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuit.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitAssociatedTunnelDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitAssociatedTunnelDetails.java index 7e6edd7c414..3bd4dafeee3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitAssociatedTunnelDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitAssociatedTunnelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitBandwidthShape.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitBandwidthShape.java index c6723b33a5e..e27490d36ea 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitBandwidthShape.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitBandwidthShape.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitDrgAttachmentNetworkDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitDrgAttachmentNetworkDetails.java index 117012300ec..77b4bb4041c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitDrgAttachmentNetworkDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitDrgAttachmentNetworkDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitIpMtu.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitIpMtu.java index feb4b21a92b..1f7d48aefff 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitIpMtu.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitIpMtu.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitPublicPrefix.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitPublicPrefix.java index 0e87efcffc8..44f77131172 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitPublicPrefix.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitPublicPrefix.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitRedundancyMetadata.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitRedundancyMetadata.java index 70a17de99dd..4a0c82f023b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitRedundancyMetadata.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VirtualCircuitRedundancyMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/Vlan.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/Vlan.java index 194602f4f3b..d5cb579692b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/Vlan.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/Vlan.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/Vnic.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/Vnic.java index cb9eecb87cd..d29fa1b8132 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/Vnic.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/Vnic.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VnicAttachment.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VnicAttachment.java index 8a4552382fc..52d2e111ada 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VnicAttachment.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VnicAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/Volume.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/Volume.java index d170046e950..bd265b0f3f8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/Volume.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/Volume.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeAttachment.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeAttachment.java index 1553f663b2e..7b8fdab416f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeAttachment.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeBackup.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeBackup.java index b5b17fcbdd5..b933a3087ec 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeBackup.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeBackup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeBackupPolicy.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeBackupPolicy.java index fde71636f39..34736a63966 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeBackupPolicy.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeBackupPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeBackupPolicyAssignment.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeBackupPolicyAssignment.java index 13ba0eeebcf..a6ffcc5538b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeBackupPolicyAssignment.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeBackupPolicyAssignment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeBackupSchedule.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeBackupSchedule.java index dd456617b2d..d1cac28dba7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeBackupSchedule.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeBackupSchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroup.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroup.java index a278672f5c4..8ac863d880f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroup.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupBackup.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupBackup.java index 8fdee0db3a0..fc5436caf55 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupBackup.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupBackup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupReplica.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupReplica.java index db8f0bf4d10..c217c9f3e04 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupReplica.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupReplica.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupReplicaDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupReplicaDetails.java index 4b3a17ec017..95120cbf20d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupReplicaDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupReplicaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupReplicaInfo.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupReplicaInfo.java index cee2bbff75a..3cbd61fdbc3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupReplicaInfo.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupReplicaInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupSourceDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupSourceDetails.java index 3b6fad2c32f..3b4d8370777 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupSourceDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupSourceFromVolumeGroupBackupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupSourceFromVolumeGroupBackupDetails.java index aae7f966112..f9f91b72dc8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupSourceFromVolumeGroupBackupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupSourceFromVolumeGroupBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupSourceFromVolumeGroupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupSourceFromVolumeGroupDetails.java index 8a07e52bdfb..c3d85f8d8ff 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupSourceFromVolumeGroupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupSourceFromVolumeGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupSourceFromVolumeGroupReplicaDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupSourceFromVolumeGroupReplicaDetails.java index 00d27da846e..bf83bd1b395 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupSourceFromVolumeGroupReplicaDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupSourceFromVolumeGroupReplicaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupSourceFromVolumesDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupSourceFromVolumesDetails.java index a45cb538b61..5c47b4f96fe 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupSourceFromVolumesDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeGroupSourceFromVolumesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeKmsKey.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeKmsKey.java index a37e196d45c..74ec75dde37 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeKmsKey.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeKmsKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeSourceDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeSourceDetails.java index 91a4f14a6d7..059fcaa5404 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeSourceDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeSourceFromBlockVolumeReplicaDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeSourceFromBlockVolumeReplicaDetails.java index 057ee932cc1..95005fe04fd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeSourceFromBlockVolumeReplicaDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeSourceFromBlockVolumeReplicaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeSourceFromVolumeBackupDeltaDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeSourceFromVolumeBackupDeltaDetails.java index 657998a74af..46bf33af64b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeSourceFromVolumeBackupDeltaDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeSourceFromVolumeBackupDeltaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeSourceFromVolumeBackupDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeSourceFromVolumeBackupDetails.java index 69aea3a61c1..fbc01106663 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeSourceFromVolumeBackupDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeSourceFromVolumeBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeSourceFromVolumeDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeSourceFromVolumeDetails.java index 19df6c74adf..cc56212c95d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeSourceFromVolumeDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VolumeSourceFromVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/Vtap.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/Vtap.java index 5353e28229e..5c8f10fe45d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/Vtap.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/Vtap.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/model/VtapCaptureFilterRuleDetails.java b/bmc-core/src/main/java/com/oracle/bmc/core/model/VtapCaptureFilterRuleDetails.java index d40f66e9451..f66bb3fcff2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/model/VtapCaptureFilterRuleDetails.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/model/VtapCaptureFilterRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.model; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AcceptShieldedIntegrityPolicyRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AcceptShieldedIntegrityPolicyRequest.java index 3e6e7caba6c..b9c5cdc145e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AcceptShieldedIntegrityPolicyRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AcceptShieldedIntegrityPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddDrgRouteDistributionStatementsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddDrgRouteDistributionStatementsRequest.java index 658b69e18ff..e63271e2b74 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddDrgRouteDistributionStatementsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddDrgRouteDistributionStatementsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddDrgRouteRulesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddDrgRouteRulesRequest.java index 65132fb32c0..0a40871566a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddDrgRouteRulesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddDrgRouteRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddImageShapeCompatibilityEntryRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddImageShapeCompatibilityEntryRequest.java index 50ed93c256c..88904615fd6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddImageShapeCompatibilityEntryRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddImageShapeCompatibilityEntryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddIpv4SubnetCidrRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddIpv4SubnetCidrRequest.java index d771c15f183..951dde56aad 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddIpv4SubnetCidrRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddIpv4SubnetCidrRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddIpv6SubnetCidrRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddIpv6SubnetCidrRequest.java index 2b3cbfe8a49..044332473ca 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddIpv6SubnetCidrRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddIpv6SubnetCidrRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddIpv6VcnCidrRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddIpv6VcnCidrRequest.java index a6adebef55b..f65b1bab0a0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddIpv6VcnCidrRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddIpv6VcnCidrRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddNetworkSecurityGroupSecurityRulesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddNetworkSecurityGroupSecurityRulesRequest.java index 72f1a65d074..24192199142 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddNetworkSecurityGroupSecurityRulesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddNetworkSecurityGroupSecurityRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddPublicIpPoolCapacityRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddPublicIpPoolCapacityRequest.java index 86e48895726..0960dcf3172 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddPublicIpPoolCapacityRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddPublicIpPoolCapacityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddVcnCidrRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddVcnCidrRequest.java index 0f4fd980d9f..41d80fbe7b2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddVcnCidrRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AddVcnCidrRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AdvertiseByoipRangeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AdvertiseByoipRangeRequest.java index c87af77d8e9..9dd306ab195 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AdvertiseByoipRangeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AdvertiseByoipRangeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ApplyHostConfigurationRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ApplyHostConfigurationRequest.java index 29b3b3b784f..67f2e31a270 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ApplyHostConfigurationRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ApplyHostConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachBootVolumeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachBootVolumeRequest.java index 9c0720c2a07..c64025d3807 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachBootVolumeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachBootVolumeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachComputeHostGroupHostRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachComputeHostGroupHostRequest.java index f63136f92c4..6ca4b95b143 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachComputeHostGroupHostRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachComputeHostGroupHostRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachInstancePoolInstanceRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachInstancePoolInstanceRequest.java index f765dad1663..93528331e63 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachInstancePoolInstanceRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachInstancePoolInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachLoadBalancerRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachLoadBalancerRequest.java index 6a67ac46f19..e689811e2f4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachLoadBalancerRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachLoadBalancerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachServiceIdRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachServiceIdRequest.java index bb77273f26e..a2f06f8ab44 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachServiceIdRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachServiceIdRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachVnicRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachVnicRequest.java index 01e7a01a40e..62eedce9e2d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachVnicRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachVnicRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachVolumeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachVolumeRequest.java index bb24f1f93e2..946c4c09537 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachVolumeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/AttachVolumeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/BulkAddVirtualCircuitPublicPrefixesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/BulkAddVirtualCircuitPublicPrefixesRequest.java index 6574eeeeaa6..0abc062d88d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/BulkAddVirtualCircuitPublicPrefixesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/BulkAddVirtualCircuitPublicPrefixesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/BulkDeleteVirtualCircuitPublicPrefixesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/BulkDeleteVirtualCircuitPublicPrefixesRequest.java index 7f381ed9a50..2617c39ef78 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/BulkDeleteVirtualCircuitPublicPrefixesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/BulkDeleteVirtualCircuitPublicPrefixesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CaptureConsoleHistoryRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CaptureConsoleHistoryRequest.java index 4c525521ce2..dc3e675ef96 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CaptureConsoleHistoryRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CaptureConsoleHistoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeBootVolumeBackupCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeBootVolumeBackupCompartmentRequest.java index 06b355b31d0..204e856518c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeBootVolumeBackupCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeBootVolumeBackupCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeBootVolumeCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeBootVolumeCompartmentRequest.java index dd4ba307aa1..5bc5fd575cc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeBootVolumeCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeBootVolumeCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeByoasnCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeByoasnCompartmentRequest.java index ff6fda1fbcb..b06a25c27d2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeByoasnCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeByoasnCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeByoipRangeCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeByoipRangeCompartmentRequest.java index 022ce11f326..b17074e89fb 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeByoipRangeCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeByoipRangeCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeCaptureFilterCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeCaptureFilterCompartmentRequest.java index 64ecc8ab092..567892f6ee3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeCaptureFilterCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeCaptureFilterCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeClusterNetworkCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeClusterNetworkCompartmentRequest.java index 1e4dd4f0d73..8f07b24fbdf 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeClusterNetworkCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeClusterNetworkCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeCapacityReservationCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeCapacityReservationCompartmentRequest.java index 3e83716d12b..3a81f55e9f8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeCapacityReservationCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeCapacityReservationCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeCapacityTopologyCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeCapacityTopologyCompartmentRequest.java index 416378771bc..7b144ead925 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeCapacityTopologyCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeCapacityTopologyCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeClusterCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeClusterCompartmentRequest.java index f97d2fa1ad1..536dfec2204 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeClusterCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeClusterCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeGpuMemoryClusterCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeGpuMemoryClusterCompartmentRequest.java index 29c8d1494e8..d7de8d587f1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeGpuMemoryClusterCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeGpuMemoryClusterCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeGpuMemoryFabricCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeGpuMemoryFabricCompartmentRequest.java index fca9bdc3e9a..28a840ca392 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeGpuMemoryFabricCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeGpuMemoryFabricCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeHostCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeHostCompartmentRequest.java index 93d2feb5988..27a049df7ca 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeHostCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeHostCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeHostGroupCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeHostGroupCompartmentRequest.java index 763040650fc..ada3e45ffa6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeHostGroupCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeHostGroupCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeImageCapabilitySchemaCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeImageCapabilitySchemaCompartmentRequest.java index 9f49074a919..414c2d26765 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeImageCapabilitySchemaCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeComputeImageCapabilitySchemaCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeCpeCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeCpeCompartmentRequest.java index 165ce124719..03fb9bbba2e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeCpeCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeCpeCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeCrossConnectCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeCrossConnectCompartmentRequest.java index 37afc869e16..572f0e852a5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeCrossConnectCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeCrossConnectCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeCrossConnectGroupCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeCrossConnectGroupCompartmentRequest.java index 8c3ffd03eea..d33dff707cb 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeCrossConnectGroupCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeCrossConnectGroupCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeDedicatedVmHostCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeDedicatedVmHostCompartmentRequest.java index 2f003905ba6..9a5539e8f3c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeDedicatedVmHostCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeDedicatedVmHostCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeDhcpOptionsCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeDhcpOptionsCompartmentRequest.java index 4df2594734d..60b162d0673 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeDhcpOptionsCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeDhcpOptionsCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeDrgCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeDrgCompartmentRequest.java index 9a2765dcb8f..3effc5b4e24 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeDrgCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeDrgCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeIPSecConnectionCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeIPSecConnectionCompartmentRequest.java index 5a279e74ba5..e2f7812c5eb 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeIPSecConnectionCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeIPSecConnectionCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeImageCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeImageCompartmentRequest.java index a36ed628fb6..33aeb8650e3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeImageCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeImageCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeInstanceCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeInstanceCompartmentRequest.java index 99cf7282985..b5e30bafdce 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeInstanceCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeInstanceCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeInstanceConfigurationCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeInstanceConfigurationCompartmentRequest.java index cbacaeaf61e..24a5aecb5a1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeInstanceConfigurationCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeInstanceConfigurationCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeInstancePoolCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeInstancePoolCompartmentRequest.java index fb025024834..1406f942873 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeInstancePoolCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeInstancePoolCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeInternetGatewayCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeInternetGatewayCompartmentRequest.java index 5a4ee6f76f0..b490b1fb6c3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeInternetGatewayCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeInternetGatewayCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeLocalPeeringGatewayCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeLocalPeeringGatewayCompartmentRequest.java index 16bdf7840ea..185c5928ee1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeLocalPeeringGatewayCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeLocalPeeringGatewayCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeNatGatewayCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeNatGatewayCompartmentRequest.java index 4907823d989..f1e9afed5ec 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeNatGatewayCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeNatGatewayCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeNetworkSecurityGroupCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeNetworkSecurityGroupCompartmentRequest.java index 9cc6b45a7fb..3f2825da693 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeNetworkSecurityGroupCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeNetworkSecurityGroupCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangePublicIpCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangePublicIpCompartmentRequest.java index a011858e5c2..7162022d234 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangePublicIpCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangePublicIpCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangePublicIpPoolCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangePublicIpPoolCompartmentRequest.java index 0b98e6bdc12..e299f94b9ad 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangePublicIpPoolCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangePublicIpPoolCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeRemotePeeringConnectionCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeRemotePeeringConnectionCompartmentRequest.java index 0248c20aefe..456763bc53e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeRemotePeeringConnectionCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeRemotePeeringConnectionCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeRouteTableCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeRouteTableCompartmentRequest.java index d57ea63ded9..60748527617 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeRouteTableCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeRouteTableCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeSecurityListCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeSecurityListCompartmentRequest.java index 6a284caf626..3aeb3a9bd42 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeSecurityListCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeSecurityListCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeServiceGatewayCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeServiceGatewayCompartmentRequest.java index 428713531c4..60dd582b324 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeServiceGatewayCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeServiceGatewayCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeSubnetCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeSubnetCompartmentRequest.java index 205d4a8120d..debc7167c98 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeSubnetCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeSubnetCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVcnCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVcnCompartmentRequest.java index d1797c4cebf..69cd9f7ea2b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVcnCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVcnCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVirtualCircuitCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVirtualCircuitCompartmentRequest.java index 2d859c89dae..875b8ba3fe6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVirtualCircuitCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVirtualCircuitCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVlanCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVlanCompartmentRequest.java index 847edfc229e..a12b3854b33 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVlanCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVlanCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVolumeBackupCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVolumeBackupCompartmentRequest.java index 96c00343178..28dc318055d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVolumeBackupCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVolumeBackupCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVolumeCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVolumeCompartmentRequest.java index 42241a15583..2ea1d1e076b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVolumeCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVolumeCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVolumeGroupBackupCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVolumeGroupBackupCompartmentRequest.java index d0dd1423ea7..1c5e7f25807 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVolumeGroupBackupCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVolumeGroupBackupCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVolumeGroupCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVolumeGroupCompartmentRequest.java index c06b2dc584b..a11a60e0fa0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVolumeGroupCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVolumeGroupCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVtapCompartmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVtapCompartmentRequest.java index 4241631dad0..0514f7c677e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVtapCompartmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ChangeVtapCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CheckHostConfigurationRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CheckHostConfigurationRequest.java index 3d69dc604db..04fbbe06f34 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CheckHostConfigurationRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CheckHostConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ConnectLocalPeeringGatewaysRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ConnectLocalPeeringGatewaysRequest.java index 89cccc4998d..0cf55da0b72 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ConnectLocalPeeringGatewaysRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ConnectLocalPeeringGatewaysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ConnectRemotePeeringConnectionsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ConnectRemotePeeringConnectionsRequest.java index f4d88cc920f..47b405b498b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ConnectRemotePeeringConnectionsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ConnectRemotePeeringConnectionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CopyBootVolumeBackupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CopyBootVolumeBackupRequest.java index 32859b1efe6..875a6ba08f8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CopyBootVolumeBackupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CopyBootVolumeBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CopyVolumeBackupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CopyVolumeBackupRequest.java index f229a638e8a..5dd1d3d91aa 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CopyVolumeBackupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CopyVolumeBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CopyVolumeGroupBackupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CopyVolumeGroupBackupRequest.java index ccc24f386b5..55d35176e96 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CopyVolumeGroupBackupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CopyVolumeGroupBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateAppCatalogSubscriptionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateAppCatalogSubscriptionRequest.java index 52c341ba729..1aaf4e1a277 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateAppCatalogSubscriptionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateAppCatalogSubscriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateBootVolumeBackupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateBootVolumeBackupRequest.java index b5f86563dac..378511592fc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateBootVolumeBackupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateBootVolumeBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateBootVolumeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateBootVolumeRequest.java index 85c5c4601e6..831384f19f8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateBootVolumeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateBootVolumeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateByoasnRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateByoasnRequest.java index 51c78ca7f4b..d1252490ea8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateByoasnRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateByoasnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateByoipRangeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateByoipRangeRequest.java index 0c8a3a5238a..565ac0c41cc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateByoipRangeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateByoipRangeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateCaptureFilterRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateCaptureFilterRequest.java index c1b3f27a069..64284762df1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateCaptureFilterRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateCaptureFilterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateClusterNetworkRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateClusterNetworkRequest.java index da4c026d0ec..11d9a588aaa 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateClusterNetworkRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateClusterNetworkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeCapacityReportRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeCapacityReportRequest.java index 47274e20859..15899a80d80 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeCapacityReportRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeCapacityReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeCapacityReservationRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeCapacityReservationRequest.java index 6c2d47fd058..2fc16f235d0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeCapacityReservationRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeCapacityReservationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeCapacityTopologyRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeCapacityTopologyRequest.java index 2210f511461..9b8bd628781 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeCapacityTopologyRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeCapacityTopologyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeClusterRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeClusterRequest.java index a9fe862fa1d..b51e7b03c43 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeClusterRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeGpuMemoryClusterRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeGpuMemoryClusterRequest.java index 3cc22ba6e73..5af62270fc0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeGpuMemoryClusterRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeGpuMemoryClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeHostGroupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeHostGroupRequest.java index 5153d7ae05f..bc4daf6b9b3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeHostGroupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeHostGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeImageCapabilitySchemaRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeImageCapabilitySchemaRequest.java index c7c1576e8ee..b8662ed263e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeImageCapabilitySchemaRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateComputeImageCapabilitySchemaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateCpeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateCpeRequest.java index e920c38eced..ca5fdb2a508 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateCpeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateCpeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateCrossConnectGroupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateCrossConnectGroupRequest.java index b5c83b4fdea..61222d758c8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateCrossConnectGroupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateCrossConnectGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateCrossConnectRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateCrossConnectRequest.java index 56883cca512..45566ac8693 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateCrossConnectRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateCrossConnectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDedicatedVmHostRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDedicatedVmHostRequest.java index b8c78667a7a..4fa7e780585 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDedicatedVmHostRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDedicatedVmHostRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDhcpOptionsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDhcpOptionsRequest.java index 958bf98e5fd..5440905afe8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDhcpOptionsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDhcpOptionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDrgAttachmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDrgAttachmentRequest.java index c9a701b9dc0..eedf9c4feeb 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDrgAttachmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDrgAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDrgRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDrgRequest.java index 66773328a9c..c8abcfc0fde 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDrgRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDrgRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDrgRouteDistributionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDrgRouteDistributionRequest.java index 4b572cfbe78..7bea4b7ff72 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDrgRouteDistributionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDrgRouteDistributionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDrgRouteTableRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDrgRouteTableRequest.java index 41d89216d65..3c6d0c1cdfd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDrgRouteTableRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateDrgRouteTableRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateIPSecConnectionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateIPSecConnectionRequest.java index 1d0f9621fab..ea68704c2e1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateIPSecConnectionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateIPSecConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateImageRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateImageRequest.java index e401e8aefd5..8df75589241 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateImageRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateImageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateInstanceConfigurationRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateInstanceConfigurationRequest.java index ff80efc9d7a..a449fc8df36 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateInstanceConfigurationRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateInstanceConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateInstanceConsoleConnectionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateInstanceConsoleConnectionRequest.java index 1b8b07fd539..6e3863dd70f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateInstanceConsoleConnectionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateInstanceConsoleConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateInstancePoolRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateInstancePoolRequest.java index e14df1c6089..964ceecb644 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateInstancePoolRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateInstancePoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateInternetGatewayRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateInternetGatewayRequest.java index aeb52e49127..22092d502e4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateInternetGatewayRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateInternetGatewayRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateIpv6Request.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateIpv6Request.java index c3ccd213e29..64be269e187 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateIpv6Request.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateIpv6Request.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateLocalPeeringGatewayRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateLocalPeeringGatewayRequest.java index 8a2cf1cd30b..7420106cfa9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateLocalPeeringGatewayRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateLocalPeeringGatewayRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateNatGatewayRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateNatGatewayRequest.java index 59b04980f76..a47c2adea23 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateNatGatewayRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateNatGatewayRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateNetworkSecurityGroupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateNetworkSecurityGroupRequest.java index ec58896a83c..64e9bbe267e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateNetworkSecurityGroupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateNetworkSecurityGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreatePrivateIpRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreatePrivateIpRequest.java index 553c4ae1a16..8dd483dc2c2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreatePrivateIpRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreatePrivateIpRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreatePublicIpPoolRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreatePublicIpPoolRequest.java index 3961660da17..32ce0f6c8c2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreatePublicIpPoolRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreatePublicIpPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreatePublicIpRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreatePublicIpRequest.java index 0daac8ac3fd..a8990c1f753 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreatePublicIpRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreatePublicIpRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateRemotePeeringConnectionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateRemotePeeringConnectionRequest.java index 1c19664f8a3..88c4fb1897c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateRemotePeeringConnectionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateRemotePeeringConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateRouteTableRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateRouteTableRequest.java index 3dd7d249aff..be2765d0e0c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateRouteTableRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateRouteTableRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateSecurityListRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateSecurityListRequest.java index ceed3a37dcb..0b36ae936ed 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateSecurityListRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateSecurityListRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateServiceGatewayRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateServiceGatewayRequest.java index 621c4fb1b8b..65785f6c7d6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateServiceGatewayRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateServiceGatewayRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateSubnetRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateSubnetRequest.java index 267a2bc368f..3f512b4fd35 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateSubnetRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateSubnetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVcnRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVcnRequest.java index 18157cb8fc3..ae75d2fa4d1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVcnRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVcnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVirtualCircuitRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVirtualCircuitRequest.java index 364ef61c877..e0330f58b94 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVirtualCircuitRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVirtualCircuitRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVlanRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVlanRequest.java index 4c10dc7373b..50c98230a90 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVlanRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeBackupPolicyAssignmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeBackupPolicyAssignmentRequest.java index 28d7109cddc..af88cbf60af 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeBackupPolicyAssignmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeBackupPolicyAssignmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeBackupPolicyRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeBackupPolicyRequest.java index edf15612f6b..4746c3e163c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeBackupPolicyRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeBackupPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeBackupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeBackupRequest.java index 783b9667a18..3fbdf5760be 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeBackupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeGroupBackupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeGroupBackupRequest.java index 80fd0135350..42590b02c6a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeGroupBackupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeGroupBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeGroupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeGroupRequest.java index 1473c2560b8..752a52075bd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeGroupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeRequest.java index 786aadc927a..b5be3221aab 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVolumeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVtapRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVtapRequest.java index 0deff6f647f..468b606d672 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVtapRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/CreateVtapRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteAppCatalogSubscriptionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteAppCatalogSubscriptionRequest.java index 02a08df8eb6..220990ea5f4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteAppCatalogSubscriptionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteAppCatalogSubscriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteBootVolumeBackupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteBootVolumeBackupRequest.java index f63b2cfac66..677298290bb 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteBootVolumeBackupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteBootVolumeBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteBootVolumeKmsKeyRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteBootVolumeKmsKeyRequest.java index 09bc8a2cf0b..6c9c2dd79ea 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteBootVolumeKmsKeyRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteBootVolumeKmsKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteBootVolumeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteBootVolumeRequest.java index db4654ae84e..5ece3276e98 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteBootVolumeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteBootVolumeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteByoasnRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteByoasnRequest.java index 3dcba739f03..376200dda08 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteByoasnRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteByoasnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteByoipRangeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteByoipRangeRequest.java index 35444af5868..e808303d35c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteByoipRangeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteByoipRangeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteCaptureFilterRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteCaptureFilterRequest.java index 12b2cfc81ee..d96478471b4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteCaptureFilterRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteCaptureFilterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeCapacityReservationRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeCapacityReservationRequest.java index 30fd7464d12..f5e89947a63 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeCapacityReservationRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeCapacityReservationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeCapacityTopologyRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeCapacityTopologyRequest.java index 4aef394fa16..82122ee1758 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeCapacityTopologyRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeCapacityTopologyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeClusterRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeClusterRequest.java index 9ef30c4f49c..804ec36d05b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeClusterRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeGpuMemoryClusterRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeGpuMemoryClusterRequest.java index 6143593ee39..ef1c9c733e6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeGpuMemoryClusterRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeGpuMemoryClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeHostGroupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeHostGroupRequest.java index 37b6e2cc803..9a81e9ec4b0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeHostGroupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeHostGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeImageCapabilitySchemaRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeImageCapabilitySchemaRequest.java index 91710a1ed21..1e383aa75ec 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeImageCapabilitySchemaRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteComputeImageCapabilitySchemaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteConsoleHistoryRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteConsoleHistoryRequest.java index b30f87e5563..70b5ee17b3b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteConsoleHistoryRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteConsoleHistoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteCpeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteCpeRequest.java index b8ac34f83d8..4acb0c6f55e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteCpeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteCpeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteCrossConnectGroupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteCrossConnectGroupRequest.java index 4ad3ce5e094..26f83a49473 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteCrossConnectGroupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteCrossConnectGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteCrossConnectRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteCrossConnectRequest.java index 41100ddc84f..590735ee059 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteCrossConnectRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteCrossConnectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDedicatedVmHostRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDedicatedVmHostRequest.java index ff77bcd1280..e2e38dd66d0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDedicatedVmHostRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDedicatedVmHostRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDhcpOptionsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDhcpOptionsRequest.java index 49ada80e575..0443ad64c16 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDhcpOptionsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDhcpOptionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDrgAttachmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDrgAttachmentRequest.java index 75f42aa6ef8..38643157b54 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDrgAttachmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDrgAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDrgRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDrgRequest.java index 7a2088d30f8..2be55ce7e43 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDrgRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDrgRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDrgRouteDistributionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDrgRouteDistributionRequest.java index e9d164c7062..34098935fa6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDrgRouteDistributionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDrgRouteDistributionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDrgRouteTableRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDrgRouteTableRequest.java index 22d1fcf7359..47c8a117f2a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDrgRouteTableRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteDrgRouteTableRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteIPSecConnectionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteIPSecConnectionRequest.java index 67a4c20b366..fe7546c2d93 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteIPSecConnectionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteIPSecConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteImageRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteImageRequest.java index 468eb0435de..004bd3bb3d2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteImageRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteImageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteInstanceConfigurationRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteInstanceConfigurationRequest.java index 77852dde36f..a1e20d9097e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteInstanceConfigurationRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteInstanceConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteInstanceConsoleConnectionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteInstanceConsoleConnectionRequest.java index a79a675aea5..84dfc424f68 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteInstanceConsoleConnectionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteInstanceConsoleConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteInternetGatewayRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteInternetGatewayRequest.java index 8d94bcc831e..498c947fc5c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteInternetGatewayRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteInternetGatewayRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteIpv6Request.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteIpv6Request.java index 88f6f20aada..5f545dc79d3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteIpv6Request.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteIpv6Request.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteLocalPeeringGatewayRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteLocalPeeringGatewayRequest.java index 53468ab940c..a9eab27346d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteLocalPeeringGatewayRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteLocalPeeringGatewayRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteNatGatewayRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteNatGatewayRequest.java index 7436dd8e82d..0ee412f29a7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteNatGatewayRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteNatGatewayRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteNetworkSecurityGroupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteNetworkSecurityGroupRequest.java index 2af08b52a1f..97b9663aef8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteNetworkSecurityGroupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteNetworkSecurityGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeletePrivateIpRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeletePrivateIpRequest.java index e5ad9022cef..a8007ba7248 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeletePrivateIpRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeletePrivateIpRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeletePublicIpPoolRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeletePublicIpPoolRequest.java index 4da8c0e1ddb..365495302c9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeletePublicIpPoolRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeletePublicIpPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeletePublicIpRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeletePublicIpRequest.java index ef20083bd59..155651543bc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeletePublicIpRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeletePublicIpRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteRemotePeeringConnectionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteRemotePeeringConnectionRequest.java index bc7de5e8711..c1349fe97e7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteRemotePeeringConnectionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteRemotePeeringConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteRouteTableRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteRouteTableRequest.java index af38a0a242c..bf505befeac 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteRouteTableRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteRouteTableRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteSecurityListRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteSecurityListRequest.java index a326e4f3420..b9983bb03f0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteSecurityListRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteSecurityListRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteServiceGatewayRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteServiceGatewayRequest.java index 51b54613139..e731ebc42e7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteServiceGatewayRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteServiceGatewayRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteSubnetRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteSubnetRequest.java index 8209dafd61f..72885bb16ee 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteSubnetRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteSubnetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVcnRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVcnRequest.java index 6b0d65d5950..679929b1cf9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVcnRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVcnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVirtualCircuitRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVirtualCircuitRequest.java index fc0b8e90bd3..ca55c608ab1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVirtualCircuitRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVirtualCircuitRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVlanRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVlanRequest.java index 06db903a690..e7f0812189a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVlanRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeBackupPolicyAssignmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeBackupPolicyAssignmentRequest.java index 320cea9495d..78e7d968003 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeBackupPolicyAssignmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeBackupPolicyAssignmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeBackupPolicyRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeBackupPolicyRequest.java index 6105562b9ce..e8b723a4a9f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeBackupPolicyRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeBackupPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeBackupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeBackupRequest.java index 9a2bc3e6633..f78f1d9885e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeBackupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeGroupBackupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeGroupBackupRequest.java index 97000e6b1f2..f46016300a4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeGroupBackupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeGroupBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeGroupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeGroupRequest.java index 4bc39a44dbd..4b532b314d5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeGroupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeKmsKeyRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeKmsKeyRequest.java index 5ffe67c010e..2497e962ecc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeKmsKeyRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeKmsKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeRequest.java index 41bc2aa1677..167789f79cf 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVolumeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVtapRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVtapRequest.java index f1765ce640d..29ae4ec18d6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVtapRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DeleteVtapRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachBootVolumeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachBootVolumeRequest.java index a8c95538733..5e1df1a30d1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachBootVolumeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachBootVolumeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachComputeHostGroupHostRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachComputeHostGroupHostRequest.java index 02c14f6cd9c..30db7d80e2f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachComputeHostGroupHostRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachComputeHostGroupHostRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachInstancePoolInstanceRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachInstancePoolInstanceRequest.java index 9f8b41dc818..3f8f13b3acc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachInstancePoolInstanceRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachInstancePoolInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachLoadBalancerRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachLoadBalancerRequest.java index d7fa08f672e..615c5bc9087 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachLoadBalancerRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachLoadBalancerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachServiceIdRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachServiceIdRequest.java index d65d8441007..6e68a538867 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachServiceIdRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachServiceIdRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachVnicRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachVnicRequest.java index c40f2518894..70fa31e0159 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachVnicRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachVnicRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachVolumeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachVolumeRequest.java index c4301598928..96cbd71dbf8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachVolumeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/DetachVolumeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ExportImageRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ExportImageRequest.java index 538e0375323..9a3f0c6ef19 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ExportImageRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ExportImageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetAllDrgAttachmentsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetAllDrgAttachmentsRequest.java index 95a3fcea328..34c25dc354c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetAllDrgAttachmentsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetAllDrgAttachmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetAllowedIkeIPSecParametersRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetAllowedIkeIPSecParametersRequest.java index 0a036ecb388..5613834ab0f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetAllowedIkeIPSecParametersRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetAllowedIkeIPSecParametersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetAppCatalogListingAgreementsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetAppCatalogListingAgreementsRequest.java index 199191b67f8..7570159e756 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetAppCatalogListingAgreementsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetAppCatalogListingAgreementsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetAppCatalogListingRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetAppCatalogListingRequest.java index 97dd6f2b178..1cc75510998 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetAppCatalogListingRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetAppCatalogListingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetAppCatalogListingResourceVersionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetAppCatalogListingResourceVersionRequest.java index 52ced0aa414..f5540e1be58 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetAppCatalogListingResourceVersionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetAppCatalogListingResourceVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBlockVolumeReplicaRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBlockVolumeReplicaRequest.java index 5dc795fc089..6dd830948c1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBlockVolumeReplicaRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBlockVolumeReplicaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBootVolumeAttachmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBootVolumeAttachmentRequest.java index ff101d66fd3..99cdf9917d5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBootVolumeAttachmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBootVolumeAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBootVolumeBackupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBootVolumeBackupRequest.java index 542ca3c6c2b..a68b7fe9846 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBootVolumeBackupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBootVolumeBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBootVolumeKmsKeyRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBootVolumeKmsKeyRequest.java index 5d56482b676..e492eb9505e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBootVolumeKmsKeyRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBootVolumeKmsKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBootVolumeReplicaRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBootVolumeReplicaRequest.java index cc4645ca5b3..8c52dd6f8ef 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBootVolumeReplicaRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBootVolumeReplicaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBootVolumeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBootVolumeRequest.java index 4749380fe59..5b93dc7708c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBootVolumeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetBootVolumeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetByoasnRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetByoasnRequest.java index 0cba2f7d9a2..15d6ff2eb48 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetByoasnRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetByoasnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetByoipRangeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetByoipRangeRequest.java index 8460dd9ccb9..636813b608e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetByoipRangeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetByoipRangeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCaptureFilterRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCaptureFilterRequest.java index 01512c634e7..5ac3171da1b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCaptureFilterRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCaptureFilterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetClusterNetworkRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetClusterNetworkRequest.java index 95e59f201fd..4fb802e11df 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetClusterNetworkRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetClusterNetworkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeCapacityReservationRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeCapacityReservationRequest.java index 0283a40fed7..7ee4bed3d82 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeCapacityReservationRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeCapacityReservationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeCapacityTopologyRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeCapacityTopologyRequest.java index 5f7e52a0e22..b681c3ad207 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeCapacityTopologyRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeCapacityTopologyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeClusterRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeClusterRequest.java index 524ee4588ff..2d3e5b91ac5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeClusterRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeGlobalImageCapabilitySchemaRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeGlobalImageCapabilitySchemaRequest.java index 3034d83d21d..c43161953cc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeGlobalImageCapabilitySchemaRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeGlobalImageCapabilitySchemaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeGlobalImageCapabilitySchemaVersionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeGlobalImageCapabilitySchemaVersionRequest.java index 551391cc9bb..2f078411de4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeGlobalImageCapabilitySchemaVersionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeGlobalImageCapabilitySchemaVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeGpuMemoryClusterRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeGpuMemoryClusterRequest.java index dcf43194556..d6d5894c6b0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeGpuMemoryClusterRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeGpuMemoryClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeGpuMemoryFabricRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeGpuMemoryFabricRequest.java index c46c7de27ac..522bea2184f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeGpuMemoryFabricRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeGpuMemoryFabricRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeHostGroupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeHostGroupRequest.java index baa76d354b8..5b77f019816 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeHostGroupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeHostGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeHostRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeHostRequest.java index aedf068baa4..5f7fb0c39b0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeHostRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeHostRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeImageCapabilitySchemaRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeImageCapabilitySchemaRequest.java index e3ce5aab25a..b745adf3ab9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeImageCapabilitySchemaRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetComputeImageCapabilitySchemaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetConsoleHistoryContentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetConsoleHistoryContentRequest.java index cda88db53b1..e20832060f1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetConsoleHistoryContentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetConsoleHistoryContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetConsoleHistoryRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetConsoleHistoryRequest.java index 5c81e19a7bf..6dcf5a61c91 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetConsoleHistoryRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetConsoleHistoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCpeDeviceConfigContentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCpeDeviceConfigContentRequest.java index 930c3c180df..c9ecd094f39 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCpeDeviceConfigContentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCpeDeviceConfigContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCpeDeviceShapeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCpeDeviceShapeRequest.java index 73539d828a1..4d0189eda21 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCpeDeviceShapeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCpeDeviceShapeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCpeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCpeRequest.java index e3258bd66ca..a4c2fcebe9e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCpeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCpeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCrossConnectGroupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCrossConnectGroupRequest.java index eebf9fe7e25..099f93753d4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCrossConnectGroupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCrossConnectGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCrossConnectLetterOfAuthorityRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCrossConnectLetterOfAuthorityRequest.java index a8585359088..2f907ad1e68 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCrossConnectLetterOfAuthorityRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCrossConnectLetterOfAuthorityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCrossConnectRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCrossConnectRequest.java index 638fd6a702e..3273c9d74af 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCrossConnectRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCrossConnectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCrossConnectStatusRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCrossConnectStatusRequest.java index 8ab62ecb110..b050e66df48 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCrossConnectStatusRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetCrossConnectStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDedicatedVmHostRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDedicatedVmHostRequest.java index 3402ab15ea6..318e4a3f5bd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDedicatedVmHostRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDedicatedVmHostRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDhcpOptionsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDhcpOptionsRequest.java index fef1b0f3a86..fc4497f73bc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDhcpOptionsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDhcpOptionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDrgAttachmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDrgAttachmentRequest.java index b0a73eaeeb5..6e2b94000d9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDrgAttachmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDrgAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDrgRedundancyStatusRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDrgRedundancyStatusRequest.java index 7922563cb05..c491c61a584 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDrgRedundancyStatusRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDrgRedundancyStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDrgRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDrgRequest.java index fcbb7f89b91..b175dfae0a8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDrgRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDrgRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDrgRouteDistributionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDrgRouteDistributionRequest.java index 6a728c5e83a..b50f7840629 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDrgRouteDistributionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDrgRouteDistributionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDrgRouteTableRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDrgRouteTableRequest.java index 4ea87f78306..b42d78bea8f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDrgRouteTableRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetDrgRouteTableRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetFastConnectProviderServiceKeyRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetFastConnectProviderServiceKeyRequest.java index d831c669030..d8c0864e83c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetFastConnectProviderServiceKeyRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetFastConnectProviderServiceKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetFastConnectProviderServiceRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetFastConnectProviderServiceRequest.java index da0fd9f11ad..cddbb28f9dd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetFastConnectProviderServiceRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetFastConnectProviderServiceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetFirmwareBundleRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetFirmwareBundleRequest.java index 10a2bca5b94..00d2908de2b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetFirmwareBundleRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetFirmwareBundleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionDeviceConfigRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionDeviceConfigRequest.java index 373cb5244ed..c8dad98744c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionDeviceConfigRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionDeviceConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionDeviceStatusRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionDeviceStatusRequest.java index 1601e752bda..782a7a37167 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionDeviceStatusRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionDeviceStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionRequest.java index 41b1ee3d41c..5f07ac771ba 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionTunnelErrorRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionTunnelErrorRequest.java index bf4d0dbe670..239a1a6a9cf 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionTunnelErrorRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionTunnelErrorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionTunnelRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionTunnelRequest.java index c88093443f3..8892d097e6d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionTunnelRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionTunnelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionTunnelSharedSecretRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionTunnelSharedSecretRequest.java index ebca6529c8d..1a34e47b66f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionTunnelSharedSecretRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIPSecConnectionTunnelSharedSecretRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetImageRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetImageRequest.java index fe8878a1daa..bab31b0062c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetImageRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetImageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetImageShapeCompatibilityEntryRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetImageShapeCompatibilityEntryRequest.java index 3b21048f7e4..daca5a7058c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetImageShapeCompatibilityEntryRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetImageShapeCompatibilityEntryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstanceConfigurationRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstanceConfigurationRequest.java index f4e46565d5b..a2a708c0dd4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstanceConfigurationRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstanceConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstanceConsoleConnectionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstanceConsoleConnectionRequest.java index b99af1452a3..d83f11250ad 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstanceConsoleConnectionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstanceConsoleConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstanceMaintenanceEventRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstanceMaintenanceEventRequest.java index e416371851a..4097127a19e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstanceMaintenanceEventRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstanceMaintenanceEventRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstanceMaintenanceRebootRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstanceMaintenanceRebootRequest.java index a12e1672c24..ed51fe80ad0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstanceMaintenanceRebootRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstanceMaintenanceRebootRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstancePoolInstanceRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstancePoolInstanceRequest.java index d9784d54862..ec9ab5e55bb 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstancePoolInstanceRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstancePoolInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstancePoolLoadBalancerAttachmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstancePoolLoadBalancerAttachmentRequest.java index 3f7a3493432..4f4d2617975 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstancePoolLoadBalancerAttachmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstancePoolLoadBalancerAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstancePoolRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstancePoolRequest.java index 377d7a3de14..0b16aa7e733 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstancePoolRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstancePoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstanceRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstanceRequest.java index 5c800f8cae2..65859e76707 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstanceRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInternetGatewayRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInternetGatewayRequest.java index 3e6de67fa73..8564dad9740 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInternetGatewayRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetInternetGatewayRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIpsecCpeDeviceConfigContentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIpsecCpeDeviceConfigContentRequest.java index 76c3dc95e47..a8c5fe4b963 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIpsecCpeDeviceConfigContentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIpsecCpeDeviceConfigContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIpv6Request.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIpv6Request.java index 02151740351..483e6f72e30 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIpv6Request.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetIpv6Request.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetLocalPeeringGatewayRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetLocalPeeringGatewayRequest.java index 101f355520a..90992b25340 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetLocalPeeringGatewayRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetLocalPeeringGatewayRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetMeasuredBootReportRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetMeasuredBootReportRequest.java index 489efba89fb..5dade3a0873 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetMeasuredBootReportRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetMeasuredBootReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetNatGatewayRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetNatGatewayRequest.java index 194e51a50a6..60afec77ff2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetNatGatewayRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetNatGatewayRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetNetworkSecurityGroupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetNetworkSecurityGroupRequest.java index d9982e1bec9..14318c67ce4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetNetworkSecurityGroupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetNetworkSecurityGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetNetworkingTopologyRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetNetworkingTopologyRequest.java index 28becfab942..c322b004c5a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetNetworkingTopologyRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetNetworkingTopologyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetPrivateIpRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetPrivateIpRequest.java index 297a074dbd0..ccecb31391e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetPrivateIpRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetPrivateIpRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetPublicIpByIpAddressRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetPublicIpByIpAddressRequest.java index ad6a603c976..19796d07d96 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetPublicIpByIpAddressRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetPublicIpByIpAddressRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetPublicIpByPrivateIpIdRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetPublicIpByPrivateIpIdRequest.java index 888e83cbdff..c40d49775d4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetPublicIpByPrivateIpIdRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetPublicIpByPrivateIpIdRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetPublicIpPoolRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetPublicIpPoolRequest.java index c96e4921d4a..ccb7a5849fc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetPublicIpPoolRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetPublicIpPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetPublicIpRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetPublicIpRequest.java index b21439e815a..98cfd81c56a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetPublicIpRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetPublicIpRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetRemotePeeringConnectionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetRemotePeeringConnectionRequest.java index 3a139112443..ec547fcca0d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetRemotePeeringConnectionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetRemotePeeringConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetResourceIpInventoryRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetResourceIpInventoryRequest.java index ca9989299f1..8cda173c95c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetResourceIpInventoryRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetResourceIpInventoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetRouteTableRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetRouteTableRequest.java index 7722db73e32..da44a70a4a4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetRouteTableRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetRouteTableRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetSecurityListRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetSecurityListRequest.java index e6434d87a21..df1708e1133 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetSecurityListRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetSecurityListRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetServiceGatewayRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetServiceGatewayRequest.java index 422b6b98c87..908bd58685f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetServiceGatewayRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetServiceGatewayRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetServiceRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetServiceRequest.java index ffe35a337c3..dd42a1af8a6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetServiceRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetServiceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetSubnetCidrUtilizationRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetSubnetCidrUtilizationRequest.java index 8443b658425..c0eb88c8c1a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetSubnetCidrUtilizationRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetSubnetCidrUtilizationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetSubnetIpInventoryRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetSubnetIpInventoryRequest.java index b9d49b9697f..f74d9a064db 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetSubnetIpInventoryRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetSubnetIpInventoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetSubnetRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetSubnetRequest.java index 5905cde7a9a..7d9c770c287 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetSubnetRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetSubnetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetSubnetTopologyRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetSubnetTopologyRequest.java index efdd1ed97c1..51bf5f60ee2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetSubnetTopologyRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetSubnetTopologyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetTunnelCpeDeviceConfigContentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetTunnelCpeDeviceConfigContentRequest.java index 686f522a1cf..712aef13074 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetTunnelCpeDeviceConfigContentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetTunnelCpeDeviceConfigContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetTunnelCpeDeviceConfigRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetTunnelCpeDeviceConfigRequest.java index d64ce300461..4d239a4d4e7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetTunnelCpeDeviceConfigRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetTunnelCpeDeviceConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetUpgradeStatusRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetUpgradeStatusRequest.java index e9fb9089067..ddf6cb49abf 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetUpgradeStatusRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetUpgradeStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVcnDnsResolverAssociationRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVcnDnsResolverAssociationRequest.java index 2805ac8abf3..e77e9a13b8e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVcnDnsResolverAssociationRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVcnDnsResolverAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVcnOverlapRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVcnOverlapRequest.java index 831493ec30a..264e698e9ed 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVcnOverlapRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVcnOverlapRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVcnRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVcnRequest.java index 4ccd7679ed8..fd5f73e4f3d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVcnRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVcnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVcnTopologyRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVcnTopologyRequest.java index f54b601c0e0..68a9aa92c7b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVcnTopologyRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVcnTopologyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVirtualCircuitRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVirtualCircuitRequest.java index 51a04ebd90a..0addf2d591b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVirtualCircuitRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVirtualCircuitRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVlanRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVlanRequest.java index 4bb146a3fb6..2d1944034a8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVlanRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVnicAttachmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVnicAttachmentRequest.java index e67dfaea54d..f09fb8e758d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVnicAttachmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVnicAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVnicRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVnicRequest.java index 907e17cecd5..92ec66fe5a3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVnicRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVnicRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeAttachmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeAttachmentRequest.java index 320d593af38..9447249410e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeAttachmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeBackupPolicyAssetAssignmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeBackupPolicyAssetAssignmentRequest.java index 183c06d7b4f..3139e028d22 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeBackupPolicyAssetAssignmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeBackupPolicyAssetAssignmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeBackupPolicyAssignmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeBackupPolicyAssignmentRequest.java index 435b45423d8..7af942299b0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeBackupPolicyAssignmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeBackupPolicyAssignmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeBackupPolicyRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeBackupPolicyRequest.java index 7a18aa9ee81..68d33f2b41c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeBackupPolicyRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeBackupPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeBackupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeBackupRequest.java index 2ae683a301e..61acf073b1f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeBackupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeGroupBackupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeGroupBackupRequest.java index d7ad3bd2a47..3a35e0ba77b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeGroupBackupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeGroupBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeGroupReplicaRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeGroupReplicaRequest.java index 88b4f0788f3..a6ad25d9a10 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeGroupReplicaRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeGroupReplicaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeGroupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeGroupRequest.java index 68beace663e..21dd1cb663d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeGroupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeKmsKeyRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeKmsKeyRequest.java index 715f5187964..46997c0f343 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeKmsKeyRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeKmsKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeRequest.java index 0096361c70b..fa6d74cf2a9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVolumeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVtapRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVtapRequest.java index b351419f521..4c23e36266f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVtapRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetVtapRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetWindowsInstanceInitialCredentialsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetWindowsInstanceInitialCredentialsRequest.java index e6e00f90665..e63eaac87dc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetWindowsInstanceInitialCredentialsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/GetWindowsInstanceInitialCredentialsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/InstanceActionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/InstanceActionRequest.java index cf2c403c434..da25d67eea6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/InstanceActionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/InstanceActionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/Ipv6VnicDetachRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/Ipv6VnicDetachRequest.java index b8637735b05..8a0f8bd3d06 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/Ipv6VnicDetachRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/Ipv6VnicDetachRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/LaunchInstanceConfigurationRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/LaunchInstanceConfigurationRequest.java index ebbba780724..0c892f77663 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/LaunchInstanceConfigurationRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/LaunchInstanceConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/LaunchInstanceRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/LaunchInstanceRequest.java index 24f006b2bd1..ea73df7fe8f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/LaunchInstanceRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/LaunchInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListAllowedPeerRegionsForRemotePeeringRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListAllowedPeerRegionsForRemotePeeringRequest.java index c40189caf8e..c2d043430d1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListAllowedPeerRegionsForRemotePeeringRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListAllowedPeerRegionsForRemotePeeringRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListAppCatalogListingResourceVersionsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListAppCatalogListingResourceVersionsRequest.java index 0038f82620b..29d43036807 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListAppCatalogListingResourceVersionsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListAppCatalogListingResourceVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListAppCatalogListingsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListAppCatalogListingsRequest.java index 021896da91d..5423fae9f41 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListAppCatalogListingsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListAppCatalogListingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListAppCatalogSubscriptionsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListAppCatalogSubscriptionsRequest.java index 366cf471b56..d8fc9694838 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListAppCatalogSubscriptionsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListAppCatalogSubscriptionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListBlockVolumeReplicasRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListBlockVolumeReplicasRequest.java index 0425955393a..87d479a0990 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListBlockVolumeReplicasRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListBlockVolumeReplicasRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListBootVolumeAttachmentsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListBootVolumeAttachmentsRequest.java index 46ccbd78d33..43cffc5538d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListBootVolumeAttachmentsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListBootVolumeAttachmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListBootVolumeBackupsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListBootVolumeBackupsRequest.java index 58bd15177e6..af4cbc63492 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListBootVolumeBackupsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListBootVolumeBackupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListBootVolumeReplicasRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListBootVolumeReplicasRequest.java index 84ed3ebe8ec..2a8190c14de 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListBootVolumeReplicasRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListBootVolumeReplicasRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListBootVolumesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListBootVolumesRequest.java index ee69d79e931..4ebabdb73f9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListBootVolumesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListBootVolumesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListByoasnsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListByoasnsRequest.java index ef7489f4e9c..233da2137f3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListByoasnsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListByoasnsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListByoipAllocatedRangesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListByoipAllocatedRangesRequest.java index a7f29c94c9c..8c7f7025b20 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListByoipAllocatedRangesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListByoipAllocatedRangesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListByoipRangesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListByoipRangesRequest.java index adcf893f668..e87a7f26883 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListByoipRangesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListByoipRangesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCaptureFiltersRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCaptureFiltersRequest.java index ff182129ff9..9d48d5ab104 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCaptureFiltersRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCaptureFiltersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListClusterNetworkInstancesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListClusterNetworkInstancesRequest.java index f792b223022..970e2466041 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListClusterNetworkInstancesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListClusterNetworkInstancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListClusterNetworksRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListClusterNetworksRequest.java index 246e1a059a7..da8fed5b768 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListClusterNetworksRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListClusterNetworksRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityReservationInstanceShapesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityReservationInstanceShapesRequest.java index 52121c125a2..75a816cb1a9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityReservationInstanceShapesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityReservationInstanceShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityReservationInstancesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityReservationInstancesRequest.java index 20040e35b6c..1eb0be71580 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityReservationInstancesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityReservationInstancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityReservationsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityReservationsRequest.java index 44f6bb3b359..10f3a0f9bb3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityReservationsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityReservationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityTopologiesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityTopologiesRequest.java index 827ddaf0bfd..dba58cdc06c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityTopologiesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityTopologiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityTopologyComputeBareMetalHostsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityTopologyComputeBareMetalHostsRequest.java index 824c3cfd8fe..276dfe1082d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityTopologyComputeBareMetalHostsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityTopologyComputeBareMetalHostsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityTopologyComputeHpcIslandsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityTopologyComputeHpcIslandsRequest.java index 430fabeca71..c37b68a22ad 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityTopologyComputeHpcIslandsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityTopologyComputeHpcIslandsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityTopologyComputeNetworkBlocksRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityTopologyComputeNetworkBlocksRequest.java index f3d01e0dde3..6de00212823 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityTopologyComputeNetworkBlocksRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeCapacityTopologyComputeNetworkBlocksRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeClustersRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeClustersRequest.java index dfc59dc5c19..2ed28d4985a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeClustersRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeClustersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeGlobalImageCapabilitySchemaVersionsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeGlobalImageCapabilitySchemaVersionsRequest.java index 73bff6f669c..196cf5dd1e4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeGlobalImageCapabilitySchemaVersionsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeGlobalImageCapabilitySchemaVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeGlobalImageCapabilitySchemasRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeGlobalImageCapabilitySchemasRequest.java index f2042d5e0b4..5e7b647c280 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeGlobalImageCapabilitySchemasRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeGlobalImageCapabilitySchemasRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeGpuMemoryClusterInstancesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeGpuMemoryClusterInstancesRequest.java index a015d549ccb..3d776be4efa 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeGpuMemoryClusterInstancesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeGpuMemoryClusterInstancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeGpuMemoryClustersRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeGpuMemoryClustersRequest.java index d82d7fdf47f..a952b20275f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeGpuMemoryClustersRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeGpuMemoryClustersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeGpuMemoryFabricsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeGpuMemoryFabricsRequest.java index 2c5aa8494e5..02c047808a5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeGpuMemoryFabricsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeGpuMemoryFabricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeHostGroupsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeHostGroupsRequest.java index e5b025a205e..b32fa85721f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeHostGroupsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeHostGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeHostsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeHostsRequest.java index a5bb16d58e4..76a64a49923 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeHostsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeHostsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeImageCapabilitySchemasRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeImageCapabilitySchemasRequest.java index 9245d295f82..22d3336a745 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeImageCapabilitySchemasRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListComputeImageCapabilitySchemasRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListConsoleHistoriesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListConsoleHistoriesRequest.java index ef2d0401b03..76aaae9205b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListConsoleHistoriesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListConsoleHistoriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCpeDeviceShapesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCpeDeviceShapesRequest.java index c7c085f73ce..5161c38c26e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCpeDeviceShapesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCpeDeviceShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCpesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCpesRequest.java index 92295e9a46b..ef5a99bee20 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCpesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCpesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCrossConnectGroupsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCrossConnectGroupsRequest.java index a7a5d939f28..b8ec4616dc2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCrossConnectGroupsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCrossConnectGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCrossConnectLocationsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCrossConnectLocationsRequest.java index 6f52ae802bd..88628169c3b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCrossConnectLocationsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCrossConnectLocationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCrossConnectMappingsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCrossConnectMappingsRequest.java index 2d5199716fd..6afaa149b4d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCrossConnectMappingsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCrossConnectMappingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCrossConnectsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCrossConnectsRequest.java index 60f000b2b87..42ea181999d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCrossConnectsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCrossConnectsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCrossconnectPortSpeedShapesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCrossconnectPortSpeedShapesRequest.java index 9889977560c..0a31e8967fd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCrossconnectPortSpeedShapesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListCrossconnectPortSpeedShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDedicatedVmHostInstanceShapesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDedicatedVmHostInstanceShapesRequest.java index e3d0c64eb8e..0030f708500 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDedicatedVmHostInstanceShapesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDedicatedVmHostInstanceShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDedicatedVmHostInstancesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDedicatedVmHostInstancesRequest.java index e8216243382..0c408ea45ad 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDedicatedVmHostInstancesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDedicatedVmHostInstancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDedicatedVmHostShapesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDedicatedVmHostShapesRequest.java index ffafde51682..1aa285ae5ba 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDedicatedVmHostShapesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDedicatedVmHostShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDedicatedVmHostsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDedicatedVmHostsRequest.java index 38aad3e09d6..1dc1315b260 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDedicatedVmHostsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDedicatedVmHostsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDhcpOptionsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDhcpOptionsRequest.java index b161bbba3f8..40b3e10932f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDhcpOptionsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDhcpOptionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgAttachmentsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgAttachmentsRequest.java index 146475d0926..8f8c38bdc02 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgAttachmentsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgAttachmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgRouteDistributionStatementsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgRouteDistributionStatementsRequest.java index 6c74e003d71..e17c3a634e6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgRouteDistributionStatementsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgRouteDistributionStatementsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgRouteDistributionsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgRouteDistributionsRequest.java index a2b1e9cc2ef..fdc54bad35e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgRouteDistributionsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgRouteDistributionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgRouteRulesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgRouteRulesRequest.java index 99b68ee77d4..5b94a10ffec 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgRouteRulesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgRouteRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgRouteTablesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgRouteTablesRequest.java index 7de6fa3423e..5152a69b89a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgRouteTablesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgRouteTablesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgsRequest.java index 1622ce4257d..4a397cd5fe4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListDrgsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListFastConnectProviderServicesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListFastConnectProviderServicesRequest.java index f0c94836465..ff19136fed9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListFastConnectProviderServicesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListFastConnectProviderServicesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListFastConnectProviderVirtualCircuitBandwidthShapesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListFastConnectProviderVirtualCircuitBandwidthShapesRequest.java index 2ff0cb634db..6ac57d6bae0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListFastConnectProviderVirtualCircuitBandwidthShapesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListFastConnectProviderVirtualCircuitBandwidthShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListFirmwareBundlesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListFirmwareBundlesRequest.java index bad781cedfe..ff5b010dfd2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListFirmwareBundlesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListFirmwareBundlesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIPSecConnectionTunnelRoutesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIPSecConnectionTunnelRoutesRequest.java index ff654e8b50a..279f7cf0dc0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIPSecConnectionTunnelRoutesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIPSecConnectionTunnelRoutesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIPSecConnectionTunnelSecurityAssociationsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIPSecConnectionTunnelSecurityAssociationsRequest.java index 0e58d0a18c2..44dfaca0afd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIPSecConnectionTunnelSecurityAssociationsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIPSecConnectionTunnelSecurityAssociationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIPSecConnectionTunnelsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIPSecConnectionTunnelsRequest.java index 541c8d5838a..5aca81b1848 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIPSecConnectionTunnelsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIPSecConnectionTunnelsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIPSecConnectionsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIPSecConnectionsRequest.java index a3512189958..61896f609d3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIPSecConnectionsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIPSecConnectionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListImageShapeCompatibilityEntriesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListImageShapeCompatibilityEntriesRequest.java index 65c957f94cd..4762a5851b5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListImageShapeCompatibilityEntriesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListImageShapeCompatibilityEntriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListImagesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListImagesRequest.java index 173c3dd7a34..88b8b7de79a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListImagesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListImagesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstanceConfigurationsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstanceConfigurationsRequest.java index c272e7e7683..4d94ec9d33a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstanceConfigurationsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstanceConfigurationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstanceConsoleConnectionsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstanceConsoleConnectionsRequest.java index 6b05b7188ea..47b8b9db363 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstanceConsoleConnectionsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstanceConsoleConnectionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstanceDevicesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstanceDevicesRequest.java index 1f60416eefd..6e82fe76682 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstanceDevicesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstanceDevicesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstanceMaintenanceEventsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstanceMaintenanceEventsRequest.java index 5610252ab48..23faec25824 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstanceMaintenanceEventsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstanceMaintenanceEventsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstancePoolInstancesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstancePoolInstancesRequest.java index 1f108cb9415..8ed81dcf3f8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstancePoolInstancesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstancePoolInstancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstancePoolsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstancePoolsRequest.java index 2e2804a4410..b564706c197 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstancePoolsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstancePoolsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstancesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstancesRequest.java index aec91e50b74..ddef7a69bcc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstancesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInstancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInternetGatewaysRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInternetGatewaysRequest.java index d3bc6806592..8cf30134690 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInternetGatewaysRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListInternetGatewaysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIpInventoryRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIpInventoryRequest.java index c562b21d606..93ddfb5dbcb 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIpInventoryRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIpInventoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIpv6sRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIpv6sRequest.java index 6e0e91f03c9..505672336fe 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIpv6sRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListIpv6sRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListLocalPeeringGatewaysRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListLocalPeeringGatewaysRequest.java index 4b1dbc4ca05..fc056792ab9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListLocalPeeringGatewaysRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListLocalPeeringGatewaysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListNatGatewaysRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListNatGatewaysRequest.java index 7ce4e3b69c2..8b3e303568b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListNatGatewaysRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListNatGatewaysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListNetworkSecurityGroupSecurityRulesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListNetworkSecurityGroupSecurityRulesRequest.java index 4a7024220ba..5223e69db94 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListNetworkSecurityGroupSecurityRulesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListNetworkSecurityGroupSecurityRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListNetworkSecurityGroupVnicsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListNetworkSecurityGroupVnicsRequest.java index 837b8f9bf35..50787a608dd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListNetworkSecurityGroupVnicsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListNetworkSecurityGroupVnicsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListNetworkSecurityGroupsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListNetworkSecurityGroupsRequest.java index e095a995d41..cbaee6247df 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListNetworkSecurityGroupsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListNetworkSecurityGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListPrivateIpsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListPrivateIpsRequest.java index 65e4189e4ed..50409c8947d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListPrivateIpsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListPrivateIpsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListPublicIpPoolsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListPublicIpPoolsRequest.java index c4800144484..21b7a2c3a2c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListPublicIpPoolsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListPublicIpPoolsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListPublicIpsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListPublicIpsRequest.java index 18330db2ba5..83073643bc8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListPublicIpsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListPublicIpsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListRemotePeeringConnectionsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListRemotePeeringConnectionsRequest.java index c27e25ec68f..f74dd4f9c67 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListRemotePeeringConnectionsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListRemotePeeringConnectionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListRouteTablesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListRouteTablesRequest.java index 245a00c4f35..450ed8abc1b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListRouteTablesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListRouteTablesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListSecurityListsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListSecurityListsRequest.java index af9182cb480..7e37bb0ffe7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListSecurityListsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListSecurityListsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListServiceGatewaysRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListServiceGatewaysRequest.java index 77e7c5251dc..9a33b3e4e22 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListServiceGatewaysRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListServiceGatewaysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListServicesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListServicesRequest.java index d294f22dbe3..7b1b1b8cbfa 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListServicesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListServicesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListShapesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListShapesRequest.java index c69412e71c3..2750dee3f7b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListShapesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListSubnetsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListSubnetsRequest.java index da743fce40f..3d0a3f2114a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListSubnetsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListSubnetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVcnsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVcnsRequest.java index 6986ea6f436..2b26df032ec 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVcnsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVcnsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVirtualCircuitAssociatedTunnelsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVirtualCircuitAssociatedTunnelsRequest.java index 3e1cf6fd15a..d89d4743a50 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVirtualCircuitAssociatedTunnelsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVirtualCircuitAssociatedTunnelsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVirtualCircuitBandwidthShapesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVirtualCircuitBandwidthShapesRequest.java index 9563fcf2efb..eb3e9bfa68b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVirtualCircuitBandwidthShapesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVirtualCircuitBandwidthShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVirtualCircuitPublicPrefixesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVirtualCircuitPublicPrefixesRequest.java index 86e6ff82154..1a4bcc5253b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVirtualCircuitPublicPrefixesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVirtualCircuitPublicPrefixesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVirtualCircuitsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVirtualCircuitsRequest.java index d37a8ea6d01..c1e6da10c88 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVirtualCircuitsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVirtualCircuitsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVlansRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVlansRequest.java index 5db75fcee0b..48685dff5b9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVlansRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVlansRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVnicAttachmentsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVnicAttachmentsRequest.java index a92ba58e897..9f7e91cd6ce 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVnicAttachmentsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVnicAttachmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeAttachmentsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeAttachmentsRequest.java index 9f64e7d19ae..d0f1e62800d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeAttachmentsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeAttachmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeBackupPoliciesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeBackupPoliciesRequest.java index 12f1e01b921..583aae7a758 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeBackupPoliciesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeBackupPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeBackupsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeBackupsRequest.java index 7fa60f4e929..be1e4037682 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeBackupsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeBackupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeGroupBackupsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeGroupBackupsRequest.java index e358d61db8a..feba633f2a0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeGroupBackupsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeGroupBackupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeGroupReplicasRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeGroupReplicasRequest.java index b67d6619e05..5fd824e5765 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeGroupReplicasRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeGroupReplicasRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeGroupsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeGroupsRequest.java index 3a31cee0613..6a7f6dd7221 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeGroupsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumeGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumesRequest.java index 7b7a92f8764..bcdbc1876e7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVolumesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVtapsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVtapsRequest.java index 34cd7ad1316..fd3352039af 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVtapsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ListVtapsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ModifyIpv4SubnetCidrRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ModifyIpv4SubnetCidrRequest.java index d5208078be0..40d6c1ef998 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ModifyIpv4SubnetCidrRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ModifyIpv4SubnetCidrRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ModifyVcnCidrRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ModifyVcnCidrRequest.java index 142a3f7f2e7..6f83c742086 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ModifyVcnCidrRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ModifyVcnCidrRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/PrivateIpVnicDetachRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/PrivateIpVnicDetachRequest.java index eb039475cdb..b506ed47ed7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/PrivateIpVnicDetachRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/PrivateIpVnicDetachRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveDrgRouteDistributionStatementsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveDrgRouteDistributionStatementsRequest.java index 63495e1cbd6..7abfd30b616 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveDrgRouteDistributionStatementsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveDrgRouteDistributionStatementsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveDrgRouteRulesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveDrgRouteRulesRequest.java index c16ea604ca3..ff3d04e4858 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveDrgRouteRulesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveDrgRouteRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveExportDrgRouteDistributionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveExportDrgRouteDistributionRequest.java index 11048dda33e..513d276a509 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveExportDrgRouteDistributionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveExportDrgRouteDistributionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveImageShapeCompatibilityEntryRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveImageShapeCompatibilityEntryRequest.java index 35da797add7..4f7a2f79be6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveImageShapeCompatibilityEntryRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveImageShapeCompatibilityEntryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveImportDrgRouteDistributionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveImportDrgRouteDistributionRequest.java index 1abec4ec325..c447ad32b15 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveImportDrgRouteDistributionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveImportDrgRouteDistributionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveIpv4SubnetCidrRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveIpv4SubnetCidrRequest.java index 829888bcbd2..49cab0515d4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveIpv4SubnetCidrRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveIpv4SubnetCidrRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveIpv6SubnetCidrRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveIpv6SubnetCidrRequest.java index 5a62a81e89b..5fdfa3578f1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveIpv6SubnetCidrRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveIpv6SubnetCidrRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveIpv6VcnCidrRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveIpv6VcnCidrRequest.java index 9b04c9fddcc..5c18041ac7b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveIpv6VcnCidrRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveIpv6VcnCidrRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveNetworkSecurityGroupSecurityRulesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveNetworkSecurityGroupSecurityRulesRequest.java index 77f3e92a81e..91c6fa27035 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveNetworkSecurityGroupSecurityRulesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveNetworkSecurityGroupSecurityRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemovePublicIpPoolCapacityRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemovePublicIpPoolCapacityRequest.java index c0bb91293b5..d361f3d74a9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemovePublicIpPoolCapacityRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemovePublicIpPoolCapacityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveVcnCidrRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveVcnCidrRequest.java index 68fa89ec9be..ef38b91c254 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveVcnCidrRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/RemoveVcnCidrRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ResetInstancePoolRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ResetInstancePoolRequest.java index c220b0a8af0..2ebb9674a75 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ResetInstancePoolRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ResetInstancePoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/SetOriginAsnRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/SetOriginAsnRequest.java index d80e78f4259..d789fa50c90 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/SetOriginAsnRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/SetOriginAsnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/SetOriginAsnToOracleRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/SetOriginAsnToOracleRequest.java index 0af5b2b108c..eeaf84b3d34 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/SetOriginAsnToOracleRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/SetOriginAsnToOracleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/SoftresetInstancePoolRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/SoftresetInstancePoolRequest.java index 2a78354a0de..e4706803258 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/SoftresetInstancePoolRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/SoftresetInstancePoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/SoftstopInstancePoolRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/SoftstopInstancePoolRequest.java index d20ac4c1ec3..4f214f6e475 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/SoftstopInstancePoolRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/SoftstopInstancePoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/StartInstancePoolRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/StartInstancePoolRequest.java index a83b02b5351..1fc1236f9b6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/StartInstancePoolRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/StartInstancePoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/StopInstancePoolRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/StopInstancePoolRequest.java index e31f7c9796b..89fe14f7e25 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/StopInstancePoolRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/StopInstancePoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/TerminateClusterNetworkRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/TerminateClusterNetworkRequest.java index 8fde8f962e7..91ac9fb1a4b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/TerminateClusterNetworkRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/TerminateClusterNetworkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/TerminateInstancePoolRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/TerminateInstancePoolRequest.java index cb2b193a599..1eadd428e04 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/TerminateInstancePoolRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/TerminateInstancePoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/TerminateInstanceRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/TerminateInstanceRequest.java index 9b73a1ee3bc..cad66c1ad0c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/TerminateInstanceRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/TerminateInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/TerminationProceedInstancePoolInstanceRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/TerminationProceedInstancePoolInstanceRequest.java index 58ca9bdedc6..0efc8bfb44c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/TerminationProceedInstancePoolInstanceRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/TerminationProceedInstancePoolInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateBootVolumeBackupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateBootVolumeBackupRequest.java index 79128a8b824..353f631770e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateBootVolumeBackupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateBootVolumeBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateBootVolumeKmsKeyRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateBootVolumeKmsKeyRequest.java index 0bceec7ddd2..d158310fd48 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateBootVolumeKmsKeyRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateBootVolumeKmsKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateBootVolumeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateBootVolumeRequest.java index 3295499ff7f..f186e8143a4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateBootVolumeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateBootVolumeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateByoasnRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateByoasnRequest.java index 9bef3075ef2..186db93ffbd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateByoasnRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateByoasnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateByoipRangeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateByoipRangeRequest.java index 525a371809e..be6c14b0e69 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateByoipRangeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateByoipRangeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateCaptureFilterRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateCaptureFilterRequest.java index 2c19ce79263..16749f1a479 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateCaptureFilterRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateCaptureFilterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateClusterNetworkRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateClusterNetworkRequest.java index 9c41c1f86ba..f2e559c3544 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateClusterNetworkRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateClusterNetworkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeCapacityReservationRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeCapacityReservationRequest.java index ad92d27931c..4d4b475bdbf 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeCapacityReservationRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeCapacityReservationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeCapacityTopologyRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeCapacityTopologyRequest.java index 3947004ab55..25a6a55e493 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeCapacityTopologyRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeCapacityTopologyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeClusterRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeClusterRequest.java index d18da33ff77..24628e549da 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeClusterRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeGpuMemoryClusterRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeGpuMemoryClusterRequest.java index 0c416d84cf9..3135e7fb8e7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeGpuMemoryClusterRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeGpuMemoryClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeGpuMemoryFabricRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeGpuMemoryFabricRequest.java index 0e7097d4070..5333beb754c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeGpuMemoryFabricRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeGpuMemoryFabricRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeHostGroupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeHostGroupRequest.java index 3a001e95aba..92ae51d7c67 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeHostGroupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeHostGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeHostRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeHostRequest.java index 768f348580a..8c6a50db54c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeHostRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeHostRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeImageCapabilitySchemaRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeImageCapabilitySchemaRequest.java index 3ba4f393c59..50279f39284 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeImageCapabilitySchemaRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateComputeImageCapabilitySchemaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateConsoleHistoryRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateConsoleHistoryRequest.java index 052560b824b..7947f44359d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateConsoleHistoryRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateConsoleHistoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateCpeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateCpeRequest.java index 4d50a98d4ce..260ca093662 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateCpeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateCpeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateCrossConnectGroupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateCrossConnectGroupRequest.java index 168d52df48d..014c45ac59e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateCrossConnectGroupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateCrossConnectGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateCrossConnectRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateCrossConnectRequest.java index 588de382a68..9cfe365fe5b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateCrossConnectRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateCrossConnectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDedicatedVmHostRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDedicatedVmHostRequest.java index fa852fca8a9..fc4fb1ffe17 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDedicatedVmHostRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDedicatedVmHostRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDhcpOptionsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDhcpOptionsRequest.java index f739fd667c9..8b52263f01b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDhcpOptionsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDhcpOptionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgAttachmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgAttachmentRequest.java index d413bed796e..cd0dd6ba6d4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgAttachmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgRequest.java index f9b640dd591..af2cd58e3e9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgRouteDistributionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgRouteDistributionRequest.java index b9788c62c84..7fe37a3cf86 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgRouteDistributionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgRouteDistributionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgRouteDistributionStatementsRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgRouteDistributionStatementsRequest.java index 9760013626d..2a1bf4df7bb 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgRouteDistributionStatementsRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgRouteDistributionStatementsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgRouteRulesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgRouteRulesRequest.java index 5536a617516..552baee7d50 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgRouteRulesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgRouteRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgRouteTableRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgRouteTableRequest.java index 9a15483381e..745b611d87b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgRouteTableRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateDrgRouteTableRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateIPSecConnectionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateIPSecConnectionRequest.java index 1cae46db712..96dc57cd35b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateIPSecConnectionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateIPSecConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateIPSecConnectionTunnelRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateIPSecConnectionTunnelRequest.java index 8ec3a774f52..01b72577a5e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateIPSecConnectionTunnelRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateIPSecConnectionTunnelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateIPSecConnectionTunnelSharedSecretRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateIPSecConnectionTunnelSharedSecretRequest.java index 95641afdb42..4913109aebc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateIPSecConnectionTunnelSharedSecretRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateIPSecConnectionTunnelSharedSecretRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateImageRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateImageRequest.java index 984a03d47f7..fcb2a6222bd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateImageRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateImageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInstanceConfigurationRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInstanceConfigurationRequest.java index a3db8085be1..0e2187e9d5e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInstanceConfigurationRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInstanceConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInstanceConsoleConnectionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInstanceConsoleConnectionRequest.java index 82ef338ed57..0f0dd6ee429 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInstanceConsoleConnectionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInstanceConsoleConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInstanceMaintenanceEventRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInstanceMaintenanceEventRequest.java index 65c6144901d..851a53dd6c6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInstanceMaintenanceEventRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInstanceMaintenanceEventRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInstancePoolRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInstancePoolRequest.java index b789615714d..d4311035be8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInstancePoolRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInstancePoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInstanceRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInstanceRequest.java index 72728390394..9d93366073a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInstanceRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInternetGatewayRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInternetGatewayRequest.java index 936efb021eb..5bf2081d179 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInternetGatewayRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateInternetGatewayRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateIpv6Request.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateIpv6Request.java index 8dfa77d459b..48a84297519 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateIpv6Request.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateIpv6Request.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateLocalPeeringGatewayRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateLocalPeeringGatewayRequest.java index 1369e8fd8a7..5b7e42e7a52 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateLocalPeeringGatewayRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateLocalPeeringGatewayRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateNatGatewayRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateNatGatewayRequest.java index 0174fe78c80..9836b25cc67 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateNatGatewayRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateNatGatewayRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateNetworkSecurityGroupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateNetworkSecurityGroupRequest.java index 0f24a034b6d..58eef68e849 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateNetworkSecurityGroupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateNetworkSecurityGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateNetworkSecurityGroupSecurityRulesRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateNetworkSecurityGroupSecurityRulesRequest.java index 4e1782a7d47..ea76dfa0fb3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateNetworkSecurityGroupSecurityRulesRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateNetworkSecurityGroupSecurityRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdatePrivateIpRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdatePrivateIpRequest.java index 0bc13bfcd18..b76812c0636 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdatePrivateIpRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdatePrivateIpRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdatePublicIpPoolRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdatePublicIpPoolRequest.java index afeea392d7f..6a63d6210b1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdatePublicIpPoolRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdatePublicIpPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdatePublicIpRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdatePublicIpRequest.java index 8326139660e..1bb1b6e3374 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdatePublicIpRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdatePublicIpRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateRemotePeeringConnectionRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateRemotePeeringConnectionRequest.java index f0b23feb397..86fb9ea3b2c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateRemotePeeringConnectionRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateRemotePeeringConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateRouteTableRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateRouteTableRequest.java index 8d0352a6733..46272d73c4c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateRouteTableRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateRouteTableRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateSecurityListRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateSecurityListRequest.java index edba275d0b2..cb0e5c75623 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateSecurityListRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateSecurityListRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateServiceGatewayRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateServiceGatewayRequest.java index 0a4c36f108a..14062a03a0e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateServiceGatewayRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateServiceGatewayRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateSubnetRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateSubnetRequest.java index e8051e97ea5..1b088d2ab26 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateSubnetRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateSubnetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateTunnelCpeDeviceConfigRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateTunnelCpeDeviceConfigRequest.java index 53c803cc015..982e709093c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateTunnelCpeDeviceConfigRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateTunnelCpeDeviceConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVcnRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVcnRequest.java index c42e780d4d9..242518a0293 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVcnRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVcnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVirtualCircuitRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVirtualCircuitRequest.java index 574688a7540..9a9d15a6b49 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVirtualCircuitRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVirtualCircuitRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVlanRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVlanRequest.java index 90c84a3e77e..7dd0b729d75 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVlanRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVnicRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVnicRequest.java index d14bb4148b1..7efa02f96a5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVnicRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVnicRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeAttachmentRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeAttachmentRequest.java index b65ae503c3e..027d438e11a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeAttachmentRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeBackupPolicyRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeBackupPolicyRequest.java index 18d1b1f0f1d..bb97da0e046 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeBackupPolicyRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeBackupPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeBackupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeBackupRequest.java index 00f9bead9aa..c41ff34095d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeBackupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeGroupBackupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeGroupBackupRequest.java index 3961ebbaa7d..47eb84ae79e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeGroupBackupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeGroupBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeGroupRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeGroupRequest.java index 732b80a9470..6ce3caafc6c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeGroupRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeKmsKeyRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeKmsKeyRequest.java index c8e7c79ec19..e17cb6a9d8e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeKmsKeyRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeKmsKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeRequest.java index 2cd3ff98b7e..f92f9547394 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVolumeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVtapRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVtapRequest.java index fa70f8a97e1..44fb6bc38c2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVtapRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpdateVtapRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpgradeDrgRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpgradeDrgRequest.java index 2c1823b98ba..dd3e49ee450 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpgradeDrgRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/UpgradeDrgRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ValidateByoasnRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ValidateByoasnRequest.java index 1453ee6c2d9..4510b26492c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ValidateByoasnRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ValidateByoasnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ValidateByoipRangeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ValidateByoipRangeRequest.java index 94e3eefcfd6..461e5816d35 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/ValidateByoipRangeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/ValidateByoipRangeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/requests/WithdrawByoipRangeRequest.java b/bmc-core/src/main/java/com/oracle/bmc/core/requests/WithdrawByoipRangeRequest.java index 1ab27420e61..bca904033f9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/requests/WithdrawByoipRangeRequest.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/requests/WithdrawByoipRangeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.requests; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AcceptShieldedIntegrityPolicyResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AcceptShieldedIntegrityPolicyResponse.java index 690692d736d..cc130f266d2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AcceptShieldedIntegrityPolicyResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AcceptShieldedIntegrityPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddDrgRouteDistributionStatementsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddDrgRouteDistributionStatementsResponse.java index ca50c05fad9..14387438ba4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddDrgRouteDistributionStatementsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddDrgRouteDistributionStatementsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddDrgRouteRulesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddDrgRouteRulesResponse.java index e1e7e4c6170..f656e728cd1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddDrgRouteRulesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddDrgRouteRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddImageShapeCompatibilityEntryResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddImageShapeCompatibilityEntryResponse.java index 3ffea66c8ab..37dc916b688 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddImageShapeCompatibilityEntryResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddImageShapeCompatibilityEntryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddIpv4SubnetCidrResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddIpv4SubnetCidrResponse.java index f55a8c9cc4a..e090cb3b154 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddIpv4SubnetCidrResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddIpv4SubnetCidrResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddIpv6SubnetCidrResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddIpv6SubnetCidrResponse.java index 9e2abc54b6a..fec3e916520 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddIpv6SubnetCidrResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddIpv6SubnetCidrResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddIpv6VcnCidrResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddIpv6VcnCidrResponse.java index 7fac5e52b54..800d55f7d35 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddIpv6VcnCidrResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddIpv6VcnCidrResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddNetworkSecurityGroupSecurityRulesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddNetworkSecurityGroupSecurityRulesResponse.java index 1f9cb0af1af..83fdf1088d4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddNetworkSecurityGroupSecurityRulesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddNetworkSecurityGroupSecurityRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddPublicIpPoolCapacityResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddPublicIpPoolCapacityResponse.java index e2c95b5d13b..d7b6208da09 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddPublicIpPoolCapacityResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddPublicIpPoolCapacityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddVcnCidrResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddVcnCidrResponse.java index 9156dd9bc5f..25d577a147e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddVcnCidrResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AddVcnCidrResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AdvertiseByoipRangeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AdvertiseByoipRangeResponse.java index 5651251e403..ee3334cb4cd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AdvertiseByoipRangeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AdvertiseByoipRangeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ApplyHostConfigurationResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ApplyHostConfigurationResponse.java index bdfd0eb8f6d..821562bc747 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ApplyHostConfigurationResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ApplyHostConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachBootVolumeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachBootVolumeResponse.java index 7b3b9b189f2..ac56df7278f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachBootVolumeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachBootVolumeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachComputeHostGroupHostResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachComputeHostGroupHostResponse.java index 3a276e29482..ff796dccf1d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachComputeHostGroupHostResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachComputeHostGroupHostResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachInstancePoolInstanceResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachInstancePoolInstanceResponse.java index 27461198221..c03d8f85c78 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachInstancePoolInstanceResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachInstancePoolInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachLoadBalancerResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachLoadBalancerResponse.java index 98c0b767fda..51c27dd0f60 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachLoadBalancerResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachLoadBalancerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachServiceIdResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachServiceIdResponse.java index 6918b21a4c2..57660b0d09d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachServiceIdResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachServiceIdResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachVnicResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachVnicResponse.java index 5fe44ccc7a1..77156bb6d39 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachVnicResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachVnicResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachVolumeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachVolumeResponse.java index 2d1f36cced8..667e7a015f5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachVolumeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/AttachVolumeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/BulkAddVirtualCircuitPublicPrefixesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/BulkAddVirtualCircuitPublicPrefixesResponse.java index 1cee4f5acff..95d6091efc8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/BulkAddVirtualCircuitPublicPrefixesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/BulkAddVirtualCircuitPublicPrefixesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/BulkDeleteVirtualCircuitPublicPrefixesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/BulkDeleteVirtualCircuitPublicPrefixesResponse.java index e4cec57e1fe..be585a394ec 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/BulkDeleteVirtualCircuitPublicPrefixesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/BulkDeleteVirtualCircuitPublicPrefixesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CaptureConsoleHistoryResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CaptureConsoleHistoryResponse.java index b9d35a26acd..696802f9fb5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CaptureConsoleHistoryResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CaptureConsoleHistoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeBootVolumeBackupCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeBootVolumeBackupCompartmentResponse.java index 4ea2d14eb9a..8eaaa364ed9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeBootVolumeBackupCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeBootVolumeBackupCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeBootVolumeCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeBootVolumeCompartmentResponse.java index 107ad18bb3e..41ff1cfba26 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeBootVolumeCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeBootVolumeCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeByoasnCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeByoasnCompartmentResponse.java index 4ce88f22953..a1f38e59a97 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeByoasnCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeByoasnCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeByoipRangeCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeByoipRangeCompartmentResponse.java index 532f586d180..15b9a914698 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeByoipRangeCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeByoipRangeCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeCaptureFilterCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeCaptureFilterCompartmentResponse.java index f7a84b422e5..5c7a6d413b8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeCaptureFilterCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeCaptureFilterCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeClusterNetworkCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeClusterNetworkCompartmentResponse.java index 5ec763d795d..96de84c891d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeClusterNetworkCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeClusterNetworkCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeCapacityReservationCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeCapacityReservationCompartmentResponse.java index 570367bc25c..d2ab585b3e6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeCapacityReservationCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeCapacityReservationCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeCapacityTopologyCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeCapacityTopologyCompartmentResponse.java index 6ebb1e8adb4..76ed1510066 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeCapacityTopologyCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeCapacityTopologyCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeClusterCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeClusterCompartmentResponse.java index 864254f6e63..08c8cb34fa2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeClusterCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeClusterCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeGpuMemoryClusterCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeGpuMemoryClusterCompartmentResponse.java index ebdcce56194..ddfc7c4d964 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeGpuMemoryClusterCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeGpuMemoryClusterCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeGpuMemoryFabricCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeGpuMemoryFabricCompartmentResponse.java index b6bfd6772c8..fe26199557f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeGpuMemoryFabricCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeGpuMemoryFabricCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeHostCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeHostCompartmentResponse.java index 814eacf4da8..a615e4d7277 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeHostCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeHostCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeHostGroupCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeHostGroupCompartmentResponse.java index b3d1da088d1..016f2b724f8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeHostGroupCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeHostGroupCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeImageCapabilitySchemaCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeImageCapabilitySchemaCompartmentResponse.java index 5c607a8ed13..d65fe2bb6ae 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeImageCapabilitySchemaCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeComputeImageCapabilitySchemaCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeCpeCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeCpeCompartmentResponse.java index 98928ebee9e..bd1eeb1d601 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeCpeCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeCpeCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeCrossConnectCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeCrossConnectCompartmentResponse.java index e02768642fd..b9c3ce99671 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeCrossConnectCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeCrossConnectCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeCrossConnectGroupCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeCrossConnectGroupCompartmentResponse.java index c3587afff69..f0fc71dcbd9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeCrossConnectGroupCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeCrossConnectGroupCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeDedicatedVmHostCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeDedicatedVmHostCompartmentResponse.java index 40bf22f888c..34c751c3cd3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeDedicatedVmHostCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeDedicatedVmHostCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeDhcpOptionsCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeDhcpOptionsCompartmentResponse.java index f029d94d6e7..9154b32ca42 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeDhcpOptionsCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeDhcpOptionsCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeDrgCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeDrgCompartmentResponse.java index bdf9d602ad6..9c1cb7251f4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeDrgCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeDrgCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeIPSecConnectionCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeIPSecConnectionCompartmentResponse.java index ee85446bc57..2a839a0cee8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeIPSecConnectionCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeIPSecConnectionCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeImageCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeImageCompartmentResponse.java index d2dcf4a6293..e81c280019d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeImageCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeImageCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeInstanceCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeInstanceCompartmentResponse.java index 83dfe9baf43..89b9e28a493 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeInstanceCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeInstanceCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeInstanceConfigurationCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeInstanceConfigurationCompartmentResponse.java index 79957edad20..cb9e08534cf 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeInstanceConfigurationCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeInstanceConfigurationCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeInstancePoolCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeInstancePoolCompartmentResponse.java index 4539abc4964..0175af21773 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeInstancePoolCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeInstancePoolCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeInternetGatewayCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeInternetGatewayCompartmentResponse.java index 9c61bd0c6c2..54d86427db1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeInternetGatewayCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeInternetGatewayCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeLocalPeeringGatewayCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeLocalPeeringGatewayCompartmentResponse.java index 8985ba8d383..bf8be451990 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeLocalPeeringGatewayCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeLocalPeeringGatewayCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeNatGatewayCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeNatGatewayCompartmentResponse.java index 5a497d3e681..1e9d637bc21 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeNatGatewayCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeNatGatewayCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeNetworkSecurityGroupCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeNetworkSecurityGroupCompartmentResponse.java index 70fda4f0d84..de4c84d7f4d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeNetworkSecurityGroupCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeNetworkSecurityGroupCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangePublicIpCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangePublicIpCompartmentResponse.java index 1cd2c4777c8..e0efebd7f1c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangePublicIpCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangePublicIpCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangePublicIpPoolCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangePublicIpPoolCompartmentResponse.java index b64177eb288..021a5f0217e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangePublicIpPoolCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangePublicIpPoolCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeRemotePeeringConnectionCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeRemotePeeringConnectionCompartmentResponse.java index a7b5cde8e81..17f6576a771 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeRemotePeeringConnectionCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeRemotePeeringConnectionCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeRouteTableCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeRouteTableCompartmentResponse.java index d630101ae2e..9feb4d578bc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeRouteTableCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeRouteTableCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeSecurityListCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeSecurityListCompartmentResponse.java index 903b9da1d25..57d66a57c62 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeSecurityListCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeSecurityListCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeServiceGatewayCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeServiceGatewayCompartmentResponse.java index f1fe2ec7470..da86742fab3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeServiceGatewayCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeServiceGatewayCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeSubnetCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeSubnetCompartmentResponse.java index bb0d42f1dde..31adbe8bbd1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeSubnetCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeSubnetCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVcnCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVcnCompartmentResponse.java index 0d85017b76b..8c8bdd0366c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVcnCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVcnCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVirtualCircuitCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVirtualCircuitCompartmentResponse.java index 8d50b2b6c1f..f0a2ef8fdac 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVirtualCircuitCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVirtualCircuitCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVlanCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVlanCompartmentResponse.java index 7c4ed5952e6..219714a3dc4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVlanCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVlanCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVolumeBackupCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVolumeBackupCompartmentResponse.java index ee67714e2d1..2c71ed48ff6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVolumeBackupCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVolumeBackupCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVolumeCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVolumeCompartmentResponse.java index fb340969668..448cdbf8ad4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVolumeCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVolumeCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVolumeGroupBackupCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVolumeGroupBackupCompartmentResponse.java index 88088f8dc05..fbe3c7ec79a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVolumeGroupBackupCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVolumeGroupBackupCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVolumeGroupCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVolumeGroupCompartmentResponse.java index cc7a85c4abb..18a06869f60 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVolumeGroupCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVolumeGroupCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVtapCompartmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVtapCompartmentResponse.java index c72496d9072..ec17413beb3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVtapCompartmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ChangeVtapCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CheckHostConfigurationResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CheckHostConfigurationResponse.java index 4bb2b9d2341..74bd0888bea 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CheckHostConfigurationResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CheckHostConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ConnectLocalPeeringGatewaysResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ConnectLocalPeeringGatewaysResponse.java index d739f1701f0..44b68330743 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ConnectLocalPeeringGatewaysResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ConnectLocalPeeringGatewaysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ConnectRemotePeeringConnectionsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ConnectRemotePeeringConnectionsResponse.java index 42adea60231..54c16a2e1aa 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ConnectRemotePeeringConnectionsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ConnectRemotePeeringConnectionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CopyBootVolumeBackupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CopyBootVolumeBackupResponse.java index 4e4a3e327d6..eabf2a329b4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CopyBootVolumeBackupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CopyBootVolumeBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CopyVolumeBackupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CopyVolumeBackupResponse.java index 0f039ee5f88..670d9de9e40 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CopyVolumeBackupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CopyVolumeBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CopyVolumeGroupBackupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CopyVolumeGroupBackupResponse.java index 41aba0283a6..76b77b68480 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CopyVolumeGroupBackupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CopyVolumeGroupBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateAppCatalogSubscriptionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateAppCatalogSubscriptionResponse.java index acb43b46808..91fc7b718b5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateAppCatalogSubscriptionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateAppCatalogSubscriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateBootVolumeBackupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateBootVolumeBackupResponse.java index 3ca09330702..26832947e42 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateBootVolumeBackupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateBootVolumeBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateBootVolumeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateBootVolumeResponse.java index 0998c06f669..8c7998c5588 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateBootVolumeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateBootVolumeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateByoasnResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateByoasnResponse.java index 098d03b4621..a29e46f31fe 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateByoasnResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateByoasnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateByoipRangeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateByoipRangeResponse.java index 611ee555e15..3741f2042ac 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateByoipRangeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateByoipRangeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateCaptureFilterResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateCaptureFilterResponse.java index 1902264acd0..4b00a19f0e7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateCaptureFilterResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateCaptureFilterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateClusterNetworkResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateClusterNetworkResponse.java index 91cabde12af..e90102cbbfe 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateClusterNetworkResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateClusterNetworkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeCapacityReportResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeCapacityReportResponse.java index f02445ab173..0154eaff3f8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeCapacityReportResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeCapacityReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeCapacityReservationResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeCapacityReservationResponse.java index d53f9a03ca8..3b71730db8d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeCapacityReservationResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeCapacityReservationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeCapacityTopologyResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeCapacityTopologyResponse.java index a82515f56d2..b132cc4abef 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeCapacityTopologyResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeCapacityTopologyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeClusterResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeClusterResponse.java index 80e3b9b2912..29182a763ad 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeClusterResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeGpuMemoryClusterResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeGpuMemoryClusterResponse.java index 19bca64fd77..3c2141a5d2c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeGpuMemoryClusterResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeGpuMemoryClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeHostGroupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeHostGroupResponse.java index 1ee7786b66c..6f13309e2f7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeHostGroupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeHostGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeImageCapabilitySchemaResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeImageCapabilitySchemaResponse.java index edf62947bb0..c689f14a0e3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeImageCapabilitySchemaResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateComputeImageCapabilitySchemaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateCpeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateCpeResponse.java index c3fa5c5d256..f3015be4a9d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateCpeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateCpeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateCrossConnectGroupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateCrossConnectGroupResponse.java index e115466deec..5194881fb59 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateCrossConnectGroupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateCrossConnectGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateCrossConnectResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateCrossConnectResponse.java index 591a189132a..def61a3f212 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateCrossConnectResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateCrossConnectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDedicatedVmHostResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDedicatedVmHostResponse.java index 9f6bcedb393..e1d9c63b32c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDedicatedVmHostResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDedicatedVmHostResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDhcpOptionsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDhcpOptionsResponse.java index 82d8096365b..9c021caccf7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDhcpOptionsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDhcpOptionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDrgAttachmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDrgAttachmentResponse.java index c9142d15de4..81072cee5ca 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDrgAttachmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDrgAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDrgResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDrgResponse.java index 8ce8d6b45aa..c0d1677622f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDrgResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDrgResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDrgRouteDistributionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDrgRouteDistributionResponse.java index 7b586880759..9f0d3b6c94c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDrgRouteDistributionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDrgRouteDistributionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDrgRouteTableResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDrgRouteTableResponse.java index 54928e1d543..3e04f0eeabc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDrgRouteTableResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateDrgRouteTableResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateIPSecConnectionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateIPSecConnectionResponse.java index ecdcfb1af90..169a9558606 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateIPSecConnectionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateIPSecConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateImageResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateImageResponse.java index 27861e17a9b..263ec7f803a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateImageResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateImageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateInstanceConfigurationResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateInstanceConfigurationResponse.java index c319943742f..b702b6fd460 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateInstanceConfigurationResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateInstanceConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateInstanceConsoleConnectionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateInstanceConsoleConnectionResponse.java index 4200db5c840..53bcf2e6347 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateInstanceConsoleConnectionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateInstanceConsoleConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateInstancePoolResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateInstancePoolResponse.java index e9a55fda78d..d451fa6c0b4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateInstancePoolResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateInstancePoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateInternetGatewayResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateInternetGatewayResponse.java index 7fd455638da..8d7c06cdd76 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateInternetGatewayResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateInternetGatewayResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateIpv6Response.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateIpv6Response.java index ebc099ce818..c6c04f894e4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateIpv6Response.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateIpv6Response.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateLocalPeeringGatewayResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateLocalPeeringGatewayResponse.java index 09063116295..d0a22ad0315 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateLocalPeeringGatewayResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateLocalPeeringGatewayResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateNatGatewayResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateNatGatewayResponse.java index fb920cc6d69..9cd87ec21b9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateNatGatewayResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateNatGatewayResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateNetworkSecurityGroupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateNetworkSecurityGroupResponse.java index 833b15b54bb..f3071db4098 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateNetworkSecurityGroupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateNetworkSecurityGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreatePrivateIpResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreatePrivateIpResponse.java index 0304af2cfd9..c823c7d503e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreatePrivateIpResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreatePrivateIpResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreatePublicIpPoolResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreatePublicIpPoolResponse.java index 5c33e1231cc..829b320e7eb 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreatePublicIpPoolResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreatePublicIpPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreatePublicIpResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreatePublicIpResponse.java index 84427a7bebb..463de4e1b30 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreatePublicIpResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreatePublicIpResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateRemotePeeringConnectionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateRemotePeeringConnectionResponse.java index 56d9eabd057..793ef3144fb 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateRemotePeeringConnectionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateRemotePeeringConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateRouteTableResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateRouteTableResponse.java index 2e2a3a673d0..285eeb9cc17 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateRouteTableResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateRouteTableResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateSecurityListResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateSecurityListResponse.java index 939ab1bd9e4..78e45806cae 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateSecurityListResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateSecurityListResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateServiceGatewayResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateServiceGatewayResponse.java index f4d360ed30d..38117fbe3c9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateServiceGatewayResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateServiceGatewayResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateSubnetResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateSubnetResponse.java index 34707af9ee0..0f8255b2483 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateSubnetResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateSubnetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVcnResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVcnResponse.java index 49d2e2aaa75..ce4d2bd3d2d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVcnResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVcnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVirtualCircuitResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVirtualCircuitResponse.java index 049b7f1ff21..abef335462d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVirtualCircuitResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVirtualCircuitResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVlanResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVlanResponse.java index 27cbbd7237b..196bc8d68be 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVlanResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeBackupPolicyAssignmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeBackupPolicyAssignmentResponse.java index 81e7e67403a..8562117914a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeBackupPolicyAssignmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeBackupPolicyAssignmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeBackupPolicyResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeBackupPolicyResponse.java index 748206458e3..81a98ce3cc9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeBackupPolicyResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeBackupPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeBackupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeBackupResponse.java index 456bf5ba1f8..be35bc79424 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeBackupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeGroupBackupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeGroupBackupResponse.java index 6e5aecf26f0..0d9b0be8b58 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeGroupBackupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeGroupBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeGroupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeGroupResponse.java index 6c5073be21f..3e56166ea84 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeGroupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeResponse.java index b8abcd35719..31f036fc020 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVolumeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVtapResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVtapResponse.java index 4945908b7de..c5a7dd6927e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVtapResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/CreateVtapResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteAppCatalogSubscriptionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteAppCatalogSubscriptionResponse.java index 0d79f4de16a..53245346544 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteAppCatalogSubscriptionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteAppCatalogSubscriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteBootVolumeBackupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteBootVolumeBackupResponse.java index 9e67c73976a..3756586863e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteBootVolumeBackupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteBootVolumeBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteBootVolumeKmsKeyResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteBootVolumeKmsKeyResponse.java index ce5587f692e..5ce1c777473 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteBootVolumeKmsKeyResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteBootVolumeKmsKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteBootVolumeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteBootVolumeResponse.java index 04b796a5020..15f7f9158b2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteBootVolumeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteBootVolumeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteByoasnResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteByoasnResponse.java index b90f51f5e47..deaeb45aace 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteByoasnResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteByoasnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteByoipRangeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteByoipRangeResponse.java index 7de6f7c3a10..3df00375b30 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteByoipRangeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteByoipRangeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteCaptureFilterResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteCaptureFilterResponse.java index 366a4313b68..6ee5ef80b74 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteCaptureFilterResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteCaptureFilterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeCapacityReservationResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeCapacityReservationResponse.java index 6ad22161e7e..8cdd0d7f7b0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeCapacityReservationResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeCapacityReservationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeCapacityTopologyResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeCapacityTopologyResponse.java index 36da37c52b5..c0017a3ea8e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeCapacityTopologyResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeCapacityTopologyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeClusterResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeClusterResponse.java index 7f18567e707..3862eaeb2f7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeClusterResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeGpuMemoryClusterResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeGpuMemoryClusterResponse.java index a4d4b396a65..f7bd2c01def 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeGpuMemoryClusterResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeGpuMemoryClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeHostGroupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeHostGroupResponse.java index c0c6761e656..665d92297a4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeHostGroupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeHostGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeImageCapabilitySchemaResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeImageCapabilitySchemaResponse.java index 5559ad57767..ffb6a7820d4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeImageCapabilitySchemaResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteComputeImageCapabilitySchemaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteConsoleHistoryResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteConsoleHistoryResponse.java index 4f03d76004c..d39844fc1a7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteConsoleHistoryResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteConsoleHistoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteCpeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteCpeResponse.java index 773cd1551cb..982581439c0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteCpeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteCpeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteCrossConnectGroupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteCrossConnectGroupResponse.java index 728212e910b..67185229623 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteCrossConnectGroupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteCrossConnectGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteCrossConnectResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteCrossConnectResponse.java index df96de1bfcd..96657791423 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteCrossConnectResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteCrossConnectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDedicatedVmHostResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDedicatedVmHostResponse.java index dba3c1c442e..52034c58227 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDedicatedVmHostResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDedicatedVmHostResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDhcpOptionsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDhcpOptionsResponse.java index 9670ffe1d90..9d94db24fda 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDhcpOptionsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDhcpOptionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDrgAttachmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDrgAttachmentResponse.java index 47a8b3d8b7e..ffe17948eff 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDrgAttachmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDrgAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDrgResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDrgResponse.java index fdb26df04a8..8cfa7f0042d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDrgResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDrgResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDrgRouteDistributionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDrgRouteDistributionResponse.java index 36c91371e63..6a4ce55a093 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDrgRouteDistributionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDrgRouteDistributionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDrgRouteTableResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDrgRouteTableResponse.java index 806b71404bf..7f60b08139c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDrgRouteTableResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteDrgRouteTableResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteIPSecConnectionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteIPSecConnectionResponse.java index d7cd2fd65c1..da17a20444e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteIPSecConnectionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteIPSecConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteImageResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteImageResponse.java index 99d0a6fa0c5..489d8bcef0a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteImageResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteImageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteInstanceConfigurationResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteInstanceConfigurationResponse.java index 85ea1785a98..aa2e9767800 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteInstanceConfigurationResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteInstanceConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteInstanceConsoleConnectionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteInstanceConsoleConnectionResponse.java index f2465e5ccb8..02a1e7e6444 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteInstanceConsoleConnectionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteInstanceConsoleConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteInternetGatewayResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteInternetGatewayResponse.java index 6dfc4a4ca64..73f690c6a62 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteInternetGatewayResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteInternetGatewayResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteIpv6Response.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteIpv6Response.java index cfd165433c9..fd8982db48b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteIpv6Response.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteIpv6Response.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteLocalPeeringGatewayResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteLocalPeeringGatewayResponse.java index f58942225ab..a1f92d8f3fa 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteLocalPeeringGatewayResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteLocalPeeringGatewayResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteNatGatewayResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteNatGatewayResponse.java index 241ce644877..7570828ffd6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteNatGatewayResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteNatGatewayResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteNetworkSecurityGroupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteNetworkSecurityGroupResponse.java index 4186be78dfd..d2adf1095ac 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteNetworkSecurityGroupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteNetworkSecurityGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeletePrivateIpResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeletePrivateIpResponse.java index 173b1a1dfe8..9feb3684d6e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeletePrivateIpResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeletePrivateIpResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeletePublicIpPoolResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeletePublicIpPoolResponse.java index b340e05f78a..fb43ec6dd32 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeletePublicIpPoolResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeletePublicIpPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeletePublicIpResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeletePublicIpResponse.java index 3e0c79a026c..39acfa7a5e1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeletePublicIpResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeletePublicIpResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteRemotePeeringConnectionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteRemotePeeringConnectionResponse.java index fa98cf29600..af545a646fc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteRemotePeeringConnectionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteRemotePeeringConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteRouteTableResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteRouteTableResponse.java index 42d77bc5449..103879e234f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteRouteTableResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteRouteTableResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteSecurityListResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteSecurityListResponse.java index 3bd750000e1..262b8291f9c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteSecurityListResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteSecurityListResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteServiceGatewayResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteServiceGatewayResponse.java index f1b1b33e989..6f853d6dd11 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteServiceGatewayResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteServiceGatewayResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteSubnetResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteSubnetResponse.java index d67deec4955..7c0720d520b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteSubnetResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteSubnetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVcnResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVcnResponse.java index 4763516522d..e3052dac3f5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVcnResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVcnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVirtualCircuitResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVirtualCircuitResponse.java index 864927780e1..b3a26daaebc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVirtualCircuitResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVirtualCircuitResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVlanResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVlanResponse.java index d18370b8a96..99bc1f79974 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVlanResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeBackupPolicyAssignmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeBackupPolicyAssignmentResponse.java index 3c59196f6db..95922060ee3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeBackupPolicyAssignmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeBackupPolicyAssignmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeBackupPolicyResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeBackupPolicyResponse.java index 9fb4f85b34c..4b82c87959d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeBackupPolicyResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeBackupPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeBackupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeBackupResponse.java index 068cb72a279..cfb2ba670cb 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeBackupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeGroupBackupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeGroupBackupResponse.java index 6f4c98c1710..b652c6029a9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeGroupBackupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeGroupBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeGroupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeGroupResponse.java index 7522d15a48e..c38bf443e21 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeGroupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeKmsKeyResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeKmsKeyResponse.java index 956904ff631..26a70c10487 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeKmsKeyResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeKmsKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeResponse.java index ceca070a913..9ac246e3509 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVolumeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVtapResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVtapResponse.java index 902b7b07ec7..49d46e24dd4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVtapResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DeleteVtapResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachBootVolumeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachBootVolumeResponse.java index a0c92af0a0e..29e181eab22 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachBootVolumeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachBootVolumeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachComputeHostGroupHostResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachComputeHostGroupHostResponse.java index a3cf58d4e8b..eff716c82f0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachComputeHostGroupHostResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachComputeHostGroupHostResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachInstancePoolInstanceResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachInstancePoolInstanceResponse.java index 2011dd0c4e5..718d9d1f997 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachInstancePoolInstanceResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachInstancePoolInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachLoadBalancerResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachLoadBalancerResponse.java index ff000003024..a337e9aeddd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachLoadBalancerResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachLoadBalancerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachServiceIdResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachServiceIdResponse.java index 99dfc1a511b..8e1dbb8c263 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachServiceIdResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachServiceIdResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachVnicResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachVnicResponse.java index 538c975c683..99d8d57e045 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachVnicResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachVnicResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachVolumeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachVolumeResponse.java index 5d1bdb2f88c..8ed58142b56 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachVolumeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/DetachVolumeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ExportImageResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ExportImageResponse.java index f4e52c5927d..6e8f29c6aea 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ExportImageResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ExportImageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetAllDrgAttachmentsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetAllDrgAttachmentsResponse.java index ee700fffbb2..a5b45595a5e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetAllDrgAttachmentsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetAllDrgAttachmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetAllowedIkeIPSecParametersResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetAllowedIkeIPSecParametersResponse.java index 8b224e8759e..2bb2e9b50c2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetAllowedIkeIPSecParametersResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetAllowedIkeIPSecParametersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetAppCatalogListingAgreementsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetAppCatalogListingAgreementsResponse.java index b8b3fc36284..d1be62fd7b7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetAppCatalogListingAgreementsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetAppCatalogListingAgreementsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetAppCatalogListingResourceVersionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetAppCatalogListingResourceVersionResponse.java index e16a9403d9c..b9b9583c17f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetAppCatalogListingResourceVersionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetAppCatalogListingResourceVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetAppCatalogListingResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetAppCatalogListingResponse.java index 30183ce5204..3bfdbea125b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetAppCatalogListingResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetAppCatalogListingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBlockVolumeReplicaResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBlockVolumeReplicaResponse.java index 3c966232110..1452e4686db 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBlockVolumeReplicaResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBlockVolumeReplicaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBootVolumeAttachmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBootVolumeAttachmentResponse.java index cbfdac5da9a..8dbcb90bbff 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBootVolumeAttachmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBootVolumeAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBootVolumeBackupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBootVolumeBackupResponse.java index 2167d06b4fc..f0d61da9419 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBootVolumeBackupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBootVolumeBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBootVolumeKmsKeyResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBootVolumeKmsKeyResponse.java index f35bfee31e0..87a2531f8dc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBootVolumeKmsKeyResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBootVolumeKmsKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBootVolumeReplicaResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBootVolumeReplicaResponse.java index a3b73339bb5..1f0de4ea120 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBootVolumeReplicaResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBootVolumeReplicaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBootVolumeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBootVolumeResponse.java index 1bd161cbe2b..4d1bd57001b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBootVolumeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetBootVolumeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetByoasnResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetByoasnResponse.java index 61510dc54bf..a03ba9e0946 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetByoasnResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetByoasnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetByoipRangeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetByoipRangeResponse.java index d8abf278d24..2fe90171d3e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetByoipRangeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetByoipRangeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCaptureFilterResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCaptureFilterResponse.java index 3276a067b02..d283d48a499 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCaptureFilterResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCaptureFilterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetClusterNetworkResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetClusterNetworkResponse.java index 332e3bd6cc5..6bf61aaefcd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetClusterNetworkResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetClusterNetworkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeCapacityReservationResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeCapacityReservationResponse.java index b59e79377dd..a204b01946e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeCapacityReservationResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeCapacityReservationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeCapacityTopologyResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeCapacityTopologyResponse.java index a50f5311434..7877e3f4a8c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeCapacityTopologyResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeCapacityTopologyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeClusterResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeClusterResponse.java index 56e7c22babf..bbcaf86894b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeClusterResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeGlobalImageCapabilitySchemaResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeGlobalImageCapabilitySchemaResponse.java index d6e08160040..a30a75a4bad 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeGlobalImageCapabilitySchemaResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeGlobalImageCapabilitySchemaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeGlobalImageCapabilitySchemaVersionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeGlobalImageCapabilitySchemaVersionResponse.java index 91bdc1be688..d702d26e141 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeGlobalImageCapabilitySchemaVersionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeGlobalImageCapabilitySchemaVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeGpuMemoryClusterResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeGpuMemoryClusterResponse.java index 230177ac4da..c09835c3a12 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeGpuMemoryClusterResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeGpuMemoryClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeGpuMemoryFabricResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeGpuMemoryFabricResponse.java index 974573b5a41..c68c0a8f168 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeGpuMemoryFabricResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeGpuMemoryFabricResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeHostGroupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeHostGroupResponse.java index e842e27377c..abbd849fa98 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeHostGroupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeHostGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeHostResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeHostResponse.java index fdbdd655994..d868f6d8769 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeHostResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeHostResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeImageCapabilitySchemaResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeImageCapabilitySchemaResponse.java index 5f06b97a41e..d628afe52fc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeImageCapabilitySchemaResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetComputeImageCapabilitySchemaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetConsoleHistoryContentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetConsoleHistoryContentResponse.java index 143f9f03768..d0ad7a7aaf8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetConsoleHistoryContentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetConsoleHistoryContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetConsoleHistoryResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetConsoleHistoryResponse.java index dccc3ad0436..2c0c816c6fd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetConsoleHistoryResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetConsoleHistoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCpeDeviceConfigContentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCpeDeviceConfigContentResponse.java index 38543138bfe..ecd331b7da5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCpeDeviceConfigContentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCpeDeviceConfigContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCpeDeviceShapeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCpeDeviceShapeResponse.java index 3b8ed917778..54970f6bf87 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCpeDeviceShapeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCpeDeviceShapeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCpeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCpeResponse.java index fc7831e934b..8176ffb54d9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCpeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCpeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCrossConnectGroupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCrossConnectGroupResponse.java index 73ed242f2ea..15987e49728 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCrossConnectGroupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCrossConnectGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCrossConnectLetterOfAuthorityResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCrossConnectLetterOfAuthorityResponse.java index 860eb978333..cfe8f13bec9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCrossConnectLetterOfAuthorityResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCrossConnectLetterOfAuthorityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCrossConnectResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCrossConnectResponse.java index f6047e0cdfe..02b8b1f84d8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCrossConnectResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCrossConnectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCrossConnectStatusResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCrossConnectStatusResponse.java index 5c0e22d5812..e9850917cb9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCrossConnectStatusResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetCrossConnectStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDedicatedVmHostResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDedicatedVmHostResponse.java index 949fce44455..e420a9d9158 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDedicatedVmHostResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDedicatedVmHostResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDhcpOptionsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDhcpOptionsResponse.java index 6fa635f5d93..cb5e91c3c95 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDhcpOptionsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDhcpOptionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDrgAttachmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDrgAttachmentResponse.java index 843f069cb77..cab2ce40bb7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDrgAttachmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDrgAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDrgRedundancyStatusResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDrgRedundancyStatusResponse.java index 4ebd538e7f0..e826e7cb627 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDrgRedundancyStatusResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDrgRedundancyStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDrgResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDrgResponse.java index 85b106a230a..b80c55ec18a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDrgResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDrgResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDrgRouteDistributionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDrgRouteDistributionResponse.java index e3472e80ccf..42a71c87661 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDrgRouteDistributionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDrgRouteDistributionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDrgRouteTableResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDrgRouteTableResponse.java index 5a3a414fc8c..71328bb4139 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDrgRouteTableResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetDrgRouteTableResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetFastConnectProviderServiceKeyResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetFastConnectProviderServiceKeyResponse.java index dd6926159b0..71f609dd879 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetFastConnectProviderServiceKeyResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetFastConnectProviderServiceKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetFastConnectProviderServiceResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetFastConnectProviderServiceResponse.java index 61c5e90fb60..7f3aaa21c90 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetFastConnectProviderServiceResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetFastConnectProviderServiceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetFirmwareBundleResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetFirmwareBundleResponse.java index b7ebfa59885..0a4b4aeab3a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetFirmwareBundleResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetFirmwareBundleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionDeviceConfigResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionDeviceConfigResponse.java index fc74fc27c15..2aa43b88453 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionDeviceConfigResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionDeviceConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionDeviceStatusResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionDeviceStatusResponse.java index 834b6009a09..e27ee95de6c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionDeviceStatusResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionDeviceStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionResponse.java index 2de284ab8dd..1fc9395243c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionTunnelErrorResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionTunnelErrorResponse.java index ef37c3bb97d..37bd2265e97 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionTunnelErrorResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionTunnelErrorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionTunnelResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionTunnelResponse.java index 7c9d641d949..a5d2e3a7a34 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionTunnelResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionTunnelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionTunnelSharedSecretResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionTunnelSharedSecretResponse.java index d0e2deea2c9..b92d0290b07 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionTunnelSharedSecretResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIPSecConnectionTunnelSharedSecretResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetImageResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetImageResponse.java index b33c5c7c915..6aa92027725 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetImageResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetImageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetImageShapeCompatibilityEntryResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetImageShapeCompatibilityEntryResponse.java index c4204a3a11c..b267a93fa4f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetImageShapeCompatibilityEntryResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetImageShapeCompatibilityEntryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstanceConfigurationResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstanceConfigurationResponse.java index f6474353a7f..26f18ba2caa 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstanceConfigurationResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstanceConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstanceConsoleConnectionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstanceConsoleConnectionResponse.java index e859cd32033..2528485475d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstanceConsoleConnectionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstanceConsoleConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstanceMaintenanceEventResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstanceMaintenanceEventResponse.java index b713c482e48..ab36558190c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstanceMaintenanceEventResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstanceMaintenanceEventResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstanceMaintenanceRebootResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstanceMaintenanceRebootResponse.java index 0d1cc3c82c5..c8275cfd550 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstanceMaintenanceRebootResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstanceMaintenanceRebootResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstancePoolInstanceResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstancePoolInstanceResponse.java index d0593be39e0..02ac184fb33 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstancePoolInstanceResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstancePoolInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstancePoolLoadBalancerAttachmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstancePoolLoadBalancerAttachmentResponse.java index 57380eb3c21..113e7d306e2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstancePoolLoadBalancerAttachmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstancePoolLoadBalancerAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstancePoolResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstancePoolResponse.java index 0ff5d3006d6..6da8048215c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstancePoolResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstancePoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstanceResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstanceResponse.java index 671912af41f..7f0b4b6b97f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstanceResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInternetGatewayResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInternetGatewayResponse.java index 6b658503605..32606e12bbd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInternetGatewayResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetInternetGatewayResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIpsecCpeDeviceConfigContentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIpsecCpeDeviceConfigContentResponse.java index e57a3d2630d..e76a54f2197 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIpsecCpeDeviceConfigContentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIpsecCpeDeviceConfigContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIpv6Response.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIpv6Response.java index f99d43d9f14..0c9cd3c358f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIpv6Response.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetIpv6Response.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetLocalPeeringGatewayResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetLocalPeeringGatewayResponse.java index 08dcce74d7e..92bba211fed 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetLocalPeeringGatewayResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetLocalPeeringGatewayResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetMeasuredBootReportResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetMeasuredBootReportResponse.java index a8214cdb83e..f219e336220 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetMeasuredBootReportResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetMeasuredBootReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetNatGatewayResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetNatGatewayResponse.java index 92d52632ebe..85795804ec8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetNatGatewayResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetNatGatewayResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetNetworkSecurityGroupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetNetworkSecurityGroupResponse.java index 716437666d1..c91a1581c1f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetNetworkSecurityGroupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetNetworkSecurityGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetNetworkingTopologyResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetNetworkingTopologyResponse.java index e6a479ca8fb..0304c0f693c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetNetworkingTopologyResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetNetworkingTopologyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetPrivateIpResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetPrivateIpResponse.java index 1e2ebebbe16..84094d1b8d6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetPrivateIpResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetPrivateIpResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetPublicIpByIpAddressResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetPublicIpByIpAddressResponse.java index dd8aacce4b5..170a6f83f9e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetPublicIpByIpAddressResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetPublicIpByIpAddressResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetPublicIpByPrivateIpIdResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetPublicIpByPrivateIpIdResponse.java index 2ecca878399..78fcc277e62 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetPublicIpByPrivateIpIdResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetPublicIpByPrivateIpIdResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetPublicIpPoolResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetPublicIpPoolResponse.java index 545a4ccd2e8..73c3ca3cba1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetPublicIpPoolResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetPublicIpPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetPublicIpResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetPublicIpResponse.java index 862d73d3d74..e06797da976 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetPublicIpResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetPublicIpResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetRemotePeeringConnectionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetRemotePeeringConnectionResponse.java index 712892e778a..76b15e825ba 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetRemotePeeringConnectionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetRemotePeeringConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetResourceIpInventoryResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetResourceIpInventoryResponse.java index 55a832612a2..69cff6fb8ad 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetResourceIpInventoryResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetResourceIpInventoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetRouteTableResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetRouteTableResponse.java index 3c01d7f7e84..fec13f46f70 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetRouteTableResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetRouteTableResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetSecurityListResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetSecurityListResponse.java index 3b9817315de..b9c4cce4887 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetSecurityListResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetSecurityListResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetServiceGatewayResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetServiceGatewayResponse.java index 9af2ed14a36..7362513ceba 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetServiceGatewayResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetServiceGatewayResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetServiceResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetServiceResponse.java index 86520c04513..f394c111991 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetServiceResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetServiceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetSubnetCidrUtilizationResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetSubnetCidrUtilizationResponse.java index b3d4af596a5..eafb98ceda6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetSubnetCidrUtilizationResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetSubnetCidrUtilizationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetSubnetIpInventoryResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetSubnetIpInventoryResponse.java index 601f63a1b3a..9b62f68e36e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetSubnetIpInventoryResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetSubnetIpInventoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetSubnetResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetSubnetResponse.java index 190b3b6960c..75726148a0d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetSubnetResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetSubnetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetSubnetTopologyResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetSubnetTopologyResponse.java index e41baf92757..f7a69db8e53 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetSubnetTopologyResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetSubnetTopologyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetTunnelCpeDeviceConfigContentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetTunnelCpeDeviceConfigContentResponse.java index d4cd8ba683b..0829da50b36 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetTunnelCpeDeviceConfigContentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetTunnelCpeDeviceConfigContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetTunnelCpeDeviceConfigResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetTunnelCpeDeviceConfigResponse.java index 772655f3052..b5c0164c63b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetTunnelCpeDeviceConfigResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetTunnelCpeDeviceConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetUpgradeStatusResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetUpgradeStatusResponse.java index 5fb47e102c0..831421c29bc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetUpgradeStatusResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetUpgradeStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVcnDnsResolverAssociationResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVcnDnsResolverAssociationResponse.java index bba530ac197..95fd204e8c4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVcnDnsResolverAssociationResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVcnDnsResolverAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVcnOverlapResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVcnOverlapResponse.java index 2ece3ad47d0..70dd766328c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVcnOverlapResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVcnOverlapResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVcnResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVcnResponse.java index 1dd3709395d..31859778360 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVcnResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVcnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVcnTopologyResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVcnTopologyResponse.java index 92bf3ef975c..432466aaf12 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVcnTopologyResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVcnTopologyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVirtualCircuitResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVirtualCircuitResponse.java index 0f4555a7d35..4475aa2334e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVirtualCircuitResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVirtualCircuitResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVlanResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVlanResponse.java index 83ad880182c..a15911f832c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVlanResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVnicAttachmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVnicAttachmentResponse.java index 1ad2961e76a..a71d51db082 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVnicAttachmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVnicAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVnicResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVnicResponse.java index 9cc51acb4b4..58f51b47a4d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVnicResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVnicResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeAttachmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeAttachmentResponse.java index e1f2c71c3a6..e52000c207d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeAttachmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeBackupPolicyAssetAssignmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeBackupPolicyAssetAssignmentResponse.java index a646664094f..e6617244414 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeBackupPolicyAssetAssignmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeBackupPolicyAssetAssignmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeBackupPolicyAssignmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeBackupPolicyAssignmentResponse.java index 38fb845c127..266202afaf0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeBackupPolicyAssignmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeBackupPolicyAssignmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeBackupPolicyResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeBackupPolicyResponse.java index 3a7cd1f5065..c807a17ebad 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeBackupPolicyResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeBackupPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeBackupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeBackupResponse.java index b6271093e1b..d221bfb96bc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeBackupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeGroupBackupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeGroupBackupResponse.java index 56264751872..c05784c6a48 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeGroupBackupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeGroupBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeGroupReplicaResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeGroupReplicaResponse.java index 126f861f605..25d301f719e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeGroupReplicaResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeGroupReplicaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeGroupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeGroupResponse.java index 6d1a440cc68..906fa1e4058 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeGroupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeKmsKeyResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeKmsKeyResponse.java index 0fb6063c37a..2ea14305299 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeKmsKeyResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeKmsKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeResponse.java index 5d1c66c1b71..fb617e5163d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVolumeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVtapResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVtapResponse.java index ae4087e6c77..1788e59d0d7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVtapResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetVtapResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetWindowsInstanceInitialCredentialsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetWindowsInstanceInitialCredentialsResponse.java index 21e52c54a5f..43e2f438e3d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetWindowsInstanceInitialCredentialsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/GetWindowsInstanceInitialCredentialsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/InstanceActionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/InstanceActionResponse.java index 0648a5e6558..c73829956a5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/InstanceActionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/InstanceActionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/Ipv6VnicDetachResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/Ipv6VnicDetachResponse.java index c2aa3857833..6fddaaee0ab 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/Ipv6VnicDetachResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/Ipv6VnicDetachResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/LaunchInstanceConfigurationResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/LaunchInstanceConfigurationResponse.java index 2791123cbf6..f6346a7d421 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/LaunchInstanceConfigurationResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/LaunchInstanceConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/LaunchInstanceResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/LaunchInstanceResponse.java index af7bb6bd2bb..d0120ae4be0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/LaunchInstanceResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/LaunchInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListAllowedPeerRegionsForRemotePeeringResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListAllowedPeerRegionsForRemotePeeringResponse.java index 5e5de3e171c..4cd3e42998f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListAllowedPeerRegionsForRemotePeeringResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListAllowedPeerRegionsForRemotePeeringResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListAppCatalogListingResourceVersionsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListAppCatalogListingResourceVersionsResponse.java index 6c467f060ee..6bb4b4f6bc0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListAppCatalogListingResourceVersionsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListAppCatalogListingResourceVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListAppCatalogListingsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListAppCatalogListingsResponse.java index f7879f47715..94f9b39213a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListAppCatalogListingsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListAppCatalogListingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListAppCatalogSubscriptionsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListAppCatalogSubscriptionsResponse.java index d9946542567..ecaf3cd7e1e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListAppCatalogSubscriptionsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListAppCatalogSubscriptionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListBlockVolumeReplicasResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListBlockVolumeReplicasResponse.java index 39d1689fb2f..15b7c755f43 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListBlockVolumeReplicasResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListBlockVolumeReplicasResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListBootVolumeAttachmentsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListBootVolumeAttachmentsResponse.java index 34c82c76f26..0a7c3a4b844 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListBootVolumeAttachmentsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListBootVolumeAttachmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListBootVolumeBackupsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListBootVolumeBackupsResponse.java index 5a25a9a9b14..d9994a452b7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListBootVolumeBackupsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListBootVolumeBackupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListBootVolumeReplicasResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListBootVolumeReplicasResponse.java index 2084bf397d1..59458ff63f8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListBootVolumeReplicasResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListBootVolumeReplicasResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListBootVolumesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListBootVolumesResponse.java index 76b6a2b9a83..1cbc2845e68 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListBootVolumesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListBootVolumesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListByoasnsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListByoasnsResponse.java index 7344dd1a31b..04f7b669970 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListByoasnsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListByoasnsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListByoipAllocatedRangesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListByoipAllocatedRangesResponse.java index 91c1dd68294..1089e2b861d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListByoipAllocatedRangesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListByoipAllocatedRangesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListByoipRangesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListByoipRangesResponse.java index 3e5d0147a20..147d60d4cdb 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListByoipRangesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListByoipRangesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCaptureFiltersResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCaptureFiltersResponse.java index 0f0a6ddbf75..640e6780126 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCaptureFiltersResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCaptureFiltersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListClusterNetworkInstancesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListClusterNetworkInstancesResponse.java index 1d92984c904..f66b6bcd14e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListClusterNetworkInstancesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListClusterNetworkInstancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListClusterNetworksResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListClusterNetworksResponse.java index 60e8bda19c1..675f4689862 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListClusterNetworksResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListClusterNetworksResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityReservationInstanceShapesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityReservationInstanceShapesResponse.java index ddf9ec4933d..8b882e0957d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityReservationInstanceShapesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityReservationInstanceShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityReservationInstancesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityReservationInstancesResponse.java index 0553dbd14d4..e2e25231664 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityReservationInstancesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityReservationInstancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityReservationsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityReservationsResponse.java index 4f3487ebbb5..8bdd914d7d1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityReservationsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityReservationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityTopologiesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityTopologiesResponse.java index 5be7ad274e5..e58870ec048 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityTopologiesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityTopologiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityTopologyComputeBareMetalHostsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityTopologyComputeBareMetalHostsResponse.java index d13d2a63d08..3551616e9af 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityTopologyComputeBareMetalHostsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityTopologyComputeBareMetalHostsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityTopologyComputeHpcIslandsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityTopologyComputeHpcIslandsResponse.java index 01943c1f691..5529d7b3a5b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityTopologyComputeHpcIslandsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityTopologyComputeHpcIslandsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityTopologyComputeNetworkBlocksResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityTopologyComputeNetworkBlocksResponse.java index d1e34ec8e46..d86f80775b3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityTopologyComputeNetworkBlocksResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeCapacityTopologyComputeNetworkBlocksResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeClustersResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeClustersResponse.java index ed1cd5d357e..26a6b69f40e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeClustersResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeClustersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeGlobalImageCapabilitySchemaVersionsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeGlobalImageCapabilitySchemaVersionsResponse.java index ff0ad80e47c..e336f8460f4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeGlobalImageCapabilitySchemaVersionsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeGlobalImageCapabilitySchemaVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeGlobalImageCapabilitySchemasResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeGlobalImageCapabilitySchemasResponse.java index 1e902e45062..527e096323a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeGlobalImageCapabilitySchemasResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeGlobalImageCapabilitySchemasResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeGpuMemoryClusterInstancesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeGpuMemoryClusterInstancesResponse.java index 2bf763f77a1..fd843f09602 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeGpuMemoryClusterInstancesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeGpuMemoryClusterInstancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeGpuMemoryClustersResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeGpuMemoryClustersResponse.java index eb7bc8fa3d6..ba301e1e16a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeGpuMemoryClustersResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeGpuMemoryClustersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeGpuMemoryFabricsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeGpuMemoryFabricsResponse.java index 1ccd7a4221e..144c510602b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeGpuMemoryFabricsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeGpuMemoryFabricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeHostGroupsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeHostGroupsResponse.java index 3e57eb68ee4..05e4a9b0c97 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeHostGroupsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeHostGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeHostsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeHostsResponse.java index 9074c0108db..7ff8ea40709 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeHostsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeHostsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeImageCapabilitySchemasResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeImageCapabilitySchemasResponse.java index cfcac587522..a7bd8fa59f1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeImageCapabilitySchemasResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListComputeImageCapabilitySchemasResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListConsoleHistoriesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListConsoleHistoriesResponse.java index 5513e69a11d..b5b96a412ee 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListConsoleHistoriesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListConsoleHistoriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCpeDeviceShapesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCpeDeviceShapesResponse.java index 297f3563a2c..aecac5e59f1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCpeDeviceShapesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCpeDeviceShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCpesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCpesResponse.java index 6de48009dd8..1dc383b2ef6 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCpesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCpesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCrossConnectGroupsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCrossConnectGroupsResponse.java index d07cac85488..72de189d2ad 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCrossConnectGroupsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCrossConnectGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCrossConnectLocationsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCrossConnectLocationsResponse.java index cc3d8a11e8c..b0c6f904d34 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCrossConnectLocationsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCrossConnectLocationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCrossConnectMappingsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCrossConnectMappingsResponse.java index eb56e9f400f..1712df0ffa3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCrossConnectMappingsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCrossConnectMappingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCrossConnectsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCrossConnectsResponse.java index 6fb6078aa41..0a5b6c68f80 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCrossConnectsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCrossConnectsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCrossconnectPortSpeedShapesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCrossconnectPortSpeedShapesResponse.java index 87fa0d1822b..df979480948 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCrossconnectPortSpeedShapesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListCrossconnectPortSpeedShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDedicatedVmHostInstanceShapesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDedicatedVmHostInstanceShapesResponse.java index da82b6889cb..7dc44d49044 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDedicatedVmHostInstanceShapesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDedicatedVmHostInstanceShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDedicatedVmHostInstancesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDedicatedVmHostInstancesResponse.java index 75ee0f03b31..b1bf7d838ce 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDedicatedVmHostInstancesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDedicatedVmHostInstancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDedicatedVmHostShapesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDedicatedVmHostShapesResponse.java index 3cd0630ce12..28931eeb488 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDedicatedVmHostShapesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDedicatedVmHostShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDedicatedVmHostsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDedicatedVmHostsResponse.java index af1c7738723..9486909710b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDedicatedVmHostsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDedicatedVmHostsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDhcpOptionsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDhcpOptionsResponse.java index d8aa8e81f2d..f78ac73e2e8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDhcpOptionsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDhcpOptionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgAttachmentsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgAttachmentsResponse.java index 8af58c59c49..bbe4fe72bc9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgAttachmentsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgAttachmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgRouteDistributionStatementsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgRouteDistributionStatementsResponse.java index 1faefcc5df5..af4d682ff27 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgRouteDistributionStatementsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgRouteDistributionStatementsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgRouteDistributionsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgRouteDistributionsResponse.java index 30f2f3f6589..ef4f9c91517 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgRouteDistributionsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgRouteDistributionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgRouteRulesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgRouteRulesResponse.java index 488c1a79e91..b91baf290f7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgRouteRulesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgRouteRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgRouteTablesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgRouteTablesResponse.java index 9c8af225ed6..be2401e5a74 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgRouteTablesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgRouteTablesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgsResponse.java index a8ce7af58d9..1853b09a8d9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListDrgsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListFastConnectProviderServicesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListFastConnectProviderServicesResponse.java index e4bcb39839e..f438c08c16b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListFastConnectProviderServicesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListFastConnectProviderServicesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListFastConnectProviderVirtualCircuitBandwidthShapesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListFastConnectProviderVirtualCircuitBandwidthShapesResponse.java index 04fe5e9d948..03bbaefd0c2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListFastConnectProviderVirtualCircuitBandwidthShapesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListFastConnectProviderVirtualCircuitBandwidthShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListFirmwareBundlesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListFirmwareBundlesResponse.java index e08a798d7c8..dc673d23de8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListFirmwareBundlesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListFirmwareBundlesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIPSecConnectionTunnelRoutesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIPSecConnectionTunnelRoutesResponse.java index fedbbd11e3f..18fb3e42764 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIPSecConnectionTunnelRoutesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIPSecConnectionTunnelRoutesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIPSecConnectionTunnelSecurityAssociationsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIPSecConnectionTunnelSecurityAssociationsResponse.java index 3dcbf144463..78c9928bd9e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIPSecConnectionTunnelSecurityAssociationsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIPSecConnectionTunnelSecurityAssociationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIPSecConnectionTunnelsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIPSecConnectionTunnelsResponse.java index 26763509d4b..518f469d17f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIPSecConnectionTunnelsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIPSecConnectionTunnelsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIPSecConnectionsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIPSecConnectionsResponse.java index 42e82421509..d903178d013 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIPSecConnectionsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIPSecConnectionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListImageShapeCompatibilityEntriesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListImageShapeCompatibilityEntriesResponse.java index 3fb6f74336a..724c4681abd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListImageShapeCompatibilityEntriesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListImageShapeCompatibilityEntriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListImagesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListImagesResponse.java index 85e31c235ec..0802c099c29 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListImagesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListImagesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstanceConfigurationsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstanceConfigurationsResponse.java index 79a4670a555..778b4b1682e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstanceConfigurationsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstanceConfigurationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstanceConsoleConnectionsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstanceConsoleConnectionsResponse.java index f18f5ddf4ae..b2b5b992b37 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstanceConsoleConnectionsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstanceConsoleConnectionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstanceDevicesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstanceDevicesResponse.java index 3d557560299..b125a1e6603 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstanceDevicesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstanceDevicesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstanceMaintenanceEventsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstanceMaintenanceEventsResponse.java index 1d0ba7d97e6..a32514905f2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstanceMaintenanceEventsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstanceMaintenanceEventsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstancePoolInstancesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstancePoolInstancesResponse.java index e9784e6b058..18a774fec61 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstancePoolInstancesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstancePoolInstancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstancePoolsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstancePoolsResponse.java index f24e031830c..dba868d14ee 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstancePoolsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstancePoolsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstancesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstancesResponse.java index e5d7efaa0f4..a7b2d389825 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstancesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInstancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInternetGatewaysResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInternetGatewaysResponse.java index 8c8fa381c3a..5c6f1aaad2c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInternetGatewaysResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListInternetGatewaysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIpInventoryResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIpInventoryResponse.java index ec796aa7cfa..223d1346ced 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIpInventoryResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIpInventoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIpv6sResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIpv6sResponse.java index 53124a74b03..f6bc0b63dac 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIpv6sResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListIpv6sResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListLocalPeeringGatewaysResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListLocalPeeringGatewaysResponse.java index ebffae44955..c397ad07ad7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListLocalPeeringGatewaysResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListLocalPeeringGatewaysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListNatGatewaysResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListNatGatewaysResponse.java index d409e477609..86b65fb31cf 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListNatGatewaysResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListNatGatewaysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListNetworkSecurityGroupSecurityRulesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListNetworkSecurityGroupSecurityRulesResponse.java index 4ab3f2a776f..186d77430fd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListNetworkSecurityGroupSecurityRulesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListNetworkSecurityGroupSecurityRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListNetworkSecurityGroupVnicsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListNetworkSecurityGroupVnicsResponse.java index 2fba34024fd..c110ed740c2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListNetworkSecurityGroupVnicsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListNetworkSecurityGroupVnicsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListNetworkSecurityGroupsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListNetworkSecurityGroupsResponse.java index 4ef11a53a9a..c477c8664ad 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListNetworkSecurityGroupsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListNetworkSecurityGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListPrivateIpsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListPrivateIpsResponse.java index 978d8d895b2..f235fa7c7bd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListPrivateIpsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListPrivateIpsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListPublicIpPoolsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListPublicIpPoolsResponse.java index bac2ac94dbd..3e6cad2569b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListPublicIpPoolsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListPublicIpPoolsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListPublicIpsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListPublicIpsResponse.java index 29ce431d290..d212bd5f20e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListPublicIpsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListPublicIpsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListRemotePeeringConnectionsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListRemotePeeringConnectionsResponse.java index 59f0ffde83a..de7fe7f941b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListRemotePeeringConnectionsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListRemotePeeringConnectionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListRouteTablesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListRouteTablesResponse.java index 01ffff2f68d..559b3d63112 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListRouteTablesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListRouteTablesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListSecurityListsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListSecurityListsResponse.java index f9848f92cdc..dbc4d361928 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListSecurityListsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListSecurityListsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListServiceGatewaysResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListServiceGatewaysResponse.java index f6fb946fa31..0e2aa28d428 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListServiceGatewaysResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListServiceGatewaysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListServicesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListServicesResponse.java index a2ca8504d16..b3f87dcea02 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListServicesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListServicesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListShapesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListShapesResponse.java index d19db0be336..94dfc93b1d5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListShapesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListSubnetsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListSubnetsResponse.java index 7274ef14d27..b650290bd87 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListSubnetsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListSubnetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVcnsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVcnsResponse.java index 4a158114e3e..762f99bf003 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVcnsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVcnsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVirtualCircuitAssociatedTunnelsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVirtualCircuitAssociatedTunnelsResponse.java index 36545ecf57f..1d9375ccd18 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVirtualCircuitAssociatedTunnelsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVirtualCircuitAssociatedTunnelsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVirtualCircuitBandwidthShapesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVirtualCircuitBandwidthShapesResponse.java index a6d5c5e252b..33974c4cb09 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVirtualCircuitBandwidthShapesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVirtualCircuitBandwidthShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVirtualCircuitPublicPrefixesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVirtualCircuitPublicPrefixesResponse.java index 1b41a07f7c6..f5da21e2ae2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVirtualCircuitPublicPrefixesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVirtualCircuitPublicPrefixesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVirtualCircuitsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVirtualCircuitsResponse.java index 5b6811993ec..237da42be14 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVirtualCircuitsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVirtualCircuitsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVlansResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVlansResponse.java index 57371853b71..13d092bf9eb 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVlansResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVlansResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVnicAttachmentsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVnicAttachmentsResponse.java index 5c4218fae34..b8a528a71db 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVnicAttachmentsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVnicAttachmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeAttachmentsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeAttachmentsResponse.java index c7a0ef3a808..3f5b9ac7ec4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeAttachmentsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeAttachmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeBackupPoliciesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeBackupPoliciesResponse.java index 45c3fc542c2..5b528a824e1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeBackupPoliciesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeBackupPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeBackupsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeBackupsResponse.java index ff4b1ad4417..50650c476fc 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeBackupsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeBackupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeGroupBackupsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeGroupBackupsResponse.java index 3979877445c..fcf13f22139 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeGroupBackupsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeGroupBackupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeGroupReplicasResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeGroupReplicasResponse.java index 5903b50f7d4..9ce6a35e9bd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeGroupReplicasResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeGroupReplicasResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeGroupsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeGroupsResponse.java index 746742274e9..48f26753a26 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeGroupsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumeGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumesResponse.java index 076b7196fac..3fbf3ad3086 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVolumesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVtapsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVtapsResponse.java index 1d9431bcfb6..be209b52842 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVtapsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ListVtapsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ModifyIpv4SubnetCidrResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ModifyIpv4SubnetCidrResponse.java index de2992fb28f..e1647004db4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ModifyIpv4SubnetCidrResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ModifyIpv4SubnetCidrResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ModifyVcnCidrResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ModifyVcnCidrResponse.java index 1fa911be2d9..9f361fbe5e9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ModifyVcnCidrResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ModifyVcnCidrResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/PrivateIpVnicDetachResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/PrivateIpVnicDetachResponse.java index 1f6ada06a30..5acc8730fbd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/PrivateIpVnicDetachResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/PrivateIpVnicDetachResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveDrgRouteDistributionStatementsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveDrgRouteDistributionStatementsResponse.java index 8724d768f3f..e8864c0702d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveDrgRouteDistributionStatementsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveDrgRouteDistributionStatementsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveDrgRouteRulesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveDrgRouteRulesResponse.java index 78bdf0fbf3b..b34c1f2da0e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveDrgRouteRulesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveDrgRouteRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveExportDrgRouteDistributionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveExportDrgRouteDistributionResponse.java index aada5cc19e3..779c36fab0e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveExportDrgRouteDistributionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveExportDrgRouteDistributionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveImageShapeCompatibilityEntryResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveImageShapeCompatibilityEntryResponse.java index 81afa92dec7..e1345d0a276 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveImageShapeCompatibilityEntryResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveImageShapeCompatibilityEntryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveImportDrgRouteDistributionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveImportDrgRouteDistributionResponse.java index 0251ce6a02b..29bd2d7b779 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveImportDrgRouteDistributionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveImportDrgRouteDistributionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveIpv4SubnetCidrResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveIpv4SubnetCidrResponse.java index 816d22b3e46..c9d43df3959 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveIpv4SubnetCidrResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveIpv4SubnetCidrResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveIpv6SubnetCidrResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveIpv6SubnetCidrResponse.java index b3ad0ff3573..989b369ee8c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveIpv6SubnetCidrResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveIpv6SubnetCidrResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveIpv6VcnCidrResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveIpv6VcnCidrResponse.java index d5bd49cdb91..ee7b253e932 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveIpv6VcnCidrResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveIpv6VcnCidrResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveNetworkSecurityGroupSecurityRulesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveNetworkSecurityGroupSecurityRulesResponse.java index d615187a0fd..5a413f430ca 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveNetworkSecurityGroupSecurityRulesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveNetworkSecurityGroupSecurityRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemovePublicIpPoolCapacityResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemovePublicIpPoolCapacityResponse.java index e8e814f2776..83205644c16 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemovePublicIpPoolCapacityResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemovePublicIpPoolCapacityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveVcnCidrResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveVcnCidrResponse.java index e0197dbe4c1..909c0b2f7ed 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveVcnCidrResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/RemoveVcnCidrResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ResetInstancePoolResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ResetInstancePoolResponse.java index 47f425548bf..684ec754750 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ResetInstancePoolResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ResetInstancePoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/SetOriginAsnResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/SetOriginAsnResponse.java index 556aac65ad7..2ef283e66cd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/SetOriginAsnResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/SetOriginAsnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/SetOriginAsnToOracleResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/SetOriginAsnToOracleResponse.java index 64db2870c67..a2c13e0c4be 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/SetOriginAsnToOracleResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/SetOriginAsnToOracleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/SoftresetInstancePoolResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/SoftresetInstancePoolResponse.java index 5ad1bc7a0cc..d57d253f74d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/SoftresetInstancePoolResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/SoftresetInstancePoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/SoftstopInstancePoolResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/SoftstopInstancePoolResponse.java index 18dab5afd3d..613bfecceb8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/SoftstopInstancePoolResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/SoftstopInstancePoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/StartInstancePoolResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/StartInstancePoolResponse.java index 53e37065033..4074fea171c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/StartInstancePoolResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/StartInstancePoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/StopInstancePoolResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/StopInstancePoolResponse.java index 6ba1e77b7c9..04694832b7a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/StopInstancePoolResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/StopInstancePoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/TerminateClusterNetworkResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/TerminateClusterNetworkResponse.java index 631106a5ec4..ee368f572be 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/TerminateClusterNetworkResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/TerminateClusterNetworkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/TerminateInstancePoolResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/TerminateInstancePoolResponse.java index 08cb77ebfef..187c0d09a0f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/TerminateInstancePoolResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/TerminateInstancePoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/TerminateInstanceResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/TerminateInstanceResponse.java index 10f091fb296..c1cb701d625 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/TerminateInstanceResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/TerminateInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/TerminationProceedInstancePoolInstanceResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/TerminationProceedInstancePoolInstanceResponse.java index cb5d314ea2f..e32ac9dbad7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/TerminationProceedInstancePoolInstanceResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/TerminationProceedInstancePoolInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateBootVolumeBackupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateBootVolumeBackupResponse.java index 607bfff0a99..9784465b658 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateBootVolumeBackupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateBootVolumeBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateBootVolumeKmsKeyResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateBootVolumeKmsKeyResponse.java index 3136ddbbfa0..ec15d41aa08 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateBootVolumeKmsKeyResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateBootVolumeKmsKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateBootVolumeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateBootVolumeResponse.java index 80fd448d6d2..263e23a4fa0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateBootVolumeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateBootVolumeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateByoasnResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateByoasnResponse.java index d4529b4ab9d..61b2166bef3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateByoasnResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateByoasnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateByoipRangeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateByoipRangeResponse.java index 2189eaefe1e..41b029430e0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateByoipRangeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateByoipRangeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateCaptureFilterResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateCaptureFilterResponse.java index 65ae62a9c93..bc89cd23ebe 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateCaptureFilterResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateCaptureFilterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateClusterNetworkResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateClusterNetworkResponse.java index 88da7690a15..aa1927350b8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateClusterNetworkResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateClusterNetworkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeCapacityReservationResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeCapacityReservationResponse.java index c55dfa05cfc..1e7c7bcb847 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeCapacityReservationResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeCapacityReservationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeCapacityTopologyResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeCapacityTopologyResponse.java index 8a02a019c0c..0df2fe4331c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeCapacityTopologyResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeCapacityTopologyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeClusterResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeClusterResponse.java index 1b0681060c9..ae211b4c4b3 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeClusterResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeGpuMemoryClusterResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeGpuMemoryClusterResponse.java index 3b1d5b3269e..e3b19ab443e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeGpuMemoryClusterResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeGpuMemoryClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeGpuMemoryFabricResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeGpuMemoryFabricResponse.java index 6da1f71a88d..1d62d3f5756 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeGpuMemoryFabricResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeGpuMemoryFabricResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeHostGroupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeHostGroupResponse.java index 56ca9bc4a4b..1fe03bf9300 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeHostGroupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeHostGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeHostResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeHostResponse.java index b598db1b491..dda65454678 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeHostResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeHostResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeImageCapabilitySchemaResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeImageCapabilitySchemaResponse.java index 8d93cd71ca4..7c471840fac 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeImageCapabilitySchemaResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateComputeImageCapabilitySchemaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateConsoleHistoryResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateConsoleHistoryResponse.java index 6ad3bbf6445..7fec7af951c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateConsoleHistoryResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateConsoleHistoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateCpeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateCpeResponse.java index 4aa34db1cb2..647e116fae5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateCpeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateCpeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateCrossConnectGroupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateCrossConnectGroupResponse.java index 5ce99e9cae1..4799d008bbf 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateCrossConnectGroupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateCrossConnectGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateCrossConnectResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateCrossConnectResponse.java index f4ca5030b44..a0e7d73755a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateCrossConnectResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateCrossConnectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDedicatedVmHostResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDedicatedVmHostResponse.java index ba0a67874ee..c0dedc76021 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDedicatedVmHostResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDedicatedVmHostResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDhcpOptionsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDhcpOptionsResponse.java index ebc91648e59..265a2fd1cce 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDhcpOptionsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDhcpOptionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgAttachmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgAttachmentResponse.java index f1ef3584f30..ee729936218 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgAttachmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgResponse.java index 9ed7ebbd865..5c8a0a12f92 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgRouteDistributionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgRouteDistributionResponse.java index 39538c3cbb2..271054a391f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgRouteDistributionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgRouteDistributionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgRouteDistributionStatementsResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgRouteDistributionStatementsResponse.java index 546f83e819f..79e66f1df3c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgRouteDistributionStatementsResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgRouteDistributionStatementsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgRouteRulesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgRouteRulesResponse.java index 59819ffb1c6..5092d54056c 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgRouteRulesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgRouteRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgRouteTableResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgRouteTableResponse.java index 18234954a78..29a0c298631 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgRouteTableResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateDrgRouteTableResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateIPSecConnectionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateIPSecConnectionResponse.java index 3e421460513..e5707c28633 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateIPSecConnectionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateIPSecConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateIPSecConnectionTunnelResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateIPSecConnectionTunnelResponse.java index b11cdb7d2d2..80ef4a151be 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateIPSecConnectionTunnelResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateIPSecConnectionTunnelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateIPSecConnectionTunnelSharedSecretResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateIPSecConnectionTunnelSharedSecretResponse.java index 738ce111f5b..e94db125df9 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateIPSecConnectionTunnelSharedSecretResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateIPSecConnectionTunnelSharedSecretResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateImageResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateImageResponse.java index 7deab007eb7..f147b5df5dd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateImageResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateImageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInstanceConfigurationResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInstanceConfigurationResponse.java index 9e3535536f4..e2854907d3a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInstanceConfigurationResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInstanceConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInstanceConsoleConnectionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInstanceConsoleConnectionResponse.java index 2c7a8aa3856..d1b478940f4 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInstanceConsoleConnectionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInstanceConsoleConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInstanceMaintenanceEventResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInstanceMaintenanceEventResponse.java index 0ecda3e3b18..b60b1f44e97 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInstanceMaintenanceEventResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInstanceMaintenanceEventResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInstancePoolResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInstancePoolResponse.java index 35b05bee90e..97e02dc654a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInstancePoolResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInstancePoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInstanceResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInstanceResponse.java index d11802834bb..d9ff612d593 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInstanceResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInternetGatewayResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInternetGatewayResponse.java index 0ff61040c0f..cd46965375a 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInternetGatewayResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateInternetGatewayResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateIpv6Response.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateIpv6Response.java index 1c1fa04e128..7c91ee4131b 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateIpv6Response.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateIpv6Response.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateLocalPeeringGatewayResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateLocalPeeringGatewayResponse.java index fdfd2e60d35..c6b01d58091 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateLocalPeeringGatewayResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateLocalPeeringGatewayResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateNatGatewayResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateNatGatewayResponse.java index 3fe01ca33b8..abe3b7bd64e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateNatGatewayResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateNatGatewayResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateNetworkSecurityGroupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateNetworkSecurityGroupResponse.java index 25133fb2c9a..574844cad54 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateNetworkSecurityGroupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateNetworkSecurityGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateNetworkSecurityGroupSecurityRulesResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateNetworkSecurityGroupSecurityRulesResponse.java index 314d3e57fbf..44a3b542f68 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateNetworkSecurityGroupSecurityRulesResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateNetworkSecurityGroupSecurityRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdatePrivateIpResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdatePrivateIpResponse.java index 40298a6c794..1069cd535a5 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdatePrivateIpResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdatePrivateIpResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdatePublicIpPoolResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdatePublicIpPoolResponse.java index ddb3ff0ce4b..8f29584dbfd 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdatePublicIpPoolResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdatePublicIpPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdatePublicIpResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdatePublicIpResponse.java index a7d05a7d047..00742abc8f7 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdatePublicIpResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdatePublicIpResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateRemotePeeringConnectionResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateRemotePeeringConnectionResponse.java index 301d6811909..25681db36ad 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateRemotePeeringConnectionResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateRemotePeeringConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateRouteTableResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateRouteTableResponse.java index 4889739e3e8..9a68ffe04a1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateRouteTableResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateRouteTableResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateSecurityListResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateSecurityListResponse.java index 4ae08a0630a..f6741b84e1f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateSecurityListResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateSecurityListResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateServiceGatewayResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateServiceGatewayResponse.java index 0d287b2871d..9e5fe5e3749 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateServiceGatewayResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateServiceGatewayResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateSubnetResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateSubnetResponse.java index bab4ffdd2ab..493c3c5c857 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateSubnetResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateSubnetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateTunnelCpeDeviceConfigResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateTunnelCpeDeviceConfigResponse.java index 455206d68a8..ed7a51591c2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateTunnelCpeDeviceConfigResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateTunnelCpeDeviceConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVcnResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVcnResponse.java index 1bd8c530153..a493aadde0e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVcnResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVcnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVirtualCircuitResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVirtualCircuitResponse.java index 2764ea949ad..98d348b699e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVirtualCircuitResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVirtualCircuitResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVlanResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVlanResponse.java index 5aab54e5ed8..c90c891725f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVlanResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVnicResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVnicResponse.java index b2f98b5e578..c0f6c38fe5f 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVnicResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVnicResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeAttachmentResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeAttachmentResponse.java index e3338fa54de..3aa64b8e456 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeAttachmentResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeBackupPolicyResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeBackupPolicyResponse.java index bd513791d9f..b12d28ce287 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeBackupPolicyResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeBackupPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeBackupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeBackupResponse.java index 22f11a7b088..d2de3a02a05 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeBackupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeGroupBackupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeGroupBackupResponse.java index ceed004ac1d..4529b10203d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeGroupBackupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeGroupBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeGroupResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeGroupResponse.java index c60a13d1844..4cf89b72ef2 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeGroupResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeKmsKeyResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeKmsKeyResponse.java index 72fe83fc392..c075949ee8e 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeKmsKeyResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeKmsKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeResponse.java index d076d571756..27712b992a1 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVolumeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVtapResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVtapResponse.java index 1cd76e82e86..bff3d9f14b0 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVtapResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpdateVtapResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpgradeDrgResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpgradeDrgResponse.java index ec06205ff57..bedf47600ce 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpgradeDrgResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/UpgradeDrgResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ValidateByoasnResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ValidateByoasnResponse.java index badc3c9d9a0..0aaacda1f14 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ValidateByoasnResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ValidateByoasnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ValidateByoipRangeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ValidateByoipRangeResponse.java index 0c07e131485..fc4a110724d 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/ValidateByoipRangeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/ValidateByoipRangeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/java/com/oracle/bmc/core/responses/WithdrawByoipRangeResponse.java b/bmc-core/src/main/java/com/oracle/bmc/core/responses/WithdrawByoipRangeResponse.java index e4a53ba7009..61dcad6c6c8 100644 --- a/bmc-core/src/main/java/com/oracle/bmc/core/responses/WithdrawByoipRangeResponse.java +++ b/bmc-core/src/main/java/com/oracle/bmc/core/responses/WithdrawByoipRangeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.core.responses; diff --git a/bmc-core/src/main/resources/com/oracle/bmc/core/client.properties b/bmc-core/src/main/resources/com/oracle/bmc/core/client.properties index 03c9ae88318..57fa7f4b072 100644 --- a/bmc-core/src/main/resources/com/oracle/bmc/core/client.properties +++ b/bmc-core/src/main/resources/com/oracle/bmc/core/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-dashboardservice/pom.xml b/bmc-dashboardservice/pom.xml index c9d4e17a909..56fb4ce3637 100644 --- a/bmc-dashboardservice/pom.xml +++ b/bmc-dashboardservice/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-dashboardservice @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/Dashboard.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/Dashboard.java index 3b287c72b23..31c1a672a64 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/Dashboard.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/Dashboard.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardAsync.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardAsync.java index 0731460669d..2fdd41f24aa 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardAsync.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardAsyncClient.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardAsyncClient.java index f2b124e466a..985eac9f93e 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardAsyncClient.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardClient.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardClient.java index c1e6d4d2fd8..09b7fbb9990 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardClient.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroup.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroup.java index 234ff2a6039..9ff2365b531 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroup.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroupAsync.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroupAsync.java index 5ed275eb7b8..759c768a760 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroupAsync.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroupAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroupAsyncClient.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroupAsyncClient.java index b9a3778f6e6..59b92ee2593 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroupAsyncClient.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroupAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroupClient.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroupClient.java index 8e0bf881d65..95859aa06fa 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroupClient.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroupClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroupPaginators.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroupPaginators.java index 6bf8c3b7d7e..5e3929e0421 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroupPaginators.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroupPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroupWaiters.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroupWaiters.java index e08cca22862..220cef6cf10 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroupWaiters.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardGroupWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardPaginators.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardPaginators.java index c2658e93c69..d3ad628d446 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardPaginators.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardWaiters.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardWaiters.java index 42c11c2c2b3..d7fbaf5cb30 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardWaiters.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/DashboardWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/ChangeDashboardGroupCompartmentDetails.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/ChangeDashboardGroupCompartmentDetails.java index 4422d1ae76a..f4e55953c01 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/ChangeDashboardGroupCompartmentDetails.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/ChangeDashboardGroupCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.model; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/ChangeDashboardGroupDetails.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/ChangeDashboardGroupDetails.java index 1c38d7e0513..047a436af0b 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/ChangeDashboardGroupDetails.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/ChangeDashboardGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.model; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/CreateDashboardDetails.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/CreateDashboardDetails.java index d2d34c5e743..5dd9a7875fd 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/CreateDashboardDetails.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/CreateDashboardDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.model; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/CreateDashboardGroupDetails.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/CreateDashboardGroupDetails.java index 8fde878ce1c..524b5fb7789 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/CreateDashboardGroupDetails.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/CreateDashboardGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.model; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/CreateV1DashboardDetails.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/CreateV1DashboardDetails.java index 84bd888834d..8f3eb5393c1 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/CreateV1DashboardDetails.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/CreateV1DashboardDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.model; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/Dashboard.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/Dashboard.java index abf1b79b8d3..768faa8aaa1 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/Dashboard.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/Dashboard.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.model; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/DashboardCollection.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/DashboardCollection.java index 4508302fa3b..f8ede61342b 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/DashboardCollection.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/DashboardCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.model; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/DashboardGroup.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/DashboardGroup.java index 1a94a0a59d8..69f1a3f21cb 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/DashboardGroup.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/DashboardGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.model; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/DashboardGroupCollection.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/DashboardGroupCollection.java index d83710afade..67bff073faf 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/DashboardGroupCollection.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/DashboardGroupCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.model; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/DashboardGroupSummary.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/DashboardGroupSummary.java index 648aa1fde7f..89e1c19aa41 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/DashboardGroupSummary.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/DashboardGroupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.model; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/DashboardSummary.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/DashboardSummary.java index e654b944c76..a84ffa5b8b8 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/DashboardSummary.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/DashboardSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.model; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/SortOrder.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/SortOrder.java index 587fd4d9efd..3adb937162a 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/SortOrder.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.model; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/UpdateDashboardDetails.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/UpdateDashboardDetails.java index 6c6b3b74a46..6aedafd1743 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/UpdateDashboardDetails.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/UpdateDashboardDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.model; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/UpdateDashboardGroupDetails.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/UpdateDashboardGroupDetails.java index 01d69c1fafa..8f0f15b451b 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/UpdateDashboardGroupDetails.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/UpdateDashboardGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.model; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/UpdateV1DashboardDetails.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/UpdateV1DashboardDetails.java index 2833ef75282..6c6cc89d97a 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/UpdateV1DashboardDetails.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/UpdateV1DashboardDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.model; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/V1Dashboard.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/V1Dashboard.java index babd68dccf8..882ed2c1fa0 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/V1Dashboard.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/model/V1Dashboard.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.model; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/ChangeDashboardGroupCompartmentRequest.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/ChangeDashboardGroupCompartmentRequest.java index 307439eac2f..60f76b42e78 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/ChangeDashboardGroupCompartmentRequest.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/ChangeDashboardGroupCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.requests; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/ChangeDashboardGroupRequest.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/ChangeDashboardGroupRequest.java index fe1a0313af4..cca45f4b205 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/ChangeDashboardGroupRequest.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/ChangeDashboardGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.requests; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/CreateDashboardGroupRequest.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/CreateDashboardGroupRequest.java index aaa264d2767..c37332ef8cc 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/CreateDashboardGroupRequest.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/CreateDashboardGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.requests; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/CreateDashboardRequest.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/CreateDashboardRequest.java index 5f21f0aeaf2..c2af0d88eee 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/CreateDashboardRequest.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/CreateDashboardRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.requests; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/DeleteDashboardGroupRequest.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/DeleteDashboardGroupRequest.java index 8104671b407..836b7110c8d 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/DeleteDashboardGroupRequest.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/DeleteDashboardGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.requests; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/DeleteDashboardRequest.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/DeleteDashboardRequest.java index db8fe62d093..c6ee4b51e26 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/DeleteDashboardRequest.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/DeleteDashboardRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.requests; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/GetDashboardGroupRequest.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/GetDashboardGroupRequest.java index a8298a935f4..24374fa53b8 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/GetDashboardGroupRequest.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/GetDashboardGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.requests; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/GetDashboardRequest.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/GetDashboardRequest.java index dbc167fce1f..4dc6d251eaa 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/GetDashboardRequest.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/GetDashboardRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.requests; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/ListDashboardGroupsRequest.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/ListDashboardGroupsRequest.java index 1cf0385bc98..8825fcd8b18 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/ListDashboardGroupsRequest.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/ListDashboardGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.requests; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/ListDashboardsRequest.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/ListDashboardsRequest.java index f6ac8d9b89f..2877615fe26 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/ListDashboardsRequest.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/ListDashboardsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.requests; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/UpdateDashboardGroupRequest.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/UpdateDashboardGroupRequest.java index ca596c96fd8..948ff3d8633 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/UpdateDashboardGroupRequest.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/UpdateDashboardGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.requests; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/UpdateDashboardRequest.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/UpdateDashboardRequest.java index 193fd74d24c..39a648ab148 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/UpdateDashboardRequest.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/requests/UpdateDashboardRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.requests; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/ChangeDashboardGroupCompartmentResponse.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/ChangeDashboardGroupCompartmentResponse.java index 7b295bb37d6..7b9a189cdcc 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/ChangeDashboardGroupCompartmentResponse.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/ChangeDashboardGroupCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.responses; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/ChangeDashboardGroupResponse.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/ChangeDashboardGroupResponse.java index 8bb3b3d2979..ca9649e917f 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/ChangeDashboardGroupResponse.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/ChangeDashboardGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.responses; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/CreateDashboardGroupResponse.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/CreateDashboardGroupResponse.java index 4cdaf64f15a..cf5fb608a3d 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/CreateDashboardGroupResponse.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/CreateDashboardGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.responses; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/CreateDashboardResponse.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/CreateDashboardResponse.java index 05845c65ed2..df50dc288fe 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/CreateDashboardResponse.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/CreateDashboardResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.responses; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/DeleteDashboardGroupResponse.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/DeleteDashboardGroupResponse.java index 5a2fcad5e1a..de846433ebd 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/DeleteDashboardGroupResponse.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/DeleteDashboardGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.responses; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/DeleteDashboardResponse.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/DeleteDashboardResponse.java index b9a55ae8d46..d7328b7c800 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/DeleteDashboardResponse.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/DeleteDashboardResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.responses; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/GetDashboardGroupResponse.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/GetDashboardGroupResponse.java index e31a49f4d28..b877728ccbc 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/GetDashboardGroupResponse.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/GetDashboardGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.responses; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/GetDashboardResponse.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/GetDashboardResponse.java index 9ae0045dc4e..6771eb1716a 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/GetDashboardResponse.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/GetDashboardResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.responses; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/ListDashboardGroupsResponse.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/ListDashboardGroupsResponse.java index 0ab973ae815..41b4164e238 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/ListDashboardGroupsResponse.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/ListDashboardGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.responses; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/ListDashboardsResponse.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/ListDashboardsResponse.java index c42be63ab24..b22d7855925 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/ListDashboardsResponse.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/ListDashboardsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.responses; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/UpdateDashboardGroupResponse.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/UpdateDashboardGroupResponse.java index 27bc0831268..b090f380b3d 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/UpdateDashboardGroupResponse.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/UpdateDashboardGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.responses; diff --git a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/UpdateDashboardResponse.java b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/UpdateDashboardResponse.java index 6098510498c..08947ed87e3 100644 --- a/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/UpdateDashboardResponse.java +++ b/bmc-dashboardservice/src/main/java/com/oracle/bmc/dashboardservice/responses/UpdateDashboardResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dashboardservice.responses; diff --git a/bmc-dashboardservice/src/main/resources/com/oracle/bmc/dashboardservice/client.properties b/bmc-dashboardservice/src/main/resources/com/oracle/bmc/dashboardservice/client.properties index 61d7c24d152..3552e2db885 100644 --- a/bmc-dashboardservice/src/main/resources/com/oracle/bmc/dashboardservice/client.properties +++ b/bmc-dashboardservice/src/main/resources/com/oracle/bmc/dashboardservice/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-database/pom.xml b/bmc-database/pom.xml index b27d266f09c..4b5a1c1679e 100644 --- a/bmc-database/pom.xml +++ b/bmc-database/pom.xml @@ -5,7 +5,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml @@ -18,12 +18,12 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 com.oracle.oci.sdk oci-java-sdk-workrequests - 3.77.2 + 3.78.0 diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/Database.java b/bmc-database/src/main/java/com/oracle/bmc/database/Database.java index ec89bbec359..3b2b399d065 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/Database.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/Database.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/DatabaseAsync.java b/bmc-database/src/main/java/com/oracle/bmc/database/DatabaseAsync.java index 718c65b8e31..c14b1876648 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/DatabaseAsync.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/DatabaseAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/DatabaseAsyncClient.java b/bmc-database/src/main/java/com/oracle/bmc/database/DatabaseAsyncClient.java index b5f98dd182b..c7fb45dacde 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/DatabaseAsyncClient.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/DatabaseAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/DatabaseClient.java b/bmc-database/src/main/java/com/oracle/bmc/database/DatabaseClient.java index 528509ee7cb..b32f763e402 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/DatabaseClient.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/DatabaseClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/DatabasePaginators.java b/bmc-database/src/main/java/com/oracle/bmc/database/DatabasePaginators.java index b61b4d8d096..a5c4dfa6386 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/DatabasePaginators.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/DatabasePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/DatabaseWaiters.java b/bmc-database/src/main/java/com/oracle/bmc/database/DatabaseWaiters.java index 1f220060898..87a011aed05 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/DatabaseWaiters.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/DatabaseWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AcdAvmResourceStats.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AcdAvmResourceStats.java index b9051d5a29d..403d002365a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AcdAvmResourceStats.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AcdAvmResourceStats.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ActionMember.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ActionMember.java index 5450c452eb4..b51248fce3a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ActionMember.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ActionMember.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ActionOrderDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ActionOrderDetails.java index 267f7923feb..7db93fee0c3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ActionOrderDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ActionOrderDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ActionParamValuesCollection.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ActionParamValuesCollection.java index e36736720de..3725611c9db 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ActionParamValuesCollection.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ActionParamValuesCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ActionParamValuesSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ActionParamValuesSummary.java index 3e871242be7..65de4208b83 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ActionParamValuesSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ActionParamValuesSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ActivateExadataInfrastructureDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ActivateExadataInfrastructureDetails.java index 6ec348306f8..55f222afbf4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ActivateExadataInfrastructureDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ActivateExadataInfrastructureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AddDbnodeSnapshotsForExadbVmClusterDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AddDbnodeSnapshotsForExadbVmClusterDetails.java index b7259d11c5e..5f122d8941b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AddDbnodeSnapshotsForExadbVmClusterDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AddDbnodeSnapshotsForExadbVmClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AddStandbyAutonomousContainerDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AddStandbyAutonomousContainerDatabaseDetails.java index 59b9e1379b2..3ea90774d2c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AddStandbyAutonomousContainerDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AddStandbyAutonomousContainerDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AddVirtualMachineToCloudVmClusterDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AddVirtualMachineToCloudVmClusterDetails.java index 706e0f8d22c..ec40f8ef5da 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AddVirtualMachineToCloudVmClusterDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AddVirtualMachineToCloudVmClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AddVirtualMachineToVmClusterDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AddVirtualMachineToVmClusterDetails.java index 0214be538f9..e8580820a04 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AddVirtualMachineToVmClusterDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AddVirtualMachineToVmClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AppVersionSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AppVersionSummary.java index 316696fc7e8..b2dbea04708 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AppVersionSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AppVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ApplicationVip.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ApplicationVip.java index ae93ab5a417..e8253bb09e3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ApplicationVip.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ApplicationVip.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ApplicationVipSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ApplicationVipSummary.java index bdbfe59c6a0..eb95199ceb6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ApplicationVipSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ApplicationVipSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AssociatedDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AssociatedDatabaseDetails.java index 072cb105ad1..8cf430df275 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AssociatedDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AssociatedDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AssociatedLongTermBackup.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AssociatedLongTermBackup.java index 80052347617..27caf8add69 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AssociatedLongTermBackup.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AssociatedLongTermBackup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutomatedMountDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutomatedMountDetails.java index 9780cf00218..f3faa70ff61 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutomatedMountDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutomatedMountDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabase.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabase.java index 6c5479ad85c..9fd221c83e9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabase.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseBackup.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseBackup.java index 5dd8564591e..a6386036b8c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseBackup.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseBackup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseBackupCollection.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseBackupCollection.java index d28d1cfd238..ffe657dcd86 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseBackupCollection.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseBackupCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseBackupConfig.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseBackupConfig.java index 4ee4cd8e390..bbdb41b133e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseBackupConfig.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseBackupConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseBackupSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseBackupSummary.java index 22365ea36ed..a5262670228 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseBackupSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseBackupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseDataguard.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseDataguard.java index 5e39d283439..b5de881c086 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseDataguard.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseDataguard.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseDataguardAssociation.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseDataguardAssociation.java index 5c050f920a8..7c0e0ebf4fc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseDataguardAssociation.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseDataguardAssociation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseResourceUsage.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseResourceUsage.java index a4de60495f6..18801cd88c7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseResourceUsage.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseResourceUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseSummary.java index b72096dc9e8..cde63caedb3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseVersionSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseVersionSummary.java index c63beebd492..417efcb9540 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseVersionSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousContainerDatabaseVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDataWarehouse.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDataWarehouse.java index 4d4a72f2084..739292e03e1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDataWarehouse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDataWarehouse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDataWarehouseConnectionStrings.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDataWarehouseConnectionStrings.java index bc75fe5bd7d..37dc83c8773 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDataWarehouseConnectionStrings.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDataWarehouseConnectionStrings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDataWarehouseSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDataWarehouseSummary.java index 8933b9aa55e..47ca36f6ea3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDataWarehouseSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDataWarehouseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabase.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabase.java index 7812cfb80ef..420987f49a7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabase.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; @@ -141,6 +141,8 @@ public final class AutonomousDatabase "isReconnectCloneEnabled", "timeUntilReconnectCloneEnabled", "autonomousMaintenanceScheduleType", + "autonomousDatabaseMaintenanceWindow", + "timeMaintenancePauseUntil", "scheduledOperations", "isAutoScalingForStorageEnabled", "allocatedStorageSizeInTBs", @@ -157,7 +159,8 @@ public final class AutonomousDatabase "clusterPlacementGroupId", "cloneTableSpaceList", "cloneType", - "additionalAttributes" + "additionalAttributes", + "localAdgResourcePoolLeaderId" }) public AutonomousDatabase( String id, @@ -277,6 +280,8 @@ public AutonomousDatabase( Boolean isReconnectCloneEnabled, java.util.Date timeUntilReconnectCloneEnabled, AutonomousMaintenanceScheduleType autonomousMaintenanceScheduleType, + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow, + java.util.Date timeMaintenancePauseUntil, java.util.List scheduledOperations, Boolean isAutoScalingForStorageEnabled, Double allocatedStorageSizeInTBs, @@ -293,7 +298,8 @@ public AutonomousDatabase( String clusterPlacementGroupId, java.util.List cloneTableSpaceList, CloneType cloneType, - java.util.Map additionalAttributes) { + java.util.Map additionalAttributes, + String localAdgResourcePoolLeaderId) { super(); this.id = id; this.compartmentId = compartmentId; @@ -412,6 +418,8 @@ public AutonomousDatabase( this.isReconnectCloneEnabled = isReconnectCloneEnabled; this.timeUntilReconnectCloneEnabled = timeUntilReconnectCloneEnabled; this.autonomousMaintenanceScheduleType = autonomousMaintenanceScheduleType; + this.autonomousDatabaseMaintenanceWindow = autonomousDatabaseMaintenanceWindow; + this.timeMaintenancePauseUntil = timeMaintenancePauseUntil; this.scheduledOperations = scheduledOperations; this.isAutoScalingForStorageEnabled = isAutoScalingForStorageEnabled; this.allocatedStorageSizeInTBs = allocatedStorageSizeInTBs; @@ -429,6 +437,7 @@ public AutonomousDatabase( this.cloneTableSpaceList = cloneTableSpaceList; this.cloneType = cloneType; this.additionalAttributes = additionalAttributes; + this.localAdgResourcePoolLeaderId = localAdgResourcePoolLeaderId; } @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") @@ -2930,6 +2939,31 @@ public Builder autonomousMaintenanceScheduleType( this.__explicitlySet__.add("autonomousMaintenanceScheduleType"); return this; } + + @com.fasterxml.jackson.annotation.JsonProperty("autonomousDatabaseMaintenanceWindow") + private AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow; + + public Builder autonomousDatabaseMaintenanceWindow( + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow) { + this.autonomousDatabaseMaintenanceWindow = autonomousDatabaseMaintenanceWindow; + this.__explicitlySet__.add("autonomousDatabaseMaintenanceWindow"); + return this; + } + /** The date until which maintenance of Autonomous AI Database is temporarily paused. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeMaintenancePauseUntil") + private java.util.Date timeMaintenancePauseUntil; + + /** + * The date until which maintenance of Autonomous AI Database is temporarily paused. + * + * @param timeMaintenancePauseUntil the value to set + * @return this builder + */ + public Builder timeMaintenancePauseUntil(java.util.Date timeMaintenancePauseUntil) { + this.timeMaintenancePauseUntil = timeMaintenancePauseUntil; + this.__explicitlySet__.add("timeMaintenancePauseUntil"); + return this; + } /** * The list of scheduled operations. Consists of values such as dayOfWeek, * scheduledStartTime, scheduledStopTime. @@ -3270,6 +3304,27 @@ public Builder additionalAttributes(java.util.Map additionalAttr this.__explicitlySet__.add("additionalAttributes"); return this; } + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the + * dedicated resource pool leader Autonomous AI Database in the same region, associated with + * local Autonomous Data Guard for a dedicated resource pool member. + */ + @com.fasterxml.jackson.annotation.JsonProperty("localAdgResourcePoolLeaderId") + private String localAdgResourcePoolLeaderId; + + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the + * dedicated resource pool leader Autonomous AI Database in the same region, associated with + * local Autonomous Data Guard for a dedicated resource pool member. + * + * @param localAdgResourcePoolLeaderId the value to set + * @return this builder + */ + public Builder localAdgResourcePoolLeaderId(String localAdgResourcePoolLeaderId) { + this.localAdgResourcePoolLeaderId = localAdgResourcePoolLeaderId; + this.__explicitlySet__.add("localAdgResourcePoolLeaderId"); + return this; + } @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); @@ -3394,6 +3449,8 @@ public AutonomousDatabase build() { this.isReconnectCloneEnabled, this.timeUntilReconnectCloneEnabled, this.autonomousMaintenanceScheduleType, + this.autonomousDatabaseMaintenanceWindow, + this.timeMaintenancePauseUntil, this.scheduledOperations, this.isAutoScalingForStorageEnabled, this.allocatedStorageSizeInTBs, @@ -3410,7 +3467,8 @@ public AutonomousDatabase build() { this.clusterPlacementGroupId, this.cloneTableSpaceList, this.cloneType, - this.additionalAttributes); + this.additionalAttributes, + this.localAdgResourcePoolLeaderId); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } @@ -3776,6 +3834,13 @@ public Builder copy(AutonomousDatabase model) { this.autonomousMaintenanceScheduleType( model.getAutonomousMaintenanceScheduleType()); } + if (model.wasPropertyExplicitlySet("autonomousDatabaseMaintenanceWindow")) { + this.autonomousDatabaseMaintenanceWindow( + model.getAutonomousDatabaseMaintenanceWindow()); + } + if (model.wasPropertyExplicitlySet("timeMaintenancePauseUntil")) { + this.timeMaintenancePauseUntil(model.getTimeMaintenancePauseUntil()); + } if (model.wasPropertyExplicitlySet("scheduledOperations")) { this.scheduledOperations(model.getScheduledOperations()); } @@ -3828,6 +3893,9 @@ public Builder copy(AutonomousDatabase model) { if (model.wasPropertyExplicitlySet("additionalAttributes")) { this.additionalAttributes(model.getAdditionalAttributes()); } + if (model.wasPropertyExplicitlySet("localAdgResourcePoolLeaderId")) { + this.localAdgResourcePoolLeaderId(model.getLocalAdgResourcePoolLeaderId()); + } return this; } } @@ -6845,6 +6913,26 @@ public AutonomousMaintenanceScheduleType getAutonomousMaintenanceScheduleType() return autonomousMaintenanceScheduleType; } + @com.fasterxml.jackson.annotation.JsonProperty("autonomousDatabaseMaintenanceWindow") + private final AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow; + + public AutonomousDatabaseMaintenanceWindowSummary getAutonomousDatabaseMaintenanceWindow() { + return autonomousDatabaseMaintenanceWindow; + } + + /** The date until which maintenance of Autonomous AI Database is temporarily paused. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeMaintenancePauseUntil") + private final java.util.Date timeMaintenancePauseUntil; + + /** + * The date until which maintenance of Autonomous AI Database is temporarily paused. + * + * @return the value + */ + public java.util.Date getTimeMaintenancePauseUntil() { + return timeMaintenancePauseUntil; + } + /** * The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, * scheduledStopTime. @@ -7336,6 +7424,25 @@ public java.util.Map getAdditionalAttributes() { return additionalAttributes; } + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the + * dedicated resource pool leader Autonomous AI Database in the same region, associated with + * local Autonomous Data Guard for a dedicated resource pool member. + */ + @com.fasterxml.jackson.annotation.JsonProperty("localAdgResourcePoolLeaderId") + private final String localAdgResourcePoolLeaderId; + + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the + * dedicated resource pool leader Autonomous AI Database in the same region, associated with + * local Autonomous Data Guard for a dedicated resource pool member. + * + * @return the value + */ + public String getLocalAdgResourcePoolLeaderId() { + return localAdgResourcePoolLeaderId; + } + @Override public String toString() { return this.toString(true); @@ -7502,6 +7609,10 @@ public String toString(boolean includeByteArrayContents) { .append(String.valueOf(this.timeUntilReconnectCloneEnabled)); sb.append(", autonomousMaintenanceScheduleType=") .append(String.valueOf(this.autonomousMaintenanceScheduleType)); + sb.append(", autonomousDatabaseMaintenanceWindow=") + .append(String.valueOf(this.autonomousDatabaseMaintenanceWindow)); + sb.append(", timeMaintenancePauseUntil=") + .append(String.valueOf(this.timeMaintenancePauseUntil)); sb.append(", scheduledOperations=").append(String.valueOf(this.scheduledOperations)); sb.append(", isAutoScalingForStorageEnabled=") .append(String.valueOf(this.isAutoScalingForStorageEnabled)); @@ -7528,6 +7639,8 @@ public String toString(boolean includeByteArrayContents) { sb.append(", cloneTableSpaceList=").append(String.valueOf(this.cloneTableSpaceList)); sb.append(", cloneType=").append(String.valueOf(this.cloneType)); sb.append(", additionalAttributes=").append(String.valueOf(this.additionalAttributes)); + sb.append(", localAdgResourcePoolLeaderId=") + .append(String.valueOf(this.localAdgResourcePoolLeaderId)); sb.append(")"); return sb.toString(); } @@ -7704,6 +7817,11 @@ public boolean equals(Object o) { && java.util.Objects.equals( this.autonomousMaintenanceScheduleType, other.autonomousMaintenanceScheduleType) + && java.util.Objects.equals( + this.autonomousDatabaseMaintenanceWindow, + other.autonomousDatabaseMaintenanceWindow) + && java.util.Objects.equals( + this.timeMaintenancePauseUntil, other.timeMaintenancePauseUntil) && java.util.Objects.equals(this.scheduledOperations, other.scheduledOperations) && java.util.Objects.equals( this.isAutoScalingForStorageEnabled, other.isAutoScalingForStorageEnabled) @@ -7731,6 +7849,8 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.cloneTableSpaceList, other.cloneTableSpaceList) && java.util.Objects.equals(this.cloneType, other.cloneType) && java.util.Objects.equals(this.additionalAttributes, other.additionalAttributes) + && java.util.Objects.equals( + this.localAdgResourcePoolLeaderId, other.localAdgResourcePoolLeaderId) && super.equals(other); } @@ -8147,6 +8267,16 @@ public int hashCode() { + (this.autonomousMaintenanceScheduleType == null ? 43 : this.autonomousMaintenanceScheduleType.hashCode()); + result = + (result * PRIME) + + (this.autonomousDatabaseMaintenanceWindow == null + ? 43 + : this.autonomousDatabaseMaintenanceWindow.hashCode()); + result = + (result * PRIME) + + (this.timeMaintenancePauseUntil == null + ? 43 + : this.timeMaintenancePauseUntil.hashCode()); result = (result * PRIME) + (this.scheduledOperations == null @@ -8222,6 +8352,11 @@ public int hashCode() { + (this.additionalAttributes == null ? 43 : this.additionalAttributes.hashCode()); + result = + (result * PRIME) + + (this.localAdgResourcePoolLeaderId == null + ? 43 + : this.localAdgResourcePoolLeaderId.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseApex.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseApex.java index 9b1185a83de..c27e55fb833 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseApex.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseApex.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseBackup.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseBackup.java index 7d5d89bd1f5..247e806635d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseBackup.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseBackup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseBackupConfig.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseBackupConfig.java index 2f8661adfba..4e62ec50248 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseBackupConfig.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseBackupConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseBackupSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseBackupSummary.java index 5ef17263b1c..8ecf23c4554 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseBackupSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseBackupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseCharacterSets.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseCharacterSets.java index 7d0f7ef9242..70aaca27819 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseCharacterSets.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseCharacterSets.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseConnectionStrings.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseConnectionStrings.java index afdfd18776f..9098b7bc5b6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseConnectionStrings.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseConnectionStrings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseConnectionUrls.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseConnectionUrls.java index c1da1edffa0..a962191b190 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseConnectionUrls.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseConnectionUrls.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseConsoleTokenDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseConsoleTokenDetails.java index 94595318373..d6f1988c618 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseConsoleTokenDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseConsoleTokenDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseDataguardAssociation.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseDataguardAssociation.java index 86ec881bb55..2d613053434 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseDataguardAssociation.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseDataguardAssociation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseEncryptionKeyDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseEncryptionKeyDetails.java index 30898a0697b..504a023a8ff 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseEncryptionKeyDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseEncryptionKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseEncryptionKeyHistoryEntry.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseEncryptionKeyHistoryEntry.java index 99e64e03db7..cc448a353a9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseEncryptionKeyHistoryEntry.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseEncryptionKeyHistoryEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseInBackup.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseInBackup.java index 63d0f79b32c..afdffcdf613 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseInBackup.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseInBackup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseKeyHistoryEntry.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseKeyHistoryEntry.java index 7191474d3c6..8721f972446 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseKeyHistoryEntry.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseKeyHistoryEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseMaintenanceWindowSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseMaintenanceWindowSummary.java new file mode 100644 index 00000000000..bd6b30870cd --- /dev/null +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseMaintenanceWindowSummary.java @@ -0,0 +1,207 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.database.model; + +/** + * Autonomous AI Database maintenance window. The maintenance window can be configured during + * database creation. To change the maintenance window of an existing Autonomous AI Database + * Serverless instance, clone the database and specify the maintenance window for the new cloned + * instance.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20160918") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = AutonomousDatabaseMaintenanceWindowSummary.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class AutonomousDatabaseMaintenanceWindowSummary + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({"dayOfWeek", "maintenanceStartTime", "maintenanceEndTime"}) + public AutonomousDatabaseMaintenanceWindowSummary( + DayOfWeek dayOfWeek, String maintenanceStartTime, String maintenanceEndTime) { + super(); + this.dayOfWeek = dayOfWeek; + this.maintenanceStartTime = maintenanceStartTime; + this.maintenanceEndTime = maintenanceEndTime; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + + @com.fasterxml.jackson.annotation.JsonProperty("dayOfWeek") + private DayOfWeek dayOfWeek; + + public Builder dayOfWeek(DayOfWeek dayOfWeek) { + this.dayOfWeek = dayOfWeek; + this.__explicitlySet__.add("dayOfWeek"); + return this; + } + /** The maintenance start time. The value must use the ISO-8601 format "hh:mm". */ + @com.fasterxml.jackson.annotation.JsonProperty("maintenanceStartTime") + private String maintenanceStartTime; + + /** + * The maintenance start time. The value must use the ISO-8601 format "hh:mm". + * + * @param maintenanceStartTime the value to set + * @return this builder + */ + public Builder maintenanceStartTime(String maintenanceStartTime) { + this.maintenanceStartTime = maintenanceStartTime; + this.__explicitlySet__.add("maintenanceStartTime"); + return this; + } + /** The maintenance end time. The value must use the ISO-8601 format "hh:mm". */ + @com.fasterxml.jackson.annotation.JsonProperty("maintenanceEndTime") + private String maintenanceEndTime; + + /** + * The maintenance end time. The value must use the ISO-8601 format "hh:mm". + * + * @param maintenanceEndTime the value to set + * @return this builder + */ + public Builder maintenanceEndTime(String maintenanceEndTime) { + this.maintenanceEndTime = maintenanceEndTime; + this.__explicitlySet__.add("maintenanceEndTime"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public AutonomousDatabaseMaintenanceWindowSummary build() { + AutonomousDatabaseMaintenanceWindowSummary model = + new AutonomousDatabaseMaintenanceWindowSummary( + this.dayOfWeek, this.maintenanceStartTime, this.maintenanceEndTime); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(AutonomousDatabaseMaintenanceWindowSummary model) { + if (model.wasPropertyExplicitlySet("dayOfWeek")) { + this.dayOfWeek(model.getDayOfWeek()); + } + if (model.wasPropertyExplicitlySet("maintenanceStartTime")) { + this.maintenanceStartTime(model.getMaintenanceStartTime()); + } + if (model.wasPropertyExplicitlySet("maintenanceEndTime")) { + this.maintenanceEndTime(model.getMaintenanceEndTime()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + @com.fasterxml.jackson.annotation.JsonProperty("dayOfWeek") + private final DayOfWeek dayOfWeek; + + public DayOfWeek getDayOfWeek() { + return dayOfWeek; + } + + /** The maintenance start time. The value must use the ISO-8601 format "hh:mm". */ + @com.fasterxml.jackson.annotation.JsonProperty("maintenanceStartTime") + private final String maintenanceStartTime; + + /** + * The maintenance start time. The value must use the ISO-8601 format "hh:mm". + * + * @return the value + */ + public String getMaintenanceStartTime() { + return maintenanceStartTime; + } + + /** The maintenance end time. The value must use the ISO-8601 format "hh:mm". */ + @com.fasterxml.jackson.annotation.JsonProperty("maintenanceEndTime") + private final String maintenanceEndTime; + + /** + * The maintenance end time. The value must use the ISO-8601 format "hh:mm". + * + * @return the value + */ + public String getMaintenanceEndTime() { + return maintenanceEndTime; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("AutonomousDatabaseMaintenanceWindowSummary("); + sb.append("super=").append(super.toString()); + sb.append("dayOfWeek=").append(String.valueOf(this.dayOfWeek)); + sb.append(", maintenanceStartTime=").append(String.valueOf(this.maintenanceStartTime)); + sb.append(", maintenanceEndTime=").append(String.valueOf(this.maintenanceEndTime)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof AutonomousDatabaseMaintenanceWindowSummary)) { + return false; + } + + AutonomousDatabaseMaintenanceWindowSummary other = + (AutonomousDatabaseMaintenanceWindowSummary) o; + return java.util.Objects.equals(this.dayOfWeek, other.dayOfWeek) + && java.util.Objects.equals(this.maintenanceStartTime, other.maintenanceStartTime) + && java.util.Objects.equals(this.maintenanceEndTime, other.maintenanceEndTime) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.dayOfWeek == null ? 43 : this.dayOfWeek.hashCode()); + result = + (result * PRIME) + + (this.maintenanceStartTime == null + ? 43 + : this.maintenanceStartTime.hashCode()); + result = + (result * PRIME) + + (this.maintenanceEndTime == null + ? 43 + : this.maintenanceEndTime.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseManualRefreshDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseManualRefreshDetails.java index 0c9ca12e200..feaa1993c3b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseManualRefreshDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseManualRefreshDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabasePeerCollection.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabasePeerCollection.java index c2bb8d5211a..011ec858e8d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabasePeerCollection.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabasePeerCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabasePeerSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabasePeerSummary.java index 4274bb44550..005cd7d20f2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabasePeerSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabasePeerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseSoftwareImage.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseSoftwareImage.java index f8fed3e63ec..700c1134387 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseSoftwareImage.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseSoftwareImage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseSoftwareImageCollection.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseSoftwareImageCollection.java index 3c951306e25..e9c09d6857a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseSoftwareImageCollection.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseSoftwareImageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseSoftwareImageSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseSoftwareImageSummary.java index 7dd7c127e3a..affe20574df 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseSoftwareImageSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseSoftwareImageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseStandbySummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseStandbySummary.java index 546a794ed48..e9417b48a0d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseStandbySummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseStandbySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseSummary.java index c6eb1397358..69dfcab8cea 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; @@ -144,6 +144,8 @@ public final class AutonomousDatabaseSummary "isReconnectCloneEnabled", "timeUntilReconnectCloneEnabled", "autonomousMaintenanceScheduleType", + "autonomousDatabaseMaintenanceWindow", + "timeMaintenancePauseUntil", "scheduledOperations", "isAutoScalingForStorageEnabled", "allocatedStorageSizeInTBs", @@ -160,7 +162,8 @@ public final class AutonomousDatabaseSummary "clusterPlacementGroupId", "cloneTableSpaceList", "cloneType", - "additionalAttributes" + "additionalAttributes", + "localAdgResourcePoolLeaderId" }) public AutonomousDatabaseSummary( String id, @@ -280,6 +283,8 @@ public AutonomousDatabaseSummary( Boolean isReconnectCloneEnabled, java.util.Date timeUntilReconnectCloneEnabled, AutonomousMaintenanceScheduleType autonomousMaintenanceScheduleType, + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow, + java.util.Date timeMaintenancePauseUntil, java.util.List scheduledOperations, Boolean isAutoScalingForStorageEnabled, Double allocatedStorageSizeInTBs, @@ -296,7 +301,8 @@ public AutonomousDatabaseSummary( String clusterPlacementGroupId, java.util.List cloneTableSpaceList, CloneType cloneType, - java.util.Map additionalAttributes) { + java.util.Map additionalAttributes, + String localAdgResourcePoolLeaderId) { super(); this.id = id; this.compartmentId = compartmentId; @@ -415,6 +421,8 @@ public AutonomousDatabaseSummary( this.isReconnectCloneEnabled = isReconnectCloneEnabled; this.timeUntilReconnectCloneEnabled = timeUntilReconnectCloneEnabled; this.autonomousMaintenanceScheduleType = autonomousMaintenanceScheduleType; + this.autonomousDatabaseMaintenanceWindow = autonomousDatabaseMaintenanceWindow; + this.timeMaintenancePauseUntil = timeMaintenancePauseUntil; this.scheduledOperations = scheduledOperations; this.isAutoScalingForStorageEnabled = isAutoScalingForStorageEnabled; this.allocatedStorageSizeInTBs = allocatedStorageSizeInTBs; @@ -432,6 +440,7 @@ public AutonomousDatabaseSummary( this.cloneTableSpaceList = cloneTableSpaceList; this.cloneType = cloneType; this.additionalAttributes = additionalAttributes; + this.localAdgResourcePoolLeaderId = localAdgResourcePoolLeaderId; } @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") @@ -2933,6 +2942,31 @@ public Builder autonomousMaintenanceScheduleType( this.__explicitlySet__.add("autonomousMaintenanceScheduleType"); return this; } + + @com.fasterxml.jackson.annotation.JsonProperty("autonomousDatabaseMaintenanceWindow") + private AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow; + + public Builder autonomousDatabaseMaintenanceWindow( + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow) { + this.autonomousDatabaseMaintenanceWindow = autonomousDatabaseMaintenanceWindow; + this.__explicitlySet__.add("autonomousDatabaseMaintenanceWindow"); + return this; + } + /** The date until which maintenance of Autonomous AI Database is temporarily paused. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeMaintenancePauseUntil") + private java.util.Date timeMaintenancePauseUntil; + + /** + * The date until which maintenance of Autonomous AI Database is temporarily paused. + * + * @param timeMaintenancePauseUntil the value to set + * @return this builder + */ + public Builder timeMaintenancePauseUntil(java.util.Date timeMaintenancePauseUntil) { + this.timeMaintenancePauseUntil = timeMaintenancePauseUntil; + this.__explicitlySet__.add("timeMaintenancePauseUntil"); + return this; + } /** * The list of scheduled operations. Consists of values such as dayOfWeek, * scheduledStartTime, scheduledStopTime. @@ -3273,6 +3307,27 @@ public Builder additionalAttributes(java.util.Map additionalAttr this.__explicitlySet__.add("additionalAttributes"); return this; } + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the + * dedicated resource pool leader Autonomous AI Database in the same region, associated with + * local Autonomous Data Guard for a dedicated resource pool member. + */ + @com.fasterxml.jackson.annotation.JsonProperty("localAdgResourcePoolLeaderId") + private String localAdgResourcePoolLeaderId; + + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the + * dedicated resource pool leader Autonomous AI Database in the same region, associated with + * local Autonomous Data Guard for a dedicated resource pool member. + * + * @param localAdgResourcePoolLeaderId the value to set + * @return this builder + */ + public Builder localAdgResourcePoolLeaderId(String localAdgResourcePoolLeaderId) { + this.localAdgResourcePoolLeaderId = localAdgResourcePoolLeaderId; + this.__explicitlySet__.add("localAdgResourcePoolLeaderId"); + return this; + } @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); @@ -3397,6 +3452,8 @@ public AutonomousDatabaseSummary build() { this.isReconnectCloneEnabled, this.timeUntilReconnectCloneEnabled, this.autonomousMaintenanceScheduleType, + this.autonomousDatabaseMaintenanceWindow, + this.timeMaintenancePauseUntil, this.scheduledOperations, this.isAutoScalingForStorageEnabled, this.allocatedStorageSizeInTBs, @@ -3413,7 +3470,8 @@ public AutonomousDatabaseSummary build() { this.clusterPlacementGroupId, this.cloneTableSpaceList, this.cloneType, - this.additionalAttributes); + this.additionalAttributes, + this.localAdgResourcePoolLeaderId); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } @@ -3779,6 +3837,13 @@ public Builder copy(AutonomousDatabaseSummary model) { this.autonomousMaintenanceScheduleType( model.getAutonomousMaintenanceScheduleType()); } + if (model.wasPropertyExplicitlySet("autonomousDatabaseMaintenanceWindow")) { + this.autonomousDatabaseMaintenanceWindow( + model.getAutonomousDatabaseMaintenanceWindow()); + } + if (model.wasPropertyExplicitlySet("timeMaintenancePauseUntil")) { + this.timeMaintenancePauseUntil(model.getTimeMaintenancePauseUntil()); + } if (model.wasPropertyExplicitlySet("scheduledOperations")) { this.scheduledOperations(model.getScheduledOperations()); } @@ -3831,6 +3896,9 @@ public Builder copy(AutonomousDatabaseSummary model) { if (model.wasPropertyExplicitlySet("additionalAttributes")) { this.additionalAttributes(model.getAdditionalAttributes()); } + if (model.wasPropertyExplicitlySet("localAdgResourcePoolLeaderId")) { + this.localAdgResourcePoolLeaderId(model.getLocalAdgResourcePoolLeaderId()); + } return this; } } @@ -6848,6 +6916,26 @@ public AutonomousMaintenanceScheduleType getAutonomousMaintenanceScheduleType() return autonomousMaintenanceScheduleType; } + @com.fasterxml.jackson.annotation.JsonProperty("autonomousDatabaseMaintenanceWindow") + private final AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow; + + public AutonomousDatabaseMaintenanceWindowSummary getAutonomousDatabaseMaintenanceWindow() { + return autonomousDatabaseMaintenanceWindow; + } + + /** The date until which maintenance of Autonomous AI Database is temporarily paused. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeMaintenancePauseUntil") + private final java.util.Date timeMaintenancePauseUntil; + + /** + * The date until which maintenance of Autonomous AI Database is temporarily paused. + * + * @return the value + */ + public java.util.Date getTimeMaintenancePauseUntil() { + return timeMaintenancePauseUntil; + } + /** * The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, * scheduledStopTime. @@ -7339,6 +7427,25 @@ public java.util.Map getAdditionalAttributes() { return additionalAttributes; } + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the + * dedicated resource pool leader Autonomous AI Database in the same region, associated with + * local Autonomous Data Guard for a dedicated resource pool member. + */ + @com.fasterxml.jackson.annotation.JsonProperty("localAdgResourcePoolLeaderId") + private final String localAdgResourcePoolLeaderId; + + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the + * dedicated resource pool leader Autonomous AI Database in the same region, associated with + * local Autonomous Data Guard for a dedicated resource pool member. + * + * @return the value + */ + public String getLocalAdgResourcePoolLeaderId() { + return localAdgResourcePoolLeaderId; + } + @Override public String toString() { return this.toString(true); @@ -7505,6 +7612,10 @@ public String toString(boolean includeByteArrayContents) { .append(String.valueOf(this.timeUntilReconnectCloneEnabled)); sb.append(", autonomousMaintenanceScheduleType=") .append(String.valueOf(this.autonomousMaintenanceScheduleType)); + sb.append(", autonomousDatabaseMaintenanceWindow=") + .append(String.valueOf(this.autonomousDatabaseMaintenanceWindow)); + sb.append(", timeMaintenancePauseUntil=") + .append(String.valueOf(this.timeMaintenancePauseUntil)); sb.append(", scheduledOperations=").append(String.valueOf(this.scheduledOperations)); sb.append(", isAutoScalingForStorageEnabled=") .append(String.valueOf(this.isAutoScalingForStorageEnabled)); @@ -7531,6 +7642,8 @@ public String toString(boolean includeByteArrayContents) { sb.append(", cloneTableSpaceList=").append(String.valueOf(this.cloneTableSpaceList)); sb.append(", cloneType=").append(String.valueOf(this.cloneType)); sb.append(", additionalAttributes=").append(String.valueOf(this.additionalAttributes)); + sb.append(", localAdgResourcePoolLeaderId=") + .append(String.valueOf(this.localAdgResourcePoolLeaderId)); sb.append(")"); return sb.toString(); } @@ -7707,6 +7820,11 @@ public boolean equals(Object o) { && java.util.Objects.equals( this.autonomousMaintenanceScheduleType, other.autonomousMaintenanceScheduleType) + && java.util.Objects.equals( + this.autonomousDatabaseMaintenanceWindow, + other.autonomousDatabaseMaintenanceWindow) + && java.util.Objects.equals( + this.timeMaintenancePauseUntil, other.timeMaintenancePauseUntil) && java.util.Objects.equals(this.scheduledOperations, other.scheduledOperations) && java.util.Objects.equals( this.isAutoScalingForStorageEnabled, other.isAutoScalingForStorageEnabled) @@ -7734,6 +7852,8 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.cloneTableSpaceList, other.cloneTableSpaceList) && java.util.Objects.equals(this.cloneType, other.cloneType) && java.util.Objects.equals(this.additionalAttributes, other.additionalAttributes) + && java.util.Objects.equals( + this.localAdgResourcePoolLeaderId, other.localAdgResourcePoolLeaderId) && super.equals(other); } @@ -8150,6 +8270,16 @@ public int hashCode() { + (this.autonomousMaintenanceScheduleType == null ? 43 : this.autonomousMaintenanceScheduleType.hashCode()); + result = + (result * PRIME) + + (this.autonomousDatabaseMaintenanceWindow == null + ? 43 + : this.autonomousDatabaseMaintenanceWindow.hashCode()); + result = + (result * PRIME) + + (this.timeMaintenancePauseUntil == null + ? 43 + : this.timeMaintenancePauseUntil.hashCode()); result = (result * PRIME) + (this.scheduledOperations == null @@ -8225,6 +8355,11 @@ public int hashCode() { + (this.additionalAttributes == null ? 43 : this.additionalAttributes.hashCode()); + result = + (result * PRIME) + + (this.localAdgResourcePoolLeaderId == null + ? 43 + : this.localAdgResourcePoolLeaderId.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseWallet.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseWallet.java index 5692c4db516..2c634f157dc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseWallet.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDatabaseWallet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDbPreviewVersionSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDbPreviewVersionSummary.java index 59a0356a6cd..2754e6a5405 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDbPreviewVersionSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDbPreviewVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDbVersionSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDbVersionSummary.java index 4e0a6896097..16d07b15be6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDbVersionSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDbVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDwDatabase.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDwDatabase.java index 628ee489e93..d2d26420c6e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDwDatabase.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousDwDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; @@ -141,6 +141,8 @@ public final class AutonomousDwDatabase "isReconnectCloneEnabled", "timeUntilReconnectCloneEnabled", "autonomousMaintenanceScheduleType", + "autonomousDatabaseMaintenanceWindow", + "timeMaintenancePauseUntil", "scheduledOperations", "isAutoScalingForStorageEnabled", "allocatedStorageSizeInTBs", @@ -157,7 +159,8 @@ public final class AutonomousDwDatabase "clusterPlacementGroupId", "cloneTableSpaceList", "cloneType", - "additionalAttributes" + "additionalAttributes", + "localAdgResourcePoolLeaderId" }) public AutonomousDwDatabase( String id, @@ -277,6 +280,8 @@ public AutonomousDwDatabase( Boolean isReconnectCloneEnabled, java.util.Date timeUntilReconnectCloneEnabled, AutonomousMaintenanceScheduleType autonomousMaintenanceScheduleType, + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow, + java.util.Date timeMaintenancePauseUntil, java.util.List scheduledOperations, Boolean isAutoScalingForStorageEnabled, Double allocatedStorageSizeInTBs, @@ -293,7 +298,8 @@ public AutonomousDwDatabase( String clusterPlacementGroupId, java.util.List cloneTableSpaceList, CloneType cloneType, - java.util.Map additionalAttributes) { + java.util.Map additionalAttributes, + String localAdgResourcePoolLeaderId) { super(); this.id = id; this.compartmentId = compartmentId; @@ -412,6 +418,8 @@ public AutonomousDwDatabase( this.isReconnectCloneEnabled = isReconnectCloneEnabled; this.timeUntilReconnectCloneEnabled = timeUntilReconnectCloneEnabled; this.autonomousMaintenanceScheduleType = autonomousMaintenanceScheduleType; + this.autonomousDatabaseMaintenanceWindow = autonomousDatabaseMaintenanceWindow; + this.timeMaintenancePauseUntil = timeMaintenancePauseUntil; this.scheduledOperations = scheduledOperations; this.isAutoScalingForStorageEnabled = isAutoScalingForStorageEnabled; this.allocatedStorageSizeInTBs = allocatedStorageSizeInTBs; @@ -429,6 +437,7 @@ public AutonomousDwDatabase( this.cloneTableSpaceList = cloneTableSpaceList; this.cloneType = cloneType; this.additionalAttributes = additionalAttributes; + this.localAdgResourcePoolLeaderId = localAdgResourcePoolLeaderId; } @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") @@ -2930,6 +2939,31 @@ public Builder autonomousMaintenanceScheduleType( this.__explicitlySet__.add("autonomousMaintenanceScheduleType"); return this; } + + @com.fasterxml.jackson.annotation.JsonProperty("autonomousDatabaseMaintenanceWindow") + private AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow; + + public Builder autonomousDatabaseMaintenanceWindow( + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow) { + this.autonomousDatabaseMaintenanceWindow = autonomousDatabaseMaintenanceWindow; + this.__explicitlySet__.add("autonomousDatabaseMaintenanceWindow"); + return this; + } + /** The date until which maintenance of Autonomous AI Database is temporarily paused. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeMaintenancePauseUntil") + private java.util.Date timeMaintenancePauseUntil; + + /** + * The date until which maintenance of Autonomous AI Database is temporarily paused. + * + * @param timeMaintenancePauseUntil the value to set + * @return this builder + */ + public Builder timeMaintenancePauseUntil(java.util.Date timeMaintenancePauseUntil) { + this.timeMaintenancePauseUntil = timeMaintenancePauseUntil; + this.__explicitlySet__.add("timeMaintenancePauseUntil"); + return this; + } /** * The list of scheduled operations. Consists of values such as dayOfWeek, * scheduledStartTime, scheduledStopTime. @@ -3270,6 +3304,27 @@ public Builder additionalAttributes(java.util.Map additionalAttr this.__explicitlySet__.add("additionalAttributes"); return this; } + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the + * dedicated resource pool leader Autonomous AI Database in the same region, associated with + * local Autonomous Data Guard for a dedicated resource pool member. + */ + @com.fasterxml.jackson.annotation.JsonProperty("localAdgResourcePoolLeaderId") + private String localAdgResourcePoolLeaderId; + + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the + * dedicated resource pool leader Autonomous AI Database in the same region, associated with + * local Autonomous Data Guard for a dedicated resource pool member. + * + * @param localAdgResourcePoolLeaderId the value to set + * @return this builder + */ + public Builder localAdgResourcePoolLeaderId(String localAdgResourcePoolLeaderId) { + this.localAdgResourcePoolLeaderId = localAdgResourcePoolLeaderId; + this.__explicitlySet__.add("localAdgResourcePoolLeaderId"); + return this; + } @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); @@ -3394,6 +3449,8 @@ public AutonomousDwDatabase build() { this.isReconnectCloneEnabled, this.timeUntilReconnectCloneEnabled, this.autonomousMaintenanceScheduleType, + this.autonomousDatabaseMaintenanceWindow, + this.timeMaintenancePauseUntil, this.scheduledOperations, this.isAutoScalingForStorageEnabled, this.allocatedStorageSizeInTBs, @@ -3410,7 +3467,8 @@ public AutonomousDwDatabase build() { this.clusterPlacementGroupId, this.cloneTableSpaceList, this.cloneType, - this.additionalAttributes); + this.additionalAttributes, + this.localAdgResourcePoolLeaderId); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } @@ -3776,6 +3834,13 @@ public Builder copy(AutonomousDwDatabase model) { this.autonomousMaintenanceScheduleType( model.getAutonomousMaintenanceScheduleType()); } + if (model.wasPropertyExplicitlySet("autonomousDatabaseMaintenanceWindow")) { + this.autonomousDatabaseMaintenanceWindow( + model.getAutonomousDatabaseMaintenanceWindow()); + } + if (model.wasPropertyExplicitlySet("timeMaintenancePauseUntil")) { + this.timeMaintenancePauseUntil(model.getTimeMaintenancePauseUntil()); + } if (model.wasPropertyExplicitlySet("scheduledOperations")) { this.scheduledOperations(model.getScheduledOperations()); } @@ -3828,6 +3893,9 @@ public Builder copy(AutonomousDwDatabase model) { if (model.wasPropertyExplicitlySet("additionalAttributes")) { this.additionalAttributes(model.getAdditionalAttributes()); } + if (model.wasPropertyExplicitlySet("localAdgResourcePoolLeaderId")) { + this.localAdgResourcePoolLeaderId(model.getLocalAdgResourcePoolLeaderId()); + } return this; } } @@ -6652,6 +6720,26 @@ public AutonomousMaintenanceScheduleType getAutonomousMaintenanceScheduleType() return autonomousMaintenanceScheduleType; } + @com.fasterxml.jackson.annotation.JsonProperty("autonomousDatabaseMaintenanceWindow") + private final AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow; + + public AutonomousDatabaseMaintenanceWindowSummary getAutonomousDatabaseMaintenanceWindow() { + return autonomousDatabaseMaintenanceWindow; + } + + /** The date until which maintenance of Autonomous AI Database is temporarily paused. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeMaintenancePauseUntil") + private final java.util.Date timeMaintenancePauseUntil; + + /** + * The date until which maintenance of Autonomous AI Database is temporarily paused. + * + * @return the value + */ + public java.util.Date getTimeMaintenancePauseUntil() { + return timeMaintenancePauseUntil; + } + /** * The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, * scheduledStopTime. @@ -7091,6 +7179,25 @@ public java.util.Map getAdditionalAttributes() { return additionalAttributes; } + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the + * dedicated resource pool leader Autonomous AI Database in the same region, associated with + * local Autonomous Data Guard for a dedicated resource pool member. + */ + @com.fasterxml.jackson.annotation.JsonProperty("localAdgResourcePoolLeaderId") + private final String localAdgResourcePoolLeaderId; + + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the + * dedicated resource pool leader Autonomous AI Database in the same region, associated with + * local Autonomous Data Guard for a dedicated resource pool member. + * + * @return the value + */ + public String getLocalAdgResourcePoolLeaderId() { + return localAdgResourcePoolLeaderId; + } + @Override public String toString() { return this.toString(true); @@ -7257,6 +7364,10 @@ public String toString(boolean includeByteArrayContents) { .append(String.valueOf(this.timeUntilReconnectCloneEnabled)); sb.append(", autonomousMaintenanceScheduleType=") .append(String.valueOf(this.autonomousMaintenanceScheduleType)); + sb.append(", autonomousDatabaseMaintenanceWindow=") + .append(String.valueOf(this.autonomousDatabaseMaintenanceWindow)); + sb.append(", timeMaintenancePauseUntil=") + .append(String.valueOf(this.timeMaintenancePauseUntil)); sb.append(", scheduledOperations=").append(String.valueOf(this.scheduledOperations)); sb.append(", isAutoScalingForStorageEnabled=") .append(String.valueOf(this.isAutoScalingForStorageEnabled)); @@ -7283,6 +7394,8 @@ public String toString(boolean includeByteArrayContents) { sb.append(", cloneTableSpaceList=").append(String.valueOf(this.cloneTableSpaceList)); sb.append(", cloneType=").append(String.valueOf(this.cloneType)); sb.append(", additionalAttributes=").append(String.valueOf(this.additionalAttributes)); + sb.append(", localAdgResourcePoolLeaderId=") + .append(String.valueOf(this.localAdgResourcePoolLeaderId)); sb.append(")"); return sb.toString(); } @@ -7459,6 +7572,11 @@ public boolean equals(Object o) { && java.util.Objects.equals( this.autonomousMaintenanceScheduleType, other.autonomousMaintenanceScheduleType) + && java.util.Objects.equals( + this.autonomousDatabaseMaintenanceWindow, + other.autonomousDatabaseMaintenanceWindow) + && java.util.Objects.equals( + this.timeMaintenancePauseUntil, other.timeMaintenancePauseUntil) && java.util.Objects.equals(this.scheduledOperations, other.scheduledOperations) && java.util.Objects.equals( this.isAutoScalingForStorageEnabled, other.isAutoScalingForStorageEnabled) @@ -7486,6 +7604,8 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.cloneTableSpaceList, other.cloneTableSpaceList) && java.util.Objects.equals(this.cloneType, other.cloneType) && java.util.Objects.equals(this.additionalAttributes, other.additionalAttributes) + && java.util.Objects.equals( + this.localAdgResourcePoolLeaderId, other.localAdgResourcePoolLeaderId) && super.equals(other); } @@ -7902,6 +8022,16 @@ public int hashCode() { + (this.autonomousMaintenanceScheduleType == null ? 43 : this.autonomousMaintenanceScheduleType.hashCode()); + result = + (result * PRIME) + + (this.autonomousDatabaseMaintenanceWindow == null + ? 43 + : this.autonomousDatabaseMaintenanceWindow.hashCode()); + result = + (result * PRIME) + + (this.timeMaintenancePauseUntil == null + ? 43 + : this.timeMaintenancePauseUntil.hashCode()); result = (result * PRIME) + (this.scheduledOperations == null @@ -7977,6 +8107,11 @@ public int hashCode() { + (this.additionalAttributes == null ? 43 : this.additionalAttributes.hashCode()); + result = + (result * PRIME) + + (this.localAdgResourcePoolLeaderId == null + ? 43 + : this.localAdgResourcePoolLeaderId.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousExadataInfrastructure.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousExadataInfrastructure.java index 3d52d68ddb4..5558894d619 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousExadataInfrastructure.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousExadataInfrastructure.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousExadataInfrastructureShapeSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousExadataInfrastructureShapeSummary.java index 04fb6c44300..27398fee96c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousExadataInfrastructureShapeSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousExadataInfrastructureShapeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousExadataInfrastructureSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousExadataInfrastructureSummary.java index 237028f5f60..6efd63d49ae 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousExadataInfrastructureSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousExadataInfrastructureSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousPatch.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousPatch.java index b91667ab9a4..7810e939788 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousPatch.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousPatch.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousPatchSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousPatchSummary.java index def90fdfd84..3c1f5c2293c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousPatchSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousPatchSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVirtualMachine.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVirtualMachine.java index e7754a087a6..c541e9b8437 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVirtualMachine.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVirtualMachine.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVirtualMachineSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVirtualMachineSummary.java index c0d3f808b98..06db185fb6e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVirtualMachineSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVirtualMachineSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVmCluster.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVmCluster.java index e8187074055..0b7b4bfaa56 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVmCluster.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVmCluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVmClusterResourceDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVmClusterResourceDetails.java index 357c6105c05..a25adafe0c8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVmClusterResourceDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVmClusterResourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVmClusterResourceUsage.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVmClusterResourceUsage.java index 5453c25d65c..483b93b56b1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVmClusterResourceUsage.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVmClusterResourceUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVmClusterSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVmClusterSummary.java index fac92ad61ae..4f35b391477 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVmClusterSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVmClusterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVmResourceUsage.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVmResourceUsage.java index 200c86c0625..12db50d7d0c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVmResourceUsage.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AutonomousVmResourceUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AvmAcdResourceStats.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AvmAcdResourceStats.java index 89448b70398..6edf2e06606 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AvmAcdResourceStats.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AvmAcdResourceStats.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AwsEncryptionKeyDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AwsEncryptionKeyDetails.java index a50c3ba1547..3650e740f2f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AwsEncryptionKeyDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AwsEncryptionKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AwsKeyDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AwsKeyDetails.java index 3e5bdd2e19d..8ea88864913 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AwsKeyDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AwsKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AzureEncryptionKeyDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AzureEncryptionKeyDetails.java index 15af8fdc05a..53f7084e182 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AzureEncryptionKeyDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AzureEncryptionKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/AzureKeyDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/AzureKeyDetails.java index 0dc84d531db..256822ffcf1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/AzureKeyDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/AzureKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/Backup.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/Backup.java index 773701415c1..93f2119670b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/Backup.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/Backup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestination.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestination.java index 4f62565e28c..60153c4cc41 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestination.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestination.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestinationConfigurationSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestinationConfigurationSummary.java index 99236e3f6cb..577055b11ff 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestinationConfigurationSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestinationConfigurationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestinationDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestinationDetails.java index 67ed83c0859..95c0c380f49 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestinationDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestinationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestinationDetailsSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestinationDetailsSummary.java index 3971ab61712..f1e42fbd70a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestinationDetailsSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestinationDetailsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestinationProperties.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestinationProperties.java index fa04f6aad12..0a472a84493 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestinationProperties.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestinationProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestinationSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestinationSummary.java index 5f8e8b5a844..05d2bf77892 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestinationSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupDestinationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupSummary.java index f658f6b9945..08d4bb572c5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/BackupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CancelExecutionWindowDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CancelExecutionWindowDetails.java index f090d689f03..c0f5f4afbe4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CancelExecutionWindowDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CancelExecutionWindowDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeAutonomousDatabaseSoftwareImageCompartmentDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeAutonomousDatabaseSoftwareImageCompartmentDetails.java index f6bd4df7adb..52b2cea694b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeAutonomousDatabaseSoftwareImageCompartmentDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeAutonomousDatabaseSoftwareImageCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeAutonomousDatabaseSubscriptionDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeAutonomousDatabaseSubscriptionDetails.java index cb333595320..a37d1d63dd2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeAutonomousDatabaseSubscriptionDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeAutonomousDatabaseSubscriptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeAutonomousVmClusterCompartmentDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeAutonomousVmClusterCompartmentDetails.java index 3a9a6dcf578..2436f4dcdac 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeAutonomousVmClusterCompartmentDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeAutonomousVmClusterCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudAutonomousVmClusterCompartmentDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudAutonomousVmClusterCompartmentDetails.java index 8b7b73b9f76..11484e02905 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudAutonomousVmClusterCompartmentDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudAutonomousVmClusterCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudAutonomousVmClusterSubscriptionDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudAutonomousVmClusterSubscriptionDetails.java index 1863abec660..aeef9255f56 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudAutonomousVmClusterSubscriptionDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudAutonomousVmClusterSubscriptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudDbSystemSubscriptionDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudDbSystemSubscriptionDetails.java index 5e0d51ce314..044a04c584c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudDbSystemSubscriptionDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudDbSystemSubscriptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudExadataInfrastructureCompartmentDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudExadataInfrastructureCompartmentDetails.java index e1e6c30cdf8..839680fbf98 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudExadataInfrastructureCompartmentDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudExadataInfrastructureCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudExadataInfrastructureSubscriptionDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudExadataInfrastructureSubscriptionDetails.java index 5914c669461..713f27b0337 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudExadataInfrastructureSubscriptionDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudExadataInfrastructureSubscriptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudVmClusterCompartmentDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudVmClusterCompartmentDetails.java index d4bc633796b..ffcf8f0aecf 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudVmClusterCompartmentDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudVmClusterCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudVmClusterSubscriptionDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudVmClusterSubscriptionDetails.java index 9b5b8e32384..f5894fdd087 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudVmClusterSubscriptionDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCloudVmClusterSubscriptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCompartmentDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCompartmentDetails.java index f1dea382bdd..6eb6c2be04d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCompartmentDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeDataguardRoleDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeDataguardRoleDetails.java index 5cadffc6723..71a0cb02ac7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeDataguardRoleDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeDataguardRoleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeDisasterRecoveryConfigurationDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeDisasterRecoveryConfigurationDetails.java index a5ffcf52573..1c73e6157d8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeDisasterRecoveryConfigurationDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeDisasterRecoveryConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeExadataInfrastructureCompartmentDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeExadataInfrastructureCompartmentDetails.java index 65ab47d0518..9289b89bcaa 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeExadataInfrastructureCompartmentDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeExadataInfrastructureCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeExadbVmClusterCompartmentDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeExadbVmClusterCompartmentDetails.java index 6d454535b4b..bc01479c2c9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeExadbVmClusterCompartmentDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeExadbVmClusterCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeExadbVmClusterSubscriptionDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeExadbVmClusterSubscriptionDetails.java index 75b937eea16..ca0beccd4b9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeExadbVmClusterSubscriptionDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeExadbVmClusterSubscriptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeExascaleDbStorageVaultCompartmentDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeExascaleDbStorageVaultCompartmentDetails.java index c6fd4f02fb8..cd2d2e95388 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeExascaleDbStorageVaultCompartmentDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeExascaleDbStorageVaultCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeExascaleDbStorageVaultSubscriptionDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeExascaleDbStorageVaultSubscriptionDetails.java index ad57e45fd2e..11aac6a75da 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeExascaleDbStorageVaultSubscriptionDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeExascaleDbStorageVaultSubscriptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeKeyStoreCompartmentDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeKeyStoreCompartmentDetails.java index cba7483c114..bd730ec8e6e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeKeyStoreCompartmentDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeKeyStoreCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeKeyStoreTypeDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeKeyStoreTypeDetails.java index de400a95f3a..c07dce26bab 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeKeyStoreTypeDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeKeyStoreTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeSchedulingPlanCompartmentDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeSchedulingPlanCompartmentDetails.java index e98815e5a0a..075dc570437 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeSchedulingPlanCompartmentDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeSchedulingPlanCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeSchedulingPolicyCompartmentDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeSchedulingPolicyCompartmentDetails.java index 70f7c08443a..c2be42a05ed 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeSchedulingPolicyCompartmentDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeSchedulingPolicyCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeSubscriptionDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeSubscriptionDetails.java index 9757490e054..a292016a929 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeSubscriptionDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeSubscriptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeVmClusterCompartmentDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeVmClusterCompartmentDetails.java index 440b26c3918..26d3c158f2b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeVmClusterCompartmentDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ChangeVmClusterCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutomationApplyUpdateTimePreference.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutomationApplyUpdateTimePreference.java index 91c0523940d..28e9f14788a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutomationApplyUpdateTimePreference.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutomationApplyUpdateTimePreference.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutomationFreezePeriod.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutomationFreezePeriod.java index 030e5386bd9..5f4225bcfaa 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutomationFreezePeriod.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutomationFreezePeriod.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutomationUpdateDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutomationUpdateDetails.java index 13d44dc1996..cdaa5852d76 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutomationUpdateDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutomationUpdateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutonomousVmCluster.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutonomousVmCluster.java index 784de968b3b..2659cddb02b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutonomousVmCluster.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutonomousVmCluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutonomousVmClusterResourceDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutonomousVmClusterResourceDetails.java index 5266bd7eb3a..dd6343ebb5d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutonomousVmClusterResourceDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutonomousVmClusterResourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutonomousVmClusterResourceUsage.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutonomousVmClusterResourceUsage.java index 3e4032244e2..d4a7941e306 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutonomousVmClusterResourceUsage.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutonomousVmClusterResourceUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutonomousVmClusterSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutonomousVmClusterSummary.java index a8d7f969546..50525c15c7e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutonomousVmClusterSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudAutonomousVmClusterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudDatabaseManagementConfig.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudDatabaseManagementConfig.java index dfe593a13f6..f0dbf23fd41 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudDatabaseManagementConfig.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudDatabaseManagementConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudDbServerDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudDbServerDetails.java index 9b2b47b0daa..1699bbd3231 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudDbServerDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudDbServerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudExadataInfrastructure.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudExadataInfrastructure.java index 5491dc16cfb..e8fabb46e81 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudExadataInfrastructure.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudExadataInfrastructure.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudExadataInfrastructureSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudExadataInfrastructureSummary.java index 6afb0777767..e49eb00d695 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudExadataInfrastructureSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudExadataInfrastructureSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudExadataInfrastructureUnallocatedResources.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudExadataInfrastructureUnallocatedResources.java index 0ae1978e51d..8124b82e174 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudExadataInfrastructureUnallocatedResources.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudExadataInfrastructureUnallocatedResources.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudVmCluster.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudVmCluster.java index 460d7708b5c..2ea53294a81 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudVmCluster.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudVmCluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudVmClusterSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudVmClusterSummary.java index 7f7a5991533..de6226bd9ec 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudVmClusterSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CloudVmClusterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CompleteExternalBackupJobDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CompleteExternalBackupJobDetails.java index d8d76bf2399..ad92de7d38d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CompleteExternalBackupJobDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CompleteExternalBackupJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ComputePerformanceSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ComputePerformanceSummary.java index f019d6dd7b5..c3b978bc36a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ComputePerformanceSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ComputePerformanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConfigureAutonomousDatabaseVaultKeyDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConfigureAutonomousDatabaseVaultKeyDetails.java index c6d78d4f7f3..00755633204 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConfigureAutonomousDatabaseVaultKeyDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConfigureAutonomousDatabaseVaultKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConfigureExascaleCloudExadataInfrastructureDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConfigureExascaleCloudExadataInfrastructureDetails.java index 76398df97af..47592843d54 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConfigureExascaleCloudExadataInfrastructureDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConfigureExascaleCloudExadataInfrastructureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConfigureExascaleExadataInfrastructureDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConfigureExascaleExadataInfrastructureDetails.java index 6bdf901d19e..8691f1dbcd1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConfigureExascaleExadataInfrastructureDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConfigureExascaleExadataInfrastructureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConfigureSaasAdminUserDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConfigureSaasAdminUserDetails.java index e171f6aef9c..4354a8802ca 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConfigureSaasAdminUserDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConfigureSaasAdminUserDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConsoleConnection.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConsoleConnection.java index 196c603a95b..e2494ff8fb6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConsoleConnection.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConsoleConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConsoleConnectionSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConsoleConnectionSummary.java index 654be8d851e..4094f2f888a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConsoleConnectionSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConsoleConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConsoleHistory.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConsoleHistory.java index 42eb97a88a0..ab049b29a68 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConsoleHistory.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConsoleHistory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConsoleHistoryCollection.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConsoleHistoryCollection.java index 879fe3fac17..e666bb80c49 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConsoleHistoryCollection.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConsoleHistoryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConsoleHistorySummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConsoleHistorySummary.java index 62bff5e20b5..f2b7a4beba4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConsoleHistorySummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConsoleHistorySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertStandbyAutonomousContainerDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertStandbyAutonomousContainerDatabaseDetails.java index 2dbb087928c..7ea0516b8ff 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertStandbyAutonomousContainerDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertStandbyAutonomousContainerDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertStandbyDatabaseTypeDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertStandbyDatabaseTypeDetails.java index c906b79c85b..5b044786a4b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertStandbyDatabaseTypeDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertStandbyDatabaseTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertToPdbDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertToPdbDetails.java index 663f0c78524..0126c032db5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertToPdbDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertToPdbDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertToPdbTargetBase.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertToPdbTargetBase.java index c97c1f00203..13542208630 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertToPdbTargetBase.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertToPdbTargetBase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertToRegularPluggableDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertToRegularPluggableDatabaseDetails.java index cf360dbe1c2..3bd213931c1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertToRegularPluggableDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertToRegularPluggableDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertToStandaloneDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertToStandaloneDetails.java index 2f3af2ce744..8ba9b70b038 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertToStandaloneDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ConvertToStandaloneDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateApplicationVipDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateApplicationVipDetails.java index 23435eee0ec..a538715d1fe 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateApplicationVipDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateApplicationVipDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousContainerDatabaseBase.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousContainerDatabaseBase.java index 5602b8554a3..cba0ec66c86 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousContainerDatabaseBase.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousContainerDatabaseBase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousContainerDatabaseDataguardAssociationDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousContainerDatabaseDataguardAssociationDetails.java index b9a5bc94e43..378b4ded7e9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousContainerDatabaseDataguardAssociationDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousContainerDatabaseDataguardAssociationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousContainerDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousContainerDatabaseDetails.java index 3f432f051f2..3d164262581 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousContainerDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousContainerDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousContainerDatabaseFromBackupDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousContainerDatabaseFromBackupDetails.java index a30ec2e06d2..142eccaf619 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousContainerDatabaseFromBackupDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousContainerDatabaseFromBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseBackupDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseBackupDetails.java index f4871957ac7..105899450be 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseBackupDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseBase.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseBase.java index 274504ec4a2..95d56b9b765 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseBase.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseBase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; @@ -111,6 +111,7 @@ public class CreateAutonomousDatabaseBase "resourcePoolLeaderId", "resourcePoolSummary", "autonomousMaintenanceScheduleType", + "autonomousDatabaseMaintenanceWindow", "scheduledOperations", "isAutoScalingForStorageEnabled", "databaseEdition", @@ -166,6 +167,7 @@ protected CreateAutonomousDatabaseBase( String resourcePoolLeaderId, ResourcePoolSummary resourcePoolSummary, AutonomousMaintenanceScheduleType autonomousMaintenanceScheduleType, + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow, java.util.List scheduledOperations, Boolean isAutoScalingForStorageEnabled, AutonomousDatabaseSummary.DatabaseEdition databaseEdition, @@ -220,6 +222,7 @@ protected CreateAutonomousDatabaseBase( this.resourcePoolLeaderId = resourcePoolLeaderId; this.resourcePoolSummary = resourcePoolSummary; this.autonomousMaintenanceScheduleType = autonomousMaintenanceScheduleType; + this.autonomousDatabaseMaintenanceWindow = autonomousDatabaseMaintenanceWindow; this.scheduledOperations = scheduledOperations; this.isAutoScalingForStorageEnabled = isAutoScalingForStorageEnabled; this.databaseEdition = databaseEdition; @@ -1571,6 +1574,13 @@ public AutonomousMaintenanceScheduleType getAutonomousMaintenanceScheduleType() return autonomousMaintenanceScheduleType; } + @com.fasterxml.jackson.annotation.JsonProperty("autonomousDatabaseMaintenanceWindow") + private final AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow; + + public AutonomousDatabaseMaintenanceWindowSummary getAutonomousDatabaseMaintenanceWindow() { + return autonomousDatabaseMaintenanceWindow; + } + /** * The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, * scheduledStopTime. @@ -1772,6 +1782,8 @@ public String toString(boolean includeByteArrayContents) { sb.append(", resourcePoolSummary=").append(String.valueOf(this.resourcePoolSummary)); sb.append(", autonomousMaintenanceScheduleType=") .append(String.valueOf(this.autonomousMaintenanceScheduleType)); + sb.append(", autonomousDatabaseMaintenanceWindow=") + .append(String.valueOf(this.autonomousDatabaseMaintenanceWindow)); sb.append(", scheduledOperations=").append(String.valueOf(this.scheduledOperations)); sb.append(", isAutoScalingForStorageEnabled=") .append(String.valueOf(this.isAutoScalingForStorageEnabled)); @@ -1851,6 +1863,9 @@ public boolean equals(Object o) { && java.util.Objects.equals( this.autonomousMaintenanceScheduleType, other.autonomousMaintenanceScheduleType) + && java.util.Objects.equals( + this.autonomousDatabaseMaintenanceWindow, + other.autonomousDatabaseMaintenanceWindow) && java.util.Objects.equals(this.scheduledOperations, other.scheduledOperations) && java.util.Objects.equals( this.isAutoScalingForStorageEnabled, other.isAutoScalingForStorageEnabled) @@ -2005,6 +2020,11 @@ public int hashCode() { + (this.autonomousMaintenanceScheduleType == null ? 43 : this.autonomousMaintenanceScheduleType.hashCode()); + result = + (result * PRIME) + + (this.autonomousDatabaseMaintenanceWindow == null + ? 43 + : this.autonomousDatabaseMaintenanceWindow.hashCode()); result = (result * PRIME) + (this.scheduledOperations == null diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseCloneDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseCloneDetails.java index 503e8e56c81..350b9a52314 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseCloneDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseCloneDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; @@ -447,6 +447,16 @@ public Builder autonomousMaintenanceScheduleType( return this; } + @com.fasterxml.jackson.annotation.JsonProperty("autonomousDatabaseMaintenanceWindow") + private AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow; + + public Builder autonomousDatabaseMaintenanceWindow( + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow) { + this.autonomousDatabaseMaintenanceWindow = autonomousDatabaseMaintenanceWindow; + this.__explicitlySet__.add("autonomousDatabaseMaintenanceWindow"); + return this; + } + @com.fasterxml.jackson.annotation.JsonProperty("scheduledOperations") private java.util.List scheduledOperations; @@ -597,6 +607,7 @@ public CreateAutonomousDatabaseCloneDetails build() { this.resourcePoolLeaderId, this.resourcePoolSummary, this.autonomousMaintenanceScheduleType, + this.autonomousDatabaseMaintenanceWindow, this.scheduledOperations, this.isAutoScalingForStorageEnabled, this.databaseEdition, @@ -754,6 +765,10 @@ public Builder copy(CreateAutonomousDatabaseCloneDetails model) { this.autonomousMaintenanceScheduleType( model.getAutonomousMaintenanceScheduleType()); } + if (model.wasPropertyExplicitlySet("autonomousDatabaseMaintenanceWindow")) { + this.autonomousDatabaseMaintenanceWindow( + model.getAutonomousDatabaseMaintenanceWindow()); + } if (model.wasPropertyExplicitlySet("scheduledOperations")) { this.scheduledOperations(model.getScheduledOperations()); } @@ -842,6 +857,7 @@ public CreateAutonomousDatabaseCloneDetails( String resourcePoolLeaderId, ResourcePoolSummary resourcePoolSummary, AutonomousMaintenanceScheduleType autonomousMaintenanceScheduleType, + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow, java.util.List scheduledOperations, Boolean isAutoScalingForStorageEnabled, AutonomousDatabaseSummary.DatabaseEdition databaseEdition, @@ -898,6 +914,7 @@ public CreateAutonomousDatabaseCloneDetails( resourcePoolLeaderId, resourcePoolSummary, autonomousMaintenanceScheduleType, + autonomousDatabaseMaintenanceWindow, scheduledOperations, isAutoScalingForStorageEnabled, databaseEdition, diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseDetails.java index e8dba0d2ca8..cdf09cf84c1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; @@ -446,6 +446,16 @@ public Builder autonomousMaintenanceScheduleType( return this; } + @com.fasterxml.jackson.annotation.JsonProperty("autonomousDatabaseMaintenanceWindow") + private AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow; + + public Builder autonomousDatabaseMaintenanceWindow( + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow) { + this.autonomousDatabaseMaintenanceWindow = autonomousDatabaseMaintenanceWindow; + this.__explicitlySet__.add("autonomousDatabaseMaintenanceWindow"); + return this; + } + @com.fasterxml.jackson.annotation.JsonProperty("scheduledOperations") private java.util.List scheduledOperations; @@ -562,6 +572,7 @@ public CreateAutonomousDatabaseDetails build() { this.resourcePoolLeaderId, this.resourcePoolSummary, this.autonomousMaintenanceScheduleType, + this.autonomousDatabaseMaintenanceWindow, this.scheduledOperations, this.isAutoScalingForStorageEnabled, this.databaseEdition, @@ -717,6 +728,10 @@ public Builder copy(CreateAutonomousDatabaseDetails model) { this.autonomousMaintenanceScheduleType( model.getAutonomousMaintenanceScheduleType()); } + if (model.wasPropertyExplicitlySet("autonomousDatabaseMaintenanceWindow")) { + this.autonomousDatabaseMaintenanceWindow( + model.getAutonomousDatabaseMaintenanceWindow()); + } if (model.wasPropertyExplicitlySet("scheduledOperations")) { this.scheduledOperations(model.getScheduledOperations()); } @@ -799,6 +814,7 @@ public CreateAutonomousDatabaseDetails( String resourcePoolLeaderId, ResourcePoolSummary resourcePoolSummary, AutonomousMaintenanceScheduleType autonomousMaintenanceScheduleType, + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow, java.util.List scheduledOperations, Boolean isAutoScalingForStorageEnabled, AutonomousDatabaseSummary.DatabaseEdition databaseEdition, @@ -853,6 +869,7 @@ public CreateAutonomousDatabaseDetails( resourcePoolLeaderId, resourcePoolSummary, autonomousMaintenanceScheduleType, + autonomousDatabaseMaintenanceWindow, scheduledOperations, isAutoScalingForStorageEnabled, databaseEdition, diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseFromBackupDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseFromBackupDetails.java index b675a8076df..a02c8117a85 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseFromBackupDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseFromBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; @@ -447,6 +447,16 @@ public Builder autonomousMaintenanceScheduleType( return this; } + @com.fasterxml.jackson.annotation.JsonProperty("autonomousDatabaseMaintenanceWindow") + private AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow; + + public Builder autonomousDatabaseMaintenanceWindow( + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow) { + this.autonomousDatabaseMaintenanceWindow = autonomousDatabaseMaintenanceWindow; + this.__explicitlySet__.add("autonomousDatabaseMaintenanceWindow"); + return this; + } + @com.fasterxml.jackson.annotation.JsonProperty("scheduledOperations") private java.util.List scheduledOperations; @@ -618,6 +628,7 @@ public CreateAutonomousDatabaseFromBackupDetails build() { this.resourcePoolLeaderId, this.resourcePoolSummary, this.autonomousMaintenanceScheduleType, + this.autonomousDatabaseMaintenanceWindow, this.scheduledOperations, this.isAutoScalingForStorageEnabled, this.databaseEdition, @@ -776,6 +787,10 @@ public Builder copy(CreateAutonomousDatabaseFromBackupDetails model) { this.autonomousMaintenanceScheduleType( model.getAutonomousMaintenanceScheduleType()); } + if (model.wasPropertyExplicitlySet("autonomousDatabaseMaintenanceWindow")) { + this.autonomousDatabaseMaintenanceWindow( + model.getAutonomousDatabaseMaintenanceWindow()); + } if (model.wasPropertyExplicitlySet("scheduledOperations")) { this.scheduledOperations(model.getScheduledOperations()); } @@ -867,6 +882,7 @@ public CreateAutonomousDatabaseFromBackupDetails( String resourcePoolLeaderId, ResourcePoolSummary resourcePoolSummary, AutonomousMaintenanceScheduleType autonomousMaintenanceScheduleType, + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow, java.util.List scheduledOperations, Boolean isAutoScalingForStorageEnabled, AutonomousDatabaseSummary.DatabaseEdition databaseEdition, @@ -924,6 +940,7 @@ public CreateAutonomousDatabaseFromBackupDetails( resourcePoolLeaderId, resourcePoolSummary, autonomousMaintenanceScheduleType, + autonomousDatabaseMaintenanceWindow, scheduledOperations, isAutoScalingForStorageEnabled, databaseEdition, diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseFromBackupTimestampDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseFromBackupTimestampDetails.java index 662cbea225b..f564b477d67 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseFromBackupTimestampDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseFromBackupTimestampDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; @@ -448,6 +448,16 @@ public Builder autonomousMaintenanceScheduleType( return this; } + @com.fasterxml.jackson.annotation.JsonProperty("autonomousDatabaseMaintenanceWindow") + private AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow; + + public Builder autonomousDatabaseMaintenanceWindow( + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow) { + this.autonomousDatabaseMaintenanceWindow = autonomousDatabaseMaintenanceWindow; + this.__explicitlySet__.add("autonomousDatabaseMaintenanceWindow"); + return this; + } + @com.fasterxml.jackson.annotation.JsonProperty("scheduledOperations") private java.util.List scheduledOperations; @@ -652,6 +662,7 @@ public CreateAutonomousDatabaseFromBackupTimestampDetails build() { this.resourcePoolLeaderId, this.resourcePoolSummary, this.autonomousMaintenanceScheduleType, + this.autonomousDatabaseMaintenanceWindow, this.scheduledOperations, this.isAutoScalingForStorageEnabled, this.databaseEdition, @@ -812,6 +823,10 @@ public Builder copy(CreateAutonomousDatabaseFromBackupTimestampDetails model) { this.autonomousMaintenanceScheduleType( model.getAutonomousMaintenanceScheduleType()); } + if (model.wasPropertyExplicitlySet("autonomousDatabaseMaintenanceWindow")) { + this.autonomousDatabaseMaintenanceWindow( + model.getAutonomousDatabaseMaintenanceWindow()); + } if (model.wasPropertyExplicitlySet("scheduledOperations")) { this.scheduledOperations(model.getScheduledOperations()); } @@ -910,6 +925,7 @@ public CreateAutonomousDatabaseFromBackupTimestampDetails( String resourcePoolLeaderId, ResourcePoolSummary resourcePoolSummary, AutonomousMaintenanceScheduleType autonomousMaintenanceScheduleType, + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow, java.util.List scheduledOperations, Boolean isAutoScalingForStorageEnabled, AutonomousDatabaseSummary.DatabaseEdition databaseEdition, @@ -969,6 +985,7 @@ public CreateAutonomousDatabaseFromBackupTimestampDetails( resourcePoolLeaderId, resourcePoolSummary, autonomousMaintenanceScheduleType, + autonomousDatabaseMaintenanceWindow, scheduledOperations, isAutoScalingForStorageEnabled, databaseEdition, diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseSoftwareImageDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseSoftwareImageDetails.java index c0ee5c365b8..fd84b2485a8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseSoftwareImageDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousDatabaseSoftwareImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousVmClusterDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousVmClusterDetails.java index 0206cea0091..b2cd40f4b1d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousVmClusterDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateAutonomousVmClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateBackupDestinationDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateBackupDestinationDetails.java index a60f13b44d2..84fdcdcc95f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateBackupDestinationDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateBackupDestinationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateBackupDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateBackupDetails.java index 2d2f9b4ba50..4a1c57d8567 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateBackupDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCloudAutonomousVmClusterDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCloudAutonomousVmClusterDetails.java index 32f99f8aa6c..9c01127c8d2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCloudAutonomousVmClusterDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCloudAutonomousVmClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCloudExadataInfrastructureDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCloudExadataInfrastructureDetails.java index a7143629ea0..174f9e39b86 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCloudExadataInfrastructureDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCloudExadataInfrastructureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCloudVmClusterDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCloudVmClusterDetails.java index 93606f83479..18866415383 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCloudVmClusterDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCloudVmClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateConsoleConnectionDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateConsoleConnectionDetails.java index ee679ec7ff7..82f8be4dee0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateConsoleConnectionDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateConsoleConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateConsoleHistoryDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateConsoleHistoryDetails.java index 2845ffce26d..9924b56d381 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateConsoleHistoryDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateConsoleHistoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCrossRegionAutonomousDatabaseDataGuardDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCrossRegionAutonomousDatabaseDataGuardDetails.java index 79e602c995e..d656a2a9fef 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCrossRegionAutonomousDatabaseDataGuardDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCrossRegionAutonomousDatabaseDataGuardDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; @@ -461,6 +461,16 @@ public Builder autonomousMaintenanceScheduleType( return this; } + @com.fasterxml.jackson.annotation.JsonProperty("autonomousDatabaseMaintenanceWindow") + private AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow; + + public Builder autonomousDatabaseMaintenanceWindow( + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow) { + this.autonomousDatabaseMaintenanceWindow = autonomousDatabaseMaintenanceWindow; + this.__explicitlySet__.add("autonomousDatabaseMaintenanceWindow"); + return this; + } + @com.fasterxml.jackson.annotation.JsonProperty("scheduledOperations") private java.util.List scheduledOperations; @@ -598,6 +608,7 @@ public CreateCrossRegionAutonomousDatabaseDataGuardDetails build() { this.resourcePoolLeaderId, this.resourcePoolSummary, this.autonomousMaintenanceScheduleType, + this.autonomousDatabaseMaintenanceWindow, this.scheduledOperations, this.isAutoScalingForStorageEnabled, this.databaseEdition, @@ -754,6 +765,10 @@ public Builder copy(CreateCrossRegionAutonomousDatabaseDataGuardDetails model) { this.autonomousMaintenanceScheduleType( model.getAutonomousMaintenanceScheduleType()); } + if (model.wasPropertyExplicitlySet("autonomousDatabaseMaintenanceWindow")) { + this.autonomousDatabaseMaintenanceWindow( + model.getAutonomousDatabaseMaintenanceWindow()); + } if (model.wasPropertyExplicitlySet("scheduledOperations")) { this.scheduledOperations(model.getScheduledOperations()); } @@ -839,6 +854,7 @@ public CreateCrossRegionAutonomousDatabaseDataGuardDetails( String resourcePoolLeaderId, ResourcePoolSummary resourcePoolSummary, AutonomousMaintenanceScheduleType autonomousMaintenanceScheduleType, + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow, java.util.List scheduledOperations, Boolean isAutoScalingForStorageEnabled, AutonomousDatabaseSummary.DatabaseEdition databaseEdition, @@ -894,6 +910,7 @@ public CreateCrossRegionAutonomousDatabaseDataGuardDetails( resourcePoolLeaderId, resourcePoolSummary, autonomousMaintenanceScheduleType, + autonomousDatabaseMaintenanceWindow, scheduledOperations, isAutoScalingForStorageEnabled, databaseEdition, diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCrossRegionDisasterRecoveryDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCrossRegionDisasterRecoveryDetails.java index 341ee673f14..354a7112537 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCrossRegionDisasterRecoveryDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCrossRegionDisasterRecoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; @@ -459,6 +459,16 @@ public Builder autonomousMaintenanceScheduleType( return this; } + @com.fasterxml.jackson.annotation.JsonProperty("autonomousDatabaseMaintenanceWindow") + private AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow; + + public Builder autonomousDatabaseMaintenanceWindow( + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow) { + this.autonomousDatabaseMaintenanceWindow = autonomousDatabaseMaintenanceWindow; + this.__explicitlySet__.add("autonomousDatabaseMaintenanceWindow"); + return this; + } + @com.fasterxml.jackson.annotation.JsonProperty("scheduledOperations") private java.util.List scheduledOperations; @@ -643,6 +653,7 @@ public CreateCrossRegionDisasterRecoveryDetails build() { this.resourcePoolLeaderId, this.resourcePoolSummary, this.autonomousMaintenanceScheduleType, + this.autonomousDatabaseMaintenanceWindow, this.scheduledOperations, this.isAutoScalingForStorageEnabled, this.databaseEdition, @@ -801,6 +812,10 @@ public Builder copy(CreateCrossRegionDisasterRecoveryDetails model) { this.autonomousMaintenanceScheduleType( model.getAutonomousMaintenanceScheduleType()); } + if (model.wasPropertyExplicitlySet("autonomousDatabaseMaintenanceWindow")) { + this.autonomousDatabaseMaintenanceWindow( + model.getAutonomousDatabaseMaintenanceWindow()); + } if (model.wasPropertyExplicitlySet("scheduledOperations")) { this.scheduledOperations(model.getScheduledOperations()); } @@ -892,6 +907,7 @@ public CreateCrossRegionDisasterRecoveryDetails( String resourcePoolLeaderId, ResourcePoolSummary resourcePoolSummary, AutonomousMaintenanceScheduleType autonomousMaintenanceScheduleType, + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow, java.util.List scheduledOperations, Boolean isAutoScalingForStorageEnabled, AutonomousDatabaseSummary.DatabaseEdition databaseEdition, @@ -949,6 +965,7 @@ public CreateCrossRegionDisasterRecoveryDetails( resourcePoolLeaderId, resourcePoolSummary, autonomousMaintenanceScheduleType, + autonomousDatabaseMaintenanceWindow, scheduledOperations, isAutoScalingForStorageEnabled, databaseEdition, diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCrossTenancyDisasterRecoveryDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCrossTenancyDisasterRecoveryDetails.java index 1ffb2022d0c..34136ae7fd5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCrossTenancyDisasterRecoveryDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateCrossTenancyDisasterRecoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; @@ -458,6 +458,16 @@ public Builder autonomousMaintenanceScheduleType( return this; } + @com.fasterxml.jackson.annotation.JsonProperty("autonomousDatabaseMaintenanceWindow") + private AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow; + + public Builder autonomousDatabaseMaintenanceWindow( + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow) { + this.autonomousDatabaseMaintenanceWindow = autonomousDatabaseMaintenanceWindow; + this.__explicitlySet__.add("autonomousDatabaseMaintenanceWindow"); + return this; + } + @com.fasterxml.jackson.annotation.JsonProperty("scheduledOperations") private java.util.List scheduledOperations; @@ -640,6 +650,7 @@ public CreateCrossTenancyDisasterRecoveryDetails build() { this.resourcePoolLeaderId, this.resourcePoolSummary, this.autonomousMaintenanceScheduleType, + this.autonomousDatabaseMaintenanceWindow, this.scheduledOperations, this.isAutoScalingForStorageEnabled, this.databaseEdition, @@ -798,6 +809,10 @@ public Builder copy(CreateCrossTenancyDisasterRecoveryDetails model) { this.autonomousMaintenanceScheduleType( model.getAutonomousMaintenanceScheduleType()); } + if (model.wasPropertyExplicitlySet("autonomousDatabaseMaintenanceWindow")) { + this.autonomousDatabaseMaintenanceWindow( + model.getAutonomousDatabaseMaintenanceWindow()); + } if (model.wasPropertyExplicitlySet("scheduledOperations")) { this.scheduledOperations(model.getScheduledOperations()); } @@ -889,6 +904,7 @@ public CreateCrossTenancyDisasterRecoveryDetails( String resourcePoolLeaderId, ResourcePoolSummary resourcePoolSummary, AutonomousMaintenanceScheduleType autonomousMaintenanceScheduleType, + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow, java.util.List scheduledOperations, Boolean isAutoScalingForStorageEnabled, AutonomousDatabaseSummary.DatabaseEdition databaseEdition, @@ -946,6 +962,7 @@ public CreateCrossTenancyDisasterRecoveryDetails( resourcePoolLeaderId, resourcePoolSummary, autonomousMaintenanceScheduleType, + autonomousDatabaseMaintenanceWindow, scheduledOperations, isAutoScalingForStorageEnabled, databaseEdition, diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDataGuardAssociationDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDataGuardAssociationDetails.java index f4ef365e3fe..f8705a2f451 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDataGuardAssociationDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDataGuardAssociationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDataGuardAssociationToExistingDbSystemDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDataGuardAssociationToExistingDbSystemDetails.java index 32b3b47ec99..e7365ee5955 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDataGuardAssociationToExistingDbSystemDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDataGuardAssociationToExistingDbSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDataGuardAssociationToExistingVmClusterDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDataGuardAssociationToExistingVmClusterDetails.java index 9b4b05a3f6b..1da0cb37d5a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDataGuardAssociationToExistingVmClusterDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDataGuardAssociationToExistingVmClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDataGuardAssociationWithNewDbSystemDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDataGuardAssociationWithNewDbSystemDetails.java index 929df26612c..defa0fcd89a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDataGuardAssociationWithNewDbSystemDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDataGuardAssociationWithNewDbSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseBase.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseBase.java index 97b95426c6f..7567f9f1bc4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseBase.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseBase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; @@ -31,6 +31,9 @@ @com.fasterxml.jackson.annotation.JsonSubTypes.Type( value = CreateStandByDatabaseDetails.class, name = "DATAGUARD"), + @com.fasterxml.jackson.annotation.JsonSubTypes.Type( + value = CreateDatabaseFromDatabase.class, + name = "DATABASE"), @com.fasterxml.jackson.annotation.JsonSubTypes.Type( value = CreateDatabaseFromBackup.class, name = "DB_BACKUP") @@ -197,6 +200,7 @@ public int hashCode() { public enum Source implements com.oracle.bmc.http.internal.BmcEnum { None("NONE"), DbBackup("DB_BACKUP"), + Database("DATABASE"), Dataguard("DATAGUARD"), ; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseDetails.java index 7e4060ac164..87d6e3b4cce 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseFromAnotherDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseFromAnotherDatabaseDetails.java index d28bf42cb19..52b264e1aa3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseFromAnotherDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseFromAnotherDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; @@ -30,7 +30,13 @@ public final class CreateDatabaseFromAnotherDatabaseDetails "dbUniqueName", "dbName", "timeStampForPointInTimeRecovery", - "pluggableDatabases" + "pluggableDatabases", + "freeformTags", + "definedTags", + "sidPrefix", + "sourceEncryptionKeyLocationDetails", + "storageSizeDetails", + "vmClusterId" }) public CreateDatabaseFromAnotherDatabaseDetails( String databaseId, @@ -39,7 +45,13 @@ public CreateDatabaseFromAnotherDatabaseDetails( String dbUniqueName, String dbName, java.util.Date timeStampForPointInTimeRecovery, - java.util.List pluggableDatabases) { + java.util.List pluggableDatabases, + java.util.Map freeformTags, + java.util.Map> definedTags, + String sidPrefix, + EncryptionKeyLocationDetails sourceEncryptionKeyLocationDetails, + DatabaseStorageSizeDetails storageSizeDetails, + String vmClusterId) { super(); this.databaseId = databaseId; this.backupTDEPassword = backupTDEPassword; @@ -48,6 +60,12 @@ public CreateDatabaseFromAnotherDatabaseDetails( this.dbName = dbName; this.timeStampForPointInTimeRecovery = timeStampForPointInTimeRecovery; this.pluggableDatabases = pluggableDatabases; + this.freeformTags = freeformTags; + this.definedTags = definedTags; + this.sidPrefix = sidPrefix; + this.sourceEncryptionKeyLocationDetails = sourceEncryptionKeyLocationDetails; + this.storageSizeDetails = storageSizeDetails; + this.vmClusterId = vmClusterId; } @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") @@ -178,6 +196,106 @@ public Builder pluggableDatabases(java.util.List pluggableDatabases) { this.__explicitlySet__.add("pluggableDatabases"); return this; } + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @param freeformTags the value to set + * @return this builder + */ + public Builder freeformTags(java.util.Map freeformTags) { + this.freeformTags = freeformTags; + this.__explicitlySet__.add("freeformTags"); + return this; + } + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + * @param definedTags the value to set + * @return this builder + */ + public Builder definedTags( + java.util.Map> definedTags) { + this.definedTags = definedTags; + this.__explicitlySet__.add("definedTags"); + return this; + } + /** Specifies a prefix for the {@code Oracle SID} of the database to be created. */ + @com.fasterxml.jackson.annotation.JsonProperty("sidPrefix") + private String sidPrefix; + + /** + * Specifies a prefix for the {@code Oracle SID} of the database to be created. + * + * @param sidPrefix the value to set + * @return this builder + */ + public Builder sidPrefix(String sidPrefix) { + this.sidPrefix = sidPrefix; + this.__explicitlySet__.add("sidPrefix"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("sourceEncryptionKeyLocationDetails") + private EncryptionKeyLocationDetails sourceEncryptionKeyLocationDetails; + + public Builder sourceEncryptionKeyLocationDetails( + EncryptionKeyLocationDetails sourceEncryptionKeyLocationDetails) { + this.sourceEncryptionKeyLocationDetails = sourceEncryptionKeyLocationDetails; + this.__explicitlySet__.add("sourceEncryptionKeyLocationDetails"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("storageSizeDetails") + private DatabaseStorageSizeDetails storageSizeDetails; + + public Builder storageSizeDetails(DatabaseStorageSizeDetails storageSizeDetails) { + this.storageSizeDetails = storageSizeDetails; + this.__explicitlySet__.add("storageSizeDetails"); + return this; + } + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the + * VM cluster. + */ + @com.fasterxml.jackson.annotation.JsonProperty("vmClusterId") + private String vmClusterId; + + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the + * VM cluster. + * + * @param vmClusterId the value to set + * @return this builder + */ + public Builder vmClusterId(String vmClusterId) { + this.vmClusterId = vmClusterId; + this.__explicitlySet__.add("vmClusterId"); + return this; + } @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); @@ -191,7 +309,13 @@ public CreateDatabaseFromAnotherDatabaseDetails build() { this.dbUniqueName, this.dbName, this.timeStampForPointInTimeRecovery, - this.pluggableDatabases); + this.pluggableDatabases, + this.freeformTags, + this.definedTags, + this.sidPrefix, + this.sourceEncryptionKeyLocationDetails, + this.storageSizeDetails, + this.vmClusterId); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } @@ -221,6 +345,25 @@ public Builder copy(CreateDatabaseFromAnotherDatabaseDetails model) { if (model.wasPropertyExplicitlySet("pluggableDatabases")) { this.pluggableDatabases(model.getPluggableDatabases()); } + if (model.wasPropertyExplicitlySet("freeformTags")) { + this.freeformTags(model.getFreeformTags()); + } + if (model.wasPropertyExplicitlySet("definedTags")) { + this.definedTags(model.getDefinedTags()); + } + if (model.wasPropertyExplicitlySet("sidPrefix")) { + this.sidPrefix(model.getSidPrefix()); + } + if (model.wasPropertyExplicitlySet("sourceEncryptionKeyLocationDetails")) { + this.sourceEncryptionKeyLocationDetails( + model.getSourceEncryptionKeyLocationDetails()); + } + if (model.wasPropertyExplicitlySet("storageSizeDetails")) { + this.storageSizeDetails(model.getStorageSizeDetails()); + } + if (model.wasPropertyExplicitlySet("vmClusterId")) { + this.vmClusterId(model.getVmClusterId()); + } return this; } } @@ -343,6 +486,92 @@ public java.util.List getPluggableDatabases() { return pluggableDatabases; } + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private final java.util.Map freeformTags; + + /** + * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined + * name, type, or namespace. For more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Department": "Finance"}} + * + * @return the value + */ + public java.util.Map getFreeformTags() { + return freeformTags; + } + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + */ + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private final java.util.Map> definedTags; + + /** + * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more + * information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + * @return the value + */ + public java.util.Map> getDefinedTags() { + return definedTags; + } + + /** Specifies a prefix for the {@code Oracle SID} of the database to be created. */ + @com.fasterxml.jackson.annotation.JsonProperty("sidPrefix") + private final String sidPrefix; + + /** + * Specifies a prefix for the {@code Oracle SID} of the database to be created. + * + * @return the value + */ + public String getSidPrefix() { + return sidPrefix; + } + + @com.fasterxml.jackson.annotation.JsonProperty("sourceEncryptionKeyLocationDetails") + private final EncryptionKeyLocationDetails sourceEncryptionKeyLocationDetails; + + public EncryptionKeyLocationDetails getSourceEncryptionKeyLocationDetails() { + return sourceEncryptionKeyLocationDetails; + } + + @com.fasterxml.jackson.annotation.JsonProperty("storageSizeDetails") + private final DatabaseStorageSizeDetails storageSizeDetails; + + public DatabaseStorageSizeDetails getStorageSizeDetails() { + return storageSizeDetails; + } + + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM + * cluster. + */ + @com.fasterxml.jackson.annotation.JsonProperty("vmClusterId") + private final String vmClusterId; + + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM + * cluster. + * + * @return the value + */ + public String getVmClusterId() { + return vmClusterId; + } + @Override public String toString() { return this.toString(true); @@ -366,6 +595,13 @@ public String toString(boolean includeByteArrayContents) { sb.append(", timeStampForPointInTimeRecovery=") .append(String.valueOf(this.timeStampForPointInTimeRecovery)); sb.append(", pluggableDatabases=").append(String.valueOf(this.pluggableDatabases)); + sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); + sb.append(", definedTags=").append(String.valueOf(this.definedTags)); + sb.append(", sidPrefix=").append(String.valueOf(this.sidPrefix)); + sb.append(", sourceEncryptionKeyLocationDetails=") + .append(String.valueOf(this.sourceEncryptionKeyLocationDetails)); + sb.append(", storageSizeDetails=").append(String.valueOf(this.storageSizeDetails)); + sb.append(", vmClusterId=").append(String.valueOf(this.vmClusterId)); sb.append(")"); return sb.toString(); } @@ -389,6 +625,14 @@ public boolean equals(Object o) { && java.util.Objects.equals( this.timeStampForPointInTimeRecovery, other.timeStampForPointInTimeRecovery) && java.util.Objects.equals(this.pluggableDatabases, other.pluggableDatabases) + && java.util.Objects.equals(this.freeformTags, other.freeformTags) + && java.util.Objects.equals(this.definedTags, other.definedTags) + && java.util.Objects.equals(this.sidPrefix, other.sidPrefix) + && java.util.Objects.equals( + this.sourceEncryptionKeyLocationDetails, + other.sourceEncryptionKeyLocationDetails) + && java.util.Objects.equals(this.storageSizeDetails, other.storageSizeDetails) + && java.util.Objects.equals(this.vmClusterId, other.vmClusterId) && super.equals(other); } @@ -415,6 +659,20 @@ public int hashCode() { + (this.pluggableDatabases == null ? 43 : this.pluggableDatabases.hashCode()); + result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); + result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); + result = (result * PRIME) + (this.sidPrefix == null ? 43 : this.sidPrefix.hashCode()); + result = + (result * PRIME) + + (this.sourceEncryptionKeyLocationDetails == null + ? 43 + : this.sourceEncryptionKeyLocationDetails.hashCode()); + result = + (result * PRIME) + + (this.storageSizeDetails == null + ? 43 + : this.storageSizeDetails.hashCode()); + result = (result * PRIME) + (this.vmClusterId == null ? 43 : this.vmClusterId.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseFromBackup.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseFromBackup.java index c9cdee977bf..92d6774e312 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseFromBackup.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseFromBackup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseFromBackupDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseFromBackupDetails.java index 0394ef39b2c..33dd8d88111 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseFromBackupDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseFromBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseFromDatabase.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseFromDatabase.java new file mode 100644 index 00000000000..30011f603ac --- /dev/null +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseFromDatabase.java @@ -0,0 +1,184 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.database.model; + +/** + * Details for creating a database by restoring from a database backup closest to given timestamp. + * This would work only if given timestamp is within the time range of available automatic backups. + * + *

*Warning:** Oracle recommends that you avoid using any confidential information when you + * supply string values using the API.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20160918") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = CreateDatabaseFromDatabase.Builder.class) +@com.fasterxml.jackson.annotation.JsonTypeInfo( + use = com.fasterxml.jackson.annotation.JsonTypeInfo.Id.NAME, + include = com.fasterxml.jackson.annotation.JsonTypeInfo.As.PROPERTY, + property = "source") +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class CreateDatabaseFromDatabase extends CreateDatabaseBase { + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + @com.fasterxml.jackson.annotation.JsonProperty("dbHomeId") + private String dbHomeId; + + public Builder dbHomeId(String dbHomeId) { + this.dbHomeId = dbHomeId; + this.__explicitlySet__.add("dbHomeId"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("dbVersion") + private String dbVersion; + + public Builder dbVersion(String dbVersion) { + this.dbVersion = dbVersion; + this.__explicitlySet__.add("dbVersion"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("kmsKeyId") + private String kmsKeyId; + + public Builder kmsKeyId(String kmsKeyId) { + this.kmsKeyId = kmsKeyId; + this.__explicitlySet__.add("kmsKeyId"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("kmsKeyVersionId") + private String kmsKeyVersionId; + + public Builder kmsKeyVersionId(String kmsKeyVersionId) { + this.kmsKeyVersionId = kmsKeyVersionId; + this.__explicitlySet__.add("kmsKeyVersionId"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("database") + private CreateDatabaseFromAnotherDatabaseDetails database; + + public Builder database(CreateDatabaseFromAnotherDatabaseDetails database) { + this.database = database; + this.__explicitlySet__.add("database"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public CreateDatabaseFromDatabase build() { + CreateDatabaseFromDatabase model = + new CreateDatabaseFromDatabase( + this.dbHomeId, + this.dbVersion, + this.kmsKeyId, + this.kmsKeyVersionId, + this.database); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(CreateDatabaseFromDatabase model) { + if (model.wasPropertyExplicitlySet("dbHomeId")) { + this.dbHomeId(model.getDbHomeId()); + } + if (model.wasPropertyExplicitlySet("dbVersion")) { + this.dbVersion(model.getDbVersion()); + } + if (model.wasPropertyExplicitlySet("kmsKeyId")) { + this.kmsKeyId(model.getKmsKeyId()); + } + if (model.wasPropertyExplicitlySet("kmsKeyVersionId")) { + this.kmsKeyVersionId(model.getKmsKeyVersionId()); + } + if (model.wasPropertyExplicitlySet("database")) { + this.database(model.getDatabase()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + @Deprecated + public CreateDatabaseFromDatabase( + String dbHomeId, + String dbVersion, + String kmsKeyId, + String kmsKeyVersionId, + CreateDatabaseFromAnotherDatabaseDetails database) { + super(dbHomeId, dbVersion, kmsKeyId, kmsKeyVersionId); + this.database = database; + } + + @com.fasterxml.jackson.annotation.JsonProperty("database") + private final CreateDatabaseFromAnotherDatabaseDetails database; + + public CreateDatabaseFromAnotherDatabaseDetails getDatabase() { + return database; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("CreateDatabaseFromDatabase("); + sb.append("super=").append(super.toString(includeByteArrayContents)); + sb.append(", database=").append(String.valueOf(this.database)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CreateDatabaseFromDatabase)) { + return false; + } + + CreateDatabaseFromDatabase other = (CreateDatabaseFromDatabase) o; + return java.util.Objects.equals(this.database, other.database) && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = (result * PRIME) + (this.database == null ? 43 : this.database.hashCode()); + return result; + } +} diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseFromDbSystemDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseFromDbSystemDetails.java index e4d0f89b102..671dd4bc1c2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseFromDbSystemDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseFromDbSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseSoftwareImageDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseSoftwareImageDetails.java index 769bcb38aa8..b645567a963 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseSoftwareImageDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDatabaseSoftwareImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeBase.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeBase.java index dfd1b5f6951..e5b3e1c9c89 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeBase.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeBase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; @@ -31,6 +31,9 @@ @com.fasterxml.jackson.annotation.JsonSubTypes.Type( value = CreateDbHomeWithDbSystemIdFromBackupDetails.class, name = "DB_BACKUP"), + @com.fasterxml.jackson.annotation.JsonSubTypes.Type( + value = CreateDbHomeWithVmClusterIdFromDatabaseDetails.class, + name = "VM_CLUSTER_DATABASE"), @com.fasterxml.jackson.annotation.JsonSubTypes.Type( value = CreateDbHomeWithVmClusterIdFromBackupDetails.class, name = "VM_CLUSTER_BACKUP"), @@ -313,6 +316,7 @@ public enum Source implements com.oracle.bmc.http.internal.BmcEnum { Database("DATABASE"), VmClusterBackup("VM_CLUSTER_BACKUP"), VmClusterNew("VM_CLUSTER_NEW"), + VmClusterDatabase("VM_CLUSTER_DATABASE"), ; private final String value; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeDetails.java index 843879f9e2d..cdef103a927 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeFromBackupDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeFromBackupDetails.java index 9b16c2caf96..c2318ba4be8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeFromBackupDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeFromBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeFromDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeFromDatabaseDetails.java index 9745720dcdb..a3dd13550cd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeFromDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeFromDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeFromDbSystemDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeFromDbSystemDetails.java index 4cb9ad8f730..37427c0f156 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeFromDbSystemDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeFromDbSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithDbSystemIdDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithDbSystemIdDetails.java index 1270fc4ec78..de9cd792ad6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithDbSystemIdDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithDbSystemIdDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithDbSystemIdFromBackupDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithDbSystemIdFromBackupDetails.java index 786ff798484..699a0cfb503 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithDbSystemIdFromBackupDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithDbSystemIdFromBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithDbSystemIdFromDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithDbSystemIdFromDatabaseDetails.java index 20ebaf3287f..ccef4c2fad2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithDbSystemIdFromDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithDbSystemIdFromDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithVmClusterIdDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithVmClusterIdDetails.java index 03f5fb52024..24b7f9d3e00 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithVmClusterIdDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithVmClusterIdDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithVmClusterIdFromBackupDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithVmClusterIdFromBackupDetails.java index d2a73ee7df5..7c895aab364 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithVmClusterIdFromBackupDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithVmClusterIdFromBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithVmClusterIdFromDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithVmClusterIdFromDatabaseDetails.java new file mode 100644 index 00000000000..4f90ec5d1f5 --- /dev/null +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateDbHomeWithVmClusterIdFromDatabaseDetails.java @@ -0,0 +1,293 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.database.model; + +/** + * Note that a valid {@code vmClusterId} value must be supplied for the {@code + * CreateDbHomeWithDVmClusterIdFromDatabase} API operation to successfully complete.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20160918") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = CreateDbHomeWithVmClusterIdFromDatabaseDetails.Builder.class) +@com.fasterxml.jackson.annotation.JsonTypeInfo( + use = com.fasterxml.jackson.annotation.JsonTypeInfo.Id.NAME, + include = com.fasterxml.jackson.annotation.JsonTypeInfo.As.PROPERTY, + property = "source") +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class CreateDbHomeWithVmClusterIdFromDatabaseDetails extends CreateDbHomeBase { + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + @com.fasterxml.jackson.annotation.JsonProperty("displayName") + private String displayName; + + public Builder displayName(String displayName) { + this.displayName = displayName; + this.__explicitlySet__.add("displayName"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("kmsKeyId") + private String kmsKeyId; + + public Builder kmsKeyId(String kmsKeyId) { + this.kmsKeyId = kmsKeyId; + this.__explicitlySet__.add("kmsKeyId"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("kmsKeyVersionId") + private String kmsKeyVersionId; + + public Builder kmsKeyVersionId(String kmsKeyVersionId) { + this.kmsKeyVersionId = kmsKeyVersionId; + this.__explicitlySet__.add("kmsKeyVersionId"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("databaseSoftwareImageId") + private String databaseSoftwareImageId; + + public Builder databaseSoftwareImageId(String databaseSoftwareImageId) { + this.databaseSoftwareImageId = databaseSoftwareImageId; + this.__explicitlySet__.add("databaseSoftwareImageId"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") + private java.util.Map freeformTags; + + public Builder freeformTags(java.util.Map freeformTags) { + this.freeformTags = freeformTags; + this.__explicitlySet__.add("freeformTags"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("definedTags") + private java.util.Map> definedTags; + + public Builder definedTags( + java.util.Map> definedTags) { + this.definedTags = definedTags; + this.__explicitlySet__.add("definedTags"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("isDesupportedVersion") + private Boolean isDesupportedVersion; + + public Builder isDesupportedVersion(Boolean isDesupportedVersion) { + this.isDesupportedVersion = isDesupportedVersion; + this.__explicitlySet__.add("isDesupportedVersion"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("isUnifiedAuditingEnabled") + private Boolean isUnifiedAuditingEnabled; + + public Builder isUnifiedAuditingEnabled(Boolean isUnifiedAuditingEnabled) { + this.isUnifiedAuditingEnabled = isUnifiedAuditingEnabled; + this.__explicitlySet__.add("isUnifiedAuditingEnabled"); + return this; + } + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the + * VM cluster. + */ + @com.fasterxml.jackson.annotation.JsonProperty("vmClusterId") + private String vmClusterId; + + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the + * VM cluster. + * + * @param vmClusterId the value to set + * @return this builder + */ + public Builder vmClusterId(String vmClusterId) { + this.vmClusterId = vmClusterId; + this.__explicitlySet__.add("vmClusterId"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("database") + private CreateDatabaseFromAnotherDatabaseDetails database; + + public Builder database(CreateDatabaseFromAnotherDatabaseDetails database) { + this.database = database; + this.__explicitlySet__.add("database"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public CreateDbHomeWithVmClusterIdFromDatabaseDetails build() { + CreateDbHomeWithVmClusterIdFromDatabaseDetails model = + new CreateDbHomeWithVmClusterIdFromDatabaseDetails( + this.displayName, + this.kmsKeyId, + this.kmsKeyVersionId, + this.databaseSoftwareImageId, + this.freeformTags, + this.definedTags, + this.isDesupportedVersion, + this.isUnifiedAuditingEnabled, + this.vmClusterId, + this.database); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(CreateDbHomeWithVmClusterIdFromDatabaseDetails model) { + if (model.wasPropertyExplicitlySet("displayName")) { + this.displayName(model.getDisplayName()); + } + if (model.wasPropertyExplicitlySet("kmsKeyId")) { + this.kmsKeyId(model.getKmsKeyId()); + } + if (model.wasPropertyExplicitlySet("kmsKeyVersionId")) { + this.kmsKeyVersionId(model.getKmsKeyVersionId()); + } + if (model.wasPropertyExplicitlySet("databaseSoftwareImageId")) { + this.databaseSoftwareImageId(model.getDatabaseSoftwareImageId()); + } + if (model.wasPropertyExplicitlySet("freeformTags")) { + this.freeformTags(model.getFreeformTags()); + } + if (model.wasPropertyExplicitlySet("definedTags")) { + this.definedTags(model.getDefinedTags()); + } + if (model.wasPropertyExplicitlySet("isDesupportedVersion")) { + this.isDesupportedVersion(model.getIsDesupportedVersion()); + } + if (model.wasPropertyExplicitlySet("isUnifiedAuditingEnabled")) { + this.isUnifiedAuditingEnabled(model.getIsUnifiedAuditingEnabled()); + } + if (model.wasPropertyExplicitlySet("vmClusterId")) { + this.vmClusterId(model.getVmClusterId()); + } + if (model.wasPropertyExplicitlySet("database")) { + this.database(model.getDatabase()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + @Deprecated + public CreateDbHomeWithVmClusterIdFromDatabaseDetails( + String displayName, + String kmsKeyId, + String kmsKeyVersionId, + String databaseSoftwareImageId, + java.util.Map freeformTags, + java.util.Map> definedTags, + Boolean isDesupportedVersion, + Boolean isUnifiedAuditingEnabled, + String vmClusterId, + CreateDatabaseFromAnotherDatabaseDetails database) { + super( + displayName, + kmsKeyId, + kmsKeyVersionId, + databaseSoftwareImageId, + freeformTags, + definedTags, + isDesupportedVersion, + isUnifiedAuditingEnabled); + this.vmClusterId = vmClusterId; + this.database = database; + } + + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM + * cluster. + */ + @com.fasterxml.jackson.annotation.JsonProperty("vmClusterId") + private final String vmClusterId; + + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM + * cluster. + * + * @return the value + */ + public String getVmClusterId() { + return vmClusterId; + } + + @com.fasterxml.jackson.annotation.JsonProperty("database") + private final CreateDatabaseFromAnotherDatabaseDetails database; + + public CreateDatabaseFromAnotherDatabaseDetails getDatabase() { + return database; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("CreateDbHomeWithVmClusterIdFromDatabaseDetails("); + sb.append("super=").append(super.toString(includeByteArrayContents)); + sb.append(", vmClusterId=").append(String.valueOf(this.vmClusterId)); + sb.append(", database=").append(String.valueOf(this.database)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CreateDbHomeWithVmClusterIdFromDatabaseDetails)) { + return false; + } + + CreateDbHomeWithVmClusterIdFromDatabaseDetails other = + (CreateDbHomeWithVmClusterIdFromDatabaseDetails) o; + return java.util.Objects.equals(this.vmClusterId, other.vmClusterId) + && java.util.Objects.equals(this.database, other.database) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = super.hashCode(); + result = (result * PRIME) + (this.vmClusterId == null ? 43 : this.vmClusterId.hashCode()); + result = (result * PRIME) + (this.database == null ? 43 : this.database.hashCode()); + return result; + } +} diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExadataInfrastructureDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExadataInfrastructureDetails.java index e5f840072e8..1fc1c6cf4ae 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExadataInfrastructureDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExadataInfrastructureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExadbVmClusterDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExadbVmClusterDetails.java index 3d2457b687a..7b3298f05d6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExadbVmClusterDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExadbVmClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExascaleDbStorageVaultDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExascaleDbStorageVaultDetails.java index 0820a336e9d..2fac5edfe31 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExascaleDbStorageVaultDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExascaleDbStorageVaultDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExecutionActionDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExecutionActionDetails.java index db6e064a483..67d84094ca2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExecutionActionDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExecutionActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExecutionWindowDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExecutionWindowDetails.java index 7ce03b66e0a..31fb3fc4a4b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExecutionWindowDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExecutionWindowDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalBackupJobDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalBackupJobDetails.java index 97481c80fbc..7d7ce164331 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalBackupJobDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalBackupJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalContainerDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalContainerDatabaseDetails.java index 4492fd9e932..76b942c6095 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalContainerDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalContainerDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalDatabaseConnectorDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalDatabaseConnectorDetails.java index 17ca2522d08..b572c21302f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalDatabaseConnectorDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalDatabaseConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalDatabaseDetailsBase.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalDatabaseDetailsBase.java index a59382b6462..ba6fe053573 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalDatabaseDetailsBase.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalDatabaseDetailsBase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalMacsConnectorDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalMacsConnectorDetails.java index 9e777851bf3..84dd6d9ca54 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalMacsConnectorDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalMacsConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalNonContainerDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalNonContainerDatabaseDetails.java index 08ae2912560..80d1e310492 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalNonContainerDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalNonContainerDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalPluggableDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalPluggableDatabaseDetails.java index 22f184a42c7..45aa3405a3a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalPluggableDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateExternalPluggableDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateKeyStoreDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateKeyStoreDetails.java index f665bd6a199..b4405cc66ba 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateKeyStoreDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateKeyStoreDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateMaintenanceRunDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateMaintenanceRunDetails.java index 323f05db387..4e0d14bdd67 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateMaintenanceRunDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateMaintenanceRunDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateNFSBackupDestinationDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateNFSBackupDestinationDetails.java index 5b64c47e15e..bc9c9445eb7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateNFSBackupDestinationDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateNFSBackupDestinationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateNewDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateNewDatabaseDetails.java index bcd9ef1b2bf..10a250ca260 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateNewDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateNewDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateOneoffPatchDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateOneoffPatchDetails.java index 2db506fbdd6..d710555e5dc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateOneoffPatchDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateOneoffPatchDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseCreationTypeDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseCreationTypeDetails.java index 3ce7ba9ea57..ae72465ea3a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseCreationTypeDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseCreationTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseDetails.java index eee594c83f0..38d1fa4c69e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseFromLocalCloneDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseFromLocalCloneDetails.java index 89064c0be18..ab530133da4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseFromLocalCloneDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseFromLocalCloneDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseFromRelocateDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseFromRelocateDetails.java index 3d77ab3ca99..98a440e0886 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseFromRelocateDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseFromRelocateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseFromRemoteCloneDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseFromRemoteCloneDetails.java index 7fcd13b8a0f..7e14aaddf6a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseFromRemoteCloneDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseFromRemoteCloneDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseRefreshableCloneDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseRefreshableCloneDetails.java index cb6a59e94a3..2605ff00cb8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseRefreshableCloneDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseRefreshableCloneDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseSnapshotDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseSnapshotDetails.java index 63cd75c7989..83e79b7d0e3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseSnapshotDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreatePluggableDatabaseSnapshotDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateRecoveryApplianceBackupDestinationDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateRecoveryApplianceBackupDestinationDetails.java index cfd5cf65168..2354710e96d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateRecoveryApplianceBackupDestinationDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateRecoveryApplianceBackupDestinationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateRefreshableAutonomousDatabaseCloneDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateRefreshableAutonomousDatabaseCloneDetails.java index 039a9c590f0..6ee5d979fef 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateRefreshableAutonomousDatabaseCloneDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateRefreshableAutonomousDatabaseCloneDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; @@ -447,6 +447,16 @@ public Builder autonomousMaintenanceScheduleType( return this; } + @com.fasterxml.jackson.annotation.JsonProperty("autonomousDatabaseMaintenanceWindow") + private AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow; + + public Builder autonomousDatabaseMaintenanceWindow( + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow) { + this.autonomousDatabaseMaintenanceWindow = autonomousDatabaseMaintenanceWindow; + this.__explicitlySet__.add("autonomousDatabaseMaintenanceWindow"); + return this; + } + @com.fasterxml.jackson.annotation.JsonProperty("scheduledOperations") private java.util.List scheduledOperations; @@ -710,6 +720,7 @@ public CreateRefreshableAutonomousDatabaseCloneDetails build() { this.resourcePoolLeaderId, this.resourcePoolSummary, this.autonomousMaintenanceScheduleType, + this.autonomousDatabaseMaintenanceWindow, this.scheduledOperations, this.isAutoScalingForStorageEnabled, this.databaseEdition, @@ -872,6 +883,10 @@ public Builder copy(CreateRefreshableAutonomousDatabaseCloneDetails model) { this.autonomousMaintenanceScheduleType( model.getAutonomousMaintenanceScheduleType()); } + if (model.wasPropertyExplicitlySet("autonomousDatabaseMaintenanceWindow")) { + this.autonomousDatabaseMaintenanceWindow( + model.getAutonomousDatabaseMaintenanceWindow()); + } if (model.wasPropertyExplicitlySet("scheduledOperations")) { this.scheduledOperations(model.getScheduledOperations()); } @@ -975,6 +990,7 @@ public CreateRefreshableAutonomousDatabaseCloneDetails( String resourcePoolLeaderId, ResourcePoolSummary resourcePoolSummary, AutonomousMaintenanceScheduleType autonomousMaintenanceScheduleType, + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow, java.util.List scheduledOperations, Boolean isAutoScalingForStorageEnabled, AutonomousDatabaseSummary.DatabaseEdition databaseEdition, @@ -1036,6 +1052,7 @@ public CreateRefreshableAutonomousDatabaseCloneDetails( resourcePoolLeaderId, resourcePoolSummary, autonomousMaintenanceScheduleType, + autonomousDatabaseMaintenanceWindow, scheduledOperations, isAutoScalingForStorageEnabled, databaseEdition, diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateScheduledActionDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateScheduledActionDetails.java index 5073250ffdf..48c85529a5f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateScheduledActionDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateScheduledActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateSchedulingPlanDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateSchedulingPlanDetails.java index 91f47af08a3..1b336995add 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateSchedulingPlanDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateSchedulingPlanDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateSchedulingPolicyDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateSchedulingPolicyDetails.java index f24f0b4fbc6..8bb0df959d9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateSchedulingPolicyDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateSchedulingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateSchedulingWindowDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateSchedulingWindowDetails.java index 4ec57bee7b9..7a77ba64e4d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateSchedulingWindowDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateSchedulingWindowDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateStandByDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateStandByDatabaseDetails.java index 4a9710f70bb..7cd07ef591a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateStandByDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateStandByDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateStandbyDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateStandbyDetails.java index 0941f1b0d33..2da0336183a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateStandbyDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateStandbyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateVmClusterDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateVmClusterDetails.java index c9da3278846..8c18c87b72c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateVmClusterDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CreateVmClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/CustomerContact.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/CustomerContact.java index c177b504e8d..24a19179d5a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/CustomerContact.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/CustomerContact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DataCollectionOptions.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DataCollectionOptions.java index 9c9e71e7838..723670913a8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DataCollectionOptions.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DataCollectionOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DataGuardAssociation.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DataGuardAssociation.java index c892f888962..b90ca2787ea 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DataGuardAssociation.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DataGuardAssociation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DataGuardAssociationSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DataGuardAssociationSummary.java index e62a9f0b686..36b8ba220d4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DataGuardAssociationSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DataGuardAssociationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DataGuardGroup.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DataGuardGroup.java index fcfd88c6265..06e053accb5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DataGuardGroup.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DataGuardGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DataGuardGroupMember.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DataGuardGroupMember.java index 0795cda3157..5f5ff5d60cd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DataGuardGroupMember.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DataGuardGroupMember.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/Database.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/Database.java index 6c8e378e8d8..2a956a3a5af 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/Database.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/Database.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionCredentials.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionCredentials.java index a9ba8732bea..3a09961e070 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionCredentials.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionCredentialsByDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionCredentialsByDetails.java index eb982741337..ae2bc3c7459 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionCredentialsByDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionCredentialsByDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionCredentialsByName.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionCredentialsByName.java index 1e52eeeb446..2f8a15f20fd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionCredentialsByName.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionCredentialsByName.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionString.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionString.java index 604557ace54..8b617955629 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionString.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionString.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionStringProfile.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionStringProfile.java index b98ebc5f7d0..47d084d04ae 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionStringProfile.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionStringProfile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionStrings.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionStrings.java index 7d44ed85f80..99a55a500c6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionStrings.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseConnectionStrings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseCredentialDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseCredentialDetails.java index b6713594274..af85b63fb8e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseCredentialDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseManagementConfig.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseManagementConfig.java index cd6c177f5b6..67d83fbd70e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseManagementConfig.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseManagementConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseSoftwareImage.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseSoftwareImage.java index 35945edc27f..a6ee527c588 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseSoftwareImage.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseSoftwareImage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseSoftwareImageSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseSoftwareImageSummary.java index 129f4c7ec31..1c8ac0b5600 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseSoftwareImageSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseSoftwareImageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseSslConnectionCredentials.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseSslConnectionCredentials.java index 74fbb8e3fde..0c1aa8bef07 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseSslConnectionCredentials.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseSslConnectionCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseStorageSizeDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseStorageSizeDetails.java index 81aaeabed11..17f182de8cb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseStorageSizeDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseStorageSizeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseStorageSizeResponseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseStorageSizeResponseDetails.java index fdf8687555e..028da7060e9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseStorageSizeResponseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseStorageSizeResponseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseSummary.java index 508d6198e32..cedb1f29d10 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseTool.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseTool.java index 2ce76462179..adaa8ab682d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseTool.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseTool.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeHistoryEntry.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeHistoryEntry.java index 526ff9e81d5..0999b219ec3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeHistoryEntry.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeHistoryEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeHistoryEntrySummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeHistoryEntrySummary.java index 67964a1bbe0..f80da7b3f0e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeHistoryEntrySummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeHistoryEntrySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeSourceBase.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeSourceBase.java index 2dc90130465..4a742432c51 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeSourceBase.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeSourceBase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeWithDatabaseSoftwareImageDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeWithDatabaseSoftwareImageDetails.java index 707cda76f1b..1c8154f6361 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeWithDatabaseSoftwareImageDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeWithDatabaseSoftwareImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeWithDbHomeDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeWithDbHomeDetails.java index 77e1c8c1669..55daf9208e3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeWithDbHomeDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeWithDbHomeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeWithDbVersionDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeWithDbVersionDetails.java index 171d3176694..b010b84749b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeWithDbVersionDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DatabaseUpgradeWithDbVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DayOfWeek.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DayOfWeek.java index 8e484841c5d..3380bf1433e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DayOfWeek.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DayOfWeek.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbBackupConfig.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbBackupConfig.java index 615a1549c1d..66c09a74745 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbBackupConfig.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbBackupConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbHome.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbHome.java index 8d8aded5d8b..19e2da09cc6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbHome.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbHome.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbHomeFromAgentResourceId.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbHomeFromAgentResourceId.java index 7fa6c4d5769..f81a7c6a08e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbHomeFromAgentResourceId.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbHomeFromAgentResourceId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbHomeSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbHomeSummary.java index 9f4e60988f8..e9df9cca35a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbHomeSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbHomeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbIormConfig.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbIormConfig.java index c2784a452b3..2dd448136a6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbIormConfig.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbIormConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbIormConfigUpdateDetail.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbIormConfigUpdateDetail.java index 4cb3c2f65a6..5c377d67cac 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbIormConfigUpdateDetail.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbIormConfigUpdateDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbNode.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbNode.java index 60ef56d2bc8..b1d4762efa1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbNode.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbNode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbNodeDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbNodeDetails.java index 9a515837cf8..d711c824241 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbNodeDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbNodeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbNodeSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbNodeSummary.java index 31b17e79bf1..868b32a8c3f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbNodeSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbNodeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbServer.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbServer.java index 76c7ee763bd..dd72ed1bffc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbServer.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbServer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbServerDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbServerDetails.java index 6bd48193f45..6abc44a77e7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbServerDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbServerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbServerHistorySummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbServerHistorySummary.java index 4c6655848a7..198fd71e4b6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbServerHistorySummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbServerHistorySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbServerPatchingDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbServerPatchingDetails.java index 4b65613226e..d52ad0260fd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbServerPatchingDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbServerPatchingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbServerSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbServerSummary.java index b4f90d3163a..5e13701b6d3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbServerSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbServerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystem.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystem.java index b88a4f0ee38..02734fe1365 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystem.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemComputePerformanceSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemComputePerformanceSummary.java index 8d25ce6441a..275e9afd11f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemComputePerformanceSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemComputePerformanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemOptions.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemOptions.java index ea453b51309..4b32e77215a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemOptions.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemShapeSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemShapeSummary.java index 28928832eb9..1c8f8b1f9a9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemShapeSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemShapeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemStoragePerformanceSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemStoragePerformanceSummary.java index 764366131c2..39273acc127 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemStoragePerformanceSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemStoragePerformanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemSummary.java index 58a0e470e36..f45ed6a6008 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemUpgradeHistoryEntry.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemUpgradeHistoryEntry.java index 8c0c3e4f7d0..f7070b5b14a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemUpgradeHistoryEntry.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemUpgradeHistoryEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemUpgradeHistoryEntrySummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemUpgradeHistoryEntrySummary.java index cc2e00290b6..d15a6cb927c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemUpgradeHistoryEntrySummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemUpgradeHistoryEntrySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemUpgradeSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemUpgradeSummary.java index 03c19e6dab3..274d21cbe0c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemUpgradeSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbSystemUpgradeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbVersionSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbVersionSummary.java index 814683de0c5..d72bf12932f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbVersionSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbnodeSnapshot.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbnodeSnapshot.java index 09add80d68f..1b05d10f655 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbnodeSnapshot.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbnodeSnapshot.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbnodeSnapshotSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbnodeSnapshotSummary.java index bc379f74034..9a490331001 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbnodeSnapshotSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbnodeSnapshotSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbnodeSnapshots.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbnodeSnapshots.java index 7bd58bd5b5a..bb21f98c3a0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DbnodeSnapshots.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DbnodeSnapshots.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DefinedFileSystemConfiguration.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DefinedFileSystemConfiguration.java index 1840fed5749..6e076309ad1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DefinedFileSystemConfiguration.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DefinedFileSystemConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DeregisterAutonomousDatabaseDataSafeDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DeregisterAutonomousDatabaseDataSafeDetails.java index d5a395a207e..b85a676dca7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DeregisterAutonomousDatabaseDataSafeDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DeregisterAutonomousDatabaseDataSafeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DisasterRecoveryConfiguration.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DisasterRecoveryConfiguration.java index e78dc723b3e..3dfbc85c19b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DisasterRecoveryConfiguration.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DisasterRecoveryConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DiskPerformanceDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DiskPerformanceDetails.java index a2f7f4c0103..cc343d29354 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DiskPerformanceDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DiskPerformanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DownloadOneoffPatch.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DownloadOneoffPatch.java index dfbc7ca8913..e98162d82c6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DownloadOneoffPatch.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DownloadOneoffPatch.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/DrScanDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/DrScanDetails.java index f9cf1fa157e..0640255b1c2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/DrScanDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/DrScanDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/EditAutonomousContainerDatabaseDataguardDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/EditAutonomousContainerDatabaseDataguardDetails.java index 268f95e38dd..3632ce3fb73 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/EditAutonomousContainerDatabaseDataguardDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/EditAutonomousContainerDatabaseDataguardDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableDatabaseManagementDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableDatabaseManagementDetails.java index f3489c28ba5..c92ccd4719d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableDatabaseManagementDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableDatabaseManagementDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalContainerDatabaseDatabaseManagementDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalContainerDatabaseDatabaseManagementDetails.java index 5ba0dfbd1df..e2c24290efe 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalContainerDatabaseDatabaseManagementDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalContainerDatabaseDatabaseManagementDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalContainerDatabaseStackMonitoringDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalContainerDatabaseStackMonitoringDetails.java index 8c0db086bd4..fc044f006b2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalContainerDatabaseStackMonitoringDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalContainerDatabaseStackMonitoringDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalDatabaseManagementDetailsBase.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalDatabaseManagementDetailsBase.java index 97acc95a114..d31645f88c5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalDatabaseManagementDetailsBase.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalDatabaseManagementDetailsBase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalDatabaseOperationsInsightsDetailsBase.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalDatabaseOperationsInsightsDetailsBase.java index b8cf287d8a2..cf210227061 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalDatabaseOperationsInsightsDetailsBase.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalDatabaseOperationsInsightsDetailsBase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalDatabaseStackMonitoringDetailsBase.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalDatabaseStackMonitoringDetailsBase.java index 06db35b45ae..d44aefe3efd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalDatabaseStackMonitoringDetailsBase.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalDatabaseStackMonitoringDetailsBase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalNonContainerDatabaseDatabaseManagementDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalNonContainerDatabaseDatabaseManagementDetails.java index 3cefa44cb8a..4d2c593917a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalNonContainerDatabaseDatabaseManagementDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalNonContainerDatabaseDatabaseManagementDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalNonContainerDatabaseOperationsInsightsDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalNonContainerDatabaseOperationsInsightsDetails.java index 6fa33c8c77b..2903815af26 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalNonContainerDatabaseOperationsInsightsDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalNonContainerDatabaseOperationsInsightsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalNonContainerDatabaseStackMonitoringDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalNonContainerDatabaseStackMonitoringDetails.java index 67a90a1154f..4f5eb645edb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalNonContainerDatabaseStackMonitoringDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalNonContainerDatabaseStackMonitoringDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalPluggableDatabaseDatabaseManagementDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalPluggableDatabaseDatabaseManagementDetails.java index 725304e2c2a..a45f14f384b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalPluggableDatabaseDatabaseManagementDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalPluggableDatabaseDatabaseManagementDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalPluggableDatabaseOperationsInsightsDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalPluggableDatabaseOperationsInsightsDetails.java index 795647ffa8e..1929aa9e5ea 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalPluggableDatabaseOperationsInsightsDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalPluggableDatabaseOperationsInsightsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalPluggableDatabaseStackMonitoringDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalPluggableDatabaseStackMonitoringDetails.java index 08980066982..07f8efcf0d4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalPluggableDatabaseStackMonitoringDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnableExternalPluggableDatabaseStackMonitoringDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnablePluggableDatabaseManagementDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnablePluggableDatabaseManagementDetails.java index 8abd57cff40..79d895eaec6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/EnablePluggableDatabaseManagementDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/EnablePluggableDatabaseManagementDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/EncryptionKeyLocationDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/EncryptionKeyLocationDetails.java index da2f0583501..c4607987e1b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/EncryptionKeyLocationDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/EncryptionKeyLocationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/EstimateCostSavingSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/EstimateCostSavingSummary.java index 3b0df5b7bfe..dc0d94e1098 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/EstimateCostSavingSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/EstimateCostSavingSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/EstimateCostSavingsSummaryCollection.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/EstimateCostSavingsSummaryCollection.java index 8000a469dc3..0321d6b6df4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/EstimateCostSavingsSummaryCollection.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/EstimateCostSavingsSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/EstimatedPatchingTime.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/EstimatedPatchingTime.java index b5bb68cf101..45b1d9db186 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/EstimatedPatchingTime.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/EstimatedPatchingTime.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataDbSystemMigration.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataDbSystemMigration.java index 2078a0489b3..ab9a955626a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataDbSystemMigration.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataDbSystemMigration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataDbSystemMigrationSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataDbSystemMigrationSummary.java index 099c656337c..9643d60980a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataDbSystemMigrationSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataDbSystemMigrationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataInfrastructure.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataInfrastructure.java index ece775151d9..811d0b48d3d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataInfrastructure.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataInfrastructure.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataInfrastructureContact.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataInfrastructureContact.java index 61c7a0ef6d1..98667a0940e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataInfrastructureContact.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataInfrastructureContact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataInfrastructureSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataInfrastructureSummary.java index a2c76bbcbba..30d9b52979f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataInfrastructureSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataInfrastructureSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataInfrastructureUnAllocatedResources.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataInfrastructureUnAllocatedResources.java index d8138189bf9..ef78d96a861 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataInfrastructureUnAllocatedResources.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataInfrastructureUnAllocatedResources.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataIormConfig.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataIormConfig.java index c1c6d09e22c..9507a6d3cce 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataIormConfig.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataIormConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataIormConfigUpdateDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataIormConfigUpdateDetails.java index 6eba4769efd..3b6af40e08a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataIormConfigUpdateDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadataIormConfigUpdateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmCluster.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmCluster.java index e4c9402b26b..16f0a6dda76 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmCluster.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmCluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterStorageDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterStorageDetails.java index 7befdc9ef65..3fb364188a6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterStorageDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterStorageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterSummary.java index c79ece99d1c..022b5d90689 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterUpdate.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterUpdate.java index be2623891e8..361ffa58b8d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterUpdate.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterUpdate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterUpdateHistoryEntry.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterUpdateHistoryEntry.java index bd6668bd291..391394af919 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterUpdateHistoryEntry.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterUpdateHistoryEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterUpdateHistoryEntrySummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterUpdateHistoryEntrySummary.java index 67041494997..68b98e3ae43 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterUpdateHistoryEntrySummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterUpdateHistoryEntrySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterUpdateSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterUpdateSummary.java index fe822956b42..ce8bb21bf69 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterUpdateSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExadbVmClusterUpdateSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExascaleConfigDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExascaleConfigDetails.java index 419345ff802..9d739e24e05 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExascaleConfigDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExascaleConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExascaleDbStorageDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExascaleDbStorageDetails.java index 1611a1f7e7c..67c48eb51aa 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExascaleDbStorageDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExascaleDbStorageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExascaleDbStorageInputDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExascaleDbStorageInputDetails.java index 90915abf628..ac81259b4a9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExascaleDbStorageInputDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExascaleDbStorageInputDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExascaleDbStorageVault.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExascaleDbStorageVault.java index 2b74f5f277a..e6e7c326c6a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExascaleDbStorageVault.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExascaleDbStorageVault.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExascaleDbStorageVaultSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExascaleDbStorageVaultSummary.java index a6acb7cabe7..6445a76cbfb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExascaleDbStorageVaultSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExascaleDbStorageVaultSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExecutionAction.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExecutionAction.java index c56747670c7..53a05345692 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExecutionAction.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExecutionAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExecutionActionMember.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExecutionActionMember.java index dde541ef7b0..c4cb32207a2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExecutionActionMember.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExecutionActionMember.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExecutionActionSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExecutionActionSummary.java index adc6b688e5a..2c4f3e28017 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExecutionActionSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExecutionActionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExecutionWindow.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExecutionWindow.java index 256e603cf58..77402f55056 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExecutionWindow.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExecutionWindow.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExecutionWindowSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExecutionWindowSummary.java index a0015240f2f..bc9a7297d43 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExecutionWindowSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExecutionWindowSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalBackupJob.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalBackupJob.java index 05a84aa86c0..f93d84e9b22 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalBackupJob.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalBackupJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalContainerDatabase.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalContainerDatabase.java index f81e88c62e5..a1699339e17 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalContainerDatabase.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalContainerDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalContainerDatabaseSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalContainerDatabaseSummary.java index 8ff992ef825..59e0e101fc6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalContainerDatabaseSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalContainerDatabaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalDatabaseBase.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalDatabaseBase.java index 660e9c2b8eb..6a1ed8044d2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalDatabaseBase.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalDatabaseBase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalDatabaseConnector.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalDatabaseConnector.java index 3e17067b8ed..638d402ed61 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalDatabaseConnector.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalDatabaseConnector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalDatabaseConnectorSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalDatabaseConnectorSummary.java index 78fcc1ebac8..711e23287d4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalDatabaseConnectorSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalDatabaseConnectorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalHsmEncryptionDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalHsmEncryptionDetails.java index a8b0409c17e..7d6f3cf58b5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalHsmEncryptionDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalHsmEncryptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalMacsConnector.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalMacsConnector.java index 98adfd739e1..6cab6ae773f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalMacsConnector.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalMacsConnector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalMacsConnectorSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalMacsConnectorSummary.java index 1eef69917c3..8999aa180c7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalMacsConnectorSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalMacsConnectorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalNonContainerDatabase.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalNonContainerDatabase.java index 668976bf9f2..ee1bcad1338 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalNonContainerDatabase.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalNonContainerDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalNonContainerDatabaseSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalNonContainerDatabaseSummary.java index 4834a7b2ce4..cd9279fc283 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalNonContainerDatabaseSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalNonContainerDatabaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalPluggableDatabase.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalPluggableDatabase.java index 316de963102..d2573b85d77 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalPluggableDatabase.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalPluggableDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalPluggableDatabaseSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalPluggableDatabaseSummary.java index 587cef9b574..5059f4d79f3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalPluggableDatabaseSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ExternalPluggableDatabaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/FailoverDataGuardAssociationDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/FailoverDataGuardAssociationDetails.java index 254494ee84f..0dabe86e2ba 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/FailoverDataGuardAssociationDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/FailoverDataGuardAssociationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/FailoverDataGuardDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/FailoverDataGuardDetails.java index f0fe1028d34..8d68e8d8e42 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/FailoverDataGuardDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/FailoverDataGuardDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/FileSystemConfigurationDetail.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/FileSystemConfigurationDetail.java index a94726c8226..e2ec33a5469 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/FileSystemConfigurationDetail.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/FileSystemConfigurationDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/FlexComponentCollection.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/FlexComponentCollection.java index 1605744e8ee..752717f48a2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/FlexComponentCollection.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/FlexComponentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/FlexComponentSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/FlexComponentSummary.java index af44a2dca60..612d9a3a7ca 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/FlexComponentSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/FlexComponentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/GcpKeyDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/GcpKeyDetails.java index a7252c83081..4680a1e1bab 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/GcpKeyDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/GcpKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/GenerateAutonomousDatabaseWalletDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/GenerateAutonomousDatabaseWalletDetails.java index 99f422eab26..9146281794d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/GenerateAutonomousDatabaseWalletDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/GenerateAutonomousDatabaseWalletDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/GenerateRecommendedNetworkDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/GenerateRecommendedNetworkDetails.java index 19e26a39124..299bbb6bfaa 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/GenerateRecommendedNetworkDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/GenerateRecommendedNetworkDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/GiMinorVersionSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/GiMinorVersionSummary.java index df3819c609c..0d5568f79ab 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/GiMinorVersionSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/GiMinorVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/GiVersionSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/GiVersionSummary.java index 0a5fd59764f..953aafecf4e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/GiVersionSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/GiVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/GoogleCloudProviderEncryptionKeyDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/GoogleCloudProviderEncryptionKeyDetails.java index 3dd71f82f54..6d517d04ec8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/GoogleCloudProviderEncryptionKeyDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/GoogleCloudProviderEncryptionKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/GranularMaintenanceHistoryDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/GranularMaintenanceHistoryDetails.java index c035cc67515..3c652961c5c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/GranularMaintenanceHistoryDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/GranularMaintenanceHistoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/IdentityConnectorDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/IdentityConnectorDetails.java index e608cef323b..fc7eca98a14 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/IdentityConnectorDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/IdentityConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/InfoForNetworkGenDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/InfoForNetworkGenDetails.java index bef5078c66c..afadaac0935 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/InfoForNetworkGenDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/InfoForNetworkGenDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/InfrastructureTargetVersion.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/InfrastructureTargetVersion.java index 3e3ce7be9ce..cc5d4104ad0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/InfrastructureTargetVersion.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/InfrastructureTargetVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/InfrastructureTargetVersionSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/InfrastructureTargetVersionSummary.java index fa40ad4c62e..8aeb5eab4a8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/InfrastructureTargetVersionSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/InfrastructureTargetVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/KeyStore.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/KeyStore.java index 301fd7ccd3d..80943633806 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/KeyStore.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/KeyStore.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/KeyStoreAssociatedDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/KeyStoreAssociatedDatabaseDetails.java index d09a3346ae8..492b526179e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/KeyStoreAssociatedDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/KeyStoreAssociatedDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/KeyStoreSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/KeyStoreSummary.java index f55bb03293d..6daba372b49 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/KeyStoreSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/KeyStoreSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/KeyStoreTypeDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/KeyStoreTypeDetails.java index c5acafbc06b..6521768846f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/KeyStoreTypeDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/KeyStoreTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/KeyStoreTypeFromOracleKeyVaultDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/KeyStoreTypeFromOracleKeyVaultDetails.java index c5bff59d607..0c55a271c42 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/KeyStoreTypeFromOracleKeyVaultDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/KeyStoreTypeFromOracleKeyVaultDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchAutonomousExadataInfrastructureDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchAutonomousExadataInfrastructureDetails.java index fc7ca60382f..a281dc112a3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchAutonomousExadataInfrastructureDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchAutonomousExadataInfrastructureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchDbSystemBase.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchDbSystemBase.java index 3650630495e..cd8a93efe2d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchDbSystemBase.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchDbSystemBase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchDbSystemDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchDbSystemDetails.java index 2e60c68fd74..739c54c5c6f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchDbSystemDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchDbSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchDbSystemFromBackupDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchDbSystemFromBackupDetails.java index 751be65e76f..1d52057e8f5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchDbSystemFromBackupDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchDbSystemFromBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchDbSystemFromDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchDbSystemFromDatabaseDetails.java index bf092dfb120..791b8b3699a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchDbSystemFromDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchDbSystemFromDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchDbSystemFromDbSystemDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchDbSystemFromDbSystemDetails.java index 4167fbc9af3..420758e0ba4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchDbSystemFromDbSystemDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/LaunchDbSystemFromDbSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/LocalClonePluggableDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/LocalClonePluggableDatabaseDetails.java index 9cbf63e4f10..e8967d62ebc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/LocalClonePluggableDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/LocalClonePluggableDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/LongTermBackUpScheduleDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/LongTermBackUpScheduleDetails.java index a73aed3a844..96dce1374f0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/LongTermBackUpScheduleDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/LongTermBackUpScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/MaintenanceRun.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/MaintenanceRun.java index 93f3908e279..d3e2ac17288 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/MaintenanceRun.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/MaintenanceRun.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/MaintenanceRunHistory.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/MaintenanceRunHistory.java index 3ce3a7770ca..0478035118f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/MaintenanceRunHistory.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/MaintenanceRunHistory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/MaintenanceRunHistorySummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/MaintenanceRunHistorySummary.java index ef7409699b2..edde38e4788 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/MaintenanceRunHistorySummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/MaintenanceRunHistorySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/MaintenanceRunSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/MaintenanceRunSummary.java index 53c4dd6ff9f..228a673333e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/MaintenanceRunSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/MaintenanceRunSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/MaintenanceWindow.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/MaintenanceWindow.java index 96ac59b22f1..02f7db77271 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/MaintenanceWindow.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/MaintenanceWindow.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/MigrateVaultKeyDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/MigrateVaultKeyDetails.java index 304a093e296..b7c140b45d3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/MigrateVaultKeyDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/MigrateVaultKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ModifyDatabaseManagementDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ModifyDatabaseManagementDetails.java index 67837a16bff..b5f0360ca1f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ModifyDatabaseManagementDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ModifyDatabaseManagementDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ModifyPluggableDatabaseManagementDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ModifyPluggableDatabaseManagementDetails.java index 0cbadc55e0b..b76f1c15de7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ModifyPluggableDatabaseManagementDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ModifyPluggableDatabaseManagementDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/Month.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/Month.java index a3644c91ff4..9f56a1d69db 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/Month.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/Month.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/MountDbnodeSnapshotDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/MountDbnodeSnapshotDetails.java index 6c3179ee10a..e5319b4c667 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/MountDbnodeSnapshotDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/MountDbnodeSnapshotDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/MountPointDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/MountPointDetails.java index 9e6c6d66701..bc80670ffc3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/MountPointDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/MountPointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/MountTypeDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/MountTypeDetails.java index 2ce10365ea6..a644eed0064 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/MountTypeDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/MountTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/MoveExecutionActionMemberDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/MoveExecutionActionMemberDetails.java index 159926a21f5..e8be4141774 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/MoveExecutionActionMemberDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/MoveExecutionActionMemberDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/NetworkBondingModeDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/NetworkBondingModeDetails.java index 1a7f44ffa2c..41cb920a0bd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/NetworkBondingModeDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/NetworkBondingModeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/NodeDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/NodeDetails.java index 8d0806b6645..9e66ccbcb90 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/NodeDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/NodeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/OCPUs.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/OCPUs.java index 2efd17d29c7..4ba9eb01216 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/OCPUs.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/OCPUs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/OciKeyDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/OciKeyDetails.java index 4aec5a7aca6..69612c1c54c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/OciKeyDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/OciKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/OciProviderSetKeyVersionDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/OciProviderSetKeyVersionDetails.java index 47f5522ae1c..3e1089518d3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/OciProviderSetKeyVersionDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/OciProviderSetKeyVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/OkvKeyDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/OkvKeyDetails.java index 1c2c0dc2f1d..e8744ebe6f4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/OkvKeyDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/OkvKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/OneoffPatch.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/OneoffPatch.java index c974c7e6f5e..d08072db6a2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/OneoffPatch.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/OneoffPatch.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/OneoffPatchSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/OneoffPatchSummary.java index 8f49f55adbf..d7e11447880 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/OneoffPatchSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/OneoffPatchSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/OperationsInsightsConfig.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/OperationsInsightsConfig.java index f0524ca9c35..ef0bb4b6521 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/OperationsInsightsConfig.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/OperationsInsightsConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/OracleManagedKeyDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/OracleManagedKeyDetails.java index 51121e16253..9edb0718db9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/OracleManagedKeyDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/OracleManagedKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/Patch.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/Patch.java index b54ce7e406e..2c1b40b64c7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/Patch.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/Patch.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/PatchDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/PatchDetails.java index 5567b004b38..0261db40a41 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/PatchDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/PatchDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/PatchHistoryEntry.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/PatchHistoryEntry.java index cdbb916bc42..e589bfae4a0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/PatchHistoryEntry.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/PatchHistoryEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/PatchHistoryEntrySummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/PatchHistoryEntrySummary.java index 41cce49d38c..4ce39da1957 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/PatchHistoryEntrySummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/PatchHistoryEntrySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/PatchSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/PatchSummary.java index 84fdc968265..2ac7ccad300 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/PatchSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/PatchSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/PdbConversionHistoryEntry.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/PdbConversionHistoryEntry.java index 41ef4c3192c..f219f978b66 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/PdbConversionHistoryEntry.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/PdbConversionHistoryEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/PdbConversionHistoryEntrySummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/PdbConversionHistoryEntrySummary.java index 7ed8562d251..12331b385aa 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/PdbConversionHistoryEntrySummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/PdbConversionHistoryEntrySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/PdbConversionToNewDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/PdbConversionToNewDatabaseDetails.java index 642c76d8637..f8c38a5e922 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/PdbConversionToNewDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/PdbConversionToNewDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/PeerAutonomousContainerDatabaseBackupConfig.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/PeerAutonomousContainerDatabaseBackupConfig.java index c4b9ee41147..d9c14b409a5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/PeerAutonomousContainerDatabaseBackupConfig.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/PeerAutonomousContainerDatabaseBackupConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabase.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabase.java index c14558873a0..0792f58f81c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabase.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseConnectionStrings.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseConnectionStrings.java index ac18a46ef2e..1a350b65744 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseConnectionStrings.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseConnectionStrings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseManagementConfig.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseManagementConfig.java index 154e8f2f295..1384412e67c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseManagementConfig.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseManagementConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseNodeLevelDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseNodeLevelDetails.java index 0f35d0fca04..1bc3ff8168e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseNodeLevelDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseNodeLevelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseRefreshableCloneConfig.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseRefreshableCloneConfig.java index 281cbc4d439..4f407f59da6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseRefreshableCloneConfig.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseRefreshableCloneConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseSnapshot.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseSnapshot.java index a7b7b0f909e..c64e620a585 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseSnapshot.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseSnapshot.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseSnapshotSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseSnapshotSummary.java index b84e63056b6..9400cd0d1c5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseSnapshotSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseSnapshotSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseSummary.java index 9bfcace5edd..4849c1d5b86 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/PluggableDatabaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/RecommendedScheduledActionSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/RecommendedScheduledActionSummary.java index 52f3c741748..8f8ae54ffaf 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/RecommendedScheduledActionSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/RecommendedScheduledActionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/RecommendedScheduledActionsCollection.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/RecommendedScheduledActionsCollection.java index 337f511b7f3..8621f4e2756 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/RecommendedScheduledActionsCollection.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/RecommendedScheduledActionsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/RecoveryApplianceDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/RecoveryApplianceDetails.java index dbb1e42b8fc..61de4b96225 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/RecoveryApplianceDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/RecoveryApplianceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/RefreshableCloneCollection.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/RefreshableCloneCollection.java index a87241aa7a6..6f734c82e03 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/RefreshableCloneCollection.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/RefreshableCloneCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/RefreshableCloneSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/RefreshableCloneSummary.java index e07cea335d0..b680842e4d7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/RefreshableCloneSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/RefreshableCloneSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/RegisterAutonomousDatabaseDataSafeDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/RegisterAutonomousDatabaseDataSafeDetails.java index 64673725575..9e7982d04f6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/RegisterAutonomousDatabaseDataSafeDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/RegisterAutonomousDatabaseDataSafeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/RegisterCloudVmClusterPkcsDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/RegisterCloudVmClusterPkcsDetails.java index 0f595897e6c..72aa34a36a2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/RegisterCloudVmClusterPkcsDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/RegisterCloudVmClusterPkcsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ReinstateDataGuardAssociationDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ReinstateDataGuardAssociationDetails.java index ece8f16bd1e..6e40af5204d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ReinstateDataGuardAssociationDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ReinstateDataGuardAssociationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ReinstateDataGuardDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ReinstateDataGuardDetails.java index d722e611469..ca07a9fff8e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ReinstateDataGuardDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ReinstateDataGuardDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/RemoteClonePluggableDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/RemoteClonePluggableDatabaseDetails.java index b7dfb5a9af1..151b3953524 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/RemoteClonePluggableDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/RemoteClonePluggableDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/RemoveVirtualMachineFromCloudVmClusterDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/RemoveVirtualMachineFromCloudVmClusterDetails.java index 782cc91d26a..4c2a3cad824 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/RemoveVirtualMachineFromCloudVmClusterDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/RemoveVirtualMachineFromCloudVmClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/RemoveVirtualMachineFromExadbVmClusterDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/RemoveVirtualMachineFromExadbVmClusterDetails.java index 701432d373e..6e1000a76d5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/RemoveVirtualMachineFromExadbVmClusterDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/RemoveVirtualMachineFromExadbVmClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/RemoveVirtualMachineFromVmClusterDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/RemoveVirtualMachineFromVmClusterDetails.java index eac33af6954..23f013f25bf 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/RemoveVirtualMachineFromVmClusterDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/RemoveVirtualMachineFromVmClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ReorderExecutionActionDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ReorderExecutionActionDetails.java index 32366350814..06f7003f955 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ReorderExecutionActionDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ReorderExecutionActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ReorderScheduledActionsDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ReorderScheduledActionsDetails.java index be078ac8ff4..31b3f757ef2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ReorderScheduledActionsDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ReorderScheduledActionsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ResizeVmClusterNetworkDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ResizeVmClusterNetworkDetails.java index 22b69cf1060..7291d676a1c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ResizeVmClusterNetworkDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ResizeVmClusterNetworkDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ResourcePoolMemberCollection.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ResourcePoolMemberCollection.java index d371f14666c..f8a49fccb5a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ResourcePoolMemberCollection.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ResourcePoolMemberCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ResourcePoolMemberSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ResourcePoolMemberSummary.java index c3f1028de7a..8d6133deabb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ResourcePoolMemberSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ResourcePoolMemberSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ResourcePoolShapeCollection.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ResourcePoolShapeCollection.java index b4ec0ad9b1d..835bdd1cbf1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ResourcePoolShapeCollection.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ResourcePoolShapeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ResourcePoolShapeSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ResourcePoolShapeSummary.java index c241f73c9c5..f36e03a7eb8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ResourcePoolShapeSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ResourcePoolShapeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ResourcePoolSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ResourcePoolSummary.java index 5a929703885..3157a288608 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ResourcePoolSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ResourcePoolSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; @@ -25,17 +25,23 @@ public final class ResourcePoolSummary @Deprecated @java.beans.ConstructorProperties({ "poolSize", + "poolStorageSizeInTBs", + "availableStorageCapacityInTBs", "totalComputeCapacity", "availableComputeCapacity", "isDisabled" }) public ResourcePoolSummary( Integer poolSize, + Integer poolStorageSizeInTBs, + Double availableStorageCapacityInTBs, Integer totalComputeCapacity, Integer availableComputeCapacity, Boolean isDisabled) { super(); this.poolSize = poolSize; + this.poolStorageSizeInTBs = poolStorageSizeInTBs; + this.availableStorageCapacityInTBs = availableStorageCapacityInTBs; this.totalComputeCapacity = totalComputeCapacity; this.availableComputeCapacity = availableComputeCapacity; this.isDisabled = isDisabled; @@ -58,6 +64,40 @@ public Builder poolSize(Integer poolSize) { this.__explicitlySet__.add("poolSize"); return this; } + /** Resource pool storage size in TBs. */ + @com.fasterxml.jackson.annotation.JsonProperty("poolStorageSizeInTBs") + private Integer poolStorageSizeInTBs; + + /** + * Resource pool storage size in TBs. + * + * @param poolStorageSizeInTBs the value to set + * @return this builder + */ + public Builder poolStorageSizeInTBs(Integer poolStorageSizeInTBs) { + this.poolStorageSizeInTBs = poolStorageSizeInTBs; + this.__explicitlySet__.add("poolStorageSizeInTBs"); + return this; + } + /** + * Available storage capacity (in TB) that can be used for adding new members or scaling + * existing members in a dedicated elastic pool. + */ + @com.fasterxml.jackson.annotation.JsonProperty("availableStorageCapacityInTBs") + private Double availableStorageCapacityInTBs; + + /** + * Available storage capacity (in TB) that can be used for adding new members or scaling + * existing members in a dedicated elastic pool. + * + * @param availableStorageCapacityInTBs the value to set + * @return this builder + */ + public Builder availableStorageCapacityInTBs(Double availableStorageCapacityInTBs) { + this.availableStorageCapacityInTBs = availableStorageCapacityInTBs; + this.__explicitlySet__.add("availableStorageCapacityInTBs"); + return this; + } /** Resource Pool total capacity, it's currently 4x of pool size */ @com.fasterxml.jackson.annotation.JsonProperty("totalComputeCapacity") private Integer totalComputeCapacity; @@ -111,6 +151,8 @@ public ResourcePoolSummary build() { ResourcePoolSummary model = new ResourcePoolSummary( this.poolSize, + this.poolStorageSizeInTBs, + this.availableStorageCapacityInTBs, this.totalComputeCapacity, this.availableComputeCapacity, this.isDisabled); @@ -125,6 +167,12 @@ public Builder copy(ResourcePoolSummary model) { if (model.wasPropertyExplicitlySet("poolSize")) { this.poolSize(model.getPoolSize()); } + if (model.wasPropertyExplicitlySet("poolStorageSizeInTBs")) { + this.poolStorageSizeInTBs(model.getPoolStorageSizeInTBs()); + } + if (model.wasPropertyExplicitlySet("availableStorageCapacityInTBs")) { + this.availableStorageCapacityInTBs(model.getAvailableStorageCapacityInTBs()); + } if (model.wasPropertyExplicitlySet("totalComputeCapacity")) { this.totalComputeCapacity(model.getTotalComputeCapacity()); } @@ -160,6 +208,36 @@ public Integer getPoolSize() { return poolSize; } + /** Resource pool storage size in TBs. */ + @com.fasterxml.jackson.annotation.JsonProperty("poolStorageSizeInTBs") + private final Integer poolStorageSizeInTBs; + + /** + * Resource pool storage size in TBs. + * + * @return the value + */ + public Integer getPoolStorageSizeInTBs() { + return poolStorageSizeInTBs; + } + + /** + * Available storage capacity (in TB) that can be used for adding new members or scaling + * existing members in a dedicated elastic pool. + */ + @com.fasterxml.jackson.annotation.JsonProperty("availableStorageCapacityInTBs") + private final Double availableStorageCapacityInTBs; + + /** + * Available storage capacity (in TB) that can be used for adding new members or scaling + * existing members in a dedicated elastic pool. + * + * @return the value + */ + public Double getAvailableStorageCapacityInTBs() { + return availableStorageCapacityInTBs; + } + /** Resource Pool total capacity, it's currently 4x of pool size */ @com.fasterxml.jackson.annotation.JsonProperty("totalComputeCapacity") private final Integer totalComputeCapacity; @@ -215,6 +293,9 @@ public String toString(boolean includeByteArrayContents) { sb.append("ResourcePoolSummary("); sb.append("super=").append(super.toString()); sb.append("poolSize=").append(String.valueOf(this.poolSize)); + sb.append(", poolStorageSizeInTBs=").append(String.valueOf(this.poolStorageSizeInTBs)); + sb.append(", availableStorageCapacityInTBs=") + .append(String.valueOf(this.availableStorageCapacityInTBs)); sb.append(", totalComputeCapacity=").append(String.valueOf(this.totalComputeCapacity)); sb.append(", availableComputeCapacity=") .append(String.valueOf(this.availableComputeCapacity)); @@ -234,6 +315,9 @@ public boolean equals(Object o) { ResourcePoolSummary other = (ResourcePoolSummary) o; return java.util.Objects.equals(this.poolSize, other.poolSize) + && java.util.Objects.equals(this.poolStorageSizeInTBs, other.poolStorageSizeInTBs) + && java.util.Objects.equals( + this.availableStorageCapacityInTBs, other.availableStorageCapacityInTBs) && java.util.Objects.equals(this.totalComputeCapacity, other.totalComputeCapacity) && java.util.Objects.equals( this.availableComputeCapacity, other.availableComputeCapacity) @@ -246,6 +330,16 @@ public int hashCode() { final int PRIME = 59; int result = 1; result = (result * PRIME) + (this.poolSize == null ? 43 : this.poolSize.hashCode()); + result = + (result * PRIME) + + (this.poolStorageSizeInTBs == null + ? 43 + : this.poolStorageSizeInTBs.hashCode()); + result = + (result * PRIME) + + (this.availableStorageCapacityInTBs == null + ? 43 + : this.availableStorageCapacityInTBs.hashCode()); result = (result * PRIME) + (this.totalComputeCapacity == null diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/RestoreAutonomousDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/RestoreAutonomousDatabaseDetails.java index 35756c8b85b..1554f5d28f5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/RestoreAutonomousDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/RestoreAutonomousDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/RestoreDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/RestoreDatabaseDetails.java index 467d4f48d5e..83eb035a494 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/RestoreDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/RestoreDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateAutonomousContainerDatabaseEncryptionKeyDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateAutonomousContainerDatabaseEncryptionKeyDetails.java index 3e86e0734bc..e5740315057 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateAutonomousContainerDatabaseEncryptionKeyDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateAutonomousContainerDatabaseEncryptionKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateAutonomousDatabaseEncryptionKeyDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateAutonomousDatabaseEncryptionKeyDetails.java index a212f0d8576..7c4f3f8bc7a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateAutonomousDatabaseEncryptionKeyDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateAutonomousDatabaseEncryptionKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateAutonomousVmClusterOrdsCertsDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateAutonomousVmClusterOrdsCertsDetails.java index 4324d266da0..c1314bafef2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateAutonomousVmClusterOrdsCertsDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateAutonomousVmClusterOrdsCertsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateAutonomousVmClusterSslCertsDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateAutonomousVmClusterSslCertsDetails.java index a6265fd4328..c3713a7def9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateAutonomousVmClusterSslCertsDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateAutonomousVmClusterSslCertsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateCloudAutonomousVmClusterOrdsCertsDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateCloudAutonomousVmClusterOrdsCertsDetails.java index 61dd79ec763..f40eebe745d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateCloudAutonomousVmClusterOrdsCertsDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateCloudAutonomousVmClusterOrdsCertsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateCloudAutonomousVmClusterSslCertsDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateCloudAutonomousVmClusterSslCertsDetails.java index d4b778b4527..91e400a0091 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateCloudAutonomousVmClusterSslCertsDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/RotateCloudAutonomousVmClusterSslCertsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/SaasAdminUserConfiguration.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/SaasAdminUserConfiguration.java index e076ef49c14..9269e29a286 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/SaasAdminUserConfiguration.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/SaasAdminUserConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/SaasAdminUserStatus.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/SaasAdminUserStatus.java index 1666464e039..27071db0b62 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/SaasAdminUserStatus.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/SaasAdminUserStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ScanDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ScanDetails.java index 221645f60f6..3b3bb68aa9e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ScanDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ScanDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ScheduledAction.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ScheduledAction.java index 957d9be9757..193c3965b86 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ScheduledAction.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ScheduledAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ScheduledActionCollection.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ScheduledActionCollection.java index 3e76bc21fb8..fd02fa397cf 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ScheduledActionCollection.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ScheduledActionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ScheduledActionSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ScheduledActionSummary.java index 242831cc552..d5aa12d2e31 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ScheduledActionSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ScheduledActionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/ScheduledOperationDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/ScheduledOperationDetails.java index 185d1af2678..ab87caf2510 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/ScheduledOperationDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/ScheduledOperationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingPlan.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingPlan.java index 43f742fb8ca..52bc3acd146 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingPlan.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingPlan.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingPlanCollection.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingPlanCollection.java index a5bbdae5cd7..fab03bdda28 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingPlanCollection.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingPlanCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingPlanSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingPlanSummary.java index 500b3db2443..55112a4cb41 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingPlanSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingPlanSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingPolicy.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingPolicy.java index 6b4f4e8f7cb..0ebdc07894b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingPolicy.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingPolicySummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingPolicySummary.java index c42982fcda2..75d5d1372e2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingPolicySummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingPolicySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingWindow.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingWindow.java index ec20b79c721..5cf4358b22d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingWindow.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingWindow.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingWindowSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingWindowSummary.java index c0d63d9afd5..62de6c6ab5d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingWindowSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/SchedulingWindowSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/SelfMountDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/SelfMountDetails.java index 8a57aa875c4..cc0fe8c13c9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/SelfMountDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/SelfMountDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/SetKeyVersionDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/SetKeyVersionDetails.java index a66f9835618..ef0ac07cfb5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/SetKeyVersionDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/SetKeyVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/SourceDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/SourceDatabaseDetails.java index 31f8b29ae96..1f71f6a16f8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/SourceDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/SourceDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/StackMonitoringConfig.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/StackMonitoringConfig.java index 384ec0bc1e3..0beaa64643b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/StackMonitoringConfig.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/StackMonitoringConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/StoragePerformanceDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/StoragePerformanceDetails.java index 26f774d6476..b636cdeba81 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/StoragePerformanceDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/StoragePerformanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/SwitchOverDataGuardDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/SwitchOverDataGuardDetails.java index c1b07316fed..d5f84429192 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/SwitchOverDataGuardDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/SwitchOverDataGuardDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/SwitchoverDataGuardAssociationDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/SwitchoverDataGuardAssociationDetails.java index 4641d2a90c5..7a43529131e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/SwitchoverDataGuardAssociationDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/SwitchoverDataGuardAssociationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/SystemVersionCollection.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/SystemVersionCollection.java index 22022b41aa2..ed5804cacfc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/SystemVersionCollection.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/SystemVersionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/SystemVersionMinorVersionCollection.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/SystemVersionMinorVersionCollection.java index cdf848e62d8..d7ce6fc6753 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/SystemVersionMinorVersionCollection.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/SystemVersionMinorVersionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/SystemVersionMinorVersionSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/SystemVersionMinorVersionSummary.java index eadc1ba1c0a..d41fd5c63c3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/SystemVersionMinorVersionSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/SystemVersionMinorVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/SystemVersionSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/SystemVersionSummary.java index c7f9508eac2..068b10a02d2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/SystemVersionSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/SystemVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UndeleteAutonomousDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UndeleteAutonomousDatabaseDetails.java index e881887efb5..2b7b7a04ea4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UndeleteAutonomousDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UndeleteAutonomousDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; @@ -446,6 +446,16 @@ public Builder autonomousMaintenanceScheduleType( return this; } + @com.fasterxml.jackson.annotation.JsonProperty("autonomousDatabaseMaintenanceWindow") + private AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow; + + public Builder autonomousDatabaseMaintenanceWindow( + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow) { + this.autonomousDatabaseMaintenanceWindow = autonomousDatabaseMaintenanceWindow; + this.__explicitlySet__.add("autonomousDatabaseMaintenanceWindow"); + return this; + } + @com.fasterxml.jackson.annotation.JsonProperty("scheduledOperations") private java.util.List scheduledOperations; @@ -581,6 +591,7 @@ public UndeleteAutonomousDatabaseDetails build() { this.resourcePoolLeaderId, this.resourcePoolSummary, this.autonomousMaintenanceScheduleType, + this.autonomousDatabaseMaintenanceWindow, this.scheduledOperations, this.isAutoScalingForStorageEnabled, this.databaseEdition, @@ -737,6 +748,10 @@ public Builder copy(UndeleteAutonomousDatabaseDetails model) { this.autonomousMaintenanceScheduleType( model.getAutonomousMaintenanceScheduleType()); } + if (model.wasPropertyExplicitlySet("autonomousDatabaseMaintenanceWindow")) { + this.autonomousDatabaseMaintenanceWindow( + model.getAutonomousDatabaseMaintenanceWindow()); + } if (model.wasPropertyExplicitlySet("scheduledOperations")) { this.scheduledOperations(model.getScheduledOperations()); } @@ -822,6 +837,7 @@ public UndeleteAutonomousDatabaseDetails( String resourcePoolLeaderId, ResourcePoolSummary resourcePoolSummary, AutonomousMaintenanceScheduleType autonomousMaintenanceScheduleType, + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow, java.util.List scheduledOperations, Boolean isAutoScalingForStorageEnabled, AutonomousDatabaseSummary.DatabaseEdition databaseEdition, @@ -877,6 +893,7 @@ public UndeleteAutonomousDatabaseDetails( resourcePoolLeaderId, resourcePoolSummary, autonomousMaintenanceScheduleType, + autonomousDatabaseMaintenanceWindow, scheduledOperations, isAutoScalingForStorageEnabled, databaseEdition, diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UnmountDbnodeSnapshotDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UnmountDbnodeSnapshotDetails.java index 642f1c1b37f..c41536d79a0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UnmountDbnodeSnapshotDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UnmountDbnodeSnapshotDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UnregisterCloudVmClusterPkcsDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UnregisterCloudVmClusterPkcsDetails.java index 4c7e2fa1941..b5c2c2aa42d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UnregisterCloudVmClusterPkcsDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UnregisterCloudVmClusterPkcsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/Update.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/Update.java index 7c52031d976..0082752ff8e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/Update.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/Update.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousContainerDatabaseDataGuardAssociationDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousContainerDatabaseDataGuardAssociationDetails.java index 6e58c2670e8..43bc38b9e78 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousContainerDatabaseDataGuardAssociationDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousContainerDatabaseDataGuardAssociationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousContainerDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousContainerDatabaseDetails.java index 9d0ed67d233..93615ba0ba4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousContainerDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousContainerDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousDatabaseBackupDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousDatabaseBackupDetails.java index 8c4de359cc8..53b3f7b65d4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousDatabaseBackupDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousDatabaseBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousDatabaseDetails.java index 7e8cf51e90c..f566a6f111e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; @@ -78,6 +78,8 @@ public final class UpdateAutonomousDatabaseDetails "resourcePoolLeaderId", "resourcePoolSummary", "autonomousMaintenanceScheduleType", + "autonomousDatabaseMaintenanceWindow", + "timeMaintenancePauseUntil", "isBackupRetentionLocked", "timeScheduledDbVersionUpgrade", "isDisableDbVersionUpgradeSchedule", @@ -90,7 +92,8 @@ public final class UpdateAutonomousDatabaseDetails "secretId", "secretVersionNumber", "encryptionKey", - "isDisconnectPeer" + "isDisconnectPeer", + "localAdgResourcePoolLeaderId" }) public UpdateAutonomousDatabaseDetails( Integer backupRetentionPeriodInDays, @@ -139,6 +142,8 @@ public UpdateAutonomousDatabaseDetails( String resourcePoolLeaderId, ResourcePoolSummary resourcePoolSummary, AutonomousMaintenanceScheduleType autonomousMaintenanceScheduleType, + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow, + java.util.Date timeMaintenancePauseUntil, Boolean isBackupRetentionLocked, java.util.Date timeScheduledDbVersionUpgrade, Boolean isDisableDbVersionUpgradeSchedule, @@ -151,7 +156,8 @@ public UpdateAutonomousDatabaseDetails( String secretId, Integer secretVersionNumber, AutonomousDatabaseEncryptionKeyDetails encryptionKey, - Boolean isDisconnectPeer) { + Boolean isDisconnectPeer, + String localAdgResourcePoolLeaderId) { super(); this.backupRetentionPeriodInDays = backupRetentionPeriodInDays; this.computeModel = computeModel; @@ -199,6 +205,8 @@ public UpdateAutonomousDatabaseDetails( this.resourcePoolLeaderId = resourcePoolLeaderId; this.resourcePoolSummary = resourcePoolSummary; this.autonomousMaintenanceScheduleType = autonomousMaintenanceScheduleType; + this.autonomousDatabaseMaintenanceWindow = autonomousDatabaseMaintenanceWindow; + this.timeMaintenancePauseUntil = timeMaintenancePauseUntil; this.isBackupRetentionLocked = isBackupRetentionLocked; this.timeScheduledDbVersionUpgrade = timeScheduledDbVersionUpgrade; this.isDisableDbVersionUpgradeSchedule = isDisableDbVersionUpgradeSchedule; @@ -212,6 +220,7 @@ public UpdateAutonomousDatabaseDetails( this.secretVersionNumber = secretVersionNumber; this.encryptionKey = encryptionKey; this.isDisconnectPeer = isDisconnectPeer; + this.localAdgResourcePoolLeaderId = localAdgResourcePoolLeaderId; } @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") @@ -1623,6 +1632,31 @@ public Builder autonomousMaintenanceScheduleType( this.__explicitlySet__.add("autonomousMaintenanceScheduleType"); return this; } + + @com.fasterxml.jackson.annotation.JsonProperty("autonomousDatabaseMaintenanceWindow") + private AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow; + + public Builder autonomousDatabaseMaintenanceWindow( + AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow) { + this.autonomousDatabaseMaintenanceWindow = autonomousDatabaseMaintenanceWindow; + this.__explicitlySet__.add("autonomousDatabaseMaintenanceWindow"); + return this; + } + /** The date until which maintenance of Autonomous AI Database is temporarily paused. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeMaintenancePauseUntil") + private java.util.Date timeMaintenancePauseUntil; + + /** + * The date until which maintenance of Autonomous AI Database is temporarily paused. + * + * @param timeMaintenancePauseUntil the value to set + * @return this builder + */ + public Builder timeMaintenancePauseUntil(java.util.Date timeMaintenancePauseUntil) { + this.timeMaintenancePauseUntil = timeMaintenancePauseUntil; + this.__explicitlySet__.add("timeMaintenancePauseUntil"); + return this; + } /** True if the Autonomous AI Database is backup retention locked. */ @com.fasterxml.jackson.annotation.JsonProperty("isBackupRetentionLocked") private Boolean isBackupRetentionLocked; @@ -1875,6 +1909,35 @@ public Builder isDisconnectPeer(Boolean isDisconnectPeer) { this.__explicitlySet__.add("isDisconnectPeer"); return this; } + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a + * dedicated resource pool leader Autonomous AI Database in the same region, that is + * required when local Autonomous Data Guard is enabled for a dedicated resource pool member + * using the parameter {@code isLocalDataGuardEnabled}. This field applies only to dedicated + * resource pool members, and the specified leader must be different from the primary\u2019s + * leader. Local Autonomous Data Guard can be enabled only if more than one dedicated + * resource pool exists in the region. + */ + @com.fasterxml.jackson.annotation.JsonProperty("localAdgResourcePoolLeaderId") + private String localAdgResourcePoolLeaderId; + + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a + * dedicated resource pool leader Autonomous AI Database in the same region, that is + * required when local Autonomous Data Guard is enabled for a dedicated resource pool member + * using the parameter {@code isLocalDataGuardEnabled}. This field applies only to dedicated + * resource pool members, and the specified leader must be different from the primary\u2019s + * leader. Local Autonomous Data Guard can be enabled only if more than one dedicated + * resource pool exists in the region. + * + * @param localAdgResourcePoolLeaderId the value to set + * @return this builder + */ + public Builder localAdgResourcePoolLeaderId(String localAdgResourcePoolLeaderId) { + this.localAdgResourcePoolLeaderId = localAdgResourcePoolLeaderId; + this.__explicitlySet__.add("localAdgResourcePoolLeaderId"); + return this; + } @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); @@ -1928,6 +1991,8 @@ public UpdateAutonomousDatabaseDetails build() { this.resourcePoolLeaderId, this.resourcePoolSummary, this.autonomousMaintenanceScheduleType, + this.autonomousDatabaseMaintenanceWindow, + this.timeMaintenancePauseUntil, this.isBackupRetentionLocked, this.timeScheduledDbVersionUpgrade, this.isDisableDbVersionUpgradeSchedule, @@ -1940,7 +2005,8 @@ public UpdateAutonomousDatabaseDetails build() { this.secretId, this.secretVersionNumber, this.encryptionKey, - this.isDisconnectPeer); + this.isDisconnectPeer, + this.localAdgResourcePoolLeaderId); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } @@ -2089,6 +2155,13 @@ public Builder copy(UpdateAutonomousDatabaseDetails model) { this.autonomousMaintenanceScheduleType( model.getAutonomousMaintenanceScheduleType()); } + if (model.wasPropertyExplicitlySet("autonomousDatabaseMaintenanceWindow")) { + this.autonomousDatabaseMaintenanceWindow( + model.getAutonomousDatabaseMaintenanceWindow()); + } + if (model.wasPropertyExplicitlySet("timeMaintenancePauseUntil")) { + this.timeMaintenancePauseUntil(model.getTimeMaintenancePauseUntil()); + } if (model.wasPropertyExplicitlySet("isBackupRetentionLocked")) { this.isBackupRetentionLocked(model.getIsBackupRetentionLocked()); } @@ -2130,6 +2203,9 @@ public Builder copy(UpdateAutonomousDatabaseDetails model) { if (model.wasPropertyExplicitlySet("isDisconnectPeer")) { this.isDisconnectPeer(model.getIsDisconnectPeer()); } + if (model.wasPropertyExplicitlySet("localAdgResourcePoolLeaderId")) { + this.localAdgResourcePoolLeaderId(model.getLocalAdgResourcePoolLeaderId()); + } return this; } } @@ -3703,6 +3779,26 @@ public AutonomousMaintenanceScheduleType getAutonomousMaintenanceScheduleType() return autonomousMaintenanceScheduleType; } + @com.fasterxml.jackson.annotation.JsonProperty("autonomousDatabaseMaintenanceWindow") + private final AutonomousDatabaseMaintenanceWindowSummary autonomousDatabaseMaintenanceWindow; + + public AutonomousDatabaseMaintenanceWindowSummary getAutonomousDatabaseMaintenanceWindow() { + return autonomousDatabaseMaintenanceWindow; + } + + /** The date until which maintenance of Autonomous AI Database is temporarily paused. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeMaintenancePauseUntil") + private final java.util.Date timeMaintenancePauseUntil; + + /** + * The date until which maintenance of Autonomous AI Database is temporarily paused. + * + * @return the value + */ + public java.util.Date getTimeMaintenancePauseUntil() { + return timeMaintenancePauseUntil; + } + /** True if the Autonomous AI Database is backup retention locked. */ @com.fasterxml.jackson.annotation.JsonProperty("isBackupRetentionLocked") private final Boolean isBackupRetentionLocked; @@ -3922,6 +4018,33 @@ public Boolean getIsDisconnectPeer() { return isDisconnectPeer; } + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a + * dedicated resource pool leader Autonomous AI Database in the same region, that is required + * when local Autonomous Data Guard is enabled for a dedicated resource pool member using the + * parameter {@code isLocalDataGuardEnabled}. This field applies only to dedicated resource pool + * members, and the specified leader must be different from the primary\u2019s leader. Local + * Autonomous Data Guard can be enabled only if more than one dedicated resource pool exists in + * the region. + */ + @com.fasterxml.jackson.annotation.JsonProperty("localAdgResourcePoolLeaderId") + private final String localAdgResourcePoolLeaderId; + + /** + * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a + * dedicated resource pool leader Autonomous AI Database in the same region, that is required + * when local Autonomous Data Guard is enabled for a dedicated resource pool member using the + * parameter {@code isLocalDataGuardEnabled}. This field applies only to dedicated resource pool + * members, and the specified leader must be different from the primary\u2019s leader. Local + * Autonomous Data Guard can be enabled only if more than one dedicated resource pool exists in + * the region. + * + * @return the value + */ + public String getLocalAdgResourcePoolLeaderId() { + return localAdgResourcePoolLeaderId; + } + @Override public String toString() { return this.toString(true); @@ -3991,6 +4114,10 @@ public String toString(boolean includeByteArrayContents) { sb.append(", resourcePoolSummary=").append(String.valueOf(this.resourcePoolSummary)); sb.append(", autonomousMaintenanceScheduleType=") .append(String.valueOf(this.autonomousMaintenanceScheduleType)); + sb.append(", autonomousDatabaseMaintenanceWindow=") + .append(String.valueOf(this.autonomousDatabaseMaintenanceWindow)); + sb.append(", timeMaintenancePauseUntil=") + .append(String.valueOf(this.timeMaintenancePauseUntil)); sb.append(", isBackupRetentionLocked=") .append(String.valueOf(this.isBackupRetentionLocked)); sb.append(", timeScheduledDbVersionUpgrade=") @@ -4009,6 +4136,8 @@ public String toString(boolean includeByteArrayContents) { sb.append(", secretVersionNumber=").append(String.valueOf(this.secretVersionNumber)); sb.append(", encryptionKey=").append(String.valueOf(this.encryptionKey)); sb.append(", isDisconnectPeer=").append(String.valueOf(this.isDisconnectPeer)); + sb.append(", localAdgResourcePoolLeaderId=") + .append(String.valueOf(this.localAdgResourcePoolLeaderId)); sb.append(")"); return sb.toString(); } @@ -4082,6 +4211,11 @@ public boolean equals(Object o) { && java.util.Objects.equals( this.autonomousMaintenanceScheduleType, other.autonomousMaintenanceScheduleType) + && java.util.Objects.equals( + this.autonomousDatabaseMaintenanceWindow, + other.autonomousDatabaseMaintenanceWindow) + && java.util.Objects.equals( + this.timeMaintenancePauseUntil, other.timeMaintenancePauseUntil) && java.util.Objects.equals( this.isBackupRetentionLocked, other.isBackupRetentionLocked) && java.util.Objects.equals( @@ -4102,6 +4236,8 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.secretVersionNumber, other.secretVersionNumber) && java.util.Objects.equals(this.encryptionKey, other.encryptionKey) && java.util.Objects.equals(this.isDisconnectPeer, other.isDisconnectPeer) + && java.util.Objects.equals( + this.localAdgResourcePoolLeaderId, other.localAdgResourcePoolLeaderId) && super.equals(other); } @@ -4259,6 +4395,16 @@ public int hashCode() { + (this.autonomousMaintenanceScheduleType == null ? 43 : this.autonomousMaintenanceScheduleType.hashCode()); + result = + (result * PRIME) + + (this.autonomousDatabaseMaintenanceWindow == null + ? 43 + : this.autonomousDatabaseMaintenanceWindow.hashCode()); + result = + (result * PRIME) + + (this.timeMaintenancePauseUntil == null + ? 43 + : this.timeMaintenancePauseUntil.hashCode()); result = (result * PRIME) + (this.isBackupRetentionLocked == null @@ -4310,6 +4456,11 @@ public int hashCode() { result = (result * PRIME) + (this.isDisconnectPeer == null ? 43 : this.isDisconnectPeer.hashCode()); + result = + (result * PRIME) + + (this.localAdgResourcePoolLeaderId == null + ? 43 + : this.localAdgResourcePoolLeaderId.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousDatabaseSoftwareImageDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousDatabaseSoftwareImageDetails.java index 137af4a4a66..08c934b376f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousDatabaseSoftwareImageDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousDatabaseSoftwareImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousDatabaseWalletDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousDatabaseWalletDetails.java index 12b666a64eb..9ad39482997 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousDatabaseWalletDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousDatabaseWalletDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousExadataInfrastructureDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousExadataInfrastructureDetails.java index 3e24fd84fc8..d8943d5db33 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousExadataInfrastructureDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousExadataInfrastructureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousVmClusterDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousVmClusterDetails.java index 2d14f9d0d1c..28d2081b2be 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousVmClusterDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateAutonomousVmClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateBackupDestinationDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateBackupDestinationDetails.java index d98ecf100b6..f824611de60 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateBackupDestinationDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateBackupDestinationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateBackupDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateBackupDetails.java index 83c99c95ce8..6c9095d809d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateBackupDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateCloudAutonomousVmClusterDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateCloudAutonomousVmClusterDetails.java index 3bebdaae854..ad9dde2a984 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateCloudAutonomousVmClusterDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateCloudAutonomousVmClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateCloudExadataInfrastructureDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateCloudExadataInfrastructureDetails.java index c82cb8d5f24..de44824eabc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateCloudExadataInfrastructureDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateCloudExadataInfrastructureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateCloudVmClusterDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateCloudVmClusterDetails.java index 6035c0a6ac3..85a904c861f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateCloudVmClusterDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateCloudVmClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateConsoleConnectionDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateConsoleConnectionDetails.java index 55592c39e14..df66b46f8e8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateConsoleConnectionDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateConsoleConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateConsoleHistoryDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateConsoleHistoryDetails.java index 5480c9060fa..f4c257643b2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateConsoleHistoryDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateConsoleHistoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDataGuardAssociationDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDataGuardAssociationDetails.java index 79d78e08bad..a4a5073a13b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDataGuardAssociationDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDataGuardAssociationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDataGuardDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDataGuardDetails.java index dd291400ebd..8db7129a9fd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDataGuardDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDataGuardDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDatabaseDetails.java index 2fcd6ce0d87..6fcca9e704c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDatabaseSoftwareImageDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDatabaseSoftwareImageDetails.java index f12d516fe40..95560a7f40a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDatabaseSoftwareImageDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDatabaseSoftwareImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDbHomeDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDbHomeDetails.java index f92a7e99cd4..2cb8f3aee36 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDbHomeDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDbHomeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDbNodeDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDbNodeDetails.java index b913dd56c0f..4da75331e1c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDbNodeDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDbNodeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDbSystemDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDbSystemDetails.java index 63fbbc064ce..144cc233076 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDbSystemDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDbSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDetails.java index 18fc55ad790..4a1d4579508 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExadataInfrastructureDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExadataInfrastructureDetails.java index 8a68c5a773f..40409078f07 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExadataInfrastructureDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExadataInfrastructureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExadbVmClusterDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExadbVmClusterDetails.java index 4e5354866a2..9e7b38b74dc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExadbVmClusterDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExadbVmClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExascaleDbStorageVaultDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExascaleDbStorageVaultDetails.java index 79c5d5d8065..db3ba38b16c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExascaleDbStorageVaultDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExascaleDbStorageVaultDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExecutionActionDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExecutionActionDetails.java index 81c023468ef..c50916095eb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExecutionActionDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExecutionActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExecutionWindowDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExecutionWindowDetails.java index ac38aa79114..289ece1c514 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExecutionWindowDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExecutionWindowDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalContainerDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalContainerDatabaseDetails.java index 7ddf3639dd3..3d78886ed84 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalContainerDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalContainerDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalDatabaseConnectorDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalDatabaseConnectorDetails.java index c4fa01714c0..cf0c81905f3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalDatabaseConnectorDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalDatabaseConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalDatabaseDetailsBase.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalDatabaseDetailsBase.java index 52edaa25a63..fe6df06a2ad 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalDatabaseDetailsBase.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalDatabaseDetailsBase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalMacsConnectorDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalMacsConnectorDetails.java index 893a5f40833..203863bd013 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalMacsConnectorDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalMacsConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalNonContainerDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalNonContainerDatabaseDetails.java index f20af9c07a3..be059abaa82 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalNonContainerDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalNonContainerDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalPluggableDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalPluggableDatabaseDetails.java index d0af218385c..c7bd1b39968 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalPluggableDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateExternalPluggableDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateHistoryEntry.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateHistoryEntry.java index 8a8c6a4414d..9ead6db41e7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateHistoryEntry.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateHistoryEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateHistoryEntrySummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateHistoryEntrySummary.java index 8162fc4c0dc..7efc0f3011d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateHistoryEntrySummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateHistoryEntrySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateKeyStoreDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateKeyStoreDetails.java index 2e6b4d04ad4..923e313757a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateKeyStoreDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateKeyStoreDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateMaintenanceRunDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateMaintenanceRunDetails.java index 4d5b7d8a3a1..a97e8138e9a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateMaintenanceRunDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateMaintenanceRunDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateOneoffPatchDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateOneoffPatchDetails.java index 53b4fc6b345..73d0999cecf 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateOneoffPatchDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateOneoffPatchDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdatePluggableDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdatePluggableDatabaseDetails.java index 0a9157118be..6cb081966ce 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdatePluggableDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdatePluggableDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateScheduledActionDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateScheduledActionDetails.java index ecb88fbc562..8cc51490a43 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateScheduledActionDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateScheduledActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateSchedulingPolicyDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateSchedulingPolicyDetails.java index 98104576d24..7abd4ead5cc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateSchedulingPolicyDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateSchedulingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateSchedulingWindowDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateSchedulingWindowDetails.java index 7b9a94aa720..aa1a6cb7c57 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateSchedulingWindowDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateSchedulingWindowDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateSummary.java index 1ecfa035ccd..8cf02fa157c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateVmClusterDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateVmClusterDetails.java index 4ddf441f270..0fd0e43f6f8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateVmClusterDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateVmClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateVmClusterNetworkDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateVmClusterNetworkDetails.java index 47d1368ad39..b40dd1a9b51 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateVmClusterNetworkDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpdateVmClusterNetworkDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpgradeDatabaseDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpgradeDatabaseDetails.java index 89247dd0453..13c12d7db5b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpgradeDatabaseDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpgradeDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpgradeDbSystemDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpgradeDbSystemDetails.java index 1a2dfb35dd4..75280ac4c11 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/UpgradeDbSystemDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/UpgradeDbSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/VanityUrlDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/VanityUrlDetails.java index c3cab7877e5..303364264e5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/VanityUrlDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/VanityUrlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmCluster.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmCluster.java index 810939d3506..b842311958a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmCluster.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmCluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterNetwork.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterNetwork.java index 26888a9de87..5014dd0e825 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterNetwork.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterNetwork.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterNetworkDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterNetworkDetails.java index bd039b08906..53d9c64189f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterNetworkDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterNetworkDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterNetworkSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterNetworkSummary.java index a5bb5150164..52ce8119561 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterNetworkSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterNetworkSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterSummary.java index a2091e26a38..b46fc43dd66 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterUpdate.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterUpdate.java index c8b50e56111..39d9243945b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterUpdate.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterUpdate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterUpdateDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterUpdateDetails.java index 5662e410098..cacb01e4ff5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterUpdateDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterUpdateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterUpdateHistoryEntry.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterUpdateHistoryEntry.java index 3c228a4e4cb..54796486d6f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterUpdateHistoryEntry.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterUpdateHistoryEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterUpdateHistoryEntrySummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterUpdateHistoryEntrySummary.java index 93428f1d39a..32a2478dbc0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterUpdateHistoryEntrySummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterUpdateHistoryEntrySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterUpdateSummary.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterUpdateSummary.java index 7694a6b6523..92d7bc2f89f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterUpdateSummary.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmClusterUpdateSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmNetworkDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmNetworkDetails.java index 4cde85817c5..760cc867008 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/VmNetworkDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/VmNetworkDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/VolumeDetails.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/VolumeDetails.java index f79174c4fd0..c8e95756b64 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/VolumeDetails.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/VolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/WindowPreferenceDetail.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/WindowPreferenceDetail.java index 1d3c5eab71c..fc60c0f0224 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/WindowPreferenceDetail.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/WindowPreferenceDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/model/WorkloadType.java b/bmc-database/src/main/java/com/oracle/bmc/database/model/WorkloadType.java index a1bd4be8d06..732a6ec4b2d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/model/WorkloadType.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/model/WorkloadType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.model; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ActivateExadataInfrastructureRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ActivateExadataInfrastructureRequest.java index 34e6857c342..c64163dedf6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ActivateExadataInfrastructureRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ActivateExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddDbnodeSnapshotsForExadbVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddDbnodeSnapshotsForExadbVmClusterRequest.java index 565af2ec943..62db81af83e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddDbnodeSnapshotsForExadbVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddDbnodeSnapshotsForExadbVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddStandbyAutonomousContainerDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddStandbyAutonomousContainerDatabaseRequest.java index 266ca405898..5d9d7ac043a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddStandbyAutonomousContainerDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddStandbyAutonomousContainerDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddStorageCapacityCloudExadataInfrastructureRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddStorageCapacityCloudExadataInfrastructureRequest.java index 8d177ddba58..d930d667d61 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddStorageCapacityCloudExadataInfrastructureRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddStorageCapacityCloudExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddStorageCapacityExadataInfrastructureRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddStorageCapacityExadataInfrastructureRequest.java index 2eccc1ad77a..4c4ed5a5d00 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddStorageCapacityExadataInfrastructureRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddStorageCapacityExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddVirtualMachineToCloudVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddVirtualMachineToCloudVmClusterRequest.java index 9ffb45abd89..5afb05a0a7d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddVirtualMachineToCloudVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddVirtualMachineToCloudVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddVirtualMachineToVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddVirtualMachineToVmClusterRequest.java index 6d2112dbb14..30d54efabc3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddVirtualMachineToVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/AddVirtualMachineToVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/AutonomousDatabaseManualRefreshRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/AutonomousDatabaseManualRefreshRequest.java index b99bb4b1d71..bcc86e1967e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/AutonomousDatabaseManualRefreshRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/AutonomousDatabaseManualRefreshRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CancelBackupRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CancelBackupRequest.java index 3b7b294664a..e0e7ee70abc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CancelBackupRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CancelBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CancelExecutionWindowRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CancelExecutionWindowRequest.java index 3ba75b07305..a76adcd36a1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CancelExecutionWindowRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CancelExecutionWindowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CascadingDeleteSchedulingPlanRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CascadingDeleteSchedulingPlanRequest.java index b28cfddb2ec..f567663457b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CascadingDeleteSchedulingPlanRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CascadingDeleteSchedulingPlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousContainerDatabaseCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousContainerDatabaseCompartmentRequest.java index 89a1fb894e7..3eb46cabcfa 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousContainerDatabaseCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousContainerDatabaseCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousDatabaseCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousDatabaseCompartmentRequest.java index da71bdb1646..38d0c21d5cd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousDatabaseCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousDatabaseCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousDatabaseSoftwareImageCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousDatabaseSoftwareImageCompartmentRequest.java index 118244fbe50..880b97089a3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousDatabaseSoftwareImageCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousDatabaseSoftwareImageCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousDatabaseSubscriptionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousDatabaseSubscriptionRequest.java index 6810f43fa0e..10e3dbd074b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousDatabaseSubscriptionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousDatabaseSubscriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousExadataInfrastructureCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousExadataInfrastructureCompartmentRequest.java index 41e38e5b2ea..a385af367f3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousExadataInfrastructureCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousExadataInfrastructureCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousVmClusterCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousVmClusterCompartmentRequest.java index 2b36ea19a1b..9f882160a20 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousVmClusterCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeAutonomousVmClusterCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeBackupDestinationCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeBackupDestinationCompartmentRequest.java index cd7f1a79761..3ed75e6d22d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeBackupDestinationCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeBackupDestinationCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudAutonomousVmClusterCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudAutonomousVmClusterCompartmentRequest.java index e23d7cc4f16..3c95cc63bfc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudAutonomousVmClusterCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudAutonomousVmClusterCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudAutonomousVmClusterSubscriptionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudAutonomousVmClusterSubscriptionRequest.java index 06287ce44db..b74dd278cc1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudAutonomousVmClusterSubscriptionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudAutonomousVmClusterSubscriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudDbSystemSubscriptionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudDbSystemSubscriptionRequest.java index a2cdefe9d6e..6ff332fe991 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudDbSystemSubscriptionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudDbSystemSubscriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudExadataInfrastructureCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudExadataInfrastructureCompartmentRequest.java index 20d29a9c3dc..e90c2071141 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudExadataInfrastructureCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudExadataInfrastructureCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudExadataInfrastructureSubscriptionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudExadataInfrastructureSubscriptionRequest.java index c5e7df84ca4..698fcc88a10 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudExadataInfrastructureSubscriptionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudExadataInfrastructureSubscriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudVmClusterCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudVmClusterCompartmentRequest.java index 8f629343b28..457914e6612 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudVmClusterCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudVmClusterCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudVmClusterSubscriptionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudVmClusterSubscriptionRequest.java index e0c7910bb25..e0984abf7a2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudVmClusterSubscriptionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeCloudVmClusterSubscriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeDatabaseSoftwareImageCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeDatabaseSoftwareImageCompartmentRequest.java index 57a12e79358..c74a41e2e17 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeDatabaseSoftwareImageCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeDatabaseSoftwareImageCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeDataguardRoleRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeDataguardRoleRequest.java index abe16b0b2ef..5ae955bf6f6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeDataguardRoleRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeDataguardRoleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeDbSystemCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeDbSystemCompartmentRequest.java index d58afda5e20..266bd88cb69 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeDbSystemCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeDbSystemCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeDisasterRecoveryConfigurationRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeDisasterRecoveryConfigurationRequest.java index 74f00da55f9..67eb8c04772 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeDisasterRecoveryConfigurationRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeDisasterRecoveryConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeEncryptionKeyLocationRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeEncryptionKeyLocationRequest.java index 1abe3d1a8e2..8a333e5a91e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeEncryptionKeyLocationRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeEncryptionKeyLocationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExadataInfrastructureCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExadataInfrastructureCompartmentRequest.java index 9da43990729..1e03c9930b3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExadataInfrastructureCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExadataInfrastructureCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExadbVmClusterCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExadbVmClusterCompartmentRequest.java index 34a3926d13e..8a52a4c6316 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExadbVmClusterCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExadbVmClusterCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExadbVmClusterSubscriptionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExadbVmClusterSubscriptionRequest.java index 1a04e6323d8..7bfed2ea527 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExadbVmClusterSubscriptionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExadbVmClusterSubscriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExascaleDbStorageVaultCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExascaleDbStorageVaultCompartmentRequest.java index b58a44d6ff7..51aeb1abd6a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExascaleDbStorageVaultCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExascaleDbStorageVaultCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExascaleDbStorageVaultSubscriptionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExascaleDbStorageVaultSubscriptionRequest.java index b03fcf29219..842a787d197 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExascaleDbStorageVaultSubscriptionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExascaleDbStorageVaultSubscriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExternalContainerDatabaseCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExternalContainerDatabaseCompartmentRequest.java index 13e140cdebe..b6045afdda7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExternalContainerDatabaseCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExternalContainerDatabaseCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExternalNonContainerDatabaseCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExternalNonContainerDatabaseCompartmentRequest.java index 46e6016a3ce..8d463d1aa34 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExternalNonContainerDatabaseCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExternalNonContainerDatabaseCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExternalPluggableDatabaseCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExternalPluggableDatabaseCompartmentRequest.java index ff9374e8ec7..984a049b17b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExternalPluggableDatabaseCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeExternalPluggableDatabaseCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeKeyStoreCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeKeyStoreCompartmentRequest.java index a0e78a8c3d4..bd4ce449564 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeKeyStoreCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeKeyStoreCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeKeyStoreTypeRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeKeyStoreTypeRequest.java index 02dca226a31..2a10a6ccf41 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeKeyStoreTypeRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeKeyStoreTypeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeOneoffPatchCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeOneoffPatchCompartmentRequest.java index 4b2818975f1..eeb1e37b8e5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeOneoffPatchCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeOneoffPatchCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeSchedulingPlanCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeSchedulingPlanCompartmentRequest.java index a246c815940..6fa62420386 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeSchedulingPlanCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeSchedulingPlanCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeSchedulingPolicyCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeSchedulingPolicyCompartmentRequest.java index 86f612e36f2..616ff097046 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeSchedulingPolicyCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeSchedulingPolicyCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeVmClusterCompartmentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeVmClusterCompartmentRequest.java index b9f3ea92a89..f66ee04afbb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeVmClusterCompartmentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ChangeVmClusterCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CheckExternalDatabaseConnectorConnectionStatusRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CheckExternalDatabaseConnectorConnectionStatusRequest.java index 7c2a0ed108e..55fd8903463 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CheckExternalDatabaseConnectorConnectionStatusRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CheckExternalDatabaseConnectorConnectionStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CompleteExternalBackupJobRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CompleteExternalBackupJobRequest.java index 4c365ead9ac..227a90d4443 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CompleteExternalBackupJobRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CompleteExternalBackupJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConfigureAutonomousDatabaseVaultKeyRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConfigureAutonomousDatabaseVaultKeyRequest.java index 2f8549301ec..95ca95d2f84 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConfigureAutonomousDatabaseVaultKeyRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConfigureAutonomousDatabaseVaultKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConfigureExascaleCloudExadataInfrastructureRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConfigureExascaleCloudExadataInfrastructureRequest.java index 40edeb204d0..7030f919c1d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConfigureExascaleCloudExadataInfrastructureRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConfigureExascaleCloudExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConfigureExascaleExadataInfrastructureRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConfigureExascaleExadataInfrastructureRequest.java index 7605e320d0e..e3879100af7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConfigureExascaleExadataInfrastructureRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConfigureExascaleExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConfigureSaasAdminUserRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConfigureSaasAdminUserRequest.java index 2f62d42167e..0eab5dc4f91 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConfigureSaasAdminUserRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConfigureSaasAdminUserRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConfirmKeyStoreDetailsAreCorrectRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConfirmKeyStoreDetailsAreCorrectRequest.java index c7802c0bf9c..61d31ef249f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConfirmKeyStoreDetailsAreCorrectRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConfirmKeyStoreDetailsAreCorrectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConvertStandbyAutonomousContainerDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConvertStandbyAutonomousContainerDatabaseRequest.java index 0b351afe033..61ebabce9b1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConvertStandbyAutonomousContainerDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConvertStandbyAutonomousContainerDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConvertStandbyDatabaseTypeRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConvertStandbyDatabaseTypeRequest.java index c6527a34b61..c38362f9949 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConvertStandbyDatabaseTypeRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConvertStandbyDatabaseTypeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConvertToPdbRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConvertToPdbRequest.java index 3b8afbeda4b..820546df705 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConvertToPdbRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConvertToPdbRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConvertToRegularPluggableDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConvertToRegularPluggableDatabaseRequest.java index 722f860c81c..231a2531f31 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConvertToRegularPluggableDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConvertToRegularPluggableDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConvertToStandaloneRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConvertToStandaloneRequest.java index fdc496819ce..17661707568 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConvertToStandaloneRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ConvertToStandaloneRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateApplicationVipRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateApplicationVipRequest.java index be9909b848e..fc10cf07474 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateApplicationVipRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateApplicationVipRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousContainerDatabaseDataguardAssociationRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousContainerDatabaseDataguardAssociationRequest.java index 44c324291fb..1334b535bdc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousContainerDatabaseDataguardAssociationRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousContainerDatabaseDataguardAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousContainerDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousContainerDatabaseRequest.java index 72238b796c3..859e7d7cac7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousContainerDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousContainerDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousDatabaseBackupRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousDatabaseBackupRequest.java index 64603421aee..7ba4a648db3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousDatabaseBackupRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousDatabaseBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousDatabaseRequest.java index 7ff0d125671..cc9a6179165 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousDatabaseSoftwareImageRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousDatabaseSoftwareImageRequest.java index 6c5f5db41a3..392a60985d5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousDatabaseSoftwareImageRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousDatabaseSoftwareImageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousVmClusterRequest.java index 2273368701c..c351a8d1166 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateAutonomousVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateBackupDestinationRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateBackupDestinationRequest.java index a84a928a497..b3f1f4583a9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateBackupDestinationRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateBackupDestinationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateBackupRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateBackupRequest.java index f836f052a20..19e92312312 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateBackupRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateCloudAutonomousVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateCloudAutonomousVmClusterRequest.java index 26043e5f65a..ff49c74b227 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateCloudAutonomousVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateCloudAutonomousVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateCloudExadataInfrastructureRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateCloudExadataInfrastructureRequest.java index 45c749ff863..4270b070ac5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateCloudExadataInfrastructureRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateCloudExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateCloudVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateCloudVmClusterRequest.java index f481aadee8c..422b37e0007 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateCloudVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateCloudVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateConsoleConnectionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateConsoleConnectionRequest.java index 265dfb3dba2..c9b2fa7e47f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateConsoleConnectionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateConsoleConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateConsoleHistoryRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateConsoleHistoryRequest.java index afb0e2d68e2..149f047411c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateConsoleHistoryRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateConsoleHistoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateDataGuardAssociationRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateDataGuardAssociationRequest.java index e9b0bea6695..d4a964c1fc8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateDataGuardAssociationRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateDataGuardAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateDatabaseRequest.java index c0eb854e1a9..f324f4deb25 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateDatabaseSoftwareImageRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateDatabaseSoftwareImageRequest.java index bfce7026851..8bb9880fa07 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateDatabaseSoftwareImageRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateDatabaseSoftwareImageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateDbHomeRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateDbHomeRequest.java index 40ed9378e3a..4f7f363ca27 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateDbHomeRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateDbHomeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExadataInfrastructureRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExadataInfrastructureRequest.java index 35f9d71c9b0..b014fea5f24 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExadataInfrastructureRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExadbVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExadbVmClusterRequest.java index fa2ae501fb1..1090e31b6cd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExadbVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExadbVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExascaleDbStorageVaultRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExascaleDbStorageVaultRequest.java index 3d48c91764c..72cc9112a7a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExascaleDbStorageVaultRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExascaleDbStorageVaultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExecutionActionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExecutionActionRequest.java index a460e6fd12b..a07fe757e82 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExecutionActionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExecutionActionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExecutionWindowRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExecutionWindowRequest.java index 0d42a524ae9..b636e0fcc30 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExecutionWindowRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExecutionWindowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExternalBackupJobRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExternalBackupJobRequest.java index 64640aa027e..f6a4391860b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExternalBackupJobRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExternalBackupJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExternalContainerDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExternalContainerDatabaseRequest.java index e022187a5f6..67b01ef8f51 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExternalContainerDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExternalContainerDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExternalDatabaseConnectorRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExternalDatabaseConnectorRequest.java index a9fc7f89644..56551362206 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExternalDatabaseConnectorRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExternalDatabaseConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExternalNonContainerDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExternalNonContainerDatabaseRequest.java index 836079b8a45..49c85207dbc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExternalNonContainerDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExternalNonContainerDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExternalPluggableDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExternalPluggableDatabaseRequest.java index 7b48f2954c1..831b6d0b02b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExternalPluggableDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateExternalPluggableDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateKeyStoreRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateKeyStoreRequest.java index 20f063dea19..1e019a83cdb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateKeyStoreRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateKeyStoreRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateMaintenanceRunRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateMaintenanceRunRequest.java index cfb1b564325..2fe790e5d1a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateMaintenanceRunRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateMaintenanceRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateOneoffPatchRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateOneoffPatchRequest.java index 0fcda46f339..b0714d7f39a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateOneoffPatchRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateOneoffPatchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreatePluggableDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreatePluggableDatabaseRequest.java index 925bd19fbd5..6b9ad69f143 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreatePluggableDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreatePluggableDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreatePluggableDatabaseSnapshotRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreatePluggableDatabaseSnapshotRequest.java index a2d70462331..d5f9450d01d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreatePluggableDatabaseSnapshotRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreatePluggableDatabaseSnapshotRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateScheduledActionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateScheduledActionRequest.java index 32a645171bd..50cc1a5a6ab 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateScheduledActionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateScheduledActionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateSchedulingPlanRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateSchedulingPlanRequest.java index 8e693f6a6c9..689dff73120 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateSchedulingPlanRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateSchedulingPlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateSchedulingPolicyRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateSchedulingPolicyRequest.java index 762d1662b34..ddf0c6cacbb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateSchedulingPolicyRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateSchedulingPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateSchedulingWindowRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateSchedulingWindowRequest.java index 7670cd90a5c..b117942b973 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateSchedulingWindowRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateSchedulingWindowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateVmClusterNetworkRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateVmClusterNetworkRequest.java index 785018eeec4..139a75351ff 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateVmClusterNetworkRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateVmClusterNetworkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateVmClusterRequest.java index ceeab96f472..d7e58fc4bd8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/CreateVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DbNodeActionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DbNodeActionRequest.java index 8da115ccdf7..065feef188c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DbNodeActionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DbNodeActionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteApplicationVipRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteApplicationVipRequest.java index ed5ec4412d4..a43cdd4b6a8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteApplicationVipRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteApplicationVipRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteAutonomousDatabaseBackupRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteAutonomousDatabaseBackupRequest.java index d96dcaa61d4..69ec9ec13b7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteAutonomousDatabaseBackupRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteAutonomousDatabaseBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteAutonomousDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteAutonomousDatabaseRequest.java index 5750a3d5152..02c6d41eda8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteAutonomousDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteAutonomousDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteAutonomousDatabaseSoftwareImageRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteAutonomousDatabaseSoftwareImageRequest.java index a17e28115dd..437bdfc9826 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteAutonomousDatabaseSoftwareImageRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteAutonomousDatabaseSoftwareImageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteAutonomousVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteAutonomousVmClusterRequest.java index 0caffbd01f7..2fa3b69fade 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteAutonomousVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteAutonomousVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteBackupDestinationRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteBackupDestinationRequest.java index f05a7b5a119..7945b75f798 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteBackupDestinationRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteBackupDestinationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteBackupRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteBackupRequest.java index a6bdccf0a53..81c5c5f3add 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteBackupRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteCloudAutonomousVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteCloudAutonomousVmClusterRequest.java index d7f01cfac93..7914cb57819 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteCloudAutonomousVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteCloudAutonomousVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteCloudExadataInfrastructureRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteCloudExadataInfrastructureRequest.java index 7a2a3464d57..3c5e299c008 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteCloudExadataInfrastructureRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteCloudExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteCloudVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteCloudVmClusterRequest.java index bff48e6fe3b..c09b1467988 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteCloudVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteCloudVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteConsoleConnectionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteConsoleConnectionRequest.java index 13f50f5ee19..04c9fd10343 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteConsoleConnectionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteConsoleConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteConsoleHistoryRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteConsoleHistoryRequest.java index 6e182c7cdef..441c81d24cb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteConsoleHistoryRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteConsoleHistoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteDatabaseRequest.java index 2ccf1fb2352..2c264dffd59 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteDatabaseSoftwareImageRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteDatabaseSoftwareImageRequest.java index 0a4ae2f3ee2..adb9d99acd1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteDatabaseSoftwareImageRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteDatabaseSoftwareImageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteDbHomeRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteDbHomeRequest.java index b0c0eab3310..660043d7df6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteDbHomeRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteDbHomeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteDbnodeSnapshotRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteDbnodeSnapshotRequest.java index 03a6c37bbed..12106c07f71 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteDbnodeSnapshotRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteDbnodeSnapshotRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExadataInfrastructureRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExadataInfrastructureRequest.java index 0070dbb80b9..6e03f8a6ba6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExadataInfrastructureRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExadbVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExadbVmClusterRequest.java index 852e86ad1a6..9d1ed3c3068 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExadbVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExadbVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExascaleDbStorageVaultRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExascaleDbStorageVaultRequest.java index abecaffeb06..6657fcf8af9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExascaleDbStorageVaultRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExascaleDbStorageVaultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExecutionActionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExecutionActionRequest.java index c728ec6ea94..3fb0da94e7c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExecutionActionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExecutionActionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExecutionWindowRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExecutionWindowRequest.java index 886ae44e668..c74d5d1855e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExecutionWindowRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExecutionWindowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExternalContainerDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExternalContainerDatabaseRequest.java index 14f497568fd..862364d0302 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExternalContainerDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExternalContainerDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExternalDatabaseConnectorRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExternalDatabaseConnectorRequest.java index c4e509437ed..dfee1bb9fd9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExternalDatabaseConnectorRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExternalDatabaseConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExternalNonContainerDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExternalNonContainerDatabaseRequest.java index 1841a797d51..d45789d8316 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExternalNonContainerDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExternalNonContainerDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExternalPluggableDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExternalPluggableDatabaseRequest.java index 61947416323..64d350efc1b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExternalPluggableDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteExternalPluggableDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteKeyStoreRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteKeyStoreRequest.java index c4bca6a2bc2..06abeeec5fc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteKeyStoreRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteKeyStoreRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteOneoffPatchRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteOneoffPatchRequest.java index 27d3fc32ed9..16e66ac4b7b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteOneoffPatchRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteOneoffPatchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeletePluggableDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeletePluggableDatabaseRequest.java index 5fdb9aee9c6..43e2e844e4a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeletePluggableDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeletePluggableDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeletePluggableDatabaseSnapshotRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeletePluggableDatabaseSnapshotRequest.java index e66aac638f2..48a8833d3a8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeletePluggableDatabaseSnapshotRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeletePluggableDatabaseSnapshotRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteScheduledActionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteScheduledActionRequest.java index 2c518c18cfd..e78c4a4a9b6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteScheduledActionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteScheduledActionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteSchedulingPlanRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteSchedulingPlanRequest.java index 1e1818ddb25..39c193758ba 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteSchedulingPlanRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteSchedulingPlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteSchedulingPolicyRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteSchedulingPolicyRequest.java index 30d2fa9c77c..7e54d804df7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteSchedulingPolicyRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteSchedulingPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteSchedulingWindowRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteSchedulingWindowRequest.java index 30f6c4d0436..b5c51812e37 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteSchedulingWindowRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteSchedulingWindowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteVmClusterNetworkRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteVmClusterNetworkRequest.java index 0737153fafe..3504ad48f1f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteVmClusterNetworkRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteVmClusterNetworkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteVmClusterRequest.java index b7dfadc91af..efa3652236a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeleteVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeregisterAutonomousDatabaseDataSafeRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeregisterAutonomousDatabaseDataSafeRequest.java index 6dcdd1b3c42..8adf43763cc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeregisterAutonomousDatabaseDataSafeRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DeregisterAutonomousDatabaseDataSafeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableAutonomousDatabaseManagementRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableAutonomousDatabaseManagementRequest.java index 9242668b6c2..2eec2dd437d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableAutonomousDatabaseManagementRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableAutonomousDatabaseManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableAutonomousDatabaseOperationsInsightsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableAutonomousDatabaseOperationsInsightsRequest.java index be52894a750..2f8259c43bd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableAutonomousDatabaseOperationsInsightsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableAutonomousDatabaseOperationsInsightsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableDatabaseManagementRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableDatabaseManagementRequest.java index e30bf5ad3a5..b52adfbfd41 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableDatabaseManagementRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableDatabaseManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalContainerDatabaseDatabaseManagementRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalContainerDatabaseDatabaseManagementRequest.java index db5d9b5fab0..abedd4d60d8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalContainerDatabaseDatabaseManagementRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalContainerDatabaseDatabaseManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalContainerDatabaseStackMonitoringRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalContainerDatabaseStackMonitoringRequest.java index dc1538786d4..c16c98af756 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalContainerDatabaseStackMonitoringRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalContainerDatabaseStackMonitoringRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalNonContainerDatabaseDatabaseManagementRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalNonContainerDatabaseDatabaseManagementRequest.java index 6fc64d1d42b..fe4cf315052 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalNonContainerDatabaseDatabaseManagementRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalNonContainerDatabaseDatabaseManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalNonContainerDatabaseOperationsInsightsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalNonContainerDatabaseOperationsInsightsRequest.java index 2fd402d273e..f93a00928ec 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalNonContainerDatabaseOperationsInsightsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalNonContainerDatabaseOperationsInsightsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalNonContainerDatabaseStackMonitoringRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalNonContainerDatabaseStackMonitoringRequest.java index e1239f30e22..a075c05485f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalNonContainerDatabaseStackMonitoringRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalNonContainerDatabaseStackMonitoringRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalPluggableDatabaseDatabaseManagementRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalPluggableDatabaseDatabaseManagementRequest.java index a57eea1b0a4..baee56bf6ef 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalPluggableDatabaseDatabaseManagementRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalPluggableDatabaseDatabaseManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalPluggableDatabaseOperationsInsightsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalPluggableDatabaseOperationsInsightsRequest.java index d47f15b4a07..4a1083b3177 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalPluggableDatabaseOperationsInsightsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalPluggableDatabaseOperationsInsightsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalPluggableDatabaseStackMonitoringRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalPluggableDatabaseStackMonitoringRequest.java index d9f7d87a6d9..1384b3d8e8f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalPluggableDatabaseStackMonitoringRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisableExternalPluggableDatabaseStackMonitoringRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisablePluggableDatabaseManagementRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisablePluggableDatabaseManagementRequest.java index dfa4f8d7f97..85d34c9ccb2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisablePluggableDatabaseManagementRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DisablePluggableDatabaseManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DownloadExadataInfrastructureConfigFileRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DownloadExadataInfrastructureConfigFileRequest.java index 6302fdc36e2..99c4b787318 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DownloadExadataInfrastructureConfigFileRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DownloadExadataInfrastructureConfigFileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DownloadOneoffPatchRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DownloadOneoffPatchRequest.java index 92ffbd8afff..560da940a65 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DownloadOneoffPatchRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DownloadOneoffPatchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DownloadValidationReportRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DownloadValidationReportRequest.java index 83ad9363e8e..246d73bf065 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DownloadValidationReportRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DownloadValidationReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DownloadVmClusterNetworkConfigFileRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DownloadVmClusterNetworkConfigFileRequest.java index 7e46b194563..34578228029 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/DownloadVmClusterNetworkConfigFileRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/DownloadVmClusterNetworkConfigFileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EditAutonomousContainerDatabaseDataguardRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EditAutonomousContainerDatabaseDataguardRequest.java index cac347af672..9c15da7a91e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EditAutonomousContainerDatabaseDataguardRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EditAutonomousContainerDatabaseDataguardRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableAutonomousDatabaseManagementRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableAutonomousDatabaseManagementRequest.java index 0f55c493c08..7b344fa52af 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableAutonomousDatabaseManagementRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableAutonomousDatabaseManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableAutonomousDatabaseOperationsInsightsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableAutonomousDatabaseOperationsInsightsRequest.java index 441446b728f..24bd0c87925 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableAutonomousDatabaseOperationsInsightsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableAutonomousDatabaseOperationsInsightsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableDatabaseManagementRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableDatabaseManagementRequest.java index 03167693e16..68c9ba32fa2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableDatabaseManagementRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableDatabaseManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalContainerDatabaseDatabaseManagementRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalContainerDatabaseDatabaseManagementRequest.java index 796d17a624b..f0f69f681ec 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalContainerDatabaseDatabaseManagementRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalContainerDatabaseDatabaseManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalContainerDatabaseStackMonitoringRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalContainerDatabaseStackMonitoringRequest.java index 5fa1e313604..e143447ff75 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalContainerDatabaseStackMonitoringRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalContainerDatabaseStackMonitoringRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalNonContainerDatabaseDatabaseManagementRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalNonContainerDatabaseDatabaseManagementRequest.java index a4a1f9c46d2..6b5310bf2f2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalNonContainerDatabaseDatabaseManagementRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalNonContainerDatabaseDatabaseManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalNonContainerDatabaseOperationsInsightsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalNonContainerDatabaseOperationsInsightsRequest.java index fb730112f50..ace86c55e59 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalNonContainerDatabaseOperationsInsightsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalNonContainerDatabaseOperationsInsightsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalNonContainerDatabaseStackMonitoringRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalNonContainerDatabaseStackMonitoringRequest.java index 50ec4a9af6e..54c9bb23aa4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalNonContainerDatabaseStackMonitoringRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalNonContainerDatabaseStackMonitoringRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalPluggableDatabaseDatabaseManagementRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalPluggableDatabaseDatabaseManagementRequest.java index ab27351b0a0..82fbe51b723 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalPluggableDatabaseDatabaseManagementRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalPluggableDatabaseDatabaseManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalPluggableDatabaseOperationsInsightsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalPluggableDatabaseOperationsInsightsRequest.java index c87bcedc792..35103fa0225 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalPluggableDatabaseOperationsInsightsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalPluggableDatabaseOperationsInsightsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalPluggableDatabaseStackMonitoringRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalPluggableDatabaseStackMonitoringRequest.java index a9912d4eb5c..4c0dafa3d90 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalPluggableDatabaseStackMonitoringRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnableExternalPluggableDatabaseStackMonitoringRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnablePluggableDatabaseManagementRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnablePluggableDatabaseManagementRequest.java index 17f3b44e0de..c670d0bd5c3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnablePluggableDatabaseManagementRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/EnablePluggableDatabaseManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/FailOverAutonomousDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/FailOverAutonomousDatabaseRequest.java index a9ebcae2854..76cf213e3a2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/FailOverAutonomousDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/FailOverAutonomousDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/FailoverAutonomousContainerDatabaseDataguardAssociationRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/FailoverAutonomousContainerDatabaseDataguardAssociationRequest.java index f81ecfd2ddc..db1bc975b87 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/FailoverAutonomousContainerDatabaseDataguardAssociationRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/FailoverAutonomousContainerDatabaseDataguardAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/FailoverAutonomousContainerDatabaseDataguardRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/FailoverAutonomousContainerDatabaseDataguardRequest.java index b0a0effe476..8fa998f6094 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/FailoverAutonomousContainerDatabaseDataguardRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/FailoverAutonomousContainerDatabaseDataguardRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/FailoverDataGuardAssociationRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/FailoverDataGuardAssociationRequest.java index 354de66b9a8..f02ff96b9cc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/FailoverDataGuardAssociationRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/FailoverDataGuardAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/FailoverDataGuardRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/FailoverDataGuardRequest.java index 68f69e9cb6f..192f083dc8b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/FailoverDataGuardRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/FailoverDataGuardRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GenerateAutonomousDatabaseWalletRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GenerateAutonomousDatabaseWalletRequest.java index 5492b8bf617..ff799f8f2e7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GenerateAutonomousDatabaseWalletRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GenerateAutonomousDatabaseWalletRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GenerateRecommendedVmClusterNetworkRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GenerateRecommendedVmClusterNetworkRequest.java index 0db49eae2f6..709c29685af 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GenerateRecommendedVmClusterNetworkRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GenerateRecommendedVmClusterNetworkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetApplicationVipRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetApplicationVipRequest.java index 6487e4c45e1..681b5ead4bb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetApplicationVipRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetApplicationVipRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousContainerDatabaseDataguardAssociationRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousContainerDatabaseDataguardAssociationRequest.java index 4ed13932877..7aefd42ca60 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousContainerDatabaseDataguardAssociationRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousContainerDatabaseDataguardAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousContainerDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousContainerDatabaseRequest.java index dc0b1a90c42..35d47e76f18 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousContainerDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousContainerDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousContainerDatabaseResourceUsageRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousContainerDatabaseResourceUsageRequest.java index 3c7f60bd1f1..beb344ce5f3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousContainerDatabaseResourceUsageRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousContainerDatabaseResourceUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseBackupRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseBackupRequest.java index b73c2e3b0ac..2dfc3608dd7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseBackupRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseDataguardAssociationRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseDataguardAssociationRequest.java index 3d76ece86b6..11d44b2346e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseDataguardAssociationRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseDataguardAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseRegionalWalletRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseRegionalWalletRequest.java index 576501813ca..570fa5365e2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseRegionalWalletRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseRegionalWalletRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseRequest.java index a0e59f4ddc2..912fbe66183 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseSoftwareImageRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseSoftwareImageRequest.java index 4000ccc30e9..77f11dc28b5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseSoftwareImageRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseSoftwareImageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseWalletRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseWalletRequest.java index d49c6957e82..5704531fed4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseWalletRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousDatabaseWalletRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousExadataInfrastructureRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousExadataInfrastructureRequest.java index be6860066ac..685080005db 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousExadataInfrastructureRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousPatchRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousPatchRequest.java index 7bea545da8e..23e46d0c8a7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousPatchRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousPatchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousVirtualMachineRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousVirtualMachineRequest.java index 14e965bd40c..406fa491809 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousVirtualMachineRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousVirtualMachineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousVmClusterRequest.java index aee30dee85c..ab1ec74fae8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousVmClusterResourceUsageRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousVmClusterResourceUsageRequest.java index 034a254b847..b07164a680a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousVmClusterResourceUsageRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetAutonomousVmClusterResourceUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetBackupDestinationRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetBackupDestinationRequest.java index 3a69a4ed7cb..7d68a50be60 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetBackupDestinationRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetBackupDestinationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetBackupRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetBackupRequest.java index b18fc65e046..ac32f224a00 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetBackupRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudAutonomousVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudAutonomousVmClusterRequest.java index c122a0f35ae..8be48d77b38 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudAutonomousVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudAutonomousVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudAutonomousVmClusterResourceUsageRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudAutonomousVmClusterResourceUsageRequest.java index bbcc71d250a..9eada208f68 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudAutonomousVmClusterResourceUsageRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudAutonomousVmClusterResourceUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudExadataInfrastructureRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudExadataInfrastructureRequest.java index bdb3440973b..98cf048ed3a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudExadataInfrastructureRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudExadataInfrastructureUnallocatedResourcesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudExadataInfrastructureUnallocatedResourcesRequest.java index baa3ce61f2d..aae78498bbc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudExadataInfrastructureUnallocatedResourcesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudExadataInfrastructureUnallocatedResourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudVmClusterIormConfigRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudVmClusterIormConfigRequest.java index 5a6ee1ff5e9..5dc879cc812 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudVmClusterIormConfigRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudVmClusterIormConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudVmClusterRequest.java index 20daee0e99c..95b3bdfbce6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudVmClusterUpdateHistoryEntryRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudVmClusterUpdateHistoryEntryRequest.java index 4946e221bdb..570562c550b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudVmClusterUpdateHistoryEntryRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudVmClusterUpdateHistoryEntryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudVmClusterUpdateRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudVmClusterUpdateRequest.java index 30689c237d3..41431c0a5d1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudVmClusterUpdateRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetCloudVmClusterUpdateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetConsoleConnectionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetConsoleConnectionRequest.java index 7a9ce6b2c2a..2dfe6a1a224 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetConsoleConnectionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetConsoleConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetConsoleHistoryContentRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetConsoleHistoryContentRequest.java index 68e73e35d11..4f925329b45 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetConsoleHistoryContentRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetConsoleHistoryContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetConsoleHistoryRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetConsoleHistoryRequest.java index 289a3e606ce..5753108aab4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetConsoleHistoryRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetConsoleHistoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDataGuardAssociationRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDataGuardAssociationRequest.java index 23e85ddb306..7efb0a2cb41 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDataGuardAssociationRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDataGuardAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDatabaseRequest.java index c24e5a20aa5..9ad68bd3a5d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDatabaseSoftwareImageRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDatabaseSoftwareImageRequest.java index da5ee89fb77..2cd457264e5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDatabaseSoftwareImageRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDatabaseSoftwareImageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDatabaseUpgradeHistoryEntryRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDatabaseUpgradeHistoryEntryRequest.java index d4bbaad81a4..d989fdbd3ce 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDatabaseUpgradeHistoryEntryRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDatabaseUpgradeHistoryEntryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbHomePatchHistoryEntryRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbHomePatchHistoryEntryRequest.java index 9da48fde8d8..6b105ca5e6e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbHomePatchHistoryEntryRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbHomePatchHistoryEntryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbHomePatchRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbHomePatchRequest.java index 34d55207cfd..44363eda35e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbHomePatchRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbHomePatchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbHomeRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbHomeRequest.java index 4d263e6ee40..d93bd8cb288 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbHomeRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbHomeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbNodeRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbNodeRequest.java index 62f07237eb4..33f07ed80b7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbNodeRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbNodeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbServerRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbServerRequest.java index e183f3ebd23..0c36b0df3e0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbServerRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbServerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbSystemPatchHistoryEntryRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbSystemPatchHistoryEntryRequest.java index b9d91bf99b5..7e08a2b9811 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbSystemPatchHistoryEntryRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbSystemPatchHistoryEntryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbSystemPatchRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbSystemPatchRequest.java index 81454a9cb62..133635e29da 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbSystemPatchRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbSystemPatchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbSystemRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbSystemRequest.java index eed31019d33..e42124567af 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbSystemRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbSystemUpgradeHistoryEntryRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbSystemUpgradeHistoryEntryRequest.java index 35f7cfe72d1..1468d33f139 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbSystemUpgradeHistoryEntryRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbSystemUpgradeHistoryEntryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbnodeSnapshotRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbnodeSnapshotRequest.java index 423ce997f2e..792dd3b8438 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbnodeSnapshotRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetDbnodeSnapshotRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadataInfrastructureOcpusRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadataInfrastructureOcpusRequest.java index 900e2fc4d41..a0eb4bbd801 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadataInfrastructureOcpusRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadataInfrastructureOcpusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadataInfrastructureRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadataInfrastructureRequest.java index 29bb75a0100..73096f310ab 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadataInfrastructureRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadataInfrastructureUnAllocatedResourcesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadataInfrastructureUnAllocatedResourcesRequest.java index 9cd607beec9..6c788b04c89 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadataInfrastructureUnAllocatedResourcesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadataInfrastructureUnAllocatedResourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadataIormConfigRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadataIormConfigRequest.java index 5c8bf253ddd..63a857ce0fe 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadataIormConfigRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadataIormConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadbVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadbVmClusterRequest.java index 94713c5a88a..d4c4f9ccd84 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadbVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadbVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadbVmClusterUpdateHistoryEntryRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadbVmClusterUpdateHistoryEntryRequest.java index 3da33828718..960eb35725e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadbVmClusterUpdateHistoryEntryRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadbVmClusterUpdateHistoryEntryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadbVmClusterUpdateRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadbVmClusterUpdateRequest.java index d4b8879d88a..98ace6e17b9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadbVmClusterUpdateRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExadbVmClusterUpdateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExascaleDbStorageVaultRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExascaleDbStorageVaultRequest.java index 9eb86b25b80..1d37a439f17 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExascaleDbStorageVaultRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExascaleDbStorageVaultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExecutionActionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExecutionActionRequest.java index 37676adc993..d09bfdc5258 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExecutionActionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExecutionActionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExecutionWindowRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExecutionWindowRequest.java index e416366a253..6eb1720633b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExecutionWindowRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExecutionWindowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExternalBackupJobRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExternalBackupJobRequest.java index dfc9b4e478a..61156cef8c5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExternalBackupJobRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExternalBackupJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExternalContainerDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExternalContainerDatabaseRequest.java index aebf7cf1afa..589620ceeaf 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExternalContainerDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExternalContainerDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExternalDatabaseConnectorRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExternalDatabaseConnectorRequest.java index 87859802843..ff99f3d4f27 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExternalDatabaseConnectorRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExternalDatabaseConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExternalNonContainerDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExternalNonContainerDatabaseRequest.java index 392086ea675..768be93d909 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExternalNonContainerDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExternalNonContainerDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExternalPluggableDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExternalPluggableDatabaseRequest.java index 70d8ee3500a..66b8b229420 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExternalPluggableDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetExternalPluggableDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetInfrastructureTargetVersionsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetInfrastructureTargetVersionsRequest.java index 405def3a4c0..5d3145202b4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetInfrastructureTargetVersionsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetInfrastructureTargetVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetKeyStoreRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetKeyStoreRequest.java index 423c719f9f2..c0885ffda30 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetKeyStoreRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetKeyStoreRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetMaintenanceRunHistoryRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetMaintenanceRunHistoryRequest.java index 5dff4fea350..112bdb78a8c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetMaintenanceRunHistoryRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetMaintenanceRunHistoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetMaintenanceRunRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetMaintenanceRunRequest.java index 34c5c60af82..0da48c204ed 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetMaintenanceRunRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetMaintenanceRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetOneoffPatchRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetOneoffPatchRequest.java index f84575413aa..105da8a2a93 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetOneoffPatchRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetOneoffPatchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetPdbConversionHistoryEntryRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetPdbConversionHistoryEntryRequest.java index ac22f667ef7..e6f16a504f6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetPdbConversionHistoryEntryRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetPdbConversionHistoryEntryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetPluggableDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetPluggableDatabaseRequest.java index 38fae71f245..69dfc5ba63f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetPluggableDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetPluggableDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetPluggableDatabaseSnapshotRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetPluggableDatabaseSnapshotRequest.java index 26a7c986c92..84461e727ec 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetPluggableDatabaseSnapshotRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetPluggableDatabaseSnapshotRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetScheduledActionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetScheduledActionRequest.java index 3655756cd8c..0aac5292130 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetScheduledActionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetScheduledActionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetSchedulingPlanRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetSchedulingPlanRequest.java index c845551effa..6211ecc2d9d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetSchedulingPlanRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetSchedulingPlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetSchedulingPolicyRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetSchedulingPolicyRequest.java index 3daf928d41b..ffb965470c8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetSchedulingPolicyRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetSchedulingPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetSchedulingWindowRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetSchedulingWindowRequest.java index c439957cb46..61ac012298e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetSchedulingWindowRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetSchedulingWindowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterNetworkRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterNetworkRequest.java index cb7a25074b5..93d5d11ed99 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterNetworkRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterNetworkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterPatchHistoryEntryRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterPatchHistoryEntryRequest.java index 605b0466937..fa0a17696fa 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterPatchHistoryEntryRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterPatchHistoryEntryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterPatchRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterPatchRequest.java index f5a8ff948ed..981294e6a7a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterPatchRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterPatchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterRequest.java index 51a2c0ee608..837a2f714aa 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterUpdateHistoryEntryRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterUpdateHistoryEntryRequest.java index 09dc4c893f6..019e6b56bc6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterUpdateHistoryEntryRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterUpdateHistoryEntryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterUpdateRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterUpdateRequest.java index a24e757dcba..e6193b4d132 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterUpdateRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/GetVmClusterUpdateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/LaunchAutonomousExadataInfrastructureRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/LaunchAutonomousExadataInfrastructureRequest.java index c55a899d640..0a8f2a504f1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/LaunchAutonomousExadataInfrastructureRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/LaunchAutonomousExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/LaunchDbSystemRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/LaunchDbSystemRequest.java index 8872628bc34..9be014b3280 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/LaunchDbSystemRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/LaunchDbSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListApplicationVipsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListApplicationVipsRequest.java index e67cf6c9180..e98a28c49d9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListApplicationVipsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListApplicationVipsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousContainerDatabaseBackupsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousContainerDatabaseBackupsRequest.java index 9725ec980a5..d1578ba36d5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousContainerDatabaseBackupsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousContainerDatabaseBackupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousContainerDatabaseDataguardAssociationsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousContainerDatabaseDataguardAssociationsRequest.java index 76edfd30348..aa8710bf5e1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousContainerDatabaseDataguardAssociationsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousContainerDatabaseDataguardAssociationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousContainerDatabaseVersionsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousContainerDatabaseVersionsRequest.java index 50df459d539..bb6b4998e3b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousContainerDatabaseVersionsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousContainerDatabaseVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousContainerDatabasesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousContainerDatabasesRequest.java index d47cb8d276b..08845a09b5a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousContainerDatabasesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousContainerDatabasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseBackupsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseBackupsRequest.java index ef5542a26a1..ce280a97427 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseBackupsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseBackupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseCharacterSetsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseCharacterSetsRequest.java index baa3ad53330..944a2acd3a5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseCharacterSetsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseCharacterSetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseClonesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseClonesRequest.java index 51677347606..d7c9afa692a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseClonesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseClonesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseDataguardAssociationsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseDataguardAssociationsRequest.java index b801f9b4b3c..fe32955ffe1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseDataguardAssociationsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseDataguardAssociationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabasePeersRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabasePeersRequest.java index 005558083ab..3eb3314788c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabasePeersRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabasePeersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseRefreshableClonesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseRefreshableClonesRequest.java index 6fc1cc9f526..55b61d93a00 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseRefreshableClonesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseRefreshableClonesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseSoftwareImagesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseSoftwareImagesRequest.java index d355d9715a1..97014c4d5a2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseSoftwareImagesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabaseSoftwareImagesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabasesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabasesRequest.java index bed4737c4c0..c85a806e43e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabasesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDatabasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDbPreviewVersionsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDbPreviewVersionsRequest.java index c0de60f640b..9ade6dd912b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDbPreviewVersionsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDbPreviewVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDbVersionsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDbVersionsRequest.java index 6b3d1ba32ed..c9b046607b2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDbVersionsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousDbVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousExadataInfrastructureShapesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousExadataInfrastructureShapesRequest.java index 197d6ed1a72..c5701630171 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousExadataInfrastructureShapesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousExadataInfrastructureShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousExadataInfrastructuresRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousExadataInfrastructuresRequest.java index 9b87af492e9..f387c31a06c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousExadataInfrastructuresRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousExadataInfrastructuresRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousVirtualMachinesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousVirtualMachinesRequest.java index 96eac4cb27e..5b2f0efc88e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousVirtualMachinesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousVirtualMachinesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousVmClusterAcdResourceUsageRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousVmClusterAcdResourceUsageRequest.java index ddc3bd86b03..4fc6e048f57 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousVmClusterAcdResourceUsageRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousVmClusterAcdResourceUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousVmClustersRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousVmClustersRequest.java index 4828c2320d8..2a91621e133 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousVmClustersRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListAutonomousVmClustersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListBackupDestinationRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListBackupDestinationRequest.java index 50bd1fd8926..b76bc53482e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListBackupDestinationRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListBackupDestinationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListBackupsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListBackupsRequest.java index 7d4702ed09d..6c620de4a16 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListBackupsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListBackupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudAutonomousVmClusterAcdResourceUsageRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudAutonomousVmClusterAcdResourceUsageRequest.java index 958933aac83..098fba6f3c8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudAutonomousVmClusterAcdResourceUsageRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudAutonomousVmClusterAcdResourceUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudAutonomousVmClustersRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudAutonomousVmClustersRequest.java index 74ed68f0940..8a9b5985dd5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudAutonomousVmClustersRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudAutonomousVmClustersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudExadataInfrastructuresRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudExadataInfrastructuresRequest.java index de5bdce3d71..7e33a933069 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudExadataInfrastructuresRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudExadataInfrastructuresRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudVmClusterUpdateHistoryEntriesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudVmClusterUpdateHistoryEntriesRequest.java index 017d4e7d587..bd6b8ad2844 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudVmClusterUpdateHistoryEntriesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudVmClusterUpdateHistoryEntriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudVmClusterUpdatesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudVmClusterUpdatesRequest.java index c5bd070c723..d2415ed1f68 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudVmClusterUpdatesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudVmClusterUpdatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudVmClustersRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudVmClustersRequest.java index 91d582ebf9d..8248e343ba2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudVmClustersRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListCloudVmClustersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListConsoleConnectionsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListConsoleConnectionsRequest.java index 054b21336fa..7c4e6077874 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListConsoleConnectionsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListConsoleConnectionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListConsoleHistoriesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListConsoleHistoriesRequest.java index 145c78e6b8f..d57e325ed85 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListConsoleHistoriesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListConsoleHistoriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListContainerDatabasePatchesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListContainerDatabasePatchesRequest.java index 3b65d1c597a..ec4e05bab6d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListContainerDatabasePatchesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListContainerDatabasePatchesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDataGuardAssociationsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDataGuardAssociationsRequest.java index 3cf1f7ee0b4..36e2da722c3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDataGuardAssociationsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDataGuardAssociationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDatabaseSoftwareImagesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDatabaseSoftwareImagesRequest.java index 6cef94137b1..be115d4c469 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDatabaseSoftwareImagesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDatabaseSoftwareImagesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDatabaseUpgradeHistoryEntriesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDatabaseUpgradeHistoryEntriesRequest.java index 331a9a12125..9068dfb3f7f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDatabaseUpgradeHistoryEntriesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDatabaseUpgradeHistoryEntriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDatabasesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDatabasesRequest.java index 4062c12884c..1383bf2ec77 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDatabasesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDatabasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbHomePatchHistoryEntriesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbHomePatchHistoryEntriesRequest.java index 67ae9277a85..a137a42430e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbHomePatchHistoryEntriesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbHomePatchHistoryEntriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbHomePatchesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbHomePatchesRequest.java index 5c8a8ded914..1d8fe75b349 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbHomePatchesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbHomePatchesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbHomesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbHomesRequest.java index ed7720f3c96..39655082f63 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbHomesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbHomesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbNodesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbNodesRequest.java index 2d736903207..2c0e8610d73 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbNodesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbNodesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbServersRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbServersRequest.java index 950d45ad23a..59548ca4e4f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbServersRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbServersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemComputePerformancesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemComputePerformancesRequest.java index 50212038aff..5c4e5260c87 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemComputePerformancesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemComputePerformancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemPatchHistoryEntriesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemPatchHistoryEntriesRequest.java index 9ddefd037d7..3ce32db5037 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemPatchHistoryEntriesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemPatchHistoryEntriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemPatchesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemPatchesRequest.java index 4b44be26d82..d24a4a3f3f8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemPatchesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemPatchesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemShapesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemShapesRequest.java index 251e325e01f..e491ee0ffb9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemShapesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemStoragePerformancesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemStoragePerformancesRequest.java index e153329cd66..1d9e06f2eab 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemStoragePerformancesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemStoragePerformancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemUpgradeHistoryEntriesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemUpgradeHistoryEntriesRequest.java index bfe68872e7f..50f225d69f2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemUpgradeHistoryEntriesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemUpgradeHistoryEntriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemUpgradesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemUpgradesRequest.java index 0457a14b0be..af87d5db705 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemUpgradesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemUpgradesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemsRequest.java index 96aa0836667..281fd6e95cc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbSystemsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbVersionsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbVersionsRequest.java index 7a0cbbddb38..44eca2399e0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbVersionsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbnodeSnapshotsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbnodeSnapshotsRequest.java index eda9d8ff287..dc5896a7d85 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbnodeSnapshotsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListDbnodeSnapshotsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListEstimateCostSavingsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListEstimateCostSavingsRequest.java index dfa3420395e..ca673f5fae2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListEstimateCostSavingsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListEstimateCostSavingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExadataInfrastructuresRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExadataInfrastructuresRequest.java index 378aa691f25..2f1c02d3f71 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExadataInfrastructuresRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExadataInfrastructuresRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExadbVmClusterUpdateHistoryEntriesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExadbVmClusterUpdateHistoryEntriesRequest.java index c7af409fbed..4081d0f8887 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExadbVmClusterUpdateHistoryEntriesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExadbVmClusterUpdateHistoryEntriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExadbVmClusterUpdatesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExadbVmClusterUpdatesRequest.java index 1183bcc8ca3..1598a495fd8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExadbVmClusterUpdatesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExadbVmClusterUpdatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExadbVmClustersRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExadbVmClustersRequest.java index 39e89f792a3..e806f8cb8f4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExadbVmClustersRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExadbVmClustersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExascaleDbStorageVaultsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExascaleDbStorageVaultsRequest.java index 0cfae8ae828..4f35a1bf58e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExascaleDbStorageVaultsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExascaleDbStorageVaultsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExecutionActionsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExecutionActionsRequest.java index 01356361d71..16afa2aaaf3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExecutionActionsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExecutionActionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExecutionWindowsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExecutionWindowsRequest.java index e06a423658c..52ac3eeb3b7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExecutionWindowsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExecutionWindowsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExternalContainerDatabasesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExternalContainerDatabasesRequest.java index 9a8b1bf8051..996c1f720fe 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExternalContainerDatabasesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExternalContainerDatabasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExternalDatabaseConnectorsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExternalDatabaseConnectorsRequest.java index 7299f05a0cf..7561caee13a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExternalDatabaseConnectorsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExternalDatabaseConnectorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExternalNonContainerDatabasesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExternalNonContainerDatabasesRequest.java index da5bf9b9076..122bce63ffa 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExternalNonContainerDatabasesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExternalNonContainerDatabasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExternalPluggableDatabasesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExternalPluggableDatabasesRequest.java index 1fd3e9e9b89..65e411c0707 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExternalPluggableDatabasesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListExternalPluggableDatabasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListFlexComponentsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListFlexComponentsRequest.java index 46aeeda5790..01df834108c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListFlexComponentsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListFlexComponentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListGiVersionMinorVersionsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListGiVersionMinorVersionsRequest.java index a2399d1e90c..987b39bdb53 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListGiVersionMinorVersionsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListGiVersionMinorVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListGiVersionsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListGiVersionsRequest.java index c2d77b4627c..e898b710570 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListGiVersionsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListGiVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListKeyStoresRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListKeyStoresRequest.java index 68dd6b0dd91..577d8afb59c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListKeyStoresRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListKeyStoresRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListMaintenanceRunHistoryRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListMaintenanceRunHistoryRequest.java index abcca638ad9..35bda516311 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListMaintenanceRunHistoryRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListMaintenanceRunHistoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListMaintenanceRunsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListMaintenanceRunsRequest.java index ef5d60ee4d3..77f5f63abf7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListMaintenanceRunsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListMaintenanceRunsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListOneoffPatchesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListOneoffPatchesRequest.java index 0c52bf69ad7..5722acfa7a4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListOneoffPatchesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListOneoffPatchesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListParamsForActionTypeRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListParamsForActionTypeRequest.java index 9e0804c235a..7e378ae4333 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListParamsForActionTypeRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListParamsForActionTypeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListPdbConversionHistoryEntriesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListPdbConversionHistoryEntriesRequest.java index 111fde023b5..eef06d75251 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListPdbConversionHistoryEntriesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListPdbConversionHistoryEntriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListPluggableDatabaseSnapshotsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListPluggableDatabaseSnapshotsRequest.java index 46d618a9eef..f503b4ecbfb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListPluggableDatabaseSnapshotsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListPluggableDatabaseSnapshotsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListPluggableDatabasesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListPluggableDatabasesRequest.java index 17ced6720be..41bdca940dc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListPluggableDatabasesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListPluggableDatabasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListRecommendedScheduledActionsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListRecommendedScheduledActionsRequest.java index 0d0129b0c54..b5129e751cd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListRecommendedScheduledActionsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListRecommendedScheduledActionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListResourcePoolMembersRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListResourcePoolMembersRequest.java index 800c7a9a8a7..96e45f9711f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListResourcePoolMembersRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListResourcePoolMembersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListScheduledActionsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListScheduledActionsRequest.java index 7d18fc8dda1..c4135cfb80d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListScheduledActionsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListScheduledActionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListSchedulingPlansRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListSchedulingPlansRequest.java index b532c42645e..8101d6dc3cf 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListSchedulingPlansRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListSchedulingPlansRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListSchedulingPoliciesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListSchedulingPoliciesRequest.java index 93b902f33c9..74d0a9101ee 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListSchedulingPoliciesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListSchedulingPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListSchedulingWindowsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListSchedulingWindowsRequest.java index efd657cbe9a..8812f053f72 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListSchedulingWindowsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListSchedulingWindowsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListSystemVersionMinorVersionsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListSystemVersionMinorVersionsRequest.java index 0e4bd82609a..a92c8c862c7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListSystemVersionMinorVersionsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListSystemVersionMinorVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListSystemVersionsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListSystemVersionsRequest.java index 29681f066e4..b98f764d7d5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListSystemVersionsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListSystemVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClusterNetworksRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClusterNetworksRequest.java index 0b34c920ce6..d77c4741ccd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClusterNetworksRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClusterNetworksRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClusterPatchHistoryEntriesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClusterPatchHistoryEntriesRequest.java index 761c9266354..9a0aedd872f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClusterPatchHistoryEntriesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClusterPatchHistoryEntriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClusterPatchesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClusterPatchesRequest.java index 22937292bfa..386a5e885cd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClusterPatchesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClusterPatchesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClusterUpdateHistoryEntriesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClusterUpdateHistoryEntriesRequest.java index e2bfe6801f8..61a45b1700a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClusterUpdateHistoryEntriesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClusterUpdateHistoryEntriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClusterUpdatesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClusterUpdatesRequest.java index 0f5b7dff0b3..d35c2ad68de 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClusterUpdatesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClusterUpdatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClustersRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClustersRequest.java index c048ccef3d4..21382a7a65e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClustersRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ListVmClustersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/LocalClonePluggableDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/LocalClonePluggableDatabaseRequest.java index 68a2e1605e7..0d37895a001 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/LocalClonePluggableDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/LocalClonePluggableDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/MigrateAutonomousContainerDatabaseDataguardAssociationRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/MigrateAutonomousContainerDatabaseDataguardAssociationRequest.java index fcd2e3c140f..5c7824c55e2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/MigrateAutonomousContainerDatabaseDataguardAssociationRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/MigrateAutonomousContainerDatabaseDataguardAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/MigrateDataGuardAssociationToMultiDataGuardsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/MigrateDataGuardAssociationToMultiDataGuardsRequest.java index 9925e4fc344..2504a3aafb5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/MigrateDataGuardAssociationToMultiDataGuardsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/MigrateDataGuardAssociationToMultiDataGuardsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/MigrateExadataDbSystemResourceModelRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/MigrateExadataDbSystemResourceModelRequest.java index c49096ee4b4..bb5a92eaa81 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/MigrateExadataDbSystemResourceModelRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/MigrateExadataDbSystemResourceModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/MigrateVaultKeyRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/MigrateVaultKeyRequest.java index 6466c4d07c1..dee7e610e85 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/MigrateVaultKeyRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/MigrateVaultKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ModifyDatabaseManagementRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ModifyDatabaseManagementRequest.java index a3bf70f4d1f..19418126c84 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ModifyDatabaseManagementRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ModifyDatabaseManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ModifyPluggableDatabaseManagementRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ModifyPluggableDatabaseManagementRequest.java index 396e2fadb1d..efa3dc5f84b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ModifyPluggableDatabaseManagementRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ModifyPluggableDatabaseManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/MountDbnodeSnapshotRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/MountDbnodeSnapshotRequest.java index 28f4f46e616..8fb1c170643 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/MountDbnodeSnapshotRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/MountDbnodeSnapshotRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/MoveExecutionActionMemberRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/MoveExecutionActionMemberRequest.java index ed3ed203b93..62b50ac807f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/MoveExecutionActionMemberRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/MoveExecutionActionMemberRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RefreshDataGuardHealthStatusRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RefreshDataGuardHealthStatusRequest.java index f2a8a6098ec..92f0f4fd853 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RefreshDataGuardHealthStatusRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RefreshDataGuardHealthStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RefreshPluggableDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RefreshPluggableDatabaseRequest.java index 5b151704377..0ae2561e4dc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RefreshPluggableDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RefreshPluggableDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RegisterAutonomousDatabaseDataSafeRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RegisterAutonomousDatabaseDataSafeRequest.java index 726b269be40..04dd7f24eb2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RegisterAutonomousDatabaseDataSafeRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RegisterAutonomousDatabaseDataSafeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RegisterCloudVmClusterPkcsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RegisterCloudVmClusterPkcsRequest.java index a177ae79bd4..0aee7f0db2c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RegisterCloudVmClusterPkcsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RegisterCloudVmClusterPkcsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReinstateAutonomousContainerDatabaseDataguardAssociationRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReinstateAutonomousContainerDatabaseDataguardAssociationRequest.java index 0d843c6a472..773b32439c8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReinstateAutonomousContainerDatabaseDataguardAssociationRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReinstateAutonomousContainerDatabaseDataguardAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReinstateAutonomousContainerDatabaseDataguardRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReinstateAutonomousContainerDatabaseDataguardRequest.java index 519438a7b77..afb385125f0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReinstateAutonomousContainerDatabaseDataguardRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReinstateAutonomousContainerDatabaseDataguardRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReinstateDataGuardAssociationRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReinstateDataGuardAssociationRequest.java index 604c9734554..ba89647592d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReinstateDataGuardAssociationRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReinstateDataGuardAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReinstateDataGuardRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReinstateDataGuardRequest.java index bb9032e269f..4e50cc27621 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReinstateDataGuardRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReinstateDataGuardRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RemoteClonePluggableDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RemoteClonePluggableDatabaseRequest.java index e77dda80433..5692d88a988 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RemoteClonePluggableDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RemoteClonePluggableDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RemoveVirtualMachineFromCloudVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RemoveVirtualMachineFromCloudVmClusterRequest.java index 024d19df610..7848c482aea 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RemoveVirtualMachineFromCloudVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RemoveVirtualMachineFromCloudVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RemoveVirtualMachineFromExadbVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RemoveVirtualMachineFromExadbVmClusterRequest.java index 71a1979663c..9009e69f4eb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RemoveVirtualMachineFromExadbVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RemoveVirtualMachineFromExadbVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RemoveVirtualMachineFromVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RemoveVirtualMachineFromVmClusterRequest.java index 121365eaeb3..07f013d0cdb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RemoveVirtualMachineFromVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RemoveVirtualMachineFromVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReorderExecutionActionsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReorderExecutionActionsRequest.java index 6aa9372b710..073c6d4188b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReorderExecutionActionsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReorderExecutionActionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReorderScheduledActionsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReorderScheduledActionsRequest.java index f28ff9014d8..0fb9d26a0c0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReorderScheduledActionsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ReorderScheduledActionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ResizeVmClusterNetworkRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ResizeVmClusterNetworkRequest.java index dc47cf9a020..f9e0a2eadbd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ResizeVmClusterNetworkRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ResizeVmClusterNetworkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ResourcePoolShapesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ResourcePoolShapesRequest.java index 133957fb195..981d113cb6e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ResourcePoolShapesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ResourcePoolShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RestartAutonomousContainerDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RestartAutonomousContainerDatabaseRequest.java index fab56871349..2a36fcc2008 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RestartAutonomousContainerDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RestartAutonomousContainerDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RestartAutonomousDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RestartAutonomousDatabaseRequest.java index 63884decc9d..8cc8b4c8e9d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RestartAutonomousDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RestartAutonomousDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RestoreAutonomousDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RestoreAutonomousDatabaseRequest.java index a7f55d1ea8a..b31df82ddac 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RestoreAutonomousDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RestoreAutonomousDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RestoreDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RestoreDatabaseRequest.java index 3756b5a04a3..58534f74555 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RestoreDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RestoreDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateAutonomousContainerDatabaseEncryptionKeyRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateAutonomousContainerDatabaseEncryptionKeyRequest.java index 2c327379334..aa827025f0c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateAutonomousContainerDatabaseEncryptionKeyRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateAutonomousContainerDatabaseEncryptionKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateAutonomousDatabaseEncryptionKeyRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateAutonomousDatabaseEncryptionKeyRequest.java index b2907736b97..e4d56876d9e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateAutonomousDatabaseEncryptionKeyRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateAutonomousDatabaseEncryptionKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateAutonomousVmClusterOrdsCertsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateAutonomousVmClusterOrdsCertsRequest.java index dcfe54dcb3c..a479aba53b4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateAutonomousVmClusterOrdsCertsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateAutonomousVmClusterOrdsCertsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateAutonomousVmClusterSslCertsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateAutonomousVmClusterSslCertsRequest.java index 058b1c0379d..f994d3c2971 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateAutonomousVmClusterSslCertsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateAutonomousVmClusterSslCertsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateCloudAutonomousVmClusterOrdsCertsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateCloudAutonomousVmClusterOrdsCertsRequest.java index 2de57a424b7..a74277aad2b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateCloudAutonomousVmClusterOrdsCertsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateCloudAutonomousVmClusterOrdsCertsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateCloudAutonomousVmClusterSslCertsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateCloudAutonomousVmClusterSslCertsRequest.java index c12ee5ec80b..5adbc70f0ba 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateCloudAutonomousVmClusterSslCertsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateCloudAutonomousVmClusterSslCertsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateOrdsCertsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateOrdsCertsRequest.java index 8719dabd455..a4d099e3e8e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateOrdsCertsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateOrdsCertsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotatePluggableDatabaseEncryptionKeyRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotatePluggableDatabaseEncryptionKeyRequest.java index 66a6df78a10..c3086939851 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotatePluggableDatabaseEncryptionKeyRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotatePluggableDatabaseEncryptionKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateSslCertsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateSslCertsRequest.java index 2936b7b5254..f8af21c9e58 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateSslCertsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateSslCertsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateVaultKeyRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateVaultKeyRequest.java index 1f6921ceb33..d517acce8ea 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateVaultKeyRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/RotateVaultKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/SaasAdminUserStatusRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/SaasAdminUserStatusRequest.java index 8ded7168ff1..6bf7432b894 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/SaasAdminUserStatusRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/SaasAdminUserStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ScanExternalContainerDatabasePluggableDatabasesRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ScanExternalContainerDatabasePluggableDatabasesRequest.java index 2a738a739dc..96395edb20c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ScanExternalContainerDatabasePluggableDatabasesRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ScanExternalContainerDatabasePluggableDatabasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/SetDbKeyVersionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/SetDbKeyVersionRequest.java index 36aac0c501a..86fc009c49e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/SetDbKeyVersionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/SetDbKeyVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/SetPdbKeyVersionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/SetPdbKeyVersionRequest.java index 2a922fa1a83..3b8ba74788a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/SetPdbKeyVersionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/SetPdbKeyVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ShrinkAutonomousDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ShrinkAutonomousDatabaseRequest.java index e90e2c08a97..e586f65acff 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ShrinkAutonomousDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ShrinkAutonomousDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/StartAutonomousDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/StartAutonomousDatabaseRequest.java index 1353be4fe44..e88d6716d31 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/StartAutonomousDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/StartAutonomousDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/StartPluggableDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/StartPluggableDatabaseRequest.java index a8bfc1f1f79..483c985b5f1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/StartPluggableDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/StartPluggableDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/StopAutonomousDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/StopAutonomousDatabaseRequest.java index b61935f1744..872cd282265 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/StopAutonomousDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/StopAutonomousDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/StopPluggableDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/StopPluggableDatabaseRequest.java index 200fa8a3691..7e466c6b0a0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/StopPluggableDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/StopPluggableDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/SwitchOverDataGuardRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/SwitchOverDataGuardRequest.java index c21260ff59c..7d9ae2d3953 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/SwitchOverDataGuardRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/SwitchOverDataGuardRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/SwitchoverAutonomousContainerDatabaseDataguardAssociationRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/SwitchoverAutonomousContainerDatabaseDataguardAssociationRequest.java index 7e782feaffa..4e5791e59cd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/SwitchoverAutonomousContainerDatabaseDataguardAssociationRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/SwitchoverAutonomousContainerDatabaseDataguardAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/SwitchoverAutonomousContainerDatabaseDataguardRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/SwitchoverAutonomousContainerDatabaseDataguardRequest.java index 835a779a80b..99f1ee011c3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/SwitchoverAutonomousContainerDatabaseDataguardRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/SwitchoverAutonomousContainerDatabaseDataguardRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/SwitchoverAutonomousDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/SwitchoverAutonomousDatabaseRequest.java index 44f5e71ad4a..e037f48962f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/SwitchoverAutonomousDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/SwitchoverAutonomousDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/SwitchoverDataGuardAssociationRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/SwitchoverDataGuardAssociationRequest.java index 9801e88c554..578c2c7cd2e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/SwitchoverDataGuardAssociationRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/SwitchoverDataGuardAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/TerminateAutonomousContainerDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/TerminateAutonomousContainerDatabaseRequest.java index 54376fec9b0..f15ba1eb09c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/TerminateAutonomousContainerDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/TerminateAutonomousContainerDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/TerminateAutonomousExadataInfrastructureRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/TerminateAutonomousExadataInfrastructureRequest.java index 8cf5eda55b9..939c834c9e7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/TerminateAutonomousExadataInfrastructureRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/TerminateAutonomousExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/TerminateDbSystemRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/TerminateDbSystemRequest.java index 84f1df37eb3..ebc9030b371 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/TerminateDbSystemRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/TerminateDbSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UnmountDbnodeSnapshotRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UnmountDbnodeSnapshotRequest.java index c023b4b3855..f9929c76b36 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UnmountDbnodeSnapshotRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UnmountDbnodeSnapshotRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UnregisterCloudVmClusterPkcsRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UnregisterCloudVmClusterPkcsRequest.java index c31768306da..798c8340b29 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UnregisterCloudVmClusterPkcsRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UnregisterCloudVmClusterPkcsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousContainerDatabaseDataguardAssociationRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousContainerDatabaseDataguardAssociationRequest.java index e2c0514d386..ef0c8735bfa 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousContainerDatabaseDataguardAssociationRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousContainerDatabaseDataguardAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousContainerDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousContainerDatabaseRequest.java index b19502d2cec..8f254a32b5e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousContainerDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousContainerDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousDatabaseBackupRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousDatabaseBackupRequest.java index 08a649885dd..6663b3c407c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousDatabaseBackupRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousDatabaseBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousDatabaseRegionalWalletRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousDatabaseRegionalWalletRequest.java index bbcb46d2c36..f9194e3d4e5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousDatabaseRegionalWalletRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousDatabaseRegionalWalletRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousDatabaseRequest.java index b98c6e37eb9..f992fea2f47 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousDatabaseSoftwareImageRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousDatabaseSoftwareImageRequest.java index 0f6c6fd5b37..ad6219c1a25 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousDatabaseSoftwareImageRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousDatabaseSoftwareImageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousDatabaseWalletRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousDatabaseWalletRequest.java index ef76be3535b..5e7e1c66b43 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousDatabaseWalletRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousDatabaseWalletRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousExadataInfrastructureRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousExadataInfrastructureRequest.java index 22f85803e33..eff8d469c7e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousExadataInfrastructureRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousVmClusterRequest.java index 6565368afc3..14343b01a4b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateAutonomousVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateBackupDestinationRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateBackupDestinationRequest.java index 1bb02014ee3..df9c26cfd30 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateBackupDestinationRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateBackupDestinationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateBackupRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateBackupRequest.java index 39a97413379..c68bd919822 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateBackupRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateCloudAutonomousVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateCloudAutonomousVmClusterRequest.java index d3631c65ef5..63bc205847c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateCloudAutonomousVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateCloudAutonomousVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateCloudExadataInfrastructureRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateCloudExadataInfrastructureRequest.java index d0eec772768..1ad3a8685d0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateCloudExadataInfrastructureRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateCloudExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateCloudVmClusterIormConfigRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateCloudVmClusterIormConfigRequest.java index 8c939814f40..f57ee91b9e3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateCloudVmClusterIormConfigRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateCloudVmClusterIormConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateCloudVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateCloudVmClusterRequest.java index 0a86d28b9d4..d6f924c53ba 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateCloudVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateCloudVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateConsoleConnectionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateConsoleConnectionRequest.java index 60722ddd999..6ef21a230f5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateConsoleConnectionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateConsoleConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateConsoleHistoryRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateConsoleHistoryRequest.java index bfe3dc8a058..8d42546eaf6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateConsoleHistoryRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateConsoleHistoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDataGuardAssociationRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDataGuardAssociationRequest.java index 2c18fa89d47..b788be5d4eb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDataGuardAssociationRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDataGuardAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDataGuardRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDataGuardRequest.java index 0f30c0bd490..3ae15f71d66 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDataGuardRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDataGuardRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDatabaseRequest.java index 29e90f76f31..708ca713fb3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDatabaseSoftwareImageRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDatabaseSoftwareImageRequest.java index 263b7c744e2..550bb1b6abe 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDatabaseSoftwareImageRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDatabaseSoftwareImageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDbHomeRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDbHomeRequest.java index e3d52893adf..72bec7a5ab3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDbHomeRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDbHomeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDbNodeRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDbNodeRequest.java index 7f710a6962c..5a4bde5c21f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDbNodeRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDbNodeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDbSystemRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDbSystemRequest.java index 6a1885326c2..dafa3fb2c06 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDbSystemRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateDbSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExadataInfrastructureRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExadataInfrastructureRequest.java index 0b34c958c5f..8f0c5965236 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExadataInfrastructureRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExadataIormConfigRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExadataIormConfigRequest.java index 2b543fe90fd..4966283f722 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExadataIormConfigRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExadataIormConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExadbVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExadbVmClusterRequest.java index a6903b1cbdc..c2f23245005 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExadbVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExadbVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExascaleDbStorageVaultRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExascaleDbStorageVaultRequest.java index 5d463023ba9..f92f87b88f7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExascaleDbStorageVaultRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExascaleDbStorageVaultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExecutionActionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExecutionActionRequest.java index 347caec8ff9..8d218ea82a0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExecutionActionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExecutionActionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExecutionWindowRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExecutionWindowRequest.java index 22a3f2e4550..f8be64e160a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExecutionWindowRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExecutionWindowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExternalContainerDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExternalContainerDatabaseRequest.java index d41065d3cef..9621e2199bd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExternalContainerDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExternalContainerDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExternalDatabaseConnectorRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExternalDatabaseConnectorRequest.java index 1e327f5299a..49fa11708bb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExternalDatabaseConnectorRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExternalDatabaseConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExternalNonContainerDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExternalNonContainerDatabaseRequest.java index 7cdb28eba4b..031b86848de 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExternalNonContainerDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExternalNonContainerDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExternalPluggableDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExternalPluggableDatabaseRequest.java index 026af94aa37..e6d14522743 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExternalPluggableDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateExternalPluggableDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateKeyStoreRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateKeyStoreRequest.java index 4d52a179577..38760d30bce 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateKeyStoreRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateKeyStoreRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateMaintenanceRunRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateMaintenanceRunRequest.java index d07fcec6b76..d9de43ac282 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateMaintenanceRunRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateMaintenanceRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateOneoffPatchRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateOneoffPatchRequest.java index 3c63d0fa54b..ee4f0585b18 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateOneoffPatchRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateOneoffPatchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdatePluggableDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdatePluggableDatabaseRequest.java index 72542c2fc2f..2efcfe17b5d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdatePluggableDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdatePluggableDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateScheduledActionRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateScheduledActionRequest.java index c1096f30251..db76128b448 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateScheduledActionRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateScheduledActionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateSchedulingPolicyRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateSchedulingPolicyRequest.java index beb9fea90d9..d448986e3d5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateSchedulingPolicyRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateSchedulingPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateSchedulingWindowRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateSchedulingWindowRequest.java index 221ea65e78a..edc133c963c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateSchedulingWindowRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateSchedulingWindowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateVmClusterNetworkRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateVmClusterNetworkRequest.java index 6c02724d72f..d2c61554740 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateVmClusterNetworkRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateVmClusterNetworkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateVmClusterRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateVmClusterRequest.java index 73280583b2c..7670967481d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateVmClusterRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpdateVmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpgradeDatabaseRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpgradeDatabaseRequest.java index b91407b85ad..af9256ae7f0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpgradeDatabaseRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpgradeDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpgradeDbSystemRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpgradeDbSystemRequest.java index 8e8613bf1e8..7ded933875a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpgradeDbSystemRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/UpgradeDbSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ValidateVmClusterNetworkRequest.java b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ValidateVmClusterNetworkRequest.java index 0e186752d7b..b27cc5ad362 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/requests/ValidateVmClusterNetworkRequest.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/requests/ValidateVmClusterNetworkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.requests; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ActivateExadataInfrastructureResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ActivateExadataInfrastructureResponse.java index ca47b09d2c7..eb11a41b5ff 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ActivateExadataInfrastructureResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ActivateExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddDbnodeSnapshotsForExadbVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddDbnodeSnapshotsForExadbVmClusterResponse.java index 4af5586af01..18102bc2999 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddDbnodeSnapshotsForExadbVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddDbnodeSnapshotsForExadbVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddStandbyAutonomousContainerDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddStandbyAutonomousContainerDatabaseResponse.java index 73908603736..b80df3d93e6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddStandbyAutonomousContainerDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddStandbyAutonomousContainerDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddStorageCapacityCloudExadataInfrastructureResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddStorageCapacityCloudExadataInfrastructureResponse.java index 9fcd9333814..f5951e17f4f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddStorageCapacityCloudExadataInfrastructureResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddStorageCapacityCloudExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddStorageCapacityExadataInfrastructureResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddStorageCapacityExadataInfrastructureResponse.java index 9e3e6107ff6..b3b6d4e010d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddStorageCapacityExadataInfrastructureResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddStorageCapacityExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddVirtualMachineToCloudVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddVirtualMachineToCloudVmClusterResponse.java index ab5f3e08bfe..d9b6f766445 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddVirtualMachineToCloudVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddVirtualMachineToCloudVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddVirtualMachineToVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddVirtualMachineToVmClusterResponse.java index 34eac1cfc84..552cddf89db 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddVirtualMachineToVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/AddVirtualMachineToVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/AutonomousDatabaseManualRefreshResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/AutonomousDatabaseManualRefreshResponse.java index 174ca4ed8fd..1067f07c0e3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/AutonomousDatabaseManualRefreshResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/AutonomousDatabaseManualRefreshResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CancelBackupResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CancelBackupResponse.java index 933a33566d5..53a3cebdf8c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CancelBackupResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CancelBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CancelExecutionWindowResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CancelExecutionWindowResponse.java index 88fea66abbf..a3003b88d92 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CancelExecutionWindowResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CancelExecutionWindowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CascadingDeleteSchedulingPlanResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CascadingDeleteSchedulingPlanResponse.java index 9c068db79a9..8ee26356362 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CascadingDeleteSchedulingPlanResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CascadingDeleteSchedulingPlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousContainerDatabaseCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousContainerDatabaseCompartmentResponse.java index 1f834a43737..d02c8f0ee58 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousContainerDatabaseCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousContainerDatabaseCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousDatabaseCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousDatabaseCompartmentResponse.java index 8eb19aa7b6f..d4d8ac23349 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousDatabaseCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousDatabaseCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousDatabaseSoftwareImageCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousDatabaseSoftwareImageCompartmentResponse.java index c27c7616f09..8ba15b6ecb5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousDatabaseSoftwareImageCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousDatabaseSoftwareImageCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousDatabaseSubscriptionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousDatabaseSubscriptionResponse.java index 69aaa0e0f0d..479fdab9a18 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousDatabaseSubscriptionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousDatabaseSubscriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousExadataInfrastructureCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousExadataInfrastructureCompartmentResponse.java index 7a873bf5d30..04def84acf8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousExadataInfrastructureCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousExadataInfrastructureCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousVmClusterCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousVmClusterCompartmentResponse.java index 5f1c0bb8d4f..e987dd00f30 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousVmClusterCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeAutonomousVmClusterCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeBackupDestinationCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeBackupDestinationCompartmentResponse.java index d979d2361c3..7e441477fa3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeBackupDestinationCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeBackupDestinationCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudAutonomousVmClusterCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudAutonomousVmClusterCompartmentResponse.java index c2dc1de7087..efa74c307c0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudAutonomousVmClusterCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudAutonomousVmClusterCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudAutonomousVmClusterSubscriptionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudAutonomousVmClusterSubscriptionResponse.java index cf8517fe2da..58346f74fb1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudAutonomousVmClusterSubscriptionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudAutonomousVmClusterSubscriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudDbSystemSubscriptionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudDbSystemSubscriptionResponse.java index 3d729af8440..36e3ddd9947 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudDbSystemSubscriptionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudDbSystemSubscriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudExadataInfrastructureCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudExadataInfrastructureCompartmentResponse.java index 9f38e0d751f..6a1028751b9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudExadataInfrastructureCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudExadataInfrastructureCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudExadataInfrastructureSubscriptionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudExadataInfrastructureSubscriptionResponse.java index ea8ccb3adb9..6c567091570 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudExadataInfrastructureSubscriptionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudExadataInfrastructureSubscriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudVmClusterCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudVmClusterCompartmentResponse.java index 17809b9f5e1..58ca172e87b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudVmClusterCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudVmClusterCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudVmClusterSubscriptionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudVmClusterSubscriptionResponse.java index bef0a23e8a5..24dca007091 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudVmClusterSubscriptionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeCloudVmClusterSubscriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeDatabaseSoftwareImageCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeDatabaseSoftwareImageCompartmentResponse.java index 85c2e6b33a3..b4545536e8d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeDatabaseSoftwareImageCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeDatabaseSoftwareImageCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeDataguardRoleResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeDataguardRoleResponse.java index 26982f9db9e..4dec4997d87 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeDataguardRoleResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeDataguardRoleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeDbSystemCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeDbSystemCompartmentResponse.java index 6b2fd79d99a..561847fde4d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeDbSystemCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeDbSystemCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeDisasterRecoveryConfigurationResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeDisasterRecoveryConfigurationResponse.java index 4e0c2a0d3f0..099f003bc1b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeDisasterRecoveryConfigurationResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeDisasterRecoveryConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeEncryptionKeyLocationResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeEncryptionKeyLocationResponse.java index 2c471786796..33fd1d693b3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeEncryptionKeyLocationResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeEncryptionKeyLocationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExadataInfrastructureCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExadataInfrastructureCompartmentResponse.java index 9561ebb94f7..886b20aabfd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExadataInfrastructureCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExadataInfrastructureCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExadbVmClusterCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExadbVmClusterCompartmentResponse.java index c5c8f2d79fb..492e6ffb4c2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExadbVmClusterCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExadbVmClusterCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExadbVmClusterSubscriptionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExadbVmClusterSubscriptionResponse.java index 7dbca9e337f..48015d2a22b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExadbVmClusterSubscriptionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExadbVmClusterSubscriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExascaleDbStorageVaultCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExascaleDbStorageVaultCompartmentResponse.java index b14ab48eac2..894547e9e8f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExascaleDbStorageVaultCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExascaleDbStorageVaultCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExascaleDbStorageVaultSubscriptionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExascaleDbStorageVaultSubscriptionResponse.java index 7f72e68c8a7..e78b69b28ac 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExascaleDbStorageVaultSubscriptionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExascaleDbStorageVaultSubscriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExternalContainerDatabaseCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExternalContainerDatabaseCompartmentResponse.java index 76adb42ad8b..c8f6e0484d8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExternalContainerDatabaseCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExternalContainerDatabaseCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExternalNonContainerDatabaseCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExternalNonContainerDatabaseCompartmentResponse.java index 8f8b585ef54..cdba74bc715 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExternalNonContainerDatabaseCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExternalNonContainerDatabaseCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExternalPluggableDatabaseCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExternalPluggableDatabaseCompartmentResponse.java index ebb5b6eced5..9be1e1dbc4f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExternalPluggableDatabaseCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeExternalPluggableDatabaseCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeKeyStoreCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeKeyStoreCompartmentResponse.java index 4a562538951..9322b387842 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeKeyStoreCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeKeyStoreCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeKeyStoreTypeResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeKeyStoreTypeResponse.java index 2126667b609..59472eeccbd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeKeyStoreTypeResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeKeyStoreTypeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeOneoffPatchCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeOneoffPatchCompartmentResponse.java index d02ea3b4b26..256cd7c5ed7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeOneoffPatchCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeOneoffPatchCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeSchedulingPlanCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeSchedulingPlanCompartmentResponse.java index a298249c25f..73a708cda31 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeSchedulingPlanCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeSchedulingPlanCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeSchedulingPolicyCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeSchedulingPolicyCompartmentResponse.java index 674f94ac5f2..8621abd2cea 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeSchedulingPolicyCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeSchedulingPolicyCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeVmClusterCompartmentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeVmClusterCompartmentResponse.java index a3daeb621b0..36a69d49a2d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeVmClusterCompartmentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ChangeVmClusterCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CheckExternalDatabaseConnectorConnectionStatusResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CheckExternalDatabaseConnectorConnectionStatusResponse.java index 173f18dbc24..cfd4d86754a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CheckExternalDatabaseConnectorConnectionStatusResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CheckExternalDatabaseConnectorConnectionStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CompleteExternalBackupJobResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CompleteExternalBackupJobResponse.java index 61f82ebb812..abf978ab68a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CompleteExternalBackupJobResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CompleteExternalBackupJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConfigureAutonomousDatabaseVaultKeyResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConfigureAutonomousDatabaseVaultKeyResponse.java index 05179c45537..c358b247298 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConfigureAutonomousDatabaseVaultKeyResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConfigureAutonomousDatabaseVaultKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConfigureExascaleCloudExadataInfrastructureResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConfigureExascaleCloudExadataInfrastructureResponse.java index d20d4fe3ceb..2dd7eba748c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConfigureExascaleCloudExadataInfrastructureResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConfigureExascaleCloudExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConfigureExascaleExadataInfrastructureResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConfigureExascaleExadataInfrastructureResponse.java index 939adcad848..91682e2f84e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConfigureExascaleExadataInfrastructureResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConfigureExascaleExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConfigureSaasAdminUserResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConfigureSaasAdminUserResponse.java index b123b4f701b..263bc46d6cf 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConfigureSaasAdminUserResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConfigureSaasAdminUserResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConfirmKeyStoreDetailsAreCorrectResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConfirmKeyStoreDetailsAreCorrectResponse.java index 79ca8a17969..49383b2cafe 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConfirmKeyStoreDetailsAreCorrectResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConfirmKeyStoreDetailsAreCorrectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConvertStandbyAutonomousContainerDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConvertStandbyAutonomousContainerDatabaseResponse.java index e126ffd10ae..7edaa1e445c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConvertStandbyAutonomousContainerDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConvertStandbyAutonomousContainerDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConvertStandbyDatabaseTypeResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConvertStandbyDatabaseTypeResponse.java index 59a894bd35d..3ceab3564ad 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConvertStandbyDatabaseTypeResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConvertStandbyDatabaseTypeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConvertToPdbResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConvertToPdbResponse.java index b0519237e72..6e65d2cb38b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConvertToPdbResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConvertToPdbResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConvertToRegularPluggableDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConvertToRegularPluggableDatabaseResponse.java index 5c526be19d6..86853bcb0c9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConvertToRegularPluggableDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConvertToRegularPluggableDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConvertToStandaloneResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConvertToStandaloneResponse.java index 9e9a5922251..a3c7efe0e70 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConvertToStandaloneResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ConvertToStandaloneResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateApplicationVipResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateApplicationVipResponse.java index ce74138e9ab..31068e3ccb8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateApplicationVipResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateApplicationVipResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousContainerDatabaseDataguardAssociationResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousContainerDatabaseDataguardAssociationResponse.java index ab9c9a30e66..b8d4274a03b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousContainerDatabaseDataguardAssociationResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousContainerDatabaseDataguardAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousContainerDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousContainerDatabaseResponse.java index 7558d2d8cb4..2e780c6b47e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousContainerDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousContainerDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousDatabaseBackupResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousDatabaseBackupResponse.java index 0fe89792200..755f14f33c0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousDatabaseBackupResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousDatabaseBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousDatabaseResponse.java index 58db59b4190..699bb15f851 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousDatabaseSoftwareImageResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousDatabaseSoftwareImageResponse.java index b7fb5797f77..7e5b3291f23 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousDatabaseSoftwareImageResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousDatabaseSoftwareImageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousVmClusterResponse.java index a58c2927aaf..b08ca325994 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateAutonomousVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateBackupDestinationResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateBackupDestinationResponse.java index 9bd3d58354e..9c7f0b7eee4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateBackupDestinationResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateBackupDestinationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateBackupResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateBackupResponse.java index c2da1977df3..cb43790ab55 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateBackupResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateCloudAutonomousVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateCloudAutonomousVmClusterResponse.java index 52e8a768797..b0240f3bf5a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateCloudAutonomousVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateCloudAutonomousVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateCloudExadataInfrastructureResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateCloudExadataInfrastructureResponse.java index 3a85f7e1aee..76f8eb0cbbf 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateCloudExadataInfrastructureResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateCloudExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateCloudVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateCloudVmClusterResponse.java index 71a3c90008f..6bedc23de86 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateCloudVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateCloudVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateConsoleConnectionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateConsoleConnectionResponse.java index eb70160bb82..4c9d1056d9b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateConsoleConnectionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateConsoleConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateConsoleHistoryResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateConsoleHistoryResponse.java index 0b233cd3563..be23accaf14 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateConsoleHistoryResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateConsoleHistoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateDataGuardAssociationResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateDataGuardAssociationResponse.java index cdf1554fd50..3c0ab620f01 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateDataGuardAssociationResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateDataGuardAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateDatabaseResponse.java index 83f01555be6..0f16640319f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateDatabaseSoftwareImageResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateDatabaseSoftwareImageResponse.java index 7e9246cb0be..f51cf8c67db 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateDatabaseSoftwareImageResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateDatabaseSoftwareImageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateDbHomeResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateDbHomeResponse.java index 9cbe0a58490..cc62286da10 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateDbHomeResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateDbHomeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExadataInfrastructureResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExadataInfrastructureResponse.java index 4f65aad4bbb..d818afe09f2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExadataInfrastructureResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExadbVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExadbVmClusterResponse.java index 60205c61554..f4c0bddf74b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExadbVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExadbVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExascaleDbStorageVaultResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExascaleDbStorageVaultResponse.java index 7f27247f63a..b099b9a7b94 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExascaleDbStorageVaultResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExascaleDbStorageVaultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExecutionActionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExecutionActionResponse.java index ba609794c7e..925c84b4e4c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExecutionActionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExecutionActionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExecutionWindowResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExecutionWindowResponse.java index f1c4de8ae27..35c80b028d7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExecutionWindowResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExecutionWindowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExternalBackupJobResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExternalBackupJobResponse.java index f23e6e5e1e8..ba0183a3b54 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExternalBackupJobResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExternalBackupJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExternalContainerDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExternalContainerDatabaseResponse.java index ced2370f148..a4f93cf578f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExternalContainerDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExternalContainerDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExternalDatabaseConnectorResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExternalDatabaseConnectorResponse.java index 7d4f7299b83..e612c13edfe 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExternalDatabaseConnectorResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExternalDatabaseConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExternalNonContainerDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExternalNonContainerDatabaseResponse.java index f61dc65faa6..5b7f70bff52 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExternalNonContainerDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExternalNonContainerDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExternalPluggableDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExternalPluggableDatabaseResponse.java index 3cbc4a34aaf..473adf6bc7f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExternalPluggableDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateExternalPluggableDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateKeyStoreResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateKeyStoreResponse.java index a68c108a2eb..af1b98b383a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateKeyStoreResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateKeyStoreResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateMaintenanceRunResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateMaintenanceRunResponse.java index 0df6ffa9d48..be683211451 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateMaintenanceRunResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateMaintenanceRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateOneoffPatchResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateOneoffPatchResponse.java index dd77cc271e3..935c0f28deb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateOneoffPatchResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateOneoffPatchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreatePluggableDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreatePluggableDatabaseResponse.java index 1dce6fb4d4c..9af86c82f8c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreatePluggableDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreatePluggableDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreatePluggableDatabaseSnapshotResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreatePluggableDatabaseSnapshotResponse.java index 8bff5b86280..d1d16d543a4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreatePluggableDatabaseSnapshotResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreatePluggableDatabaseSnapshotResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateScheduledActionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateScheduledActionResponse.java index e6771bc2024..7bc4c0fa697 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateScheduledActionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateScheduledActionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateSchedulingPlanResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateSchedulingPlanResponse.java index 7aaabc09816..e95f69d83a6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateSchedulingPlanResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateSchedulingPlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateSchedulingPolicyResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateSchedulingPolicyResponse.java index c116f60eb28..d95ef71c0bd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateSchedulingPolicyResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateSchedulingPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateSchedulingWindowResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateSchedulingWindowResponse.java index 13954435394..836904d53a8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateSchedulingWindowResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateSchedulingWindowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateVmClusterNetworkResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateVmClusterNetworkResponse.java index d3e66d7cda8..55e078a42e1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateVmClusterNetworkResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateVmClusterNetworkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateVmClusterResponse.java index 49ace87d3e2..42ab127be75 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/CreateVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DbNodeActionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DbNodeActionResponse.java index 2352b5b57d2..bd975bb60c5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DbNodeActionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DbNodeActionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteApplicationVipResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteApplicationVipResponse.java index 5cecf8add90..ffcd08c6685 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteApplicationVipResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteApplicationVipResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteAutonomousDatabaseBackupResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteAutonomousDatabaseBackupResponse.java index 22743828564..974cea63ec4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteAutonomousDatabaseBackupResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteAutonomousDatabaseBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteAutonomousDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteAutonomousDatabaseResponse.java index 55d7bf28957..c744e507ad2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteAutonomousDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteAutonomousDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteAutonomousDatabaseSoftwareImageResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteAutonomousDatabaseSoftwareImageResponse.java index 7396bb1dfaa..5ebb4b56cfb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteAutonomousDatabaseSoftwareImageResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteAutonomousDatabaseSoftwareImageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteAutonomousVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteAutonomousVmClusterResponse.java index 44305934030..6aead486ea4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteAutonomousVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteAutonomousVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteBackupDestinationResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteBackupDestinationResponse.java index 5c0371a1a6f..d011907a006 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteBackupDestinationResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteBackupDestinationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteBackupResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteBackupResponse.java index 19dab868c5d..c7f38f04791 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteBackupResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteCloudAutonomousVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteCloudAutonomousVmClusterResponse.java index 75abf34fb1d..c620798b38b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteCloudAutonomousVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteCloudAutonomousVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteCloudExadataInfrastructureResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteCloudExadataInfrastructureResponse.java index 2cb8a86131c..2c58f5d24df 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteCloudExadataInfrastructureResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteCloudExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteCloudVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteCloudVmClusterResponse.java index a0ac8957c29..fc9af5e16a9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteCloudVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteCloudVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteConsoleConnectionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteConsoleConnectionResponse.java index 11dd38185ac..7e5a83c4c84 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteConsoleConnectionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteConsoleConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteConsoleHistoryResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteConsoleHistoryResponse.java index 2cfbabcac7a..0a87e557c36 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteConsoleHistoryResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteConsoleHistoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteDatabaseResponse.java index 1d7ebb58258..b05cd9cd8fa 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteDatabaseSoftwareImageResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteDatabaseSoftwareImageResponse.java index 5e4112a5d0c..21dff52d6f1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteDatabaseSoftwareImageResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteDatabaseSoftwareImageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteDbHomeResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteDbHomeResponse.java index 8593ff37db2..8fc4c0411b5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteDbHomeResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteDbHomeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteDbnodeSnapshotResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteDbnodeSnapshotResponse.java index 0018fbdd621..3bf4398e6ad 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteDbnodeSnapshotResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteDbnodeSnapshotResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExadataInfrastructureResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExadataInfrastructureResponse.java index 0ccce84c201..f5808fc2611 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExadataInfrastructureResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExadbVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExadbVmClusterResponse.java index 23f36279895..d02560af262 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExadbVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExadbVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExascaleDbStorageVaultResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExascaleDbStorageVaultResponse.java index 742c2451bc3..06464fd7619 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExascaleDbStorageVaultResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExascaleDbStorageVaultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExecutionActionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExecutionActionResponse.java index df59e8df939..1e4537598f0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExecutionActionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExecutionActionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExecutionWindowResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExecutionWindowResponse.java index b16c6637dc3..213dfce51c5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExecutionWindowResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExecutionWindowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExternalContainerDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExternalContainerDatabaseResponse.java index 02e87ece978..66bf240c5fe 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExternalContainerDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExternalContainerDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExternalDatabaseConnectorResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExternalDatabaseConnectorResponse.java index 79540926df6..ca261c5b3c0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExternalDatabaseConnectorResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExternalDatabaseConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExternalNonContainerDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExternalNonContainerDatabaseResponse.java index 3164b7358a2..2fa9a92e538 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExternalNonContainerDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExternalNonContainerDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExternalPluggableDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExternalPluggableDatabaseResponse.java index 5abe4fc5add..2050ac32fe9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExternalPluggableDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteExternalPluggableDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteKeyStoreResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteKeyStoreResponse.java index 4d2d2edbf0d..b9b7d40411e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteKeyStoreResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteKeyStoreResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteOneoffPatchResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteOneoffPatchResponse.java index 6a9d9a117b2..7092fdf9844 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteOneoffPatchResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteOneoffPatchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeletePluggableDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeletePluggableDatabaseResponse.java index a0566d06adf..29363763350 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeletePluggableDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeletePluggableDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeletePluggableDatabaseSnapshotResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeletePluggableDatabaseSnapshotResponse.java index 0e8b8832082..7eee3b9a6e8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeletePluggableDatabaseSnapshotResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeletePluggableDatabaseSnapshotResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteScheduledActionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteScheduledActionResponse.java index 8db4c64a0d1..9f0ee333dff 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteScheduledActionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteScheduledActionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteSchedulingPlanResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteSchedulingPlanResponse.java index 8f7f6b66157..f2562a5f536 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteSchedulingPlanResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteSchedulingPlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteSchedulingPolicyResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteSchedulingPolicyResponse.java index 506736c4fd4..0210e297295 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteSchedulingPolicyResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteSchedulingPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteSchedulingWindowResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteSchedulingWindowResponse.java index bb28b4eefe9..040a0c2da26 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteSchedulingWindowResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteSchedulingWindowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteVmClusterNetworkResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteVmClusterNetworkResponse.java index 077bd6b47c4..5bf23affe41 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteVmClusterNetworkResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteVmClusterNetworkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteVmClusterResponse.java index 57d7b43ea35..82ee795a749 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeleteVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeregisterAutonomousDatabaseDataSafeResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeregisterAutonomousDatabaseDataSafeResponse.java index 024001a51d7..7c2f03e6f75 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeregisterAutonomousDatabaseDataSafeResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DeregisterAutonomousDatabaseDataSafeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableAutonomousDatabaseManagementResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableAutonomousDatabaseManagementResponse.java index 4b21aa30894..39b7c0fa692 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableAutonomousDatabaseManagementResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableAutonomousDatabaseManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableAutonomousDatabaseOperationsInsightsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableAutonomousDatabaseOperationsInsightsResponse.java index f89216e8ace..ff2ab6d0abf 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableAutonomousDatabaseOperationsInsightsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableAutonomousDatabaseOperationsInsightsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableDatabaseManagementResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableDatabaseManagementResponse.java index a02e4508ec2..4c1481eb6a7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableDatabaseManagementResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableDatabaseManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalContainerDatabaseDatabaseManagementResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalContainerDatabaseDatabaseManagementResponse.java index 833f63a2cdf..3febc308fa3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalContainerDatabaseDatabaseManagementResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalContainerDatabaseDatabaseManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalContainerDatabaseStackMonitoringResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalContainerDatabaseStackMonitoringResponse.java index 42fbda383eb..2d02f11e5d2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalContainerDatabaseStackMonitoringResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalContainerDatabaseStackMonitoringResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalNonContainerDatabaseDatabaseManagementResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalNonContainerDatabaseDatabaseManagementResponse.java index 9a7623dc722..21129781dcc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalNonContainerDatabaseDatabaseManagementResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalNonContainerDatabaseDatabaseManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalNonContainerDatabaseOperationsInsightsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalNonContainerDatabaseOperationsInsightsResponse.java index 725183994ce..141dcc4515a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalNonContainerDatabaseOperationsInsightsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalNonContainerDatabaseOperationsInsightsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalNonContainerDatabaseStackMonitoringResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalNonContainerDatabaseStackMonitoringResponse.java index 2d4518a979d..a69cc320291 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalNonContainerDatabaseStackMonitoringResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalNonContainerDatabaseStackMonitoringResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalPluggableDatabaseDatabaseManagementResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalPluggableDatabaseDatabaseManagementResponse.java index 070250da3c8..0e0332e31c2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalPluggableDatabaseDatabaseManagementResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalPluggableDatabaseDatabaseManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalPluggableDatabaseOperationsInsightsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalPluggableDatabaseOperationsInsightsResponse.java index ef846b829bd..4693d6296e8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalPluggableDatabaseOperationsInsightsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalPluggableDatabaseOperationsInsightsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalPluggableDatabaseStackMonitoringResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalPluggableDatabaseStackMonitoringResponse.java index 9e6717c5dea..4324378429c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalPluggableDatabaseStackMonitoringResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisableExternalPluggableDatabaseStackMonitoringResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisablePluggableDatabaseManagementResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisablePluggableDatabaseManagementResponse.java index f7aeadfbd6a..f56c6f89868 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisablePluggableDatabaseManagementResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DisablePluggableDatabaseManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DownloadExadataInfrastructureConfigFileResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DownloadExadataInfrastructureConfigFileResponse.java index c2bdab8bf82..adb9f7cdbfa 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DownloadExadataInfrastructureConfigFileResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DownloadExadataInfrastructureConfigFileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DownloadOneoffPatchResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DownloadOneoffPatchResponse.java index 7692bac9cbe..179a4a79e10 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DownloadOneoffPatchResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DownloadOneoffPatchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DownloadValidationReportResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DownloadValidationReportResponse.java index 042ee98a6c6..3564cbfcd9e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DownloadValidationReportResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DownloadValidationReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DownloadVmClusterNetworkConfigFileResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DownloadVmClusterNetworkConfigFileResponse.java index e3e31e0c5e7..a45a9b067a0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/DownloadVmClusterNetworkConfigFileResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/DownloadVmClusterNetworkConfigFileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EditAutonomousContainerDatabaseDataguardResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EditAutonomousContainerDatabaseDataguardResponse.java index eebeaea7563..5963ed173e5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EditAutonomousContainerDatabaseDataguardResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EditAutonomousContainerDatabaseDataguardResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableAutonomousDatabaseManagementResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableAutonomousDatabaseManagementResponse.java index cc493a80d91..313eb2d2f68 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableAutonomousDatabaseManagementResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableAutonomousDatabaseManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableAutonomousDatabaseOperationsInsightsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableAutonomousDatabaseOperationsInsightsResponse.java index 409b58e3cbf..135ca38d191 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableAutonomousDatabaseOperationsInsightsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableAutonomousDatabaseOperationsInsightsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableDatabaseManagementResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableDatabaseManagementResponse.java index c3cc92c5da8..e4f5faf59b3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableDatabaseManagementResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableDatabaseManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalContainerDatabaseDatabaseManagementResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalContainerDatabaseDatabaseManagementResponse.java index c802513cba9..881f7347950 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalContainerDatabaseDatabaseManagementResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalContainerDatabaseDatabaseManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalContainerDatabaseStackMonitoringResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalContainerDatabaseStackMonitoringResponse.java index a36a00fc827..0ee3960c3d6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalContainerDatabaseStackMonitoringResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalContainerDatabaseStackMonitoringResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalNonContainerDatabaseDatabaseManagementResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalNonContainerDatabaseDatabaseManagementResponse.java index a053a147e1d..5271aa8c970 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalNonContainerDatabaseDatabaseManagementResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalNonContainerDatabaseDatabaseManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalNonContainerDatabaseOperationsInsightsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalNonContainerDatabaseOperationsInsightsResponse.java index 7a32175e740..771f5affee7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalNonContainerDatabaseOperationsInsightsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalNonContainerDatabaseOperationsInsightsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalNonContainerDatabaseStackMonitoringResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalNonContainerDatabaseStackMonitoringResponse.java index 91e5bdeca5d..928b40b4c72 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalNonContainerDatabaseStackMonitoringResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalNonContainerDatabaseStackMonitoringResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalPluggableDatabaseDatabaseManagementResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalPluggableDatabaseDatabaseManagementResponse.java index bc5fd1fc20c..81a978ebcbc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalPluggableDatabaseDatabaseManagementResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalPluggableDatabaseDatabaseManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalPluggableDatabaseOperationsInsightsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalPluggableDatabaseOperationsInsightsResponse.java index 1d01440a63f..e3da8c83447 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalPluggableDatabaseOperationsInsightsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalPluggableDatabaseOperationsInsightsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalPluggableDatabaseStackMonitoringResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalPluggableDatabaseStackMonitoringResponse.java index 5440621395b..19827ead53c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalPluggableDatabaseStackMonitoringResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnableExternalPluggableDatabaseStackMonitoringResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnablePluggableDatabaseManagementResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnablePluggableDatabaseManagementResponse.java index 806b61f484b..eb93748d258 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnablePluggableDatabaseManagementResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/EnablePluggableDatabaseManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/FailOverAutonomousDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/FailOverAutonomousDatabaseResponse.java index f45780cca55..c427b44a00b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/FailOverAutonomousDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/FailOverAutonomousDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/FailoverAutonomousContainerDatabaseDataguardAssociationResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/FailoverAutonomousContainerDatabaseDataguardAssociationResponse.java index 3cee07eec48..be11ace7cb9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/FailoverAutonomousContainerDatabaseDataguardAssociationResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/FailoverAutonomousContainerDatabaseDataguardAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/FailoverAutonomousContainerDatabaseDataguardResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/FailoverAutonomousContainerDatabaseDataguardResponse.java index f626b8b1e91..fa83480d06e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/FailoverAutonomousContainerDatabaseDataguardResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/FailoverAutonomousContainerDatabaseDataguardResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/FailoverDataGuardAssociationResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/FailoverDataGuardAssociationResponse.java index 23b5b96b487..e8dbe9cf8be 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/FailoverDataGuardAssociationResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/FailoverDataGuardAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/FailoverDataGuardResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/FailoverDataGuardResponse.java index 67a6138eda8..22cea6c664d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/FailoverDataGuardResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/FailoverDataGuardResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GenerateAutonomousDatabaseWalletResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GenerateAutonomousDatabaseWalletResponse.java index 994c6161d9b..fbda01e9fbd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GenerateAutonomousDatabaseWalletResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GenerateAutonomousDatabaseWalletResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GenerateRecommendedVmClusterNetworkResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GenerateRecommendedVmClusterNetworkResponse.java index ba84b507d46..c0ccfcb3d74 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GenerateRecommendedVmClusterNetworkResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GenerateRecommendedVmClusterNetworkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetApplicationVipResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetApplicationVipResponse.java index 5500bef158e..c5163b1ee1b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetApplicationVipResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetApplicationVipResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousContainerDatabaseDataguardAssociationResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousContainerDatabaseDataguardAssociationResponse.java index b80dec289b5..7fd936140aa 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousContainerDatabaseDataguardAssociationResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousContainerDatabaseDataguardAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousContainerDatabaseResourceUsageResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousContainerDatabaseResourceUsageResponse.java index 8d4d7e02a8e..85651afbbbc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousContainerDatabaseResourceUsageResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousContainerDatabaseResourceUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousContainerDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousContainerDatabaseResponse.java index b2c222b9ad8..93cf6c11c1d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousContainerDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousContainerDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseBackupResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseBackupResponse.java index 84b58ec0c51..d5e8b9be337 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseBackupResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseDataguardAssociationResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseDataguardAssociationResponse.java index 1317902920e..50c47cc93c2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseDataguardAssociationResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseDataguardAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseRegionalWalletResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseRegionalWalletResponse.java index ea13488740b..065de85cdb7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseRegionalWalletResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseRegionalWalletResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseResponse.java index 0c0e2bf7f59..2cdf56af679 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseSoftwareImageResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseSoftwareImageResponse.java index 9e35c46041e..63ba41191d8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseSoftwareImageResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseSoftwareImageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseWalletResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseWalletResponse.java index 8c277eb2b42..003fa78a1d3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseWalletResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousDatabaseWalletResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousExadataInfrastructureResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousExadataInfrastructureResponse.java index 0f6fdbd23a3..340cc7c0974 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousExadataInfrastructureResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousPatchResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousPatchResponse.java index 70e42e65341..00dbd2f0f9c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousPatchResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousPatchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousVirtualMachineResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousVirtualMachineResponse.java index 660da32204f..bf57167257c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousVirtualMachineResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousVirtualMachineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousVmClusterResourceUsageResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousVmClusterResourceUsageResponse.java index bb011656d77..ce9c04474b0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousVmClusterResourceUsageResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousVmClusterResourceUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousVmClusterResponse.java index 56c834f7929..86290f6100b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetAutonomousVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetBackupDestinationResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetBackupDestinationResponse.java index af67414aa9e..76df5ec65bd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetBackupDestinationResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetBackupDestinationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetBackupResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetBackupResponse.java index 5da4226ea75..29d46427068 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetBackupResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudAutonomousVmClusterResourceUsageResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudAutonomousVmClusterResourceUsageResponse.java index d9ac25d65c9..3cbf3d1ea51 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudAutonomousVmClusterResourceUsageResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudAutonomousVmClusterResourceUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudAutonomousVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudAutonomousVmClusterResponse.java index c107df96ea7..f48ecb880e9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudAutonomousVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudAutonomousVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudExadataInfrastructureResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudExadataInfrastructureResponse.java index b15cea32a9d..1de7f8b7e1a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudExadataInfrastructureResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudExadataInfrastructureUnallocatedResourcesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudExadataInfrastructureUnallocatedResourcesResponse.java index 72109803171..858bff445cb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudExadataInfrastructureUnallocatedResourcesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudExadataInfrastructureUnallocatedResourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudVmClusterIormConfigResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudVmClusterIormConfigResponse.java index 0666a8e59f4..08d9632a439 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudVmClusterIormConfigResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudVmClusterIormConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudVmClusterResponse.java index 8747708a889..7d49b7b68f0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudVmClusterUpdateHistoryEntryResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudVmClusterUpdateHistoryEntryResponse.java index 8e568039acb..83773af5cc7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudVmClusterUpdateHistoryEntryResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudVmClusterUpdateHistoryEntryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudVmClusterUpdateResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudVmClusterUpdateResponse.java index 8d95f87a7fa..6dbbc40c6d8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudVmClusterUpdateResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetCloudVmClusterUpdateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetConsoleConnectionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetConsoleConnectionResponse.java index bbf52360990..9838e724e9e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetConsoleConnectionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetConsoleConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetConsoleHistoryContentResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetConsoleHistoryContentResponse.java index e13d5b04f8f..d6732b17526 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetConsoleHistoryContentResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetConsoleHistoryContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetConsoleHistoryResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetConsoleHistoryResponse.java index 46cb156f851..c4f944634cc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetConsoleHistoryResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetConsoleHistoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDataGuardAssociationResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDataGuardAssociationResponse.java index 03fa540de93..7ccb2c7dd2c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDataGuardAssociationResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDataGuardAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDatabaseResponse.java index 277a1152d1c..b23a36d8fa6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDatabaseSoftwareImageResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDatabaseSoftwareImageResponse.java index b201280a9a5..5406293b16c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDatabaseSoftwareImageResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDatabaseSoftwareImageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDatabaseUpgradeHistoryEntryResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDatabaseUpgradeHistoryEntryResponse.java index 6a37a8d80ca..55df5aad172 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDatabaseUpgradeHistoryEntryResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDatabaseUpgradeHistoryEntryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbHomePatchHistoryEntryResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbHomePatchHistoryEntryResponse.java index 9ea850ef4ef..1748333bf2d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbHomePatchHistoryEntryResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbHomePatchHistoryEntryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbHomePatchResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbHomePatchResponse.java index 080a3e4b345..def3b445215 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbHomePatchResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbHomePatchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbHomeResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbHomeResponse.java index 170171b06ff..65d436f5f9c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbHomeResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbHomeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbNodeResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbNodeResponse.java index 15225159345..3c6dc1b15b0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbNodeResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbNodeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbServerResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbServerResponse.java index de6e85bd595..9888cddcf50 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbServerResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbServerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbSystemPatchHistoryEntryResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbSystemPatchHistoryEntryResponse.java index ca62e66879b..5cae50fb0a1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbSystemPatchHistoryEntryResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbSystemPatchHistoryEntryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbSystemPatchResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbSystemPatchResponse.java index ce29549de31..93a2152094e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbSystemPatchResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbSystemPatchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbSystemResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbSystemResponse.java index 04ea8917bf9..d78fa1e6b8c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbSystemResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbSystemUpgradeHistoryEntryResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbSystemUpgradeHistoryEntryResponse.java index c8e38ea3216..8dce1a5bf70 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbSystemUpgradeHistoryEntryResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbSystemUpgradeHistoryEntryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbnodeSnapshotResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbnodeSnapshotResponse.java index 574ede174a6..2fe40b4397a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbnodeSnapshotResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetDbnodeSnapshotResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadataInfrastructureOcpusResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadataInfrastructureOcpusResponse.java index c757911c89e..349e72b05e4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadataInfrastructureOcpusResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadataInfrastructureOcpusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadataInfrastructureResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadataInfrastructureResponse.java index 4ac3b93da81..bea9c7a7788 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadataInfrastructureResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadataInfrastructureUnAllocatedResourcesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadataInfrastructureUnAllocatedResourcesResponse.java index 1dac17e0350..26cdd25007a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadataInfrastructureUnAllocatedResourcesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadataInfrastructureUnAllocatedResourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadataIormConfigResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadataIormConfigResponse.java index 450f93ea0b2..c750d279a6a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadataIormConfigResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadataIormConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadbVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadbVmClusterResponse.java index ea9ac7618ab..4e3a3e1e21c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadbVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadbVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadbVmClusterUpdateHistoryEntryResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadbVmClusterUpdateHistoryEntryResponse.java index 96181e56d55..51a125e5d70 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadbVmClusterUpdateHistoryEntryResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadbVmClusterUpdateHistoryEntryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadbVmClusterUpdateResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadbVmClusterUpdateResponse.java index 1ac056a3999..a1a35da05e0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadbVmClusterUpdateResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExadbVmClusterUpdateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExascaleDbStorageVaultResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExascaleDbStorageVaultResponse.java index 896754b5bd6..26612f74f0f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExascaleDbStorageVaultResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExascaleDbStorageVaultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExecutionActionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExecutionActionResponse.java index f1d28309d8e..7c1ee875945 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExecutionActionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExecutionActionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExecutionWindowResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExecutionWindowResponse.java index 0113fc46a58..54654d398ca 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExecutionWindowResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExecutionWindowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExternalBackupJobResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExternalBackupJobResponse.java index 7f31bf68bf4..6f0ecd64c46 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExternalBackupJobResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExternalBackupJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExternalContainerDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExternalContainerDatabaseResponse.java index 3af5ab36dca..f9a813c66e1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExternalContainerDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExternalContainerDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExternalDatabaseConnectorResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExternalDatabaseConnectorResponse.java index 3e0af9a2d68..461dbca9187 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExternalDatabaseConnectorResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExternalDatabaseConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExternalNonContainerDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExternalNonContainerDatabaseResponse.java index 23ad87b06a3..7e3cea39b54 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExternalNonContainerDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExternalNonContainerDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExternalPluggableDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExternalPluggableDatabaseResponse.java index f3c3699c8ae..d95f1c52fff 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExternalPluggableDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetExternalPluggableDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetInfrastructureTargetVersionsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetInfrastructureTargetVersionsResponse.java index 09aa3952672..4992c665fd6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetInfrastructureTargetVersionsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetInfrastructureTargetVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetKeyStoreResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetKeyStoreResponse.java index 1c3b26e1b42..cb53d9d5fa7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetKeyStoreResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetKeyStoreResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetMaintenanceRunHistoryResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetMaintenanceRunHistoryResponse.java index f374bbc2d76..6cb086e7fdc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetMaintenanceRunHistoryResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetMaintenanceRunHistoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetMaintenanceRunResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetMaintenanceRunResponse.java index 979dad537c7..3ff8a890b0a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetMaintenanceRunResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetMaintenanceRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetOneoffPatchResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetOneoffPatchResponse.java index cb1bf74756b..55066d72b4c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetOneoffPatchResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetOneoffPatchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetPdbConversionHistoryEntryResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetPdbConversionHistoryEntryResponse.java index c1d4d3317dc..6b00f9edb9a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetPdbConversionHistoryEntryResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetPdbConversionHistoryEntryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetPluggableDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetPluggableDatabaseResponse.java index 3352a32cf49..8b06fac92eb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetPluggableDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetPluggableDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetPluggableDatabaseSnapshotResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetPluggableDatabaseSnapshotResponse.java index 6047c534ab4..cc37bbcd18e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetPluggableDatabaseSnapshotResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetPluggableDatabaseSnapshotResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetScheduledActionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetScheduledActionResponse.java index 3652335e0ea..943c4b75dca 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetScheduledActionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetScheduledActionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetSchedulingPlanResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetSchedulingPlanResponse.java index 43a17eb945b..3c12f429eb2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetSchedulingPlanResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetSchedulingPlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetSchedulingPolicyResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetSchedulingPolicyResponse.java index 85647258578..0b5056bb60c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetSchedulingPolicyResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetSchedulingPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetSchedulingWindowResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetSchedulingWindowResponse.java index ad34db64db6..af3626053b1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetSchedulingWindowResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetSchedulingWindowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterNetworkResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterNetworkResponse.java index 51b19655670..a1f3f2efc74 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterNetworkResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterNetworkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterPatchHistoryEntryResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterPatchHistoryEntryResponse.java index e1480c83261..6b0cc980721 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterPatchHistoryEntryResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterPatchHistoryEntryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterPatchResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterPatchResponse.java index 09c62261eb0..107f9264779 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterPatchResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterPatchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterResponse.java index 88554d044b2..48aec90b6e7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterUpdateHistoryEntryResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterUpdateHistoryEntryResponse.java index 043bac94bd3..83bc94878fb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterUpdateHistoryEntryResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterUpdateHistoryEntryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterUpdateResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterUpdateResponse.java index 6eca794d2a7..140ac7a915e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterUpdateResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/GetVmClusterUpdateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/LaunchAutonomousExadataInfrastructureResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/LaunchAutonomousExadataInfrastructureResponse.java index e8e40dc1874..43dccbfcb8d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/LaunchAutonomousExadataInfrastructureResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/LaunchAutonomousExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/LaunchDbSystemResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/LaunchDbSystemResponse.java index 65668a114c6..f5cd2206e9a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/LaunchDbSystemResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/LaunchDbSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListApplicationVipsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListApplicationVipsResponse.java index 502339b82d1..75f196175da 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListApplicationVipsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListApplicationVipsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousContainerDatabaseBackupsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousContainerDatabaseBackupsResponse.java index 1dcc76def07..db33667db46 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousContainerDatabaseBackupsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousContainerDatabaseBackupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousContainerDatabaseDataguardAssociationsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousContainerDatabaseDataguardAssociationsResponse.java index a1f14ac535b..39a3971d3f6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousContainerDatabaseDataguardAssociationsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousContainerDatabaseDataguardAssociationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousContainerDatabaseVersionsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousContainerDatabaseVersionsResponse.java index a49fa182d84..e97e5f393d7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousContainerDatabaseVersionsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousContainerDatabaseVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousContainerDatabasesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousContainerDatabasesResponse.java index 0b0eb90e4d5..12adf901a4c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousContainerDatabasesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousContainerDatabasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseBackupsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseBackupsResponse.java index 4a8e5cd69ed..485583512d2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseBackupsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseBackupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseCharacterSetsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseCharacterSetsResponse.java index e95c62f24fa..638b5e1e251 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseCharacterSetsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseCharacterSetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseClonesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseClonesResponse.java index ecdc83c891e..690db87dcf5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseClonesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseClonesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseDataguardAssociationsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseDataguardAssociationsResponse.java index a52592e2d9c..a7127e472c3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseDataguardAssociationsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseDataguardAssociationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabasePeersResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabasePeersResponse.java index fb68f25b1c8..ac8f8a25fdf 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabasePeersResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabasePeersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseRefreshableClonesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseRefreshableClonesResponse.java index 2d909c11b3b..f68d545362c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseRefreshableClonesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseRefreshableClonesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseSoftwareImagesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseSoftwareImagesResponse.java index 45b67771764..8b62962166f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseSoftwareImagesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabaseSoftwareImagesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabasesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabasesResponse.java index a3389f70013..e4c363f00fb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabasesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDatabasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDbPreviewVersionsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDbPreviewVersionsResponse.java index ebf5bac45bc..9141eca9753 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDbPreviewVersionsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDbPreviewVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDbVersionsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDbVersionsResponse.java index 7c6c05bff0b..4bfe8e46ba8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDbVersionsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousDbVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousExadataInfrastructureShapesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousExadataInfrastructureShapesResponse.java index f7189a7a78f..7163fc9e4b1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousExadataInfrastructureShapesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousExadataInfrastructureShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousExadataInfrastructuresResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousExadataInfrastructuresResponse.java index 84d5b945c6f..73bc8873e76 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousExadataInfrastructuresResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousExadataInfrastructuresResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousVirtualMachinesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousVirtualMachinesResponse.java index 93552b65ebc..fbdfda9b40b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousVirtualMachinesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousVirtualMachinesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousVmClusterAcdResourceUsageResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousVmClusterAcdResourceUsageResponse.java index a7f209e7836..d56628d1ade 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousVmClusterAcdResourceUsageResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousVmClusterAcdResourceUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousVmClustersResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousVmClustersResponse.java index 4612fd8b024..62d7ea1ba05 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousVmClustersResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListAutonomousVmClustersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListBackupDestinationResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListBackupDestinationResponse.java index 13b747bc8f2..9ae93e7cde6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListBackupDestinationResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListBackupDestinationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListBackupsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListBackupsResponse.java index 1b8def209f1..0963711aa77 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListBackupsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListBackupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudAutonomousVmClusterAcdResourceUsageResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudAutonomousVmClusterAcdResourceUsageResponse.java index 1b3ecad338d..a5f635602c7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudAutonomousVmClusterAcdResourceUsageResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudAutonomousVmClusterAcdResourceUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudAutonomousVmClustersResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudAutonomousVmClustersResponse.java index f48343a2b21..4e22bc9b179 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudAutonomousVmClustersResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudAutonomousVmClustersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudExadataInfrastructuresResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudExadataInfrastructuresResponse.java index 778e362e897..be03532646e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudExadataInfrastructuresResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudExadataInfrastructuresResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudVmClusterUpdateHistoryEntriesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudVmClusterUpdateHistoryEntriesResponse.java index 0ac3a488dce..ccf789e1ac1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudVmClusterUpdateHistoryEntriesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudVmClusterUpdateHistoryEntriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudVmClusterUpdatesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudVmClusterUpdatesResponse.java index 261fd0dc204..947781bf13f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudVmClusterUpdatesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudVmClusterUpdatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudVmClustersResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudVmClustersResponse.java index d02585533d9..29ab2c8f92f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudVmClustersResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListCloudVmClustersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListConsoleConnectionsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListConsoleConnectionsResponse.java index 005c88ecae6..039c5c9e7fc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListConsoleConnectionsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListConsoleConnectionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListConsoleHistoriesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListConsoleHistoriesResponse.java index 156950624ff..21449a06f1f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListConsoleHistoriesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListConsoleHistoriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListContainerDatabasePatchesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListContainerDatabasePatchesResponse.java index c3bd7a8d2fb..4f397e7989a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListContainerDatabasePatchesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListContainerDatabasePatchesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDataGuardAssociationsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDataGuardAssociationsResponse.java index 590f4a13dcc..f91f61d47fc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDataGuardAssociationsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDataGuardAssociationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDatabaseSoftwareImagesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDatabaseSoftwareImagesResponse.java index be633d8f0b6..66af5ac37e2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDatabaseSoftwareImagesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDatabaseSoftwareImagesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDatabaseUpgradeHistoryEntriesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDatabaseUpgradeHistoryEntriesResponse.java index e7956ff81f0..ec15e5b2e06 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDatabaseUpgradeHistoryEntriesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDatabaseUpgradeHistoryEntriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDatabasesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDatabasesResponse.java index abe97dff9a0..331eded4578 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDatabasesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDatabasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbHomePatchHistoryEntriesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbHomePatchHistoryEntriesResponse.java index b83b1054d17..7b7f76d41dc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbHomePatchHistoryEntriesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbHomePatchHistoryEntriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbHomePatchesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbHomePatchesResponse.java index 4124e33f8c3..a55b882e985 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbHomePatchesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbHomePatchesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbHomesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbHomesResponse.java index 60308b1a3ae..5b4777634e2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbHomesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbHomesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbNodesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbNodesResponse.java index 84f09c58f2a..ccf7dcb2fa6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbNodesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbNodesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbServersResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbServersResponse.java index 58e2501ac21..3a8cde1f395 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbServersResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbServersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemComputePerformancesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemComputePerformancesResponse.java index 783e98b239d..a0c1fa7b08e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemComputePerformancesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemComputePerformancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemPatchHistoryEntriesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemPatchHistoryEntriesResponse.java index 09659a0d6bc..8e1c03e7bb3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemPatchHistoryEntriesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemPatchHistoryEntriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemPatchesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemPatchesResponse.java index d8d93ff58e1..c748dfed31d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemPatchesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemPatchesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemShapesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemShapesResponse.java index f2407976138..b3a03f767c0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemShapesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemStoragePerformancesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemStoragePerformancesResponse.java index 10f2028adf6..485359a50c9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemStoragePerformancesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemStoragePerformancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemUpgradeHistoryEntriesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemUpgradeHistoryEntriesResponse.java index 08da2dffab5..a8b7a162d95 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemUpgradeHistoryEntriesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemUpgradeHistoryEntriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemUpgradesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemUpgradesResponse.java index 1b3b0c931b4..dbe6104f7d2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemUpgradesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemUpgradesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemsResponse.java index 1903941e9c9..3a6c3822abe 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbSystemsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbVersionsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbVersionsResponse.java index 32aaf1ebe8e..9b36b1cb0cc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbVersionsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbnodeSnapshotsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbnodeSnapshotsResponse.java index d202360518e..fe649ca766b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbnodeSnapshotsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListDbnodeSnapshotsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListEstimateCostSavingsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListEstimateCostSavingsResponse.java index 38a71f31cd0..283788b74ee 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListEstimateCostSavingsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListEstimateCostSavingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExadataInfrastructuresResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExadataInfrastructuresResponse.java index 3830dea44ee..b2633d20df2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExadataInfrastructuresResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExadataInfrastructuresResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExadbVmClusterUpdateHistoryEntriesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExadbVmClusterUpdateHistoryEntriesResponse.java index 676dd935a6b..0d9dd884dd2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExadbVmClusterUpdateHistoryEntriesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExadbVmClusterUpdateHistoryEntriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExadbVmClusterUpdatesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExadbVmClusterUpdatesResponse.java index 89b0c37b15c..3ffb34e2bb2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExadbVmClusterUpdatesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExadbVmClusterUpdatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExadbVmClustersResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExadbVmClustersResponse.java index b4f4ebe635f..2163295a850 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExadbVmClustersResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExadbVmClustersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExascaleDbStorageVaultsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExascaleDbStorageVaultsResponse.java index a26ecefea92..cc288de62f4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExascaleDbStorageVaultsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExascaleDbStorageVaultsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExecutionActionsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExecutionActionsResponse.java index c41c672cb13..ebc3c3b94c7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExecutionActionsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExecutionActionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExecutionWindowsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExecutionWindowsResponse.java index 0be3ea134c6..e285006c858 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExecutionWindowsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExecutionWindowsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExternalContainerDatabasesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExternalContainerDatabasesResponse.java index b2fdc646c25..4aa78e9703b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExternalContainerDatabasesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExternalContainerDatabasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExternalDatabaseConnectorsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExternalDatabaseConnectorsResponse.java index d069aa4a3b7..eb0cf14bf52 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExternalDatabaseConnectorsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExternalDatabaseConnectorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExternalNonContainerDatabasesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExternalNonContainerDatabasesResponse.java index c68bbebf5b2..60b9a4052ff 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExternalNonContainerDatabasesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExternalNonContainerDatabasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExternalPluggableDatabasesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExternalPluggableDatabasesResponse.java index 446f5a73b90..bb29b66ba84 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExternalPluggableDatabasesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListExternalPluggableDatabasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListFlexComponentsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListFlexComponentsResponse.java index d754fd10516..ef687c9dab9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListFlexComponentsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListFlexComponentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListGiVersionMinorVersionsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListGiVersionMinorVersionsResponse.java index 567ba4c4b26..b501913e25e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListGiVersionMinorVersionsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListGiVersionMinorVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListGiVersionsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListGiVersionsResponse.java index d086c32802e..6a2c01b4b73 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListGiVersionsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListGiVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListKeyStoresResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListKeyStoresResponse.java index 07ca297d352..f483127fb69 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListKeyStoresResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListKeyStoresResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListMaintenanceRunHistoryResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListMaintenanceRunHistoryResponse.java index 96ee22aa729..f8646998c4b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListMaintenanceRunHistoryResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListMaintenanceRunHistoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListMaintenanceRunsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListMaintenanceRunsResponse.java index 8c9ad4c1e54..34694e120e2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListMaintenanceRunsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListMaintenanceRunsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListOneoffPatchesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListOneoffPatchesResponse.java index 764da5908ea..caf91cdd44f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListOneoffPatchesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListOneoffPatchesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListParamsForActionTypeResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListParamsForActionTypeResponse.java index 3afb54030cd..568913b4f20 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListParamsForActionTypeResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListParamsForActionTypeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListPdbConversionHistoryEntriesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListPdbConversionHistoryEntriesResponse.java index 7811615a0cf..9baaa33ad9c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListPdbConversionHistoryEntriesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListPdbConversionHistoryEntriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListPluggableDatabaseSnapshotsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListPluggableDatabaseSnapshotsResponse.java index bfd385070a3..a3291cd1c7e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListPluggableDatabaseSnapshotsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListPluggableDatabaseSnapshotsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListPluggableDatabasesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListPluggableDatabasesResponse.java index 4dccbcfb37a..2557e3b8db8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListPluggableDatabasesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListPluggableDatabasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListRecommendedScheduledActionsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListRecommendedScheduledActionsResponse.java index 0023a451a40..05d3f3b6016 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListRecommendedScheduledActionsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListRecommendedScheduledActionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListResourcePoolMembersResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListResourcePoolMembersResponse.java index 182eda743a1..cab9b887620 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListResourcePoolMembersResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListResourcePoolMembersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListScheduledActionsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListScheduledActionsResponse.java index 632ec692b0d..2af786aa6a8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListScheduledActionsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListScheduledActionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListSchedulingPlansResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListSchedulingPlansResponse.java index 991a0fec200..909f35a7a5a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListSchedulingPlansResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListSchedulingPlansResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListSchedulingPoliciesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListSchedulingPoliciesResponse.java index 4432b49dbde..f2ede9b56c5 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListSchedulingPoliciesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListSchedulingPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListSchedulingWindowsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListSchedulingWindowsResponse.java index 2995e0f624c..86a79818b5a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListSchedulingWindowsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListSchedulingWindowsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListSystemVersionMinorVersionsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListSystemVersionMinorVersionsResponse.java index e1bab7d1755..4b3cce9d7be 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListSystemVersionMinorVersionsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListSystemVersionMinorVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListSystemVersionsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListSystemVersionsResponse.java index 2d442f79454..f7e81923cbc 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListSystemVersionsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListSystemVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClusterNetworksResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClusterNetworksResponse.java index ac6a7d8c8f3..251b6cfa03a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClusterNetworksResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClusterNetworksResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClusterPatchHistoryEntriesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClusterPatchHistoryEntriesResponse.java index 9a50379742f..1a63e5d8c63 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClusterPatchHistoryEntriesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClusterPatchHistoryEntriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClusterPatchesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClusterPatchesResponse.java index b2a346a60d8..1b619c9570b 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClusterPatchesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClusterPatchesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClusterUpdateHistoryEntriesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClusterUpdateHistoryEntriesResponse.java index d765891f77e..da915579ddf 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClusterUpdateHistoryEntriesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClusterUpdateHistoryEntriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClusterUpdatesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClusterUpdatesResponse.java index bbccd750cf1..f6d5241d488 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClusterUpdatesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClusterUpdatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClustersResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClustersResponse.java index 9f62eeae3e7..c7b0527074c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClustersResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ListVmClustersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/LocalClonePluggableDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/LocalClonePluggableDatabaseResponse.java index d3caca18b74..820f109c1eb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/LocalClonePluggableDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/LocalClonePluggableDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/MigrateAutonomousContainerDatabaseDataguardAssociationResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/MigrateAutonomousContainerDatabaseDataguardAssociationResponse.java index 096a0adc2b5..5cad191246d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/MigrateAutonomousContainerDatabaseDataguardAssociationResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/MigrateAutonomousContainerDatabaseDataguardAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/MigrateDataGuardAssociationToMultiDataGuardsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/MigrateDataGuardAssociationToMultiDataGuardsResponse.java index 02f15eeaff2..a4331167ada 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/MigrateDataGuardAssociationToMultiDataGuardsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/MigrateDataGuardAssociationToMultiDataGuardsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/MigrateExadataDbSystemResourceModelResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/MigrateExadataDbSystemResourceModelResponse.java index 66ba24d13f4..2c6656cc0cf 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/MigrateExadataDbSystemResourceModelResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/MigrateExadataDbSystemResourceModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/MigrateVaultKeyResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/MigrateVaultKeyResponse.java index 1065076b073..46b743fcaed 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/MigrateVaultKeyResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/MigrateVaultKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ModifyDatabaseManagementResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ModifyDatabaseManagementResponse.java index 7fcf7f7be37..b71b8871a68 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ModifyDatabaseManagementResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ModifyDatabaseManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ModifyPluggableDatabaseManagementResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ModifyPluggableDatabaseManagementResponse.java index 99b40a004c9..3de4b6271dd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ModifyPluggableDatabaseManagementResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ModifyPluggableDatabaseManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/MountDbnodeSnapshotResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/MountDbnodeSnapshotResponse.java index cd5878e5cfe..674c655973e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/MountDbnodeSnapshotResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/MountDbnodeSnapshotResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/MoveExecutionActionMemberResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/MoveExecutionActionMemberResponse.java index 5590d0f394a..841659f2d10 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/MoveExecutionActionMemberResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/MoveExecutionActionMemberResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RefreshDataGuardHealthStatusResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RefreshDataGuardHealthStatusResponse.java index 1270b27817c..0f2e7559c8a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RefreshDataGuardHealthStatusResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RefreshDataGuardHealthStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RefreshPluggableDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RefreshPluggableDatabaseResponse.java index 48547b14c7e..5ff5edfbefd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RefreshPluggableDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RefreshPluggableDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RegisterAutonomousDatabaseDataSafeResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RegisterAutonomousDatabaseDataSafeResponse.java index 85a057464d3..95f5dc937e1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RegisterAutonomousDatabaseDataSafeResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RegisterAutonomousDatabaseDataSafeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RegisterCloudVmClusterPkcsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RegisterCloudVmClusterPkcsResponse.java index 26d7bf60eee..2c450209543 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RegisterCloudVmClusterPkcsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RegisterCloudVmClusterPkcsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReinstateAutonomousContainerDatabaseDataguardAssociationResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReinstateAutonomousContainerDatabaseDataguardAssociationResponse.java index d9ddd42f42b..12a525064b6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReinstateAutonomousContainerDatabaseDataguardAssociationResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReinstateAutonomousContainerDatabaseDataguardAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReinstateAutonomousContainerDatabaseDataguardResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReinstateAutonomousContainerDatabaseDataguardResponse.java index f789e534c0c..8bf9733a7f1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReinstateAutonomousContainerDatabaseDataguardResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReinstateAutonomousContainerDatabaseDataguardResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReinstateDataGuardAssociationResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReinstateDataGuardAssociationResponse.java index d777a65fd44..62513713bab 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReinstateDataGuardAssociationResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReinstateDataGuardAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReinstateDataGuardResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReinstateDataGuardResponse.java index 23878178465..49a18d49239 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReinstateDataGuardResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReinstateDataGuardResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RemoteClonePluggableDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RemoteClonePluggableDatabaseResponse.java index 1bdefc071b4..14225052631 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RemoteClonePluggableDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RemoteClonePluggableDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RemoveVirtualMachineFromCloudVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RemoveVirtualMachineFromCloudVmClusterResponse.java index 4a80e638df1..b24e833c931 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RemoveVirtualMachineFromCloudVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RemoveVirtualMachineFromCloudVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RemoveVirtualMachineFromExadbVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RemoveVirtualMachineFromExadbVmClusterResponse.java index a0058c5d9b5..9a2eb3d5528 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RemoveVirtualMachineFromExadbVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RemoveVirtualMachineFromExadbVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RemoveVirtualMachineFromVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RemoveVirtualMachineFromVmClusterResponse.java index c75bf11e377..6ab826b3181 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RemoveVirtualMachineFromVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RemoveVirtualMachineFromVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReorderExecutionActionsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReorderExecutionActionsResponse.java index d1d795efcb4..14a7634d120 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReorderExecutionActionsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReorderExecutionActionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReorderScheduledActionsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReorderScheduledActionsResponse.java index ab3d03f2367..5538f5f9eed 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReorderScheduledActionsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ReorderScheduledActionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ResizeVmClusterNetworkResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ResizeVmClusterNetworkResponse.java index f862d0bb54f..1c7e74eb242 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ResizeVmClusterNetworkResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ResizeVmClusterNetworkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ResourcePoolShapesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ResourcePoolShapesResponse.java index 522223f7daa..3cd6ff0d3c8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ResourcePoolShapesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ResourcePoolShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RestartAutonomousContainerDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RestartAutonomousContainerDatabaseResponse.java index 7f1f51e8a18..9e60ddb36ef 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RestartAutonomousContainerDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RestartAutonomousContainerDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RestartAutonomousDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RestartAutonomousDatabaseResponse.java index b723e44b6a1..850f787faa9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RestartAutonomousDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RestartAutonomousDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RestoreAutonomousDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RestoreAutonomousDatabaseResponse.java index 1ee47d2ef0c..f6e53c1a7db 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RestoreAutonomousDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RestoreAutonomousDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RestoreDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RestoreDatabaseResponse.java index ce3de3c85b2..fd19538192d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RestoreDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RestoreDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateAutonomousContainerDatabaseEncryptionKeyResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateAutonomousContainerDatabaseEncryptionKeyResponse.java index cce7153910d..a134e2f89d2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateAutonomousContainerDatabaseEncryptionKeyResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateAutonomousContainerDatabaseEncryptionKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateAutonomousDatabaseEncryptionKeyResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateAutonomousDatabaseEncryptionKeyResponse.java index f1f8fc4d77f..ce8adf19a17 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateAutonomousDatabaseEncryptionKeyResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateAutonomousDatabaseEncryptionKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateAutonomousVmClusterOrdsCertsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateAutonomousVmClusterOrdsCertsResponse.java index bd4f60f3e7d..c128d24babb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateAutonomousVmClusterOrdsCertsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateAutonomousVmClusterOrdsCertsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateAutonomousVmClusterSslCertsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateAutonomousVmClusterSslCertsResponse.java index a207b2853dc..f5859f26b37 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateAutonomousVmClusterSslCertsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateAutonomousVmClusterSslCertsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateCloudAutonomousVmClusterOrdsCertsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateCloudAutonomousVmClusterOrdsCertsResponse.java index 969f6281128..585574dde80 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateCloudAutonomousVmClusterOrdsCertsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateCloudAutonomousVmClusterOrdsCertsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateCloudAutonomousVmClusterSslCertsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateCloudAutonomousVmClusterSslCertsResponse.java index a464ad32176..d49ab9a56da 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateCloudAutonomousVmClusterSslCertsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateCloudAutonomousVmClusterSslCertsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateOrdsCertsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateOrdsCertsResponse.java index cc5354dcce2..84031fabc96 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateOrdsCertsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateOrdsCertsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotatePluggableDatabaseEncryptionKeyResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotatePluggableDatabaseEncryptionKeyResponse.java index 05c3eb817d1..17a0d09bd5d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotatePluggableDatabaseEncryptionKeyResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotatePluggableDatabaseEncryptionKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateSslCertsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateSslCertsResponse.java index dd27d4a506a..3a7248a0b04 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateSslCertsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateSslCertsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateVaultKeyResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateVaultKeyResponse.java index c8e63b21bc0..8e379b01dba 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateVaultKeyResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/RotateVaultKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/SaasAdminUserStatusResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/SaasAdminUserStatusResponse.java index 2aa83b340e0..1302d653f46 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/SaasAdminUserStatusResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/SaasAdminUserStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ScanExternalContainerDatabasePluggableDatabasesResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ScanExternalContainerDatabasePluggableDatabasesResponse.java index 3440279b07c..82b8bc53624 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ScanExternalContainerDatabasePluggableDatabasesResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ScanExternalContainerDatabasePluggableDatabasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/SetDbKeyVersionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/SetDbKeyVersionResponse.java index ae584a2b936..cde90d0e81e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/SetDbKeyVersionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/SetDbKeyVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/SetPdbKeyVersionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/SetPdbKeyVersionResponse.java index 91170f1bd32..f31b6c0e989 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/SetPdbKeyVersionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/SetPdbKeyVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ShrinkAutonomousDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ShrinkAutonomousDatabaseResponse.java index 7d01fc99163..d1a6aacfb51 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ShrinkAutonomousDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ShrinkAutonomousDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/StartAutonomousDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/StartAutonomousDatabaseResponse.java index 9944bcaea01..5bd42e40463 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/StartAutonomousDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/StartAutonomousDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/StartPluggableDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/StartPluggableDatabaseResponse.java index 6464f591877..45ece70e09d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/StartPluggableDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/StartPluggableDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/StopAutonomousDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/StopAutonomousDatabaseResponse.java index 3fb93a55977..166b0f839c2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/StopAutonomousDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/StopAutonomousDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/StopPluggableDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/StopPluggableDatabaseResponse.java index c38d614092c..6ccdec13c8f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/StopPluggableDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/StopPluggableDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/SwitchOverDataGuardResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/SwitchOverDataGuardResponse.java index 5c53dacc2c6..7dc1511cf53 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/SwitchOverDataGuardResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/SwitchOverDataGuardResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/SwitchoverAutonomousContainerDatabaseDataguardAssociationResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/SwitchoverAutonomousContainerDatabaseDataguardAssociationResponse.java index ac4287e9457..f91ac37e98c 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/SwitchoverAutonomousContainerDatabaseDataguardAssociationResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/SwitchoverAutonomousContainerDatabaseDataguardAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/SwitchoverAutonomousContainerDatabaseDataguardResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/SwitchoverAutonomousContainerDatabaseDataguardResponse.java index 81c9aeacdd5..9a6e2e33323 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/SwitchoverAutonomousContainerDatabaseDataguardResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/SwitchoverAutonomousContainerDatabaseDataguardResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/SwitchoverAutonomousDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/SwitchoverAutonomousDatabaseResponse.java index 10870b20a00..3156403d3b3 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/SwitchoverAutonomousDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/SwitchoverAutonomousDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/SwitchoverDataGuardAssociationResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/SwitchoverDataGuardAssociationResponse.java index e2685fd00a6..83875c2a813 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/SwitchoverDataGuardAssociationResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/SwitchoverDataGuardAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/TerminateAutonomousContainerDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/TerminateAutonomousContainerDatabaseResponse.java index 2be00339b8b..31abb422cce 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/TerminateAutonomousContainerDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/TerminateAutonomousContainerDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/TerminateAutonomousExadataInfrastructureResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/TerminateAutonomousExadataInfrastructureResponse.java index 7824562c555..e8ecd48407e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/TerminateAutonomousExadataInfrastructureResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/TerminateAutonomousExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/TerminateDbSystemResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/TerminateDbSystemResponse.java index 143a3874f63..f278e2f6480 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/TerminateDbSystemResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/TerminateDbSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UnmountDbnodeSnapshotResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UnmountDbnodeSnapshotResponse.java index e30df5065f4..2ebc9d00e3d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UnmountDbnodeSnapshotResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UnmountDbnodeSnapshotResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UnregisterCloudVmClusterPkcsResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UnregisterCloudVmClusterPkcsResponse.java index f62880b54bd..e05a97ab85f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UnregisterCloudVmClusterPkcsResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UnregisterCloudVmClusterPkcsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousContainerDatabaseDataguardAssociationResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousContainerDatabaseDataguardAssociationResponse.java index ed720511ef6..0a4032cf442 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousContainerDatabaseDataguardAssociationResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousContainerDatabaseDataguardAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousContainerDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousContainerDatabaseResponse.java index 1e60ece785b..822428939c6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousContainerDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousContainerDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousDatabaseBackupResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousDatabaseBackupResponse.java index 8a39934ac0b..7e4c8c51279 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousDatabaseBackupResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousDatabaseBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousDatabaseRegionalWalletResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousDatabaseRegionalWalletResponse.java index 67a002d0f48..1c65032ea7d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousDatabaseRegionalWalletResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousDatabaseRegionalWalletResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousDatabaseResponse.java index 34305d08ad9..24076444c09 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousDatabaseSoftwareImageResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousDatabaseSoftwareImageResponse.java index 37e640cb8a4..cc5889f22bb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousDatabaseSoftwareImageResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousDatabaseSoftwareImageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousDatabaseWalletResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousDatabaseWalletResponse.java index b6d522dbe64..751d899ba38 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousDatabaseWalletResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousDatabaseWalletResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousExadataInfrastructureResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousExadataInfrastructureResponse.java index 886a12efad5..0200841c47e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousExadataInfrastructureResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousVmClusterResponse.java index 2f0fbc19e04..d4a1652fce2 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateAutonomousVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateBackupDestinationResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateBackupDestinationResponse.java index 0782500eb1d..f86ed2ebfe8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateBackupDestinationResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateBackupDestinationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateBackupResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateBackupResponse.java index 447a0da6428..b4ad2dc1088 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateBackupResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateCloudAutonomousVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateCloudAutonomousVmClusterResponse.java index e6edde44316..a64c6658ec0 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateCloudAutonomousVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateCloudAutonomousVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateCloudExadataInfrastructureResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateCloudExadataInfrastructureResponse.java index 372976647ac..12c1d02b8ee 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateCloudExadataInfrastructureResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateCloudExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateCloudVmClusterIormConfigResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateCloudVmClusterIormConfigResponse.java index 3c239dff534..7e012ad270d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateCloudVmClusterIormConfigResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateCloudVmClusterIormConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateCloudVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateCloudVmClusterResponse.java index b6fc17d7c79..5364e834661 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateCloudVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateCloudVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateConsoleConnectionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateConsoleConnectionResponse.java index d7f254a339c..22f823caf17 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateConsoleConnectionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateConsoleConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateConsoleHistoryResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateConsoleHistoryResponse.java index a3775d05b78..43359bb16f9 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateConsoleHistoryResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateConsoleHistoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDataGuardAssociationResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDataGuardAssociationResponse.java index 468c10ff4c1..ee4d50b5154 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDataGuardAssociationResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDataGuardAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDataGuardResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDataGuardResponse.java index c0d18b04770..a97d3b805aa 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDataGuardResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDataGuardResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDatabaseResponse.java index 5d69690169f..c0525e080a8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDatabaseSoftwareImageResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDatabaseSoftwareImageResponse.java index 26577a28eaa..a08101b61cd 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDatabaseSoftwareImageResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDatabaseSoftwareImageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDbHomeResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDbHomeResponse.java index ad28bf2744a..d4f548986e4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDbHomeResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDbHomeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDbNodeResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDbNodeResponse.java index 42e303ac3f0..b56e5f0852f 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDbNodeResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDbNodeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDbSystemResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDbSystemResponse.java index d27edd2bd87..677e6f04f3a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDbSystemResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateDbSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExadataInfrastructureResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExadataInfrastructureResponse.java index 053a0c37d9b..6a08eced9c6 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExadataInfrastructureResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExadataIormConfigResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExadataIormConfigResponse.java index 5f4b6bd819a..ec14bd69528 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExadataIormConfigResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExadataIormConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExadbVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExadbVmClusterResponse.java index 99be9966f64..10cabf0bcc7 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExadbVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExadbVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExascaleDbStorageVaultResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExascaleDbStorageVaultResponse.java index 5fe336f4da1..92677797c31 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExascaleDbStorageVaultResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExascaleDbStorageVaultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExecutionActionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExecutionActionResponse.java index c0a71f1f48c..c56b83b9908 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExecutionActionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExecutionActionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExecutionWindowResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExecutionWindowResponse.java index ffb1e0f883c..1b0640b32e1 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExecutionWindowResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExecutionWindowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExternalContainerDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExternalContainerDatabaseResponse.java index c24930aa2ef..00958ca76c4 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExternalContainerDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExternalContainerDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExternalDatabaseConnectorResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExternalDatabaseConnectorResponse.java index 06537129af1..9288c6f588a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExternalDatabaseConnectorResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExternalDatabaseConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExternalNonContainerDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExternalNonContainerDatabaseResponse.java index 1be8fe464bb..8bceb4e50e8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExternalNonContainerDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExternalNonContainerDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExternalPluggableDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExternalPluggableDatabaseResponse.java index 74b5717f319..edfbede13eb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExternalPluggableDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateExternalPluggableDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateKeyStoreResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateKeyStoreResponse.java index 9427c5cec15..220c6bbef65 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateKeyStoreResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateKeyStoreResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateMaintenanceRunResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateMaintenanceRunResponse.java index 8acb36349bb..232984ba925 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateMaintenanceRunResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateMaintenanceRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateOneoffPatchResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateOneoffPatchResponse.java index dc7ec7fa420..bd94d707fe8 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateOneoffPatchResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateOneoffPatchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdatePluggableDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdatePluggableDatabaseResponse.java index 620db0397d1..4ed6993c47e 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdatePluggableDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdatePluggableDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateScheduledActionResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateScheduledActionResponse.java index 2fb899d213a..b8973957d97 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateScheduledActionResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateScheduledActionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateSchedulingPolicyResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateSchedulingPolicyResponse.java index 2b15e0195fb..64cb6f1352a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateSchedulingPolicyResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateSchedulingPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateSchedulingWindowResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateSchedulingWindowResponse.java index d1f288e5841..dec28c06905 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateSchedulingWindowResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateSchedulingWindowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateVmClusterNetworkResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateVmClusterNetworkResponse.java index 7bfcb55aac2..c223c59882d 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateVmClusterNetworkResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateVmClusterNetworkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateVmClusterResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateVmClusterResponse.java index abfcc3c0c68..d560016ea4a 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateVmClusterResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpdateVmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpgradeDatabaseResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpgradeDatabaseResponse.java index f90f631f335..9c02d625748 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpgradeDatabaseResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpgradeDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpgradeDbSystemResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpgradeDbSystemResponse.java index 9a92540f671..3d9769ab805 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpgradeDbSystemResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/UpgradeDbSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ValidateVmClusterNetworkResponse.java b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ValidateVmClusterNetworkResponse.java index 203d1c09845..fa9fea23afb 100644 --- a/bmc-database/src/main/java/com/oracle/bmc/database/responses/ValidateVmClusterNetworkResponse.java +++ b/bmc-database/src/main/java/com/oracle/bmc/database/responses/ValidateVmClusterNetworkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.database.responses; diff --git a/bmc-database/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-database/reflect-config.json b/bmc-database/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-database/reflect-config.json index f4453eba37a..f61275b8e04 100644 --- a/bmc-database/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-database/reflect-config.json +++ b/bmc-database/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-database/reflect-config.json @@ -1026,6 +1026,20 @@ "allDeclaredMethods": true, "allDeclaredConstructors": true }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.database.model.AutonomousDatabaseMaintenanceWindowSummary", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.database.model.AutonomousDatabaseMaintenanceWindowSummary$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, { "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, "name": "com.oracle.bmc.database.model.AutonomousDatabaseManualRefreshDetails", @@ -3652,6 +3666,20 @@ "allDeclaredMethods": true, "allDeclaredConstructors": true }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.database.model.CreateDatabaseFromDatabase", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.database.model.CreateDatabaseFromDatabase$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, { "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, "name": "com.oracle.bmc.database.model.CreateDatabaseFromDbSystemDetails", @@ -3831,6 +3859,20 @@ "allDeclaredMethods": true, "allDeclaredConstructors": true }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.database.model.CreateDbHomeWithVmClusterIdFromDatabaseDetails", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.database.model.CreateDbHomeWithVmClusterIdFromDatabaseDetails$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, { "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, "name": "com.oracle.bmc.database.model.CreateExadataInfrastructureDetails", diff --git a/bmc-database/src/main/resources/com/oracle/bmc/database/client.properties b/bmc-database/src/main/resources/com/oracle/bmc/database/client.properties index 03c9ae88318..57fa7f4b072 100644 --- a/bmc-database/src/main/resources/com/oracle/bmc/database/client.properties +++ b/bmc-database/src/main/resources/com/oracle/bmc/database/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-databasemanagement/pom.xml b/bmc-databasemanagement/pom.xml index 12eb2686d39..7e08c31917f 100644 --- a/bmc-databasemanagement/pom.xml +++ b/bmc-databasemanagement/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-databasemanagement @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagement.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagement.java index c48ac2b74b9..d80b83f1489 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagement.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagementAsync.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagementAsync.java index c6aaac5ce1c..60265dd0656 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagementAsync.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagementAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagementAsyncClient.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagementAsyncClient.java index 430a613a331..878e97fbaa6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagementAsyncClient.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagementAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagementClient.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagementClient.java index 3df9eb39401..8fe849aa1fe 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagementClient.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagementClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagementPaginators.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagementPaginators.java index 0bdcc01b425..82fd89c905f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagementPaginators.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagementPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagementWaiters.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagementWaiters.java index 3f0596bd513..9c09c069898 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagementWaiters.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DbManagementWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/Diagnosability.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/Diagnosability.java index 649d2f530e2..3248789d476 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/Diagnosability.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/Diagnosability.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DiagnosabilityAsync.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DiagnosabilityAsync.java index ef8e9999227..6c0cf3041cf 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DiagnosabilityAsync.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DiagnosabilityAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DiagnosabilityAsyncClient.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DiagnosabilityAsyncClient.java index 0dc8f2265fc..5b052a1d87a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DiagnosabilityAsyncClient.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DiagnosabilityAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DiagnosabilityClient.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DiagnosabilityClient.java index e7a15ede464..f1aa1062806 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DiagnosabilityClient.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DiagnosabilityClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DiagnosabilityPaginators.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DiagnosabilityPaginators.java index 3af92cffbbf..2f17ad9abe4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DiagnosabilityPaginators.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/DiagnosabilityPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabases.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabases.java index c12be4c0ae3..bb99e6cde37 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabases.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabases.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabasesAsync.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabasesAsync.java index 2fac087c6b7..bd0d3720c00 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabasesAsync.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabasesAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabasesAsyncClient.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabasesAsyncClient.java index ebb6599c8dc..2342502b08c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabasesAsyncClient.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabasesAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabasesClient.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabasesClient.java index b2ce6a54707..bf954ed2a39 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabasesClient.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabasesClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabasesPaginators.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabasesPaginators.java index 97bfc15505f..d2208a1f2ad 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabasesPaginators.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabasesPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabasesWaiters.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabasesWaiters.java index b0268004373..e34f501f55c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabasesWaiters.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/ManagedMySqlDatabasesWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/Perfhub.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/Perfhub.java index e4ef87acdc8..6c7900c7752 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/Perfhub.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/Perfhub.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/PerfhubAsync.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/PerfhubAsync.java index 0699a5782d7..faae4922dc2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/PerfhubAsync.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/PerfhubAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/PerfhubAsyncClient.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/PerfhubAsyncClient.java index 9cb23183705..8d01853ce50 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/PerfhubAsyncClient.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/PerfhubAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/PerfhubClient.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/PerfhubClient.java index 8a817ac98c8..e5c46b2ccca 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/PerfhubClient.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/PerfhubClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/SqlTuning.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/SqlTuning.java index 4c972a007dd..c09ed5c256c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/SqlTuning.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/SqlTuning.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/SqlTuningAsync.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/SqlTuningAsync.java index 9125d9a98c5..ea539d9a7a5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/SqlTuningAsync.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/SqlTuningAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/SqlTuningAsyncClient.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/SqlTuningAsyncClient.java index 62a57357a95..918d7bc6061 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/SqlTuningAsyncClient.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/SqlTuningAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/SqlTuningClient.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/SqlTuningClient.java index 715d4a62ace..e6d71881bb0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/SqlTuningClient.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/SqlTuningClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/SqlTuningPaginators.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/SqlTuningPaginators.java index 456672f4c6a..820fffa2af8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/SqlTuningPaginators.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/SqlTuningPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ActivityTimeSeriesMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ActivityTimeSeriesMetrics.java index 333f4a93b44..5530a748527 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ActivityTimeSeriesMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ActivityTimeSeriesMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AddDataFilesDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AddDataFilesDetails.java index 34ea8d9dcab..24aed06b65a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AddDataFilesDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AddDataFilesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AddManagedDatabaseToManagedDatabaseGroupDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AddManagedDatabaseToManagedDatabaseGroupDetails.java index b8d9fbf75a8..6a63ecd0dc5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AddManagedDatabaseToManagedDatabaseGroupDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AddManagedDatabaseToManagedDatabaseGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AddmTaskSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AddmTaskSummary.java index e82980117bb..921f5d51aba 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AddmTaskSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AddmTaskSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AddmTasksCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AddmTasksCollection.java index 50f65111d42..62c3cb717a2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AddmTasksCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AddmTasksCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AdvisorRule.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AdvisorRule.java index 36d61be389d..771855eb3ff 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AdvisorRule.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AdvisorRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertLogCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertLogCollection.java index 0e39b16b2a2..a39848c42fc 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertLogCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertLogCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertLogCountSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertLogCountSummary.java index 29f660e6c00..58a86b4978a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertLogCountSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertLogCountSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertLogCountsCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertLogCountsCollection.java index 8140918e6e9..05bfa261c86 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertLogCountsCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertLogCountsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertLogSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertLogSummary.java index 4f410a62007..9ec3cb0923d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertLogSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertLogSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertSeverityEnum.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertSeverityEnum.java index 703972e8907..c4fa62fc71e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertSeverityEnum.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertSeverityEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertTypeEnum.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertTypeEnum.java index eaa9ce31f26..92f8887878f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertTypeEnum.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AlertTypeEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AllowedParameterValue.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AllowedParameterValue.java index 6eff63fd9f1..ad78fae488e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AllowedParameterValue.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AllowedParameterValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmConnectionCredentailsByName.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmConnectionCredentailsByName.java index e6663b77fd3..c921994aa9f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmConnectionCredentailsByName.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmConnectionCredentailsByName.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmConnectionCredentials.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmConnectionCredentials.java index 6614447052b..f2c2558ed47 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmConnectionCredentials.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmConnectionCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmConnectionCredentialsByDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmConnectionCredentialsByDetails.java index e03af9d43cd..f35fe39d51d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmConnectionCredentialsByDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmConnectionCredentialsByDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmConnectionString.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmConnectionString.java index bb184fc3df5..0feeab9eb32 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmConnectionString.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmConnectionString.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmProperty.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmProperty.java index 63f6cfe3237..9e4f4e6541e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmProperty.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmProperty.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmPropertyCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmPropertyCollection.java index cbe5a63cd79..c4fb2f2c24d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmPropertyCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmPropertyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmPropertySummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmPropertySummary.java index 8365b788012..b64c2270322 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmPropertySummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AsmPropertySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AssociatedCloudComponent.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AssociatedCloudComponent.java index afa4b63a82e..058dd8d0bbb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AssociatedCloudComponent.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AssociatedCloudComponent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AssociatedComponent.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AssociatedComponent.java index 7e9ec720f29..142ffae9912 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AssociatedComponent.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AssociatedComponent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AssociatedDatabaseCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AssociatedDatabaseCollection.java index ef6c3fd37b5..b026570333d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AssociatedDatabaseCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AssociatedDatabaseCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AssociatedDatabaseSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AssociatedDatabaseSummary.java index 4252447f1c2..fcb998d1d8c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AssociatedDatabaseSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AssociatedDatabaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AssociatedServiceDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AssociatedServiceDetails.java index 67ce680c52f..3375719c7d3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AssociatedServiceDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AssociatedServiceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AttentionLogCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AttentionLogCollection.java index 0a0fa75e493..cc82975728a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AttentionLogCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AttentionLogCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AttentionLogCountSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AttentionLogCountSummary.java index 0e6f8b8d66e..1a34c545cdb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AttentionLogCountSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AttentionLogCountSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AttentionLogCountsCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AttentionLogCountsCollection.java index 9c8b87553de..37f81369174 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AttentionLogCountsCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AttentionLogCountsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AttentionLogSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AttentionLogSummary.java index 8489e7a4e02..17f9b2a7faa 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AttentionLogSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AttentionLogSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AutomaticCaptureFilter.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AutomaticCaptureFilter.java index 2f2a8b485ab..c80c1ef3d83 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AutomaticCaptureFilter.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AutomaticCaptureFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AutomaticCaptureFilterDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AutomaticCaptureFilterDetails.java index f37867fd25e..fd20bd876af 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AutomaticCaptureFilterDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AutomaticCaptureFilterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AutonomousDatabaseDiagnosticsAndManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AutonomousDatabaseDiagnosticsAndManagementFeatureDetails.java index 3240577aed7..044754ba0b2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AutonomousDatabaseDiagnosticsAndManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AutonomousDatabaseDiagnosticsAndManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AutonomousDatabaseFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AutonomousDatabaseFeatureDetails.java index 11c4bdc1ac8..c08d9b8a338 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AutonomousDatabaseFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AutonomousDatabaseFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AutonomousDatabaseSqlWatchFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AutonomousDatabaseSqlWatchFeatureDetails.java index 63c3f1efd59..9fcf9405c7e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AutonomousDatabaseSqlWatchFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AutonomousDatabaseSqlWatchFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbCollection.java index d7770d2ff84..f390fe1beb9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbCpuUsageCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbCpuUsageCollection.java index aa1f5c97af2..528be33d4f8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbCpuUsageCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbCpuUsageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbCpuUsageSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbCpuUsageSummary.java index 45eee56057b..a29487d199b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbCpuUsageSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbCpuUsageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbMetricCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbMetricCollection.java index 903ee4fb9b5..e8ce2b619f4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbMetricCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbMetricCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbMetricSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbMetricSummary.java index 174ee289fd1..1760849cb6f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbMetricSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbMetricSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbParameterChangeCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbParameterChangeCollection.java index a6f006761bf..b9dba3beb7c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbParameterChangeCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbParameterChangeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbParameterChangeSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbParameterChangeSummary.java index d566e4f47df..84ff88e1d3d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbParameterChangeSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbParameterChangeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbParameterCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbParameterCollection.java index d7d3837144a..4ebb489fb81 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbParameterCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbParameterCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbParameterSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbParameterSummary.java index bbe822c9df2..0c2b842d58d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbParameterSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbParameterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbReport.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbReport.java index 3d4f5ae9d77..15a43b21ab4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbReport.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSnapshotCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSnapshotCollection.java index eb6672745e5..0f4b54c087e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSnapshotCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSnapshotCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSnapshotRangeCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSnapshotRangeCollection.java index 09dbbd9a180..10b251a3e8d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSnapshotRangeCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSnapshotRangeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSnapshotRangeSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSnapshotRangeSummary.java index a98a194757d..cbbed7edac5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSnapshotRangeSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSnapshotRangeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSnapshotSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSnapshotSummary.java index 078e65e131e..59fb3c889b4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSnapshotSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSnapshotSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSqlReport.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSqlReport.java index 59f1965fa8e..95d2d0c17e5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSqlReport.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSqlReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSummary.java index bee616a77ef..8f4b8c0ce3e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSysstatCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSysstatCollection.java index c5c465ed770..e3ffbc6b423 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSysstatCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSysstatCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSysstatSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSysstatSummary.java index 408e0d0f004..b929bf7ab15 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSysstatSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbSysstatSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbTopWaitEventCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbTopWaitEventCollection.java index 3f48606321d..a8e6ca04b36 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbTopWaitEventCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbTopWaitEventCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbTopWaitEventSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbTopWaitEventSummary.java index 60a42841aec..1a8d500624b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbTopWaitEventSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbTopWaitEventSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbWaitEventBucketCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbWaitEventBucketCollection.java index 817129e9d5f..72c7ba12963 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbWaitEventBucketCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbWaitEventBucketCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbWaitEventBucketSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbWaitEventBucketSummary.java index 9fada95151d..d33751910c6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbWaitEventBucketSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbWaitEventBucketSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbWaitEventCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbWaitEventCollection.java index 35c49248524..7f366f88b91 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbWaitEventCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbWaitEventCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbWaitEventSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbWaitEventSummary.java index 5eb4044e84d..9bcaedefcfb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbWaitEventSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrDbWaitEventSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrQueryResult.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrQueryResult.java index 5735f2b55ab..dc414155081 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrQueryResult.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/AwrQueryResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/BaseDatabaseHaDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/BaseDatabaseHaDetails.java index fb299e86122..4fb0bd5a57e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/BaseDatabaseHaDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/BaseDatabaseHaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/BasicDatabaseConnectionStringDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/BasicDatabaseConnectionStringDetails.java index d1b0d02251d..3075b19e965 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/BasicDatabaseConnectionStringDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/BasicDatabaseConnectionStringDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/BasicNamedCredentialContent.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/BasicNamedCredentialContent.java index 23c7b0ab453..16c34d7a0c4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/BasicNamedCredentialContent.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/BasicNamedCredentialContent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/BasicPreferredCredential.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/BasicPreferredCredential.java index 55de2d672a7..025eb274c21 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/BasicPreferredCredential.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/BasicPreferredCredential.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeDatabaseParameterDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeDatabaseParameterDetails.java index 0ba457f5bab..8c752ab0379 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeDatabaseParameterDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeDatabaseParameterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeDatabaseParametersDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeDatabaseParametersDetails.java index 991f9d2b223..69a57cdd8d1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeDatabaseParametersDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeDatabaseParametersDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeDbManagementPrivateEndpointCompartmentDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeDbManagementPrivateEndpointCompartmentDetails.java index 92962cff4bb..267a400b0d7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeDbManagementPrivateEndpointCompartmentDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeDbManagementPrivateEndpointCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeExternalDbSystemCompartmentDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeExternalDbSystemCompartmentDetails.java index 7da59f1c1ab..70a2d10eb41 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeExternalDbSystemCompartmentDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeExternalDbSystemCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeExternalExadataInfrastructureCompartmentDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeExternalExadataInfrastructureCompartmentDetails.java index b451a5c7842..c440083f9be 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeExternalExadataInfrastructureCompartmentDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeExternalExadataInfrastructureCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeJobCompartmentDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeJobCompartmentDetails.java index 59fc7512127..847c4fee48f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeJobCompartmentDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeJobCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeManagedDatabaseGroupCompartmentDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeManagedDatabaseGroupCompartmentDetails.java index 0482ebd03da..53d1fdc79be 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeManagedDatabaseGroupCompartmentDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeManagedDatabaseGroupCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeMysqlDatabaseManagementTypeDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeMysqlDatabaseManagementTypeDetails.java index 7a659d1c30b..41cd23cc523 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeMysqlDatabaseManagementTypeDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeMysqlDatabaseManagementTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeNamedCredentialCompartmentDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeNamedCredentialCompartmentDetails.java index 19611ece80f..14e37c73212 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeNamedCredentialCompartmentDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeNamedCredentialCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangePlanRetentionDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangePlanRetentionDetails.java index 619e214cade..729ed797745 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangePlanRetentionDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangePlanRetentionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeSpaceBudgetDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeSpaceBudgetDetails.java index 90553225daf..a816e7c0447 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeSpaceBudgetDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeSpaceBudgetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeSqlPlanBaselinesAttributesDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeSqlPlanBaselinesAttributesDetails.java index 43c5df2c59f..0067b721a89 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeSqlPlanBaselinesAttributesDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChangeSqlPlanBaselinesAttributesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChildDatabase.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChildDatabase.java index 29a3e439cdd..0e40ea1f546 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChildDatabase.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ChildDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloneSqlTuningTaskDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloneSqlTuningTaskDetails.java index cc0436451e6..6e6455dd6b4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloneSqlTuningTaskDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloneSqlTuningTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsm.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsm.java index 79270280d5b..ade7265bab0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsm.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmCollection.java index 3c2f35c7f05..4cdd7850db1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmConfiguration.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmConfiguration.java index 7fa19f04dc1..89bb5e3aec0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmConfiguration.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmConnectionCredentials.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmConnectionCredentials.java index f3c352aabac..35f95395430 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmConnectionCredentials.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmConnectionCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmConnectionCredentialsByDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmConnectionCredentialsByDetails.java index 65ff69edde9..26e645102a9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmConnectionCredentialsByDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmConnectionCredentialsByDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmConnectionCredentialsByName.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmConnectionCredentialsByName.java index 5051bcd3a48..668f37f6db8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmConnectionCredentialsByName.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmConnectionCredentialsByName.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmConnectionInfo.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmConnectionInfo.java index 09434cb0c81..cdfe413ddc1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmConnectionInfo.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmConnectionInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmDiskGroupCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmDiskGroupCollection.java index f8ee5ffb961..c139f305cb7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmDiskGroupCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmDiskGroupCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmDiskGroupSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmDiskGroupSummary.java index 4e67a1da462..727737e6d76 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmDiskGroupSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmDiskGroupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmInstance.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmInstance.java index df0032686f2..38a065af72f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmInstance.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmInstanceCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmInstanceCollection.java index d073d0cf41c..e5d57c8ef59 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmInstanceCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmInstanceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmInstanceParameters.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmInstanceParameters.java index 499d8924349..e0a64813e6d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmInstanceParameters.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmInstanceParameters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmInstanceSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmInstanceSummary.java index fd271cdb8fb..2ed01a1a532 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmInstanceSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmInstanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmServicedDatabase.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmServicedDatabase.java index 53fac94af86..8778ea68a76 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmServicedDatabase.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmServicedDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmSummary.java index b3944f007a6..5e147aa1f78 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmUserCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmUserCollection.java index 36f176a386b..d239631cc8c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmUserCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmUserCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmUserSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmUserSummary.java index daf29893733..14daa644e1e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmUserSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudAsmUserSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudCluster.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudCluster.java index d2000ccb621..bb0035678cf 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudCluster.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudCluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterCollection.java index c79aacce4c1..0da409c26c0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterInstance.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterInstance.java index 4af0b18c16b..c320397a53f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterInstance.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterInstanceCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterInstanceCollection.java index 3784dc9f329..23af9780532 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterInstanceCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterInstanceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterInstanceSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterInstanceSummary.java index 04895bc9896..3ed25739b17 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterInstanceSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterInstanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterNetworkConfiguration.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterNetworkConfiguration.java index 28f3dac8947..20f315bb689 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterNetworkConfiguration.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterNetworkConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterScanListenerConfiguration.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterScanListenerConfiguration.java index c2b0c9446b7..77ad72583cf 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterScanListenerConfiguration.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterScanListenerConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterSummary.java index 53ad2f150c9..a54ec6b8877 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterVipConfiguration.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterVipConfiguration.java index b987ebe2fd9..0b0d5fe0311 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterVipConfiguration.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudClusterVipConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDatabaseCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDatabaseCollection.java index 8300f8d8362..8c9b6c63cfd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDatabaseCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDatabaseCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDatabaseConnectionInfo.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDatabaseConnectionInfo.java index 8f6cb7cc23b..5202a4f8ad3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDatabaseConnectionInfo.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDatabaseConnectionInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDatabaseInstance.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDatabaseInstance.java index fa73038e29f..723d3179331 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDatabaseInstance.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDatabaseInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDatabaseSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDatabaseSummary.java index 67f93aa8325..e44ad042484 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDatabaseSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDatabaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbHome.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbHome.java index 4ed3c59ceb0..fe4eb2f4795 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbHome.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbHome.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbHomeCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbHomeCollection.java index 601bead2118..78f88c048d8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbHomeCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbHomeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbHomeSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbHomeSummary.java index dc8fba5191e..17a77eda242 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbHomeSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbHomeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbNode.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbNode.java index 1918c5dbbeb..7e15465b360 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbNode.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbNode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbNodeCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbNodeCollection.java index e73f03e7a83..329f72dbfeb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbNodeCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbNodeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbNodeSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbNodeSummary.java index 8d0bf929d79..afd3d022624 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbNodeSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbNodeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystem.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystem.java index b547c65cdde..f8839728a29 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystem.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemBasicInfo.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemBasicInfo.java index 6a2a7f12030..276f17c247f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemBasicInfo.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemBasicInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemCollection.java index f78339633f5..cdc40a47690 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemComponentType.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemComponentType.java index 0cdb98041b1..499d661995a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemComponentType.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemComponentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemConnectionInfo.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemConnectionInfo.java index 07235e13d41..93879d3dac1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemConnectionInfo.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemConnectionInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemConnector.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemConnector.java index 4de260a5b60..d65147fab7d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemConnector.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemConnector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemConnectorCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemConnectorCollection.java index fcbc5c4cfa5..ad65a6d8d9c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemConnectorCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemConnectorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemConnectorSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemConnectorSummary.java index c193d18d5c1..31c114690bd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemConnectorSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemConnectorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDatabaseManagementConfigDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDatabaseManagementConfigDetails.java index 3631b340ec5..7f5c12c350b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDatabaseManagementConfigDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDatabaseManagementConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDeploymentType.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDeploymentType.java index 6dd8bb12144..e40773966bf 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDeploymentType.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDeploymentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDiscovery.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDiscovery.java index 5be177bc5f4..494c389d454 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDiscovery.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDiscovery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDiscoveryCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDiscoveryCollection.java index eb7020793f3..6892ad872ab 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDiscoveryCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDiscoveryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDiscoveryConnector.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDiscoveryConnector.java index f8e9acce502..e403e626e3f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDiscoveryConnector.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDiscoveryConnector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDiscoveryMacsConnector.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDiscoveryMacsConnector.java index 6bed59dc814..953509ca23f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDiscoveryMacsConnector.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDiscoveryMacsConnector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDiscoverySummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDiscoverySummary.java index a34a072875a..ef70279ecc8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDiscoverySummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemDiscoverySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemMacsConnector.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemMacsConnector.java index 3bb09e7fcb5..7dae4976971 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemMacsConnector.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemMacsConnector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemStackMonitoringConfigDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemStackMonitoringConfigDetails.java index 679d45dfb2f..25ed021de50 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemStackMonitoringConfigDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemStackMonitoringConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemSummary.java index 37e4ec93be7..c8e6b0cbf10 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudDbSystemSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListener.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListener.java index 1cd1686220a..4fcad4c3157 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListener.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListener.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerCollection.java index a0281c97128..a9dfe9e0501 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerEndpoint.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerEndpoint.java index 85a0773c868..2a901b93fcb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerEndpoint.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerIpcEndpoint.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerIpcEndpoint.java index f558e650585..e162a33ea13 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerIpcEndpoint.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerIpcEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerServiceCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerServiceCollection.java index 2b232b1bb8d..c884f14c50b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerServiceCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerServiceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerServiceSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerServiceSummary.java index 0db4b9cc095..dbdfa3605ee 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerServiceSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerServiceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerServicedDatabase.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerServicedDatabase.java index 93823172a4e..fbf8f210744 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerServicedDatabase.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerServicedDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerSummary.java index 88d54e3907f..5b8637fe22d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerTcpEndpoint.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerTcpEndpoint.java index d452edd468b..9a91b9f7b92 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerTcpEndpoint.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerTcpEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerTcpsEndpoint.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerTcpsEndpoint.java index 5e5e3cf3aa5..9210ee358a0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerTcpsEndpoint.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudListenerTcpsEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudServicedAsm.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudServicedAsm.java index d70a180c502..550460eddfe 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudServicedAsm.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudServicedAsm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudServicedDatabase.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudServicedDatabase.java index fb849cbf7af..7aa5f11ae2f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudServicedDatabase.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CloudServicedDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ClusterCacheMetric.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ClusterCacheMetric.java index 886b7e8344e..775f2da7a15 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ClusterCacheMetric.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ClusterCacheMetric.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CompareType.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CompareType.java index ff3ce8ff9f4..40c4198ee1e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CompareType.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CompareType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ConfigureAutomaticCaptureFiltersDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ConfigureAutomaticCaptureFiltersDetails.java index 3299582313a..d5b18257835 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ConfigureAutomaticCaptureFiltersDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ConfigureAutomaticCaptureFiltersDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ConfigureAutomaticSpmEvolveAdvisorTaskDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ConfigureAutomaticSpmEvolveAdvisorTaskDetails.java index 90e9ee9dcb1..3d5f13e0d2e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ConfigureAutomaticSpmEvolveAdvisorTaskDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ConfigureAutomaticSpmEvolveAdvisorTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ConnectorDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ConnectorDetails.java index e39fc3cf23f..3e7a1b793d0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ConnectorDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ConsumerGroupPrivilegeCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ConsumerGroupPrivilegeCollection.java index 69bf56b3939..165146f64a3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ConsumerGroupPrivilegeCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ConsumerGroupPrivilegeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ConsumerGroupPrivilegeSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ConsumerGroupPrivilegeSummary.java index 75fa3c1d477..638af23fc40 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ConsumerGroupPrivilegeSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ConsumerGroupPrivilegeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CpuUtilizationAggregateMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CpuUtilizationAggregateMetrics.java index b96e955b975..bbb69ca5897 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CpuUtilizationAggregateMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CpuUtilizationAggregateMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateCloudDbSystemConnectorDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateCloudDbSystemConnectorDetails.java index be8bef0f84d..4c974664219 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateCloudDbSystemConnectorDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateCloudDbSystemConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateCloudDbSystemDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateCloudDbSystemDetails.java index 2fe4fa3c77b..a397f788a8e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateCloudDbSystemDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateCloudDbSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateCloudDbSystemDiscoveryDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateCloudDbSystemDiscoveryDetails.java index 131fff6ebb2..03a4a63dd11 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateCloudDbSystemDiscoveryDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateCloudDbSystemDiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateCloudDbSystemMacsConnectorDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateCloudDbSystemMacsConnectorDetails.java index 3406d86a81e..cbbdb7f9b90 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateCloudDbSystemMacsConnectorDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateCloudDbSystemMacsConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateDbManagementPrivateEndpointDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateDbManagementPrivateEndpointDetails.java index 8757e9de29a..a58125bf407 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateDbManagementPrivateEndpointDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateDbManagementPrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalDbSystemConnectorDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalDbSystemConnectorDetails.java index eb7d31d6556..1c22b1c977c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalDbSystemConnectorDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalDbSystemConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalDbSystemDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalDbSystemDetails.java index f2e04532109..f3773374cbb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalDbSystemDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalDbSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalDbSystemDiscoveryDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalDbSystemDiscoveryDetails.java index 37a89411969..6421043c524 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalDbSystemDiscoveryDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalDbSystemDiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalDbSystemMacsConnectorDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalDbSystemMacsConnectorDetails.java index 90530291d66..fa76a3ff66d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalDbSystemMacsConnectorDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalDbSystemMacsConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalExadataInfrastructureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalExadataInfrastructureDetails.java index fde1bc5a5a2..8c1b1375613 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalExadataInfrastructureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalExadataInfrastructureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalExadataStorageConnectorDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalExadataStorageConnectorDetails.java index 3d550227da9..59019551645 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalExadataStorageConnectorDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalExadataStorageConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalMySqlDatabaseConnectorDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalMySqlDatabaseConnectorDetails.java index ae56f3ed19e..3ac0597169a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalMySqlDatabaseConnectorDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalMySqlDatabaseConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalMySqlDatabaseDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalMySqlDatabaseDetails.java index c10e571b730..618ba707eec 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalMySqlDatabaseDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateExternalMySqlDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateJobDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateJobDetails.java index 998f6bcf411..726181b0633 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateJobDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateManagedDatabaseGroupDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateManagedDatabaseGroupDetails.java index 1f809bd747f..4b1d8dffca1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateManagedDatabaseGroupDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateManagedDatabaseGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateMySqlDatabaseConnectorDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateMySqlDatabaseConnectorDetails.java index 7f723d8af2b..b7276f55757 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateMySqlDatabaseConnectorDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateMySqlDatabaseConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateNamedCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateNamedCredentialDetails.java index 58fcdd93c8e..226a3cc549f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateNamedCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateNamedCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateSqlJobDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateSqlJobDetails.java index fda8dcef093..301ce3bcd88 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateSqlJobDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateSqlJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateSqlTuningSetDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateSqlTuningSetDetails.java index 6f12f7b0b18..731be294e85 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateSqlTuningSetDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateSqlTuningSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateTablespaceDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateTablespaceDetails.java index 871498d9991..a86fff17541 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateTablespaceDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CreateTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CursorCacheStatementCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CursorCacheStatementCollection.java index aea110e0257..c5961466efb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CursorCacheStatementCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CursorCacheStatementCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CursorCacheStatementSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CursorCacheStatementSummary.java index 6e51a686cab..fc7f9271523 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CursorCacheStatementSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/CursorCacheStatementSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DataAccessContainerCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DataAccessContainerCollection.java index c9f35773b4b..259a2d40113 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DataAccessContainerCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DataAccessContainerCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DataAccessContainerSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DataAccessContainerSummary.java index d5e37e641e7..594d7f59c32 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DataAccessContainerSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DataAccessContainerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DataPoints.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DataPoints.java index 763e7186710..82cde2e19f4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DataPoints.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DataPoints.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseBackupMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseBackupMetrics.java index 5c91e9a3732..adcf957b3fa 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseBackupMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseBackupMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseBackupSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseBackupSummary.java index 883f13e9650..753585a39ef 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseBackupSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseBackupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionCredentailsByName.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionCredentailsByName.java index 89314907e3a..e17ef99b41e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionCredentailsByName.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionCredentailsByName.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionCredentials.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionCredentials.java index 9603805b6ac..25eb604ef15 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionCredentials.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionCredentialsByDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionCredentialsByDetails.java index 0d319a52c52..16a14882876 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionCredentialsByDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionCredentialsByDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionDetails.java index 4d266bd3126..73b7d9b16a0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionString.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionString.java index 4937911b4b9..76f0bb060a0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionString.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionString.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionStringDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionStringDetails.java index 58dea6669ef..eb0a53da8a6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionStringDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseConnectionStringDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseCredentialDetails.java index 5750bb9e7c8..1ffe7b6b210 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseCredentials.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseCredentials.java index d05042d1fef..705a6f57a12 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseCredentials.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseDiagnosticsAndManagementFeatureConfiguration.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseDiagnosticsAndManagementFeatureConfiguration.java index e80ad001769..993bcd162a1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseDiagnosticsAndManagementFeatureConfiguration.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseDiagnosticsAndManagementFeatureConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseDiagnosticsAndManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseDiagnosticsAndManagementFeatureDetails.java index 354d7047bdd..c8aa996805d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseDiagnosticsAndManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseDiagnosticsAndManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFeatureConfiguration.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFeatureConfiguration.java index 6090e3c5b22..475ef41cd28 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFeatureConfiguration.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFeatureConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFeatureDetails.java index e88bf7046c7..59d9f90382a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFleetBackupMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFleetBackupMetrics.java index 8bd6c9d243c..4a8241a5bbd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFleetBackupMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFleetBackupMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFleetDataguardMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFleetDataguardMetrics.java index 383e878eddc..8bbe74278d9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFleetDataguardMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFleetDataguardMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFleetHaOverviewMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFleetHaOverviewMetrics.java index 56bb664ab32..74ff1ceee2a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFleetHaOverviewMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFleetHaOverviewMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFleetHealthMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFleetHealthMetrics.java index 05c14eb599b..db15d47a27f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFleetHealthMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseFleetHealthMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseHaBackupDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseHaBackupDetails.java index d8e9a3d55f0..eef68234650 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseHaBackupDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseHaBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseHaMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseHaMetrics.java index 3e05d38fca5..9a7312c7cd9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseHaMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseHaMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseHomeMetricDefinition.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseHomeMetricDefinition.java index 02c2b7bda0b..12b8b122b3a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseHomeMetricDefinition.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseHomeMetricDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseHomeMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseHomeMetrics.java index 44b305389b1..e46f503c5a0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseHomeMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseHomeMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseHostedIn.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseHostedIn.java index 4df2f72c3ed..5d4f775482c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseHostedIn.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseHostedIn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseIOAggregateMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseIOAggregateMetrics.java index bbaf68f64b6..50877f31650 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseIOAggregateMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseIOAggregateMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseInstanceHomeMetricsDefinition.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseInstanceHomeMetricsDefinition.java index 978fcd19f67..5abd23a62cf 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseInstanceHomeMetricsDefinition.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseInstanceHomeMetricsDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseLifecycleFeatureConfiguration.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseLifecycleFeatureConfiguration.java index 592f025d5b9..e2237958f10 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseLifecycleFeatureConfiguration.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseLifecycleFeatureConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseLifecycleManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseLifecycleManagementFeatureDetails.java index d0e8cbefca7..e26208211c7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseLifecycleManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseLifecycleManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseManagementConfig.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseManagementConfig.java index 73bcc701804..0cd93575604 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseManagementConfig.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseManagementConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseNamedCredentialConnectionDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseNamedCredentialConnectionDetails.java index 7f27e59566c..fbc10da20db 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseNamedCredentialConnectionDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseNamedCredentialConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseNamedCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseNamedCredentialDetails.java index b722161cb6b..a9ddfd3f594 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseNamedCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseNamedCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseParameterSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseParameterSummary.java index c6695c7dff8..edec9a9a474 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseParameterSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseParameterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseParameterUpdateStatus.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseParameterUpdateStatus.java index aa25fdd50b9..044d785c1f2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseParameterUpdateStatus.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseParameterUpdateStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseParametersCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseParametersCollection.java index b6f52cb9c06..0cd15b6f76f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseParametersCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseParametersCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabasePasswordCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabasePasswordCredentialDetails.java index cc08b54127b..7a7d6fc48ba 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabasePasswordCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabasePasswordCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabasePlan.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabasePlan.java index 98565168a2d..28ffc1881d4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabasePlan.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabasePlan.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabasePlanDirective.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabasePlanDirective.java index 5159f50a827..e2121dd6816 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabasePlanDirective.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabasePlanDirective.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabasePlanRoleEnum.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabasePlanRoleEnum.java index 85219edd3a9..f8a6471efa3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabasePlanRoleEnum.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabasePlanRoleEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabasePlanTypeEnum.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabasePlanTypeEnum.java index 9d956134764..89aa06af91e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabasePlanTypeEnum.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabasePlanTypeEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseSecretCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseSecretCredentialDetails.java index 904db4d78a1..7cd02a1522f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseSecretCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseSecretCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseSqlWatchFeatureConfiguration.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseSqlWatchFeatureConfiguration.java index 6c6d04de611..f0ca4f04882 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseSqlWatchFeatureConfiguration.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseSqlWatchFeatureConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseSqlWatchFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseSqlWatchFeatureDetails.java index 8cfb7949836..116ce9e534a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseSqlWatchFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseSqlWatchFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseSslConnectionCredentials.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseSslConnectionCredentials.java index 3ea486e5ca0..d118aee96f1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseSslConnectionCredentials.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseSslConnectionCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseStatus.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseStatus.java index 3bf72c0a0f9..a1362049843 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseStatus.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseStorageAggregateMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseStorageAggregateMetrics.java index 1787161e979..6d9084a5461 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseStorageAggregateMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseStorageAggregateMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseSubType.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseSubType.java index 2c0636ec090..835084644bb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseSubType.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseSubType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseTimeAggregateMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseTimeAggregateMetrics.java index bfa4402f9bc..af478686d3d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseTimeAggregateMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseTimeAggregateMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseType.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseType.java index 43e60bce05a..21486ecc470 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseType.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseUsageMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseUsageMetrics.java index e61afadd840..7458de8d051 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseUsageMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DatabaseUsageMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/Datafile.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/Datafile.java index 26a19a8b143..97301b7c62b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/Datafile.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/Datafile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DataguardMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DataguardMetrics.java index 8cbbcc212c9..3c531e77fd7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DataguardMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DataguardMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DataguardPerformanceMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DataguardPerformanceMetrics.java index 616bf5f0b0d..69eaab56ebe 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DataguardPerformanceMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DataguardPerformanceMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbManagementAnalyticsMetric.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbManagementAnalyticsMetric.java index 5f4f4b7a83a..87d7bcee162 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbManagementAnalyticsMetric.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbManagementAnalyticsMetric.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbManagementFeature.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbManagementFeature.java index 8af3c61b954..864673329a1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbManagementFeature.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbManagementFeature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbManagementPrivateEndpoint.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbManagementPrivateEndpoint.java index 36b8a93fa53..aebbdb6b687 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbManagementPrivateEndpoint.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbManagementPrivateEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbManagementPrivateEndpointCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbManagementPrivateEndpointCollection.java index 843115c5320..11e38479c35 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbManagementPrivateEndpointCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbManagementPrivateEndpointCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbManagementPrivateEndpointSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbManagementPrivateEndpointSummary.java index 3c47d2f314f..8ef077509db 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbManagementPrivateEndpointSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbManagementPrivateEndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbRole.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbRole.java index e4d5407f855..c2aac58bb3c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbRole.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbRole.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbmResource.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbmResource.java index 60e4856bc72..60dab038f62 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbmResource.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DbmResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DeploymentType.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DeploymentType.java index eaa4b13f2b7..2abb10aae2f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DeploymentType.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DeploymentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DirectConnectorDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DirectConnectorDetails.java index 879aafcb035..34cca5e5651 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DirectConnectorDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DirectConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableAutomaticInitialPlanCaptureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableAutomaticInitialPlanCaptureDetails.java index 1ed7ecc5f44..63cf7b341a8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableAutomaticInitialPlanCaptureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableAutomaticInitialPlanCaptureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableAutomaticSpmEvolveAdvisorTaskDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableAutomaticSpmEvolveAdvisorTaskDetails.java index cda20968e11..4ddf0025747 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableAutomaticSpmEvolveAdvisorTaskDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableAutomaticSpmEvolveAdvisorTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableAutonomousDatabaseManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableAutonomousDatabaseManagementFeatureDetails.java index d3cd969c9a9..37058398cc0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableAutonomousDatabaseManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableAutonomousDatabaseManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableDatabaseManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableDatabaseManagementFeatureDetails.java index fbf54ed4a27..9b17ba6eabc 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableDatabaseManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableDatabaseManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableExternalContainerDatabaseManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableExternalContainerDatabaseManagementFeatureDetails.java index 09ff5b160d7..04bed06b80f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableExternalContainerDatabaseManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableExternalContainerDatabaseManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableExternalNonContainerDatabaseManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableExternalNonContainerDatabaseManagementFeatureDetails.java index a9de7cca3f8..af5ace5635a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableExternalNonContainerDatabaseManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableExternalNonContainerDatabaseManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableExternalPluggableDatabaseManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableExternalPluggableDatabaseManagementFeatureDetails.java index 2332fe9bdaa..bf50af4ddf5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableExternalPluggableDatabaseManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableExternalPluggableDatabaseManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableHighFrequencyAutomaticSpmEvolveAdvisorTaskDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableHighFrequencyAutomaticSpmEvolveAdvisorTaskDetails.java index 59afe694b5c..f53e3e31ac2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableHighFrequencyAutomaticSpmEvolveAdvisorTaskDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableHighFrequencyAutomaticSpmEvolveAdvisorTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisablePluggableDatabaseManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisablePluggableDatabaseManagementFeatureDetails.java index 9f38584e327..b86406f6a6c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisablePluggableDatabaseManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisablePluggableDatabaseManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableSqlPlanBaselinesUsageDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableSqlPlanBaselinesUsageDetails.java index 7d4e3ae092d..34af3a90d5b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableSqlPlanBaselinesUsageDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DisableSqlPlanBaselinesUsageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoverExternalExadataInfrastructureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoverExternalExadataInfrastructureDetails.java index a196df24e76..6acffc7133f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoverExternalExadataInfrastructureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoverExternalExadataInfrastructureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudAsm.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudAsm.java index f070d0d5e94..4f670985e41 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudAsm.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudAsm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudAsmInstance.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudAsmInstance.java index d21bc940b27..06c5f242199 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudAsmInstance.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudAsmInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudCluster.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudCluster.java index 44ca9971c42..3828f6d515d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudCluster.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudCluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudClusterInstance.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudClusterInstance.java index 58cd62018c1..6ce816e398a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudClusterInstance.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudClusterInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudDatabase.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudDatabase.java index 6c8916b2cef..86ab6acbf47 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudDatabase.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudDbHome.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudDbHome.java index b4debee1afd..42b1be5cbae 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudDbHome.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudDbHome.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudDbInstance.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudDbInstance.java index 6321fa2332f..816775fb96f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudDbInstance.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudDbInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudDbNode.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudDbNode.java index a3501c31f1b..32f43490ddf 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudDbNode.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudDbNode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudDbSystemComponent.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudDbSystemComponent.java index e163f494a33..3b8551febc2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudDbSystemComponent.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudDbSystemComponent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudListener.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudListener.java index fd770c15ca2..65a84235f47 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudListener.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudListener.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudPluggableDatabase.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudPluggableDatabase.java index 5f00556de2a..53caf6550ae 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudPluggableDatabase.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredCloudPluggableDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalAsm.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalAsm.java index dbc8858d261..76bde095f50 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalAsm.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalAsm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalAsmInstance.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalAsmInstance.java index 69395d9f176..d4bea15f8c3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalAsmInstance.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalAsmInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalCluster.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalCluster.java index 3529d677553..c0b70eb4248 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalCluster.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalCluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalClusterInstance.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalClusterInstance.java index f28f7221932..9bd874045ec 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalClusterInstance.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalClusterInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalDatabase.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalDatabase.java index 91916db5ac5..f57b2f8ccbd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalDatabase.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalDbHome.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalDbHome.java index 2b229a5d01c..e9caa6be800 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalDbHome.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalDbHome.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalDbInstance.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalDbInstance.java index 9e399111017..50cf39cd189 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalDbInstance.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalDbInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalDbNode.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalDbNode.java index 953138c0a73..a41ea25015d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalDbNode.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalDbNode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalDbSystemComponent.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalDbSystemComponent.java index 7f51535b83e..c594d5454ba 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalDbSystemComponent.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalDbSystemComponent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalListener.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalListener.java index d9272191dc6..1e667b40c31 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalListener.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalListener.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalPluggableDatabase.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalPluggableDatabase.java index c7411ef6fd2..1d6a6cb7022 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalPluggableDatabase.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DiscoveredExternalPluggableDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DropSqlPlanBaselinesDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DropSqlPlanBaselinesDetails.java index 414a5dc8258..19dac0a9cda 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DropSqlPlanBaselinesDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DropSqlPlanBaselinesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DropSqlTuningSetDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DropSqlTuningSetDetails.java index f6bd5e22060..888b1c2f2e9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DropSqlTuningSetDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DropSqlTuningSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DropSqlTuningTaskDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DropSqlTuningTaskDetails.java index 2d89c1ab468..ea17b710b99 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DropSqlTuningTaskDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DropSqlTuningTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DropSqlsInSqlTuningSetDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DropSqlsInSqlTuningSetDetails.java index 92d83dc0d12..1081ac425b7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DropSqlsInSqlTuningSetDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DropSqlsInSqlTuningSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DropTablespaceDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DropTablespaceDetails.java index 6f1f239999b..9c34aebb7dd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DropTablespaceDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/DropTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableAutomaticInitialPlanCaptureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableAutomaticInitialPlanCaptureDetails.java index 3b18b48b9a3..681c31b32f8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableAutomaticInitialPlanCaptureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableAutomaticInitialPlanCaptureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableAutomaticSpmEvolveAdvisorTaskDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableAutomaticSpmEvolveAdvisorTaskDetails.java index 0c7902d3734..d6305b78e09 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableAutomaticSpmEvolveAdvisorTaskDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableAutomaticSpmEvolveAdvisorTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableAutonomousDatabaseManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableAutonomousDatabaseManagementFeatureDetails.java index 71f901a6f0d..2c20fe02b17 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableAutonomousDatabaseManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableAutonomousDatabaseManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableCloudDbSystemDatabaseManagementDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableCloudDbSystemDatabaseManagementDetails.java index cd9814b5a8b..ce03395208e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableCloudDbSystemDatabaseManagementDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableCloudDbSystemDatabaseManagementDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableCloudDbSystemStackMonitoringDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableCloudDbSystemStackMonitoringDetails.java index e628325f7ef..25922eb5b08 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableCloudDbSystemStackMonitoringDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableCloudDbSystemStackMonitoringDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableDatabaseManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableDatabaseManagementFeatureDetails.java index 9a54750388e..ca4ce2662f9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableDatabaseManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableDatabaseManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalContainerDatabaseManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalContainerDatabaseManagementFeatureDetails.java index ca9d44591b7..972775636c1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalContainerDatabaseManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalContainerDatabaseManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalDatabaseManagementDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalDatabaseManagementDetails.java index 4feea8f8610..8e02458475b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalDatabaseManagementDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalDatabaseManagementDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalDbSystemDatabaseManagementDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalDbSystemDatabaseManagementDetails.java index a515d1966fb..e1861f0a63f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalDbSystemDatabaseManagementDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalDbSystemDatabaseManagementDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalDbSystemStackMonitoringDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalDbSystemStackMonitoringDetails.java index 5d71425df86..17cb7a55d98 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalDbSystemStackMonitoringDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalDbSystemStackMonitoringDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalExadataInfrastructureManagementDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalExadataInfrastructureManagementDetails.java index fbe460a94e3..ba5f25420d1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalExadataInfrastructureManagementDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalExadataInfrastructureManagementDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalNonContainerDatabaseManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalNonContainerDatabaseManagementFeatureDetails.java index a78fa2b6f5f..5b7678e3903 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalNonContainerDatabaseManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalNonContainerDatabaseManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalPluggableDatabaseManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalPluggableDatabaseManagementFeatureDetails.java index 042ab448cd6..5b286d5b4a6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalPluggableDatabaseManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableExternalPluggableDatabaseManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableHighFrequencyAutomaticSpmEvolveAdvisorTaskDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableHighFrequencyAutomaticSpmEvolveAdvisorTaskDetails.java index 953fba64102..e45645124d5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableHighFrequencyAutomaticSpmEvolveAdvisorTaskDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableHighFrequencyAutomaticSpmEvolveAdvisorTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnablePluggableDatabaseManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnablePluggableDatabaseManagementFeatureDetails.java index c198a794bfb..243db49164a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnablePluggableDatabaseManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnablePluggableDatabaseManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableSqlPlanBaselinesUsageDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableSqlPlanBaselinesUsageDetails.java index af9b85c1d8a..aaee0242cc4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableSqlPlanBaselinesUsageDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EnableSqlPlanBaselinesUsageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EntityDiscovered.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EntityDiscovered.java index a87dfe3d695..79febe97a40 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EntityDiscovered.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/EntityDiscovered.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExadataInfrastructureLifecycleStateValues.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExadataInfrastructureLifecycleStateValues.java index ba09ba8780d..e46a511a793 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExadataInfrastructureLifecycleStateValues.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExadataInfrastructureLifecycleStateValues.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExecutionPlanStatsComparision.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExecutionPlanStatsComparision.java index c58b61073c6..c914a2cfcc3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExecutionPlanStatsComparision.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExecutionPlanStatsComparision.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsm.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsm.java index 722176b56f6..497f5872696 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsm.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmCollection.java index 753435a7576..332d1f3731a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmConfiguration.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmConfiguration.java index e914cc31b03..dc2e1717868 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmConfiguration.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmConnectionInfo.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmConnectionInfo.java index f6a38fbe7ef..456a0c8e656 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmConnectionInfo.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmConnectionInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmDiskGroupCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmDiskGroupCollection.java index 2f3b738c408..eb629adf0b3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmDiskGroupCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmDiskGroupCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmDiskGroupSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmDiskGroupSummary.java index ad14e048a29..7059cfb869c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmDiskGroupSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmDiskGroupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmInstance.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmInstance.java index 0caa6c4a714..e191051e1b0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmInstance.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmInstanceCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmInstanceCollection.java index d13ce23b78a..90242ec736e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmInstanceCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmInstanceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmInstanceParameters.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmInstanceParameters.java index b97eaf27009..cd6918e2a1e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmInstanceParameters.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmInstanceParameters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmInstanceSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmInstanceSummary.java index dd9d2e816b9..909840c1485 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmInstanceSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmInstanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmServicedDatabase.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmServicedDatabase.java index e04fe5d573e..2022cfe7302 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmServicedDatabase.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmServicedDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmSummary.java index 5a65721ca63..9c21288de69 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmUserCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmUserCollection.java index 42d1ab65f86..b68cb0866a7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmUserCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmUserCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmUserSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmUserSummary.java index 09500e6e815..6379838e41e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmUserSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalAsmUserSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalCluster.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalCluster.java index 268a1deae26..3e092d3f1fb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalCluster.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalCluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterCollection.java index 9e33e14ecf4..f5a13540fd2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterInstance.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterInstance.java index 668c07ff9a4..08e8f916920 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterInstance.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterInstanceCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterInstanceCollection.java index 888e5a5bb48..9a9530850f1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterInstanceCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterInstanceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterInstanceSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterInstanceSummary.java index 357c0ba0871..e32fdbefc2b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterInstanceSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterInstanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterNetworkConfiguration.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterNetworkConfiguration.java index 22c39197dcc..8d35515ae2a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterNetworkConfiguration.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterNetworkConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterScanListenerConfiguration.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterScanListenerConfiguration.java index bcbf5c2fd0f..af1b96e7676 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterScanListenerConfiguration.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterScanListenerConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterSummary.java index 50a3760dc3a..db0fdbc0af0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterVipConfiguration.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterVipConfiguration.java index f75d25b22b9..0b4d778d687 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterVipConfiguration.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalClusterVipConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalConnectorDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalConnectorDetails.java index 52f12bcddeb..2ff8cacbdd9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalConnectorDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseCollection.java index a6386f88605..8d00a4cc7ca 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseConnectionInfo.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseConnectionInfo.java index bb2d039d4cf..eae88ab00f1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseConnectionInfo.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseConnectionInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseDiagnosticsAndManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseDiagnosticsAndManagementFeatureDetails.java index 5d9d2afe50d..525e934e307 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseDiagnosticsAndManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseDiagnosticsAndManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseFeatureDetails.java index ae398d2c4bb..6838381d8f8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseInstance.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseInstance.java index 01da8f685ea..45fdba87216 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseInstance.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseLifecycleManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseLifecycleManagementFeatureDetails.java index dae11af440f..d7dd64a4d5a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseLifecycleManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseLifecycleManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseSqlWatchFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseSqlWatchFeatureDetails.java index 584b8070537..2d18644d604 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseSqlWatchFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseSqlWatchFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseSummary.java index 440418f42fb..09ee2c2bdf6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseSystemDiscoverySummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseSystemDiscoverySummary.java index 6ec9a176d7c..d63cb232738 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseSystemDiscoverySummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDatabaseSystemDiscoverySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbHome.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbHome.java index 38619c21ebf..f8bf8213247 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbHome.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbHome.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbHomeCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbHomeCollection.java index 00e2aa98871..cfa3a1408f5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbHomeCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbHomeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbHomeSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbHomeSummary.java index 210c90db23c..1fc713bf792 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbHomeSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbHomeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbNode.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbNode.java index d80dfd777e8..0dd1465dd93 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbNode.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbNode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbNodeCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbNodeCollection.java index a1d7c868506..331b6f39922 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbNodeCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbNodeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbNodeSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbNodeSummary.java index 61b92313477..a262c8d12ed 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbNodeSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbNodeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystem.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystem.java index 8cfe2686bc9..9b94f49331b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystem.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemBasicInfo.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemBasicInfo.java index c84d23302ce..4535651f3a4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemBasicInfo.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemBasicInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemCollection.java index 6434f8d76ac..ad2f996599b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemComponentType.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemComponentType.java index 3b7596ea28b..1cc536d3be2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemComponentType.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemComponentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemConnectionInfo.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemConnectionInfo.java index 069b79e82c9..df0c6760b25 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemConnectionInfo.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemConnectionInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemConnector.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemConnector.java index 30c08adb42f..b421495a81d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemConnector.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemConnector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemConnectorCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemConnectorCollection.java index a0623921f0a..2d8151d39f7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemConnectorCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemConnectorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemConnectorSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemConnectorSummary.java index a404a83f933..f073820fcaa 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemConnectorSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemConnectorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDatabaseManagementConfigDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDatabaseManagementConfigDetails.java index 2cb6767811b..5f9e2f6c616 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDatabaseManagementConfigDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDatabaseManagementConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDiscovery.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDiscovery.java index 19c84cf0511..830209e9577 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDiscovery.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDiscovery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDiscoveryCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDiscoveryCollection.java index 5d20ca67b8f..34d5378deaf 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDiscoveryCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDiscoveryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDiscoveryConnector.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDiscoveryConnector.java index 4c79507b69b..1aeff189e53 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDiscoveryConnector.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDiscoveryConnector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDiscoveryMacsConnector.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDiscoveryMacsConnector.java index 0d02a3bc472..08d9b9ef9aa 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDiscoveryMacsConnector.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDiscoveryMacsConnector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDiscoverySummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDiscoverySummary.java index 3e433be13fc..79d20c7cddd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDiscoverySummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemDiscoverySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemMacsConnector.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemMacsConnector.java index a45f0f37112..75d8610b3eb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemMacsConnector.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemMacsConnector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemStackMonitoringConfigDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemStackMonitoringConfigDetails.java index 69031459e72..2708b4c201b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemStackMonitoringConfigDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemStackMonitoringConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemSummary.java index 0b6828a3dd3..7ebc461b657 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalDbSystemSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataDatabaseSystemSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataDatabaseSystemSummary.java index a7be3eb6cfe..de9988dd905 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataDatabaseSystemSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataDatabaseSystemSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfraBasicInfo.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfraBasicInfo.java index 43940fa50e4..5971c60e415 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfraBasicInfo.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfraBasicInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfrastructure.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfrastructure.java index 72e476bf9f8..9d33382d7af 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfrastructure.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfrastructure.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfrastructureCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfrastructureCollection.java index a6d28e2e8bb..b0070927993 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfrastructureCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfrastructureCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfrastructureDiscovery.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfrastructureDiscovery.java index ae5a7839016..eb45ed379f9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfrastructureDiscovery.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfrastructureDiscovery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfrastructureDiscoverySummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfrastructureDiscoverySummary.java index a92428c96e2..549c5ba705a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfrastructureDiscoverySummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfrastructureDiscoverySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfrastructureSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfrastructureSummary.java index bed7fc05b2e..e0fd9cb87a3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfrastructureSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataInfrastructureSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageConnector.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageConnector.java index 132649da1f6..6ed426587c0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageConnector.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageConnector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageConnectorCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageConnectorCollection.java index e96b36aafea..a74cf88eabc 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageConnectorCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageConnectorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageConnectorStatus.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageConnectorStatus.java index 85f60886b6b..de4866fbe68 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageConnectorStatus.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageConnectorStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageConnectorSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageConnectorSummary.java index ab11115b585..a0f0d55c6d0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageConnectorSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageConnectorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageGrid.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageGrid.java index 297ee474758..2fc446bf50e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageGrid.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageGrid.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageGridSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageGridSummary.java index 2632359fd0b..34d77b70dba 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageGridSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageGridSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageServer.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageServer.java index 9a708eafd10..ab3e173a67f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageServer.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageServer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageServerCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageServerCollection.java index 2efb17d3e45..e36b6ccc0da 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageServerCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageServerCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageServerSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageServerSummary.java index 422821d364b..ce731d0e768 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageServerSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalExadataStorageServerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListener.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListener.java index f43a9e15449..10fe296ba8f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListener.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListener.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerCollection.java index 433716420cf..7f0ac3c3386 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerEndpoint.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerEndpoint.java index f8783454a20..c65e3ed2961 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerEndpoint.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerIpcEndpoint.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerIpcEndpoint.java index 2b471273bcd..bc9373dad77 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerIpcEndpoint.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerIpcEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerServiceCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerServiceCollection.java index a2ed33a1453..8e22b296460 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerServiceCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerServiceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerServiceSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerServiceSummary.java index 52cd18b0099..36cc92c3817 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerServiceSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerServiceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerServicedDatabase.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerServicedDatabase.java index d601d3cfc9c..91d0529d3c3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerServicedDatabase.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerServicedDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerSummary.java index 6724032ae7b..6d167b919e8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerTcpEndpoint.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerTcpEndpoint.java index 99e9dac8fa0..5c122322f1c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerTcpEndpoint.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerTcpEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerTcpsEndpoint.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerTcpsEndpoint.java index d291911a1fd..8724d4ee3a3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerTcpsEndpoint.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalListenerTcpsEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalMySqlDatabase.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalMySqlDatabase.java index a932ca37580..8bc7a7aa60b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalMySqlDatabase.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalMySqlDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalMySqlDatabaseCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalMySqlDatabaseCollection.java index 39668d38300..1440d07527a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalMySqlDatabaseCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalMySqlDatabaseCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalMySqlDatabaseConnector.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalMySqlDatabaseConnector.java index e807db12c8e..b2eb7e7e50f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalMySqlDatabaseConnector.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalMySqlDatabaseConnector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalMySqlDatabaseSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalMySqlDatabaseSummary.java index 4034e0a4aea..50506f22c51 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalMySqlDatabaseSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalMySqlDatabaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalPluggableDatabaseDiagnosticsAndManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalPluggableDatabaseDiagnosticsAndManagementFeatureDetails.java index 6879adadcee..2a0608bb649 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalPluggableDatabaseDiagnosticsAndManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalPluggableDatabaseDiagnosticsAndManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalPluggableDatabaseFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalPluggableDatabaseFeatureDetails.java index e5718e5090e..6a91641d4ec 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalPluggableDatabaseFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalPluggableDatabaseFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalPluggableDatabaseLifecycleManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalPluggableDatabaseLifecycleManagementFeatureDetails.java index f64d5cdef3a..41ece0ba165 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalPluggableDatabaseLifecycleManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalPluggableDatabaseLifecycleManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalPluggableDatabaseSqlWatchFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalPluggableDatabaseSqlWatchFeatureDetails.java index 1df32925567..7ae52e98d13 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalPluggableDatabaseSqlWatchFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalPluggableDatabaseSqlWatchFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalServicedAsm.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalServicedAsm.java index 2670bfe63b1..68f1664f368 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalServicedAsm.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalServicedAsm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalServicedDatabase.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalServicedDatabase.java index bbae617bfe1..23c208be5f4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalServicedDatabase.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalServicedDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalStorageGridDiscoverySummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalStorageGridDiscoverySummary.java index 27c2e862d2b..b34fe126afd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalStorageGridDiscoverySummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalStorageGridDiscoverySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalStorageServerDiscoverySummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalStorageServerDiscoverySummary.java index bc73a7ee3aa..633826ecad9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalStorageServerDiscoverySummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ExternalStorageServerDiscoverySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FailedConnectionsAggregateMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FailedConnectionsAggregateMetrics.java index 0910d2943b9..aa2793f6954 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FailedConnectionsAggregateMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FailedConnectionsAggregateMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FetchSqlTuningSetDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FetchSqlTuningSetDetails.java index 6c2002acad7..7d8a5a31701 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FetchSqlTuningSetDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FetchSqlTuningSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FindingSchemaOrOperation.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FindingSchemaOrOperation.java index 9614e0d14b2..f90cf405868 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FindingSchemaOrOperation.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FindingSchemaOrOperation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FleetMetricDefinition.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FleetMetricDefinition.java index caeec83e4db..ef6095ddbab 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FleetMetricDefinition.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FleetMetricDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FleetMetricSummaryDefinition.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FleetMetricSummaryDefinition.java index e0b4f4ede6b..91209c56e2f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FleetMetricSummaryDefinition.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FleetMetricSummaryDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FleetStatusByCategory.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FleetStatusByCategory.java index 8d250c4b194..fb4ca54fb2a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FleetStatusByCategory.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FleetStatusByCategory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FleetSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FleetSummary.java index 2a6e9175663..bdf53356e79 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FleetSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/FleetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HaMetricDefinition.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HaMetricDefinition.java index 11cd6a02794..0add85b3ad6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HaMetricDefinition.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HaMetricDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveClusterStatus.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveClusterStatus.java index 9324ad6a9c4..342ac8999b1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveClusterStatus.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveClusterStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveClusterUsageMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveClusterUsageMetrics.java index 41d7b1afdef..f846a3b4a86 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveClusterUsageMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveClusterUsageMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveFleetByCategory.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveFleetByCategory.java index 8089abdabad..ea6a3db5708 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveFleetByCategory.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveFleetByCategory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveFleetMetricDefinition.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveFleetMetricDefinition.java index 6beb675b27c..e5bdd08c319 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveFleetMetricDefinition.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveFleetMetricDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveFleetMetricSummaryDefinition.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveFleetMetricSummaryDefinition.java index a5f19fbadd2..7f4b0483f17 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveFleetMetricSummaryDefinition.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveFleetMetricSummaryDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveFleetMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveFleetMetrics.java index 6359a7cc7f3..333ab0c6b17 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveFleetMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveFleetMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveFleetSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveFleetSummary.java index ffb458ad19f..40cdf18af20 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveFleetSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveFleetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveNode.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveNode.java index 17b6354dba1..2153f8d903a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveNode.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveNode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveNodeStatus.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveNodeStatus.java index 81e6bc28d35..4fe43fc8b12 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveNodeStatus.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HeatWaveNodeStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HistoricAddmResult.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HistoricAddmResult.java index 708d1ec5b29..b078c67da7e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HistoricAddmResult.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/HistoricAddmResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ImplementOptimizerStatisticsAdvisorRecommendationsDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ImplementOptimizerStatisticsAdvisorRecommendationsDetails.java index 19e9fed927a..18403633de6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ImplementOptimizerStatisticsAdvisorRecommendationsDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ImplementOptimizerStatisticsAdvisorRecommendationsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ImplementOptimizerStatisticsAdvisorRecommendationsJob.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ImplementOptimizerStatisticsAdvisorRecommendationsJob.java index 3a1e7e79623..43c72b566c3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ImplementOptimizerStatisticsAdvisorRecommendationsJob.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ImplementOptimizerStatisticsAdvisorRecommendationsJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/InstanceDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/InstanceDetails.java index c8051ebd294..48d0377ae2f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/InstanceDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/InstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/IormPlan.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/IormPlan.java index 4ac51183051..86749c46b00 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/IormPlan.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/IormPlan.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/IormPlanObjectiveEnum.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/IormPlanObjectiveEnum.java index 768e602a993..ef9a082862c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/IormPlanObjectiveEnum.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/IormPlanObjectiveEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/IormPlanStatusEnum.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/IormPlanStatusEnum.java index c16d54f916f..e3169e4edb4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/IormPlanStatusEnum.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/IormPlanStatusEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/Job.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/Job.java index 616da275344..c866424084e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/Job.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/Job.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobCollection.java index 20ee7e5b367..e7a8162f771 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobDatabase.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobDatabase.java index 54d751eda37..31aabe306fb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobDatabase.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecution.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecution.java index 5dc13603724..e964231eb2d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecution.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecution.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionCollection.java index 0c240ee58c9..f4bf9a7a16c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionResultDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionResultDetails.java index 09f2bb94730..d34da3d81e8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionResultDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionResultDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionResultLocation.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionResultLocation.java index 47cc22394c0..925dde51adc 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionResultLocation.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionResultLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionSummary.java index 0d83a94be30..0c782710836 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionsStatusSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionsStatusSummary.java index 0072dd961ff..ec894da90b6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionsStatusSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionsStatusSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionsStatusSummaryCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionsStatusSummaryCollection.java index 825071b878d..7e8d61d6e5e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionsStatusSummaryCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobExecutionsStatusSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobInBind.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobInBind.java index b4b9dab3ba8..e4d9c1cd69c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobInBind.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobInBind.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobInBindsDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobInBindsDetails.java index c8b4d51863c..da218590f1f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobInBindsDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobInBindsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobOutBind.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobOutBind.java index 756a1daa351..2f3b3e1462b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobOutBind.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobOutBind.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobOutBindsDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobOutBindsDetails.java index f140f528f91..835e7a0ee32 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobOutBindsDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobOutBindsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobRun.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobRun.java index 30da7fb28e6..0efc716de08 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobRun.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobRun.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobRunCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobRunCollection.java index a27006081c2..2a807541a87 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobRunCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobRunCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobRunSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobRunSummary.java index cb67f8699a3..328f1ad144c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobRunSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobRunSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobScheduleDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobScheduleDetails.java index a641deafda2..411db3aedd1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobScheduleDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobSummary.java index ae3bc76780e..8d9997e627e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobTypes.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobTypes.java index 912af34489f..532d8500fad 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobTypes.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/JobTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/LifecycleStates.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/LifecycleStates.java index a0e9e7aa192..8eb01849a5b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/LifecycleStates.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/LifecycleStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/LoadSqlPlanBaselinesFromAwrDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/LoadSqlPlanBaselinesFromAwrDetails.java index bf96671f349..68b0ab6f9b3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/LoadSqlPlanBaselinesFromAwrDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/LoadSqlPlanBaselinesFromAwrDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/LoadSqlPlanBaselinesFromCursorCacheDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/LoadSqlPlanBaselinesFromCursorCacheDetails.java index a4fc131cd44..46060d6e046 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/LoadSqlPlanBaselinesFromCursorCacheDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/LoadSqlPlanBaselinesFromCursorCacheDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/LoadSqlTuningSetDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/LoadSqlTuningSetDetails.java index 88223e77240..984eb9b1577 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/LoadSqlTuningSetDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/LoadSqlTuningSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MacsConnectorDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MacsConnectorDetails.java index e83a180a327..022a5e6032e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MacsConnectorDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MacsConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabase.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabase.java index 40795b7794b..1c69047741c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabase.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseCollection.java index 7c3c7d791e0..e881eb15864 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseCredential.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseCredential.java index d92340f5ca0..2786bbc062c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseCredential.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseCredential.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseGroup.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseGroup.java index 48d5d4e814b..f3875c36eec 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseGroup.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseGroupCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseGroupCollection.java index 8cbb96e50f0..b492c3fb84a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseGroupCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseGroupCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseGroupSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseGroupSummary.java index ca9b6fdebfa..a403520ec09 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseGroupSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseGroupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabasePasswordCredential.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabasePasswordCredential.java index 45891f561ae..ef9f321c2b0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabasePasswordCredential.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabasePasswordCredential.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseSecretCredential.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseSecretCredential.java index 40e1416bceb..fca8d490cf5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseSecretCredential.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseSecretCredential.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseSummary.java index 3563bd63603..9efb237e5ae 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedDatabaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabase.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabase.java index a663b1c31a8..8229ae1aced 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabase.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseBinaryLogInformation.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseBinaryLogInformation.java index c3b8186b42a..5dd42fb9324 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseBinaryLogInformation.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseBinaryLogInformation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseCollection.java index 8829d315da0..b2a36169321 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseGeneralReplicationInformation.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseGeneralReplicationInformation.java index d9e4ba6b5b8..3b47cb80eb3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseGeneralReplicationInformation.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseGeneralReplicationInformation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseHighAvailabilityMemberCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseHighAvailabilityMemberCollection.java index 6192b2c60ea..814e33d5ce3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseHighAvailabilityMemberCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseHighAvailabilityMemberCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseHighAvailabilityMemberSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseHighAvailabilityMemberSummary.java index 2f21dded053..3d8c4bfa473 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseHighAvailabilityMemberSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseHighAvailabilityMemberSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseInboundReplicationCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseInboundReplicationCollection.java index 9eb62b43b2d..f45d9da8976 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseInboundReplicationCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseInboundReplicationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseInboundReplicationSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseInboundReplicationSummary.java index 7bd2c5fb84d..8c59413c849 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseInboundReplicationSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseInboundReplicationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseOutboundReplicationCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseOutboundReplicationCollection.java index 3aca195ed3e..c059951bde0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseOutboundReplicationCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseOutboundReplicationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseOutboundReplicationSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseOutboundReplicationSummary.java index 31e2780e37b..bf9fccda869 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseOutboundReplicationSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseOutboundReplicationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseSummary.java index 3ccb81ba83a..6f481dfa490 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagedMySqlDatabaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagementOption.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagementOption.java index a9f4c2338d5..8c39188021d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagementOption.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagementOption.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagementState.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagementState.java index 0a4b23da2cb..79d6da9282a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagementState.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ManagementState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MdsType.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MdsType.java index ed6fadcb556..4e784e368c1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MdsType.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MdsType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MemoryAggregateMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MemoryAggregateMetrics.java index d40e602f3ab..b543ba174b5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MemoryAggregateMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MemoryAggregateMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MetricDataPoint.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MetricDataPoint.java index fcb116fec43..e3c85bc2335 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MetricDataPoint.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MetricDataPoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MetricDimensionDefinition.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MetricDimensionDefinition.java index 0857e0d7ab5..adf1b7281f4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MetricDimensionDefinition.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MetricDimensionDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MetricStatisticsDefinition.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MetricStatisticsDefinition.java index 4b0291d7d39..dc0db0c9567 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MetricStatisticsDefinition.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MetricStatisticsDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MetricsAggregationRange.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MetricsAggregationRange.java index e027d7facfd..4df1b71234f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MetricsAggregationRange.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MetricsAggregationRange.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MetricsAggregationRangeCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MetricsAggregationRangeCollection.java index 38bae225332..a04ae99eb31 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MetricsAggregationRangeCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MetricsAggregationRangeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ModifyAutonomousDatabaseManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ModifyAutonomousDatabaseManagementFeatureDetails.java index 4a435362723..7795b522cbb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ModifyAutonomousDatabaseManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ModifyAutonomousDatabaseManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ModifyDatabaseManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ModifyDatabaseManagementFeatureDetails.java index 4318b2976d2..9275b272dfa 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ModifyDatabaseManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ModifyDatabaseManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ModifyPluggableDatabaseManagementFeatureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ModifyPluggableDatabaseManagementFeatureDetails.java index e16e707844f..17e00859d52 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ModifyPluggableDatabaseManagementFeatureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ModifyPluggableDatabaseManagementFeatureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ModifySnapshotSettingsDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ModifySnapshotSettingsDetails.java index b7355338f74..06cbc258208 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ModifySnapshotSettingsDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ModifySnapshotSettingsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlApplyError.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlApplyError.java index 05348c0a98b..44fc4ff40c4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlApplyError.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlApplyError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlApplyErrorWorker.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlApplyErrorWorker.java index 069ba57dc63..b166a05e4db 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlApplyErrorWorker.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlApplyErrorWorker.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlChannelApplyError.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlChannelApplyError.java index f4b8341646a..de444a227c1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlChannelApplyError.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlChannelApplyError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlChannelFetchError.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlChannelFetchError.java index ab5850a3d0f..0f483d70bb7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlChannelFetchError.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlChannelFetchError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlConfigurationDataCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlConfigurationDataCollection.java index 30199bb2700..6d040198e9a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlConfigurationDataCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlConfigurationDataCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlConfigurationDataSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlConfigurationDataSummary.java index 6dac9222208..b83b7ba0d41 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlConfigurationDataSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlConfigurationDataSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlConnectorCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlConnectorCollection.java index 5e8d8f61b20..a7e0593d644 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlConnectorCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlConnectorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlConnectorType.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlConnectorType.java index 5de07d566f4..0388e706d34 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlConnectorType.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlConnectorType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlCredType.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlCredType.java index 91d1c98c26d..ab3bdb71930 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlCredType.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlCredType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDataCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDataCollection.java index f10948be121..50c7ad18534 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDataCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDataCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDataSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDataSummary.java index 06aad622fff..7842abb1c3a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDataSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDataSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDatabaseConnectorSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDatabaseConnectorSummary.java index 0614cb501ec..4037b3f5336 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDatabaseConnectorSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDatabaseConnectorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDatabaseStatus.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDatabaseStatus.java index 30e52378ac1..4dce480a54d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDatabaseStatus.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDatabaseStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDatabaseUsageMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDatabaseUsageMetrics.java index 30323834d87..40fc9dd1547 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDatabaseUsageMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDatabaseUsageMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDeploymentType.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDeploymentType.java index 75caad9ae4d..7cdc2fd0792 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDeploymentType.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDeploymentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDigestErrorSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDigestErrorSummary.java index 552403b9c75..1fe2e542c4d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDigestErrorSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDigestErrorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDigestErrorsCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDigestErrorsCollection.java index 335a6814cbd..1193b5eb606 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDigestErrorsCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlDigestErrorsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFetchError.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFetchError.java index 180abd61a7e..eabfd4a7a0c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFetchError.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFetchError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFleetByCategory.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFleetByCategory.java index bbd66778743..465612f41f2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFleetByCategory.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFleetByCategory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFleetMetricDefinition.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFleetMetricDefinition.java index bfcf869b391..ac9b6e55c78 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFleetMetricDefinition.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFleetMetricDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFleetMetricSummaryDefinition.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFleetMetricSummaryDefinition.java index 928c4d1385d..826d37345c3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFleetMetricSummaryDefinition.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFleetMetricSummaryDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFleetMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFleetMetrics.java index a20e7007470..c8a8756500a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFleetMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFleetMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFleetSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFleetSummary.java index 2e49d27563b..5feb1f2625a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFleetSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlFleetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlHighAvailabilityStatusSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlHighAvailabilityStatusSummary.java index 7c639dcaedf..447ee3e416e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlHighAvailabilityStatusSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlHighAvailabilityStatusSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlJsonExplainVersion.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlJsonExplainVersion.java index 86f4b078298..26478a0d0da 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlJsonExplainVersion.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlJsonExplainVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlMessageSeverity.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlMessageSeverity.java index 715d3e415c2..47a9b966731 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlMessageSeverity.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlMessageSeverity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlNetworkProtocolType.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlNetworkProtocolType.java index fa4043f88d8..476fdd8c5e6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlNetworkProtocolType.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlNetworkProtocolType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlQueryDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlQueryDetails.java index f94fe376c1a..fc384fcf644 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlQueryDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlQueryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlQueryExplainPlan.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlQueryExplainPlan.java index e4a03cdb756..ea53d2971ab 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlQueryExplainPlan.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlQueryExplainPlan.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlQueryMessage.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlQueryMessage.java index 7591e42486a..3041f24591b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlQueryMessage.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlQueryMessage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlQuerySampleDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlQuerySampleDetails.java index c38c0c900b4..8b55c400a55 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlQuerySampleDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlQuerySampleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlReadOnly.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlReadOnly.java index 0ad866a9fdd..16815b2273a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlReadOnly.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlReadOnly.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlReplicationApplierFilter.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlReplicationApplierFilter.java index 4d814c7aca7..2fbe6a48da9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlReplicationApplierFilter.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlReplicationApplierFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlType.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlType.java index d225a2fd5bf..a4d06fcee3b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlType.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/MySqlType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredential.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredential.java index f23cd2cd908..d4c224c9ed2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredential.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredential.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredentialCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredentialCollection.java index e05ae21f079..e46fab8c313 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredentialCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredentialCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredentialContent.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredentialContent.java index 8b200a863c0..6d23e5a918e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredentialContent.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredentialContent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredentialContentType.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredentialContentType.java index 32003272c51..0416c792f8d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredentialContentType.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredentialContentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredentialScope.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredentialScope.java index 2fce900e232..98b103322ca 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredentialScope.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredentialScope.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredentialSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredentialSummary.java index 2f790213553..794b5e599d6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredentialSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedCredentialSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedPreferredCredential.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedPreferredCredential.java index 07e7f717b41..e2132abc4e3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedPreferredCredential.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/NamedPreferredCredential.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ObjectPrivilegeCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ObjectPrivilegeCollection.java index 6526bfe7557..69be35e6486 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ObjectPrivilegeCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ObjectPrivilegeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ObjectPrivilegeSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ObjectPrivilegeSummary.java index 991b47d0c5f..89d70c89000 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ObjectPrivilegeSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ObjectPrivilegeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ObjectStorageJobExecutionResultDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ObjectStorageJobExecutionResultDetails.java index 7e24761e3dd..44e85157efc 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ObjectStorageJobExecutionResultDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ObjectStorageJobExecutionResultDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ObjectStorageJobExecutionResultLocation.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ObjectStorageJobExecutionResultLocation.java index 611a774e0ba..cd965710a9e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ObjectStorageJobExecutionResultLocation.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ObjectStorageJobExecutionResultLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OpenAlertHistory.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OpenAlertHistory.java index 75aac9cc119..ba2298f14ac 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OpenAlertHistory.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OpenAlertHistory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OpenAlertSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OpenAlertSummary.java index 7815a0a5097..34e17a09269 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OpenAlertSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OpenAlertSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerDatabase.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerDatabase.java index 374fef9eaf7..d97f4e92840 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerDatabase.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsAdvisorExecution.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsAdvisorExecution.java index eec67e2b8d9..f397d24825a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsAdvisorExecution.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsAdvisorExecution.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsAdvisorExecutionReport.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsAdvisorExecutionReport.java index 4769984e846..a7caa8f6c4c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsAdvisorExecutionReport.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsAdvisorExecutionReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsAdvisorExecutionScript.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsAdvisorExecutionScript.java index dec3590dc57..c4148c976b0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsAdvisorExecutionScript.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsAdvisorExecutionScript.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsAdvisorExecutionSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsAdvisorExecutionSummary.java index b7e963449d6..be13d89c0ca 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsAdvisorExecutionSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsAdvisorExecutionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsAdvisorExecutionsCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsAdvisorExecutionsCollection.java index 946d8fa3419..e634e924131 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsAdvisorExecutionsCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsAdvisorExecutionsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsCollectionAggregationSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsCollectionAggregationSummary.java index 5ceef1fff23..91aceb4eb4e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsCollectionAggregationSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsCollectionAggregationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsCollectionAggregationsCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsCollectionAggregationsCollection.java index 169fb80d74a..465c6345b3e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsCollectionAggregationsCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsCollectionAggregationsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsCollectionOperation.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsCollectionOperation.java index 7faf78a4e4a..d2d3ad86bca 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsCollectionOperation.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsCollectionOperation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsCollectionOperationSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsCollectionOperationSummary.java index ba966805df7..ccd8b6fa273 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsCollectionOperationSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsCollectionOperationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsCollectionOperationsCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsCollectionOperationsCollection.java index a36a61cde70..198fafc5504 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsCollectionOperationsCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsCollectionOperationsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsGroupByTypes.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsGroupByTypes.java index 587288b183a..3cb374fdf97 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsGroupByTypes.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsGroupByTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsOperationTask.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsOperationTask.java index 00232926136..a8f7e2f8bfb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsOperationTask.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsOperationTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsTaskFilterTypes.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsTaskFilterTypes.java index a95a4ab0514..ca4b70d0dbf 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsTaskFilterTypes.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/OptimizerStatisticsTaskFilterTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ParameterScope.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ParameterScope.java index 9d5c57e6080..7ac27bd90d4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ParameterScope.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ParameterScope.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ParentGroup.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ParentGroup.java index 250bc0174f9..ef9238c3536 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ParentGroup.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ParentGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PasswordSecretAccessMode.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PasswordSecretAccessMode.java index 8b2a2b6054b..2fd8994e2ea 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PasswordSecretAccessMode.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PasswordSecretAccessMode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PatchCloudDbSystemDiscoveryDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PatchCloudDbSystemDiscoveryDetails.java index 2f46703cac4..b3ffd7b927c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PatchCloudDbSystemDiscoveryDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PatchCloudDbSystemDiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PatchExternalDbSystemDiscoveryDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PatchExternalDbSystemDiscoveryDetails.java index a87303d1338..1ca5aed12b0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PatchExternalDbSystemDiscoveryDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PatchExternalDbSystemDiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PatchInstruction.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PatchInstruction.java index e579e52fb02..65c2e70dfa6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PatchInstruction.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PatchInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PatchMergeInstruction.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PatchMergeInstruction.java index 1a8c6609a26..6d630b25d2d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PatchMergeInstruction.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PatchMergeInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PdbMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PdbMetrics.java index f315db0aedb..1984b75f7af 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PdbMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PdbMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PdbStatusDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PdbStatusDetails.java index bad5a2b08bb..1ce1199ce50 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PdbStatusDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PdbStatusDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PeerDatabaseMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PeerDatabaseMetrics.java index 69106fd3bd7..77097b13f23 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PeerDatabaseMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PeerDatabaseMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PerformanceMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PerformanceMetrics.java index 85a2eac4ec2..4e3b40faf8a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PerformanceMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PerformanceMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PerformanceMetricsData.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PerformanceMetricsData.java index 1bc25c23985..93fb6343f2a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PerformanceMetricsData.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PerformanceMetricsData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PreferredCredential.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PreferredCredential.java index 1fe7c963eea..35469f0d608 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PreferredCredential.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PreferredCredential.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PreferredCredentialCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PreferredCredentialCollection.java index 80082a57959..e1a0a513aaa 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PreferredCredentialCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PreferredCredentialCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PreferredCredentialStatus.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PreferredCredentialStatus.java index 06c688df9e4..be8b609bfd6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PreferredCredentialStatus.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PreferredCredentialStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PreferredCredentialSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PreferredCredentialSummary.java index accbaa8d6a2..0b87abd5144 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PreferredCredentialSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PreferredCredentialSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PreferredCredentialType.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PreferredCredentialType.java index b2017ed8907..e69de8bc8de 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PreferredCredentialType.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PreferredCredentialType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PrivateEndPointConnectorDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PrivateEndPointConnectorDetails.java index 944798538cc..753548031f0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PrivateEndPointConnectorDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/PrivateEndPointConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ProxiedForUserCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ProxiedForUserCollection.java index 4b2c3a92b51..20c13503ba6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ProxiedForUserCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ProxiedForUserCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ProxiedForUserSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ProxiedForUserSummary.java index 55318a84147..9f2b3bd3d76 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ProxiedForUserSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ProxiedForUserSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ProxyUserCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ProxyUserCollection.java index 4e63762f9e6..c6e344980c0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ProxyUserCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ProxyUserCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ProxyUserSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ProxyUserSummary.java index db7316d0d3c..9765197c0df 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ProxyUserSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ProxyUserSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RankingMeasure.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RankingMeasure.java index f3880bb6e5e..92db09bb1ed 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RankingMeasure.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RankingMeasure.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/Recommendation.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/Recommendation.java index 6ce5104f274..e32a353547a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/Recommendation.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/Recommendation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RecommendationExample.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RecommendationExample.java index b0165bd1db3..0518d1a2507 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RecommendationExample.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RecommendationExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RecommendationExampleLine.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RecommendationExampleLine.java index 93e3033562c..443d7ad653b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RecommendationExampleLine.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RecommendationExampleLine.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RecommendationRationale.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RecommendationRationale.java index 171fd59341d..2a43887e2af 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RecommendationRationale.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RecommendationRationale.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RemoveDataFileDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RemoveDataFileDetails.java index f9ac77b59b2..97cf8306543 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RemoveDataFileDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RemoveDataFileDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RemoveManagedDatabaseFromManagedDatabaseGroupDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RemoveManagedDatabaseFromManagedDatabaseGroupDetails.java index 3ba7938ec16..4d2e75f60fd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RemoveManagedDatabaseFromManagedDatabaseGroupDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RemoveManagedDatabaseFromManagedDatabaseGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ResetDatabaseParametersDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ResetDatabaseParametersDetails.java index 91786d09c17..6ea4714f37f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ResetDatabaseParametersDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ResetDatabaseParametersDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ResizeDataFileDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ResizeDataFileDetails.java index d0c2ae82079..85e47d8408b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ResizeDataFileDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ResizeDataFileDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ResourceType.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ResourceType.java index 7ed6bed0fb2..8891b5bb642 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ResourceType.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ResourceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RestCredential.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RestCredential.java index 74145a7373b..11711fb4400 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RestCredential.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RestCredential.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/Role.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/Role.java index cb8f0b8602a..74e4b3e28a6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/Role.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/Role.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RoleCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RoleCollection.java index e538c5e055b..d01e7d1d700 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RoleCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RoleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RoleSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RoleSummary.java index 3d2591a9db5..3fd5d8a04b6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RoleSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RoleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RuleFinding.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RuleFinding.java index ef6daa4942e..48b8feed856 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RuleFinding.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RuleFinding.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RunHistoricAddmDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RunHistoricAddmDetails.java index ffcc5ca074e..ad29728eef3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RunHistoricAddmDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/RunHistoricAddmDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SaveSqlTuningSetAsDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SaveSqlTuningSetAsDetails.java index fd8601a97d7..c140bc38ce4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SaveSqlTuningSetAsDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SaveSqlTuningSetAsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SchemaDefinition.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SchemaDefinition.java index 19376bf6358..c6dfa41eae0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SchemaDefinition.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SchemaDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SnapshotDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SnapshotDetails.java index 8a0550ba4b2..664bc1cebf6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SnapshotDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SnapshotDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SortOrders.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SortOrders.java index 103e4deb2d4..6b2cd2365c3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SortOrders.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SortOrders.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SpmEvolveTaskParameters.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SpmEvolveTaskParameters.java index 5f627c281e4..397bcb3641b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SpmEvolveTaskParameters.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SpmEvolveTaskParameters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlCpuActivity.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlCpuActivity.java index 578a5af90a9..e9c17be8427 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlCpuActivity.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlCpuActivity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlInSqlTuningSet.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlInSqlTuningSet.java index afca66e69b7..a4a39cb683b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlInSqlTuningSet.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlInSqlTuningSet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlJob.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlJob.java index 2a778689929..11a06e73721 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlJob.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlMetrics.java index e539014a942..bf3c441c2be 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaseline.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaseline.java index 7afb0a9f8cc..095553f45b8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaseline.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaseline.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineAggregation.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineAggregation.java index 73c8609fb51..56e28ba6536 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineAggregation.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineAggregationCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineAggregationCollection.java index efee040bd00..36d10a4d1b6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineAggregationCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineAggregationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineCollection.java index 367eb26f3da..6c19d830bbb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineConfiguration.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineConfiguration.java index d29555f3085..aa1ac9256c9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineConfiguration.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineDimensions.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineDimensions.java index 6b4e4217098..1ebd9b7c727 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineDimensions.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineDimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineJob.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineJob.java index f1d60d079dd..4379742fcd7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineJob.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineJobCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineJobCollection.java index 13e622544b5..9d1bec4f581 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineJobCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineJobCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineJobSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineJobSummary.java index 437c34c5640..a4b8fbec0aa 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineJobSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineJobSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineOrigin.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineOrigin.java index a1bef830c04..47ec744f8c2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineOrigin.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineOrigin.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineSummary.java index 5d854355edb..1709a5c2b9d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlPlanBaselineSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskCollection.java index b6c4d025e86..fec6211aa7d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskFindingCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskFindingCollection.java index 304eb5c32cf..934c667d59c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskFindingCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskFindingCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskFindingSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskFindingSummary.java index bb798d69952..2c8f5946b03 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskFindingSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskFindingSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskRecommendationCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskRecommendationCollection.java index 38d58488a32..90789a25ca8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskRecommendationCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskRecommendationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskRecommendationSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskRecommendationSummary.java index 942f0ac061d..5fd7eb1c09a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskRecommendationSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskRecommendationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSqlExecutionPlan.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSqlExecutionPlan.java index 6342a37602e..386a9b009c0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSqlExecutionPlan.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSqlExecutionPlan.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummary.java index 8baefd4ab37..603e0989afd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryFindingBenefits.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryFindingBenefits.java index e8722ed3bf0..7f7df904032 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryFindingBenefits.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryFindingBenefits.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryFindingCounts.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryFindingCounts.java index 27844d3ec38..bea274d94dc 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryFindingCounts.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryFindingCounts.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReport.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReport.java index 7ee5f16f91c..346b79e74cf 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReport.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReportIndexFindingSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReportIndexFindingSummary.java index fad1cd856fb..5580297fded 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReportIndexFindingSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReportIndexFindingSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReportObjectStatFindingSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReportObjectStatFindingSummary.java index 57f7dd80aa9..799aede7314 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReportObjectStatFindingSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReportObjectStatFindingSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReportStatementCounts.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReportStatementCounts.java index e267ffc757d..6ee393fe7fb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReportStatementCounts.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReportStatementCounts.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReportStatistics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReportStatistics.java index 2495d75db47..0951428e452 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReportStatistics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReportStatistics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReportTaskInfo.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReportTaskInfo.java index c4d2a2fd0f9..44d3ce1b686 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReportTaskInfo.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningAdvisorTaskSummaryReportTaskInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSet.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSet.java index bcf191f1883..e7d01f3ad62 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSet.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetAdminActionStatus.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetAdminActionStatus.java index bfc5095e2b0..475a090ec03 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetAdminActionStatus.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetAdminActionStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetAdminCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetAdminCredentialDetails.java index 13d674395e9..47f956fc709 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetAdminCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetAdminCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetAdminPasswordCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetAdminPasswordCredentialDetails.java index 6d58825cbc0..7cfe60e679b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetAdminPasswordCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetAdminPasswordCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetAdminSecretCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetAdminSecretCredentialDetails.java index 9fecdac9b7d..135ebfc80f7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetAdminSecretCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetAdminSecretCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetCollection.java index d4a27e11adf..49a64ffce69 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetInput.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetInput.java index 07265a23ded..f0b5a97b666 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetInput.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetInput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetStatusTypes.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetStatusTypes.java index de82e424812..d7109d51432 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetStatusTypes.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetStatusTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetSummary.java index f78805ec309..353f12db82f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningSetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskCredentialDetails.java index 78769d10da0..b68a563f777 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskCredentialTypes.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskCredentialTypes.java index 6c6f2ba955a..334fbfc43fe 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskCredentialTypes.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskCredentialTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskPasswordCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskPasswordCredentialDetails.java index c01e3ac62f2..b1d5179c58a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskPasswordCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskPasswordCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskPlanStats.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskPlanStats.java index a1e93fe73fb..bcbdedecef1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskPlanStats.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskPlanStats.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskReturn.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskReturn.java index 92fd772a13a..5dfacd9e75e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskReturn.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskReturn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskSecretCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskSecretCredentialDetails.java index 8462cb6a6aa..6606ec8f7f2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskSecretCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskSecretCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskSqlDetail.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskSqlDetail.java index 73a4a0ba4fd..94f281f2463 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskSqlDetail.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskSqlDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskSqlExecutionPlanStep.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskSqlExecutionPlanStep.java index 18d6ea5405e..d116d9afc90 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskSqlExecutionPlanStep.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskSqlExecutionPlanStep.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskStatusTypes.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskStatusTypes.java index 5e598a61627..754eb73e064 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskStatusTypes.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SqlTuningTaskStatusTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/StandByDatabaseDataguardMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/StandByDatabaseDataguardMetrics.java index f06b4cad133..62463418890 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/StandByDatabaseDataguardMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/StandByDatabaseDataguardMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/StartSqlTuningTaskDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/StartSqlTuningTaskDetails.java index 5da7bfe21c4..88af81b03fe 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/StartSqlTuningTaskDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/StartSqlTuningTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/StatementsAggregateMetrics.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/StatementsAggregateMetrics.java index 90900fd29ab..7a42a585f0e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/StatementsAggregateMetrics.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/StatementsAggregateMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SystemPrivilegeCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SystemPrivilegeCollection.java index 8c3195c995e..d7b6b15503c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SystemPrivilegeCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SystemPrivilegeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SystemPrivilegeSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SystemPrivilegeSummary.java index 1e8e1c888c2..b36ef12c562 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SystemPrivilegeSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/SystemPrivilegeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TableStatisticSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TableStatisticSummary.java index c3229784091..af7439491f4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TableStatisticSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TableStatisticSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TableStatisticsCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TableStatisticsCollection.java index 70327b2de7d..1319805c649 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TableStatisticsCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TableStatisticsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TableStatisticsStatusCategory.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TableStatisticsStatusCategory.java index 88acb45dde6..e96bd1eeeb5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TableStatisticsStatusCategory.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TableStatisticsStatusCategory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/Tablespace.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/Tablespace.java index 03a91fc9617..e07ef19ea95 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/Tablespace.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/Tablespace.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceAdminCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceAdminCredentialDetails.java index a2a6f83b49a..a58e05b2e49 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceAdminCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceAdminCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceAdminPasswordCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceAdminPasswordCredentialDetails.java index bf623fc9d1c..3c7d5b436e2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceAdminPasswordCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceAdminPasswordCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceAdminSecretCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceAdminSecretCredentialDetails.java index 9bcd8e974c0..40cf4870f89 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceAdminSecretCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceAdminSecretCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceAdminStatus.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceAdminStatus.java index 291fc1e2ca8..824108a0a36 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceAdminStatus.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceAdminStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceCollection.java index 8fe55262b59..32b45cb5749 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceStorageSize.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceStorageSize.java index 46bf3563c26..66a76ab093a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceStorageSize.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceStorageSize.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceSummary.java index c6fbd943240..5365c42bf9e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TablespaceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestBasicPreferredCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestBasicPreferredCredentialDetails.java index f41ab4c7250..831a3b518a6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestBasicPreferredCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestBasicPreferredCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestNamedCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestNamedCredentialDetails.java index 76d1c31a670..8dc3758f33c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestNamedCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestNamedCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestNamedCredentialStatus.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestNamedCredentialStatus.java index 7079b59158e..713e121fab4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestNamedCredentialStatus.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestNamedCredentialStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestNamedPreferredCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestNamedPreferredCredentialDetails.java index 14f266b18da..8d6a4e2517f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestNamedPreferredCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestNamedPreferredCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestPreferredCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestPreferredCredentialDetails.java index 7a8833ff018..2e7b103d9e0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestPreferredCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestPreferredCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestPreferredCredentialStatus.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestPreferredCredentialStatus.java index e9677b674d2..b1f803a43b5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestPreferredCredentialStatus.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TestPreferredCredentialStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TimeSeriesMetricDataPoint.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TimeSeriesMetricDataPoint.java index 6c3df6c1e33..351c0d09a98 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TimeSeriesMetricDataPoint.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TimeSeriesMetricDataPoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TimeSeriesMetricDefinition.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TimeSeriesMetricDefinition.java index 88196ad5060..7caac86a473 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TimeSeriesMetricDefinition.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TimeSeriesMetricDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TopSqlCpuActivity.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TopSqlCpuActivity.java index e1dda5803ff..bb8eb383ce8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TopSqlCpuActivity.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/TopSqlCpuActivity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateBasicPreferredCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateBasicPreferredCredentialDetails.java index 5e724298621..307a4117c4b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateBasicPreferredCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateBasicPreferredCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudAsmDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudAsmDetails.java index dbc0589283f..a0947cd82e5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudAsmDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudAsmDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudAsmInstanceDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudAsmInstanceDetails.java index f4b36922e09..4ce5a6b17e1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudAsmInstanceDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudAsmInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudClusterDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudClusterDetails.java index 7f4626d5abb..c1cc50eec5f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudClusterDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudClusterInstanceDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudClusterInstanceDetails.java index a1f2933ec99..cfebfc63014 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudClusterInstanceDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudClusterInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbHomeDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbHomeDetails.java index 64e88cec0e4..5bddcf12791 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbHomeDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbHomeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbNodeDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbNodeDetails.java index d97abe83951..c97e2afb45d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbNodeDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbNodeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbSystemConnectorDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbSystemConnectorDetails.java index 24ca23a3d96..2a7e68d17e1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbSystemConnectorDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbSystemConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbSystemDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbSystemDetails.java index 69f41bd8fb5..9b938d2fbab 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbSystemDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbSystemDiscoveryDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbSystemDiscoveryDetails.java index 3c7c17e0131..057d69f9ccf 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbSystemDiscoveryDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbSystemDiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbSystemMacsConnectorDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbSystemMacsConnectorDetails.java index a511b65cf25..b037815d225 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbSystemMacsConnectorDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudDbSystemMacsConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudListenerDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudListenerDetails.java index d74f4edee6a..7fa1d6c3d04 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudListenerDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateCloudListenerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateDatabaseParametersResult.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateDatabaseParametersResult.java index 8318a74d0cd..61e4fda2a3c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateDatabaseParametersResult.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateDatabaseParametersResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateDbManagementPrivateEndpointDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateDbManagementPrivateEndpointDetails.java index a3388ceb170..2c2a74e8857 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateDbManagementPrivateEndpointDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateDbManagementPrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalAsmDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalAsmDetails.java index 05deafbc8ff..30cdacd03c9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalAsmDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalAsmDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalAsmInstanceDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalAsmInstanceDetails.java index 549128300b7..71bf9c5bb97 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalAsmInstanceDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalAsmInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalClusterDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalClusterDetails.java index e589480f232..66f2097884d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalClusterDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalClusterInstanceDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalClusterInstanceDetails.java index c9b7b30af68..745e8673043 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalClusterInstanceDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalClusterInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbHomeDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbHomeDetails.java index 4eb640689fe..13079511177 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbHomeDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbHomeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbNodeDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbNodeDetails.java index 5a9dd93a83b..913e2b81a52 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbNodeDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbNodeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbSystemConnectorDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbSystemConnectorDetails.java index 8c1956aaf4b..f3ae17bed69 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbSystemConnectorDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbSystemConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbSystemDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbSystemDetails.java index 8ecea4d5ffc..7e80c034871 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbSystemDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbSystemDiscoveryDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbSystemDiscoveryDetails.java index 2fd3ee19bc4..86166285c9a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbSystemDiscoveryDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbSystemDiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbSystemMacsConnectorDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbSystemMacsConnectorDetails.java index b9fc902dcb7..dfeabca1e30 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbSystemMacsConnectorDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalDbSystemMacsConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalExadataInfrastructureDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalExadataInfrastructureDetails.java index 91d582a5677..c997bcf1ace 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalExadataInfrastructureDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalExadataInfrastructureDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalExadataStorageConnectorDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalExadataStorageConnectorDetails.java index 67b805577f6..9ae924a2507 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalExadataStorageConnectorDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalExadataStorageConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalExadataStorageGridDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalExadataStorageGridDetails.java index c78cff657de..ba7d55d7114 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalExadataStorageGridDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalExadataStorageGridDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalExadataStorageServerDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalExadataStorageServerDetails.java index afe845869ba..6c99bbf6fe4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalExadataStorageServerDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalExadataStorageServerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalListenerDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalListenerDetails.java index a545ac842a1..d8254c633dd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalListenerDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalListenerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalMySqlDatabaseConnectorDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalMySqlDatabaseConnectorDetails.java index c5000c2008a..eb8f56cd3c0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalMySqlDatabaseConnectorDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalMySqlDatabaseConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalMySqlDatabaseDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalMySqlDatabaseDetails.java index ae527e1e8ec..de22933b416 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalMySqlDatabaseDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateExternalMySqlDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateJobDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateJobDetails.java index 8714e0d1123..0d54c070f40 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateJobDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateManagedDatabaseDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateManagedDatabaseDetails.java index 705aecb300c..c5163dde71c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateManagedDatabaseDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateManagedDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateManagedDatabaseGroupDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateManagedDatabaseGroupDetails.java index ec52ef24a73..414ba8b32eb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateManagedDatabaseGroupDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateManagedDatabaseGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateMySqlDatabaseConnectorDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateMySqlDatabaseConnectorDetails.java index a2e477aba9c..7f082386cb7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateMySqlDatabaseConnectorDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateMySqlDatabaseConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateNamedCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateNamedCredentialDetails.java index 57c132e9dd8..4cbfd6f74b8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateNamedCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateNamedCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateNamedPreferredCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateNamedPreferredCredentialDetails.java index d56e7d977ca..d81f6be7647 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateNamedPreferredCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateNamedPreferredCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdatePreferredCredentialDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdatePreferredCredentialDetails.java index cfe9c004b82..3d28cb411e9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdatePreferredCredentialDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdatePreferredCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateSqlJobDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateSqlJobDetails.java index 1d78dacfa4e..3eb313038df 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateSqlJobDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateSqlJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateTablespaceDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateTablespaceDetails.java index ae6b5b3535d..6455da77fa7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateTablespaceDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UpdateTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/User.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/User.java index 19136e3cdcf..647566d05ba 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/User.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/User.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UserCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UserCollection.java index 24f63f17630..8cdfa10fbbd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UserCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UserCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UserSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UserSummary.java index c0012c10e7e..e26d4ec4d0b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UserSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/UserSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ValidateBasicFilterDetails.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ValidateBasicFilterDetails.java index daaca0d7067..927b7697e90 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ValidateBasicFilterDetails.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/ValidateBasicFilterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequest.java index 8fb1de49b0a..e08102166b4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestCollection.java index 3eec1177d7c..57c9582b766 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestError.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestError.java index 2ba718df13f..9f7035ae982 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestError.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestErrorCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestErrorCollection.java index 05e566c3c44..3767d59dca0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestErrorCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestLogEntry.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestLogEntry.java index 34725330ca4..2a05875c5b0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestLogEntry.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestLogEntryCollection.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestLogEntryCollection.java index fb6796d25b4..c81bce90a47 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestLogEntryCollection.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestOperationType.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestOperationType.java index 185078869e7..71345036666 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestOperationType.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestOperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestResource.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestResource.java index 0789d6bbefb..4628d531a9d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestResource.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestResourceActionType.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestResourceActionType.java index 6bbbd2aa099..97613b0ec4e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestResourceActionType.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestResourceActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestStatus.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestStatus.java index 0a98fc1f385..b40bffaf2ad 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestStatus.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestSubResource.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestSubResource.java index a7d6e28ad1d..4e62d6835f2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestSubResource.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestSubResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestSummary.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestSummary.java index fe20a438eea..8335f37255d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestSummary.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkloadType.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkloadType.java index dc04e837414..072fc82c3fd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkloadType.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/model/WorkloadType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.model; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/AddDataFilesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/AddDataFilesRequest.java index 0cbde3c5914..d97030dbac3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/AddDataFilesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/AddDataFilesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/AddManagedDatabaseToManagedDatabaseGroupRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/AddManagedDatabaseToManagedDatabaseGroupRequest.java index 5e111301124..c688e39f8cd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/AddManagedDatabaseToManagedDatabaseGroupRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/AddManagedDatabaseToManagedDatabaseGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/AddmTasksRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/AddmTasksRequest.java index e145ff6a48b..d37ec97c639 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/AddmTasksRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/AddmTasksRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeDatabaseParametersRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeDatabaseParametersRequest.java index 56c1712e712..a4fa319d2d5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeDatabaseParametersRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeDatabaseParametersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeDbManagementPrivateEndpointCompartmentRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeDbManagementPrivateEndpointCompartmentRequest.java index cfdf0896a48..8cd0035c9d9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeDbManagementPrivateEndpointCompartmentRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeDbManagementPrivateEndpointCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeExternalDbSystemCompartmentRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeExternalDbSystemCompartmentRequest.java index 40ea7befd82..5d637d08ecb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeExternalDbSystemCompartmentRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeExternalDbSystemCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeExternalExadataInfrastructureCompartmentRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeExternalExadataInfrastructureCompartmentRequest.java index 9bfdbd35132..8ecb8274348 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeExternalExadataInfrastructureCompartmentRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeExternalExadataInfrastructureCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeJobCompartmentRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeJobCompartmentRequest.java index 97185e6ff33..56c996dbda5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeJobCompartmentRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeJobCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeManagedDatabaseGroupCompartmentRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeManagedDatabaseGroupCompartmentRequest.java index 0f25d3604b0..aa1efd588b8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeManagedDatabaseGroupCompartmentRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeManagedDatabaseGroupCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeMysqlDatabaseManagementTypeRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeMysqlDatabaseManagementTypeRequest.java index 2382cf6a998..ecbd3a04a24 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeMysqlDatabaseManagementTypeRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeMysqlDatabaseManagementTypeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeNamedCredentialCompartmentRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeNamedCredentialCompartmentRequest.java index defda20ca65..56a95498c62 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeNamedCredentialCompartmentRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeNamedCredentialCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangePlanRetentionRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangePlanRetentionRequest.java index fdcec17a7da..132f8a42219 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangePlanRetentionRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangePlanRetentionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeSpaceBudgetRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeSpaceBudgetRequest.java index 7dd2b0c9285..f52d84331b5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeSpaceBudgetRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeSpaceBudgetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeSqlPlanBaselinesAttributesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeSqlPlanBaselinesAttributesRequest.java index 0580cd208da..6da73750f32 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeSqlPlanBaselinesAttributesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ChangeSqlPlanBaselinesAttributesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CheckCloudDbSystemConnectorConnectionStatusRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CheckCloudDbSystemConnectorConnectionStatusRequest.java index 1c14b01917c..1508d56d027 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CheckCloudDbSystemConnectorConnectionStatusRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CheckCloudDbSystemConnectorConnectionStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CheckExternalDbSystemConnectorConnectionStatusRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CheckExternalDbSystemConnectorConnectionStatusRequest.java index 3d6649703d5..fdbe4fee835 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CheckExternalDbSystemConnectorConnectionStatusRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CheckExternalDbSystemConnectorConnectionStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CheckExternalExadataStorageConnectorRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CheckExternalExadataStorageConnectorRequest.java index 1563248523f..a06848bfc7a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CheckExternalExadataStorageConnectorRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CheckExternalExadataStorageConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CheckExternalMySqlDatabaseConnectorConnectionStatusRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CheckExternalMySqlDatabaseConnectorConnectionStatusRequest.java index 3fefe2de51b..f2d51af6377 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CheckExternalMySqlDatabaseConnectorConnectionStatusRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CheckExternalMySqlDatabaseConnectorConnectionStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CloneSqlTuningTaskRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CloneSqlTuningTaskRequest.java index 5fff05473a7..09728a640d9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CloneSqlTuningTaskRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CloneSqlTuningTaskRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ConfigureAutomaticCaptureFiltersRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ConfigureAutomaticCaptureFiltersRequest.java index 8892e477462..086a56fbca5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ConfigureAutomaticCaptureFiltersRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ConfigureAutomaticCaptureFiltersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ConfigureAutomaticSpmEvolveAdvisorTaskRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ConfigureAutomaticSpmEvolveAdvisorTaskRequest.java index 89d2510831f..0152d42c6ab 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ConfigureAutomaticSpmEvolveAdvisorTaskRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ConfigureAutomaticSpmEvolveAdvisorTaskRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateCloudDbSystemConnectorRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateCloudDbSystemConnectorRequest.java index 44282ef5a5b..9c65e966cfa 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateCloudDbSystemConnectorRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateCloudDbSystemConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateCloudDbSystemDiscoveryRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateCloudDbSystemDiscoveryRequest.java index e0a0755dc0c..11d3c6bca38 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateCloudDbSystemDiscoveryRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateCloudDbSystemDiscoveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateCloudDbSystemRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateCloudDbSystemRequest.java index 3768c512252..f9002f77900 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateCloudDbSystemRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateCloudDbSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateDbManagementPrivateEndpointRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateDbManagementPrivateEndpointRequest.java index 62ca4ec3d48..e7f875357d7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateDbManagementPrivateEndpointRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateDbManagementPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalDbSystemConnectorRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalDbSystemConnectorRequest.java index 0214a7a1912..6d8c000d67d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalDbSystemConnectorRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalDbSystemConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalDbSystemDiscoveryRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalDbSystemDiscoveryRequest.java index 8f22eda3656..a9690e48565 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalDbSystemDiscoveryRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalDbSystemDiscoveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalDbSystemRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalDbSystemRequest.java index 43f522efa16..baa1c79f9ae 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalDbSystemRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalDbSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalExadataInfrastructureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalExadataInfrastructureRequest.java index b11420d7483..942db5ec652 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalExadataInfrastructureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalExadataStorageConnectorRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalExadataStorageConnectorRequest.java index 9098ac7d183..4886aa84de6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalExadataStorageConnectorRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalExadataStorageConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalMySqlDatabaseConnectorRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalMySqlDatabaseConnectorRequest.java index 3888dd19e51..cacff335c9f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalMySqlDatabaseConnectorRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalMySqlDatabaseConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalMySqlDatabaseRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalMySqlDatabaseRequest.java index b500f71549d..8ae15ca60e0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalMySqlDatabaseRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateExternalMySqlDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateJobRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateJobRequest.java index 8853912aebe..85ca5f683b6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateJobRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateManagedDatabaseGroupRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateManagedDatabaseGroupRequest.java index 12eaaab6d2f..1a9f93baa76 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateManagedDatabaseGroupRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateManagedDatabaseGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateNamedCredentialRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateNamedCredentialRequest.java index 23c8bda4aa6..308bb1cefe3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateNamedCredentialRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateNamedCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateSqlTuningSetRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateSqlTuningSetRequest.java index 2d4e8daceeb..46d91f4af44 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateSqlTuningSetRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateSqlTuningSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateTablespaceRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateTablespaceRequest.java index 76504861d29..f215aae2983 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateTablespaceRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/CreateTablespaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteCloudDbSystemConnectorRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteCloudDbSystemConnectorRequest.java index bc120e58c67..0fb6e0ff5f5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteCloudDbSystemConnectorRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteCloudDbSystemConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteCloudDbSystemDiscoveryRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteCloudDbSystemDiscoveryRequest.java index b33d9fa1258..de761791fdf 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteCloudDbSystemDiscoveryRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteCloudDbSystemDiscoveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteCloudDbSystemRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteCloudDbSystemRequest.java index fc91a62b885..7ca0bb47ad8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteCloudDbSystemRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteCloudDbSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteDbManagementPrivateEndpointRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteDbManagementPrivateEndpointRequest.java index 6c25ca3ffbc..1ae06e20e3d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteDbManagementPrivateEndpointRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteDbManagementPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalDbSystemConnectorRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalDbSystemConnectorRequest.java index 3f1086b06ba..57404123195 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalDbSystemConnectorRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalDbSystemConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalDbSystemDiscoveryRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalDbSystemDiscoveryRequest.java index 6275c17b2ff..e74345f017c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalDbSystemDiscoveryRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalDbSystemDiscoveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalDbSystemRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalDbSystemRequest.java index 3b828d7d3fb..5f5a42ec86a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalDbSystemRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalDbSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalExadataInfrastructureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalExadataInfrastructureRequest.java index ae17a9775d1..a81de3e31c3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalExadataInfrastructureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalExadataStorageConnectorRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalExadataStorageConnectorRequest.java index e9b22253828..2e27e6d7d27 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalExadataStorageConnectorRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalExadataStorageConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalMySqlDatabaseConnectorRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalMySqlDatabaseConnectorRequest.java index 158f2ca12d8..ffd0cfce0df 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalMySqlDatabaseConnectorRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalMySqlDatabaseConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalMySqlDatabaseRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalMySqlDatabaseRequest.java index d47ccae22ae..fe51434757b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalMySqlDatabaseRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteExternalMySqlDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteJobRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteJobRequest.java index 028fe653a03..76f6308cdc0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteJobRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteManagedDatabaseGroupRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteManagedDatabaseGroupRequest.java index 5c7653a6261..37353a6534e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteManagedDatabaseGroupRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteManagedDatabaseGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteNamedCredentialRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteNamedCredentialRequest.java index 63c5b0b0232..c6e14eaa236 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteNamedCredentialRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeleteNamedCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeletePreferredCredentialRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeletePreferredCredentialRequest.java index 03313636c93..aa1ba3989fb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeletePreferredCredentialRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DeletePreferredCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableAutomaticInitialPlanCaptureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableAutomaticInitialPlanCaptureRequest.java index 3f596986706..26e410d7508 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableAutomaticInitialPlanCaptureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableAutomaticInitialPlanCaptureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableAutomaticSpmEvolveAdvisorTaskRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableAutomaticSpmEvolveAdvisorTaskRequest.java index 46c2b76735b..c66ee300dac 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableAutomaticSpmEvolveAdvisorTaskRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableAutomaticSpmEvolveAdvisorTaskRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableAutonomousDatabaseManagementFeatureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableAutonomousDatabaseManagementFeatureRequest.java index c406a157476..38fab15754f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableAutonomousDatabaseManagementFeatureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableAutonomousDatabaseManagementFeatureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableCloudDbSystemDatabaseManagementRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableCloudDbSystemDatabaseManagementRequest.java index c244a1b34d8..b6cce435aea 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableCloudDbSystemDatabaseManagementRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableCloudDbSystemDatabaseManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableCloudDbSystemStackMonitoringRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableCloudDbSystemStackMonitoringRequest.java index 1653c907c8f..5683792810b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableCloudDbSystemStackMonitoringRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableCloudDbSystemStackMonitoringRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableDatabaseManagementFeatureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableDatabaseManagementFeatureRequest.java index 024bd6c8c36..c49185d94af 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableDatabaseManagementFeatureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableDatabaseManagementFeatureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalContainerDatabaseManagementFeatureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalContainerDatabaseManagementFeatureRequest.java index d8393c24c33..8d1572c4af8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalContainerDatabaseManagementFeatureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalContainerDatabaseManagementFeatureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalDbSystemDatabaseManagementRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalDbSystemDatabaseManagementRequest.java index e7bc97fbde8..780dbde8e2d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalDbSystemDatabaseManagementRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalDbSystemDatabaseManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalDbSystemStackMonitoringRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalDbSystemStackMonitoringRequest.java index 5ed46789250..0446fc41911 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalDbSystemStackMonitoringRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalDbSystemStackMonitoringRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalExadataInfrastructureManagementRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalExadataInfrastructureManagementRequest.java index 2cf5def47d8..a3ade450335 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalExadataInfrastructureManagementRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalExadataInfrastructureManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalMySqlDatabaseManagementRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalMySqlDatabaseManagementRequest.java index 564c0d4cc76..3dab389bbfd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalMySqlDatabaseManagementRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalMySqlDatabaseManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalNonContainerDatabaseManagementFeatureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalNonContainerDatabaseManagementFeatureRequest.java index b9c7d5db847..4bf63365631 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalNonContainerDatabaseManagementFeatureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalNonContainerDatabaseManagementFeatureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalPluggableDatabaseManagementFeatureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalPluggableDatabaseManagementFeatureRequest.java index 0a977c06a52..0ebb2b0703b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalPluggableDatabaseManagementFeatureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableExternalPluggableDatabaseManagementFeatureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableHighFrequencyAutomaticSpmEvolveAdvisorTaskRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableHighFrequencyAutomaticSpmEvolveAdvisorTaskRequest.java index eb06743f892..98110d58608 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableHighFrequencyAutomaticSpmEvolveAdvisorTaskRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableHighFrequencyAutomaticSpmEvolveAdvisorTaskRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisablePluggableDatabaseManagementFeatureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisablePluggableDatabaseManagementFeatureRequest.java index ea6bc5bdacf..50dcd872694 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisablePluggableDatabaseManagementFeatureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisablePluggableDatabaseManagementFeatureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableSqlPlanBaselinesUsageRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableSqlPlanBaselinesUsageRequest.java index feb04cf6d15..0c9a1f22088 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableSqlPlanBaselinesUsageRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DisableSqlPlanBaselinesUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DiscoverExternalExadataInfrastructureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DiscoverExternalExadataInfrastructureRequest.java index 707e479f8b2..bb19a4a16df 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DiscoverExternalExadataInfrastructureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DiscoverExternalExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DropSqlPlanBaselinesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DropSqlPlanBaselinesRequest.java index 721510e7fba..7402ebb2191 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DropSqlPlanBaselinesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DropSqlPlanBaselinesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DropSqlTuningSetRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DropSqlTuningSetRequest.java index c8fa0fe082e..702c146c8d5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DropSqlTuningSetRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DropSqlTuningSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DropSqlTuningTaskRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DropSqlTuningTaskRequest.java index bdac1c54e42..25801ad1366 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DropSqlTuningTaskRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DropSqlTuningTaskRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DropSqlsInSqlTuningSetRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DropSqlsInSqlTuningSetRequest.java index 8e09d2a789e..e72ce6b3b71 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DropSqlsInSqlTuningSetRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DropSqlsInSqlTuningSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DropTablespaceRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DropTablespaceRequest.java index 2456dfd7cf8..f5587c4d648 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DropTablespaceRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/DropTablespaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableAutomaticInitialPlanCaptureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableAutomaticInitialPlanCaptureRequest.java index 25213c8cfd9..a32eb075d6c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableAutomaticInitialPlanCaptureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableAutomaticInitialPlanCaptureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableAutomaticSpmEvolveAdvisorTaskRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableAutomaticSpmEvolveAdvisorTaskRequest.java index 5f59e0aeaf2..54c7f3c451a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableAutomaticSpmEvolveAdvisorTaskRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableAutomaticSpmEvolveAdvisorTaskRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableAutonomousDatabaseManagementFeatureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableAutonomousDatabaseManagementFeatureRequest.java index 5a5a949f824..bc4947b2d6e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableAutonomousDatabaseManagementFeatureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableAutonomousDatabaseManagementFeatureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableCloudDbSystemDatabaseManagementRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableCloudDbSystemDatabaseManagementRequest.java index 1e89237fb6d..4a3a687bb41 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableCloudDbSystemDatabaseManagementRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableCloudDbSystemDatabaseManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableCloudDbSystemStackMonitoringRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableCloudDbSystemStackMonitoringRequest.java index 8be66035d56..76afc459f78 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableCloudDbSystemStackMonitoringRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableCloudDbSystemStackMonitoringRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableDatabaseManagementFeatureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableDatabaseManagementFeatureRequest.java index 1e648971030..d57ef152f30 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableDatabaseManagementFeatureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableDatabaseManagementFeatureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalContainerDatabaseManagementFeatureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalContainerDatabaseManagementFeatureRequest.java index b78d57c8b48..a7711e791c0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalContainerDatabaseManagementFeatureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalContainerDatabaseManagementFeatureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalDbSystemDatabaseManagementRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalDbSystemDatabaseManagementRequest.java index a99e038c4e6..829bc3ba7ab 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalDbSystemDatabaseManagementRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalDbSystemDatabaseManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalDbSystemStackMonitoringRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalDbSystemStackMonitoringRequest.java index 7bc7b4026fd..beddb1f2109 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalDbSystemStackMonitoringRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalDbSystemStackMonitoringRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalExadataInfrastructureManagementRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalExadataInfrastructureManagementRequest.java index 1e9ee2a81b1..ee667622a02 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalExadataInfrastructureManagementRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalExadataInfrastructureManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalMySqlDatabaseManagementRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalMySqlDatabaseManagementRequest.java index 20cd42c69d4..deca84b753f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalMySqlDatabaseManagementRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalMySqlDatabaseManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalNonContainerDatabaseManagementFeatureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalNonContainerDatabaseManagementFeatureRequest.java index f7e9884be92..e928d96caa6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalNonContainerDatabaseManagementFeatureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalNonContainerDatabaseManagementFeatureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalPluggableDatabaseManagementFeatureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalPluggableDatabaseManagementFeatureRequest.java index f6ab4be0310..2b86cf326cf 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalPluggableDatabaseManagementFeatureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableExternalPluggableDatabaseManagementFeatureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableHighFrequencyAutomaticSpmEvolveAdvisorTaskRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableHighFrequencyAutomaticSpmEvolveAdvisorTaskRequest.java index 4a3238bbef8..93466133d72 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableHighFrequencyAutomaticSpmEvolveAdvisorTaskRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableHighFrequencyAutomaticSpmEvolveAdvisorTaskRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnablePluggableDatabaseManagementFeatureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnablePluggableDatabaseManagementFeatureRequest.java index 9aca0155450..b6e0e9fa42a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnablePluggableDatabaseManagementFeatureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnablePluggableDatabaseManagementFeatureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableSqlPlanBaselinesUsageRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableSqlPlanBaselinesUsageRequest.java index a514174136b..b155da9a50a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableSqlPlanBaselinesUsageRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/EnableSqlPlanBaselinesUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/FetchSqlTuningSetRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/FetchSqlTuningSetRequest.java index 6f0115d0550..49e52cf1707 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/FetchSqlTuningSetRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/FetchSqlTuningSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GenerateAwrSnapshotRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GenerateAwrSnapshotRequest.java index 1515f796533..aa3c8884de7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GenerateAwrSnapshotRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GenerateAwrSnapshotRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetAwrDbReportRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetAwrDbReportRequest.java index b2034ef78dc..b4afe79c106 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetAwrDbReportRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetAwrDbReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetAwrDbSqlReportRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetAwrDbSqlReportRequest.java index 691e6f1696d..91f25aaa91b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetAwrDbSqlReportRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetAwrDbSqlReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetBinaryLogInformationRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetBinaryLogInformationRequest.java index f8fcae7f36a..6348f7e121c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetBinaryLogInformationRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetBinaryLogInformationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudAsmConfigurationRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudAsmConfigurationRequest.java index 30380b3a71e..503a253f41b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudAsmConfigurationRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudAsmConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudAsmInstanceRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudAsmInstanceRequest.java index 40b98f2f60d..10bf474fc5d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudAsmInstanceRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudAsmInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudAsmRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudAsmRequest.java index f290eedfcfe..6e9422d4ba4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudAsmRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudAsmRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudClusterInstanceRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudClusterInstanceRequest.java index 96666899203..0197ba6f5f6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudClusterInstanceRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudClusterInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudClusterRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudClusterRequest.java index 45d42ed72d7..4fc0583eaaa 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudClusterRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudDbHomeRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudDbHomeRequest.java index 3223a569907..6ded76b1418 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudDbHomeRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudDbHomeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudDbNodeRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudDbNodeRequest.java index 17bdbd9e92f..36ac54b92de 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudDbNodeRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudDbNodeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudDbSystemConnectorRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudDbSystemConnectorRequest.java index 17de8b373ea..6defa434bd6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudDbSystemConnectorRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudDbSystemConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudDbSystemDiscoveryRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudDbSystemDiscoveryRequest.java index 3ce2754567f..fb6c8f1f2fb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudDbSystemDiscoveryRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudDbSystemDiscoveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudDbSystemRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudDbSystemRequest.java index dfc3f511337..6b0a9406f04 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudDbSystemRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudDbSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudListenerRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudListenerRequest.java index 47f7a8f4c23..7db9636abdc 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudListenerRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetCloudListenerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetClusterCacheMetricRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetClusterCacheMetricRequest.java index b5d5f289975..0e13701d318 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetClusterCacheMetricRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetClusterCacheMetricRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseFleetBackupMetricsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseFleetBackupMetricsRequest.java index 87c69d77246..3129bfc92d6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseFleetBackupMetricsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseFleetBackupMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseFleetDataguardMetricsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseFleetDataguardMetricsRequest.java index f056a852ab4..738e1f1e481 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseFleetDataguardMetricsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseFleetDataguardMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseFleetHaOverviewMetricsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseFleetHaOverviewMetricsRequest.java index 013f632f10c..768573271c4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseFleetHaOverviewMetricsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseFleetHaOverviewMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseFleetHealthMetricsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseFleetHealthMetricsRequest.java index bb071bd8a8a..c76a9cf32a2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseFleetHealthMetricsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseFleetHealthMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseHaBackupDetailsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseHaBackupDetailsRequest.java index aa9d18c0233..a5c5468d1df 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseHaBackupDetailsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseHaBackupDetailsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseHomeMetricsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseHomeMetricsRequest.java index 99a8623529e..6fbd0f3acd0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseHomeMetricsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDatabaseHomeMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDataguardPerformanceMetricsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDataguardPerformanceMetricsRequest.java index d0990a8918a..221ab4eec96 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDataguardPerformanceMetricsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDataguardPerformanceMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDbManagementPrivateEndpointRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDbManagementPrivateEndpointRequest.java index 4a1d258688b..89e6f7ffc0f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDbManagementPrivateEndpointRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetDbManagementPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExecutionPlanStatsComparisionRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExecutionPlanStatsComparisionRequest.java index 1adcafc5128..c52536c7e5b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExecutionPlanStatsComparisionRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExecutionPlanStatsComparisionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalAsmConfigurationRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalAsmConfigurationRequest.java index d1a7ef04ec2..ebb93ec9045 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalAsmConfigurationRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalAsmConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalAsmInstanceRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalAsmInstanceRequest.java index ae6867e70be..86e428b66ef 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalAsmInstanceRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalAsmInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalAsmRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalAsmRequest.java index e61dc8aa737..6af6795327b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalAsmRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalAsmRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalClusterInstanceRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalClusterInstanceRequest.java index 1f15ff0227e..374c380968c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalClusterInstanceRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalClusterInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalClusterRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalClusterRequest.java index c9860d3a609..2be5310f4db 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalClusterRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalDbHomeRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalDbHomeRequest.java index 307e19e05fb..d3ab092658f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalDbHomeRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalDbHomeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalDbNodeRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalDbNodeRequest.java index 303c5339765..a99c9323761 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalDbNodeRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalDbNodeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalDbSystemConnectorRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalDbSystemConnectorRequest.java index 7bc6ae98a19..6c7be6bfad9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalDbSystemConnectorRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalDbSystemConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalDbSystemDiscoveryRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalDbSystemDiscoveryRequest.java index 0a61b98958b..7d25d9779dc 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalDbSystemDiscoveryRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalDbSystemDiscoveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalDbSystemRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalDbSystemRequest.java index b8d23d598b8..869bed9363e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalDbSystemRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalDbSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalExadataInfrastructureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalExadataInfrastructureRequest.java index 049eeeffe8e..ab3a6d6eeb8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalExadataInfrastructureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalExadataStorageConnectorRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalExadataStorageConnectorRequest.java index e23e8255a32..4d40b37ff74 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalExadataStorageConnectorRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalExadataStorageConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalExadataStorageGridRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalExadataStorageGridRequest.java index b6f4f9cbb50..1eff56ba985 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalExadataStorageGridRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalExadataStorageGridRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalExadataStorageServerRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalExadataStorageServerRequest.java index 0215f579a45..8b081189710 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalExadataStorageServerRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalExadataStorageServerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalListenerRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalListenerRequest.java index 3fd487bdaf0..cbf61da9cb6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalListenerRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalListenerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalMySqlDatabaseConnectorRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalMySqlDatabaseConnectorRequest.java index 51907c1a16a..032dd019740 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalMySqlDatabaseConnectorRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalMySqlDatabaseConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalMySqlDatabaseRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalMySqlDatabaseRequest.java index f6bdf65debb..3e1f6085185 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalMySqlDatabaseRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetExternalMySqlDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetGeneralReplicationInformationRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetGeneralReplicationInformationRequest.java index 9d9bf6e4e20..3e8c2a579a4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetGeneralReplicationInformationRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetGeneralReplicationInformationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetHeatWaveFleetMetricRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetHeatWaveFleetMetricRequest.java index fd0703aa696..23d3028c92b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetHeatWaveFleetMetricRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetHeatWaveFleetMetricRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetIormPlanRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetIormPlanRequest.java index 03696b85881..28a461499ce 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetIormPlanRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetIormPlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetJobExecutionRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetJobExecutionRequest.java index 0d2b82286e7..29e01196708 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetJobExecutionRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetJobExecutionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetJobRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetJobRequest.java index 75a6aa0d945..2d2917558a1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetJobRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetJobRunRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetJobRunRequest.java index e79830ecff0..491aae69e41 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetJobRunRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetJobRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetManagedDatabaseGroupRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetManagedDatabaseGroupRequest.java index 4d151de275b..fb8ebcf363e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetManagedDatabaseGroupRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetManagedDatabaseGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetManagedDatabaseRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetManagedDatabaseRequest.java index 7eb5fb0e928..0d9912b5d3f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetManagedDatabaseRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetManagedDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetManagedMySqlDatabaseRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetManagedMySqlDatabaseRequest.java index 71427f1e958..f2c19bc25df 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetManagedMySqlDatabaseRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetManagedMySqlDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetMySqlFleetMetricRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetMySqlFleetMetricRequest.java index d2b50591a16..13b3ab84322 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetMySqlFleetMetricRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetMySqlFleetMetricRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetMySqlQueryDetailsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetMySqlQueryDetailsRequest.java index c75e5d021d9..174e129960b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetMySqlQueryDetailsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetMySqlQueryDetailsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetNamedCredentialRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetNamedCredentialRequest.java index fdebd41b860..27edb1453d9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetNamedCredentialRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetNamedCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetOpenAlertHistoryRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetOpenAlertHistoryRequest.java index 9cc7d0a3753..a33bc6447f9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetOpenAlertHistoryRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetOpenAlertHistoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetOptimizerStatisticsAdvisorExecutionRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetOptimizerStatisticsAdvisorExecutionRequest.java index 9a0d5565a42..6e1dbf1bd03 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetOptimizerStatisticsAdvisorExecutionRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetOptimizerStatisticsAdvisorExecutionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetOptimizerStatisticsAdvisorExecutionScriptRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetOptimizerStatisticsAdvisorExecutionScriptRequest.java index db4245c836a..ed73a19000d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetOptimizerStatisticsAdvisorExecutionScriptRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetOptimizerStatisticsAdvisorExecutionScriptRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetOptimizerStatisticsCollectionOperationRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetOptimizerStatisticsCollectionOperationRequest.java index b440244f33d..c0f0c11d4be 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetOptimizerStatisticsCollectionOperationRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetOptimizerStatisticsCollectionOperationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetPdbMetricsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetPdbMetricsRequest.java index 7c4e5687ea9..23a8e86a300 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetPdbMetricsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetPdbMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetPeerDatabaseMetricsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetPeerDatabaseMetricsRequest.java index 52b862e20bf..ebd3090ce46 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetPeerDatabaseMetricsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetPeerDatabaseMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetPreferredCredentialRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetPreferredCredentialRequest.java index f12ee137887..a2d800a7e4a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetPreferredCredentialRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetPreferredCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetSqlExecutionPlanRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetSqlExecutionPlanRequest.java index a2da18759c0..895a4b217bd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetSqlExecutionPlanRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetSqlExecutionPlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetSqlPlanBaselineConfigurationRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetSqlPlanBaselineConfigurationRequest.java index e121f423292..84af480e7ad 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetSqlPlanBaselineConfigurationRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetSqlPlanBaselineConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetSqlPlanBaselineRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetSqlPlanBaselineRequest.java index baacfc8dc6b..2186149be1c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetSqlPlanBaselineRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetSqlPlanBaselineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetSqlTuningAdvisorTaskSummaryReportRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetSqlTuningAdvisorTaskSummaryReportRequest.java index a124606d9a0..38e03142b78 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetSqlTuningAdvisorTaskSummaryReportRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetSqlTuningAdvisorTaskSummaryReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetTablespaceRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetTablespaceRequest.java index 570678c05df..764ed90cb1a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetTablespaceRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetTablespaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetTopSqlCpuActivityRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetTopSqlCpuActivityRequest.java index 00073320dd3..60999673e71 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetTopSqlCpuActivityRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetTopSqlCpuActivityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetUserRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetUserRequest.java index 8bee91d3f9f..8542961d3fa 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetUserRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetUserRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetWorkRequestRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetWorkRequestRequest.java index 39b8d079938..5f19d17c56e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetWorkRequestRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ImplementOptimizerStatisticsAdvisorRecommendationsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ImplementOptimizerStatisticsAdvisorRecommendationsRequest.java index c282da4c947..ac95a548c99 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ImplementOptimizerStatisticsAdvisorRecommendationsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ImplementOptimizerStatisticsAdvisorRecommendationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAlertLogsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAlertLogsRequest.java index 7e864af8d2a..91e74fd80eb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAlertLogsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAlertLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAsmPropertiesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAsmPropertiesRequest.java index 0543a733d5d..d3440949177 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAsmPropertiesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAsmPropertiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAssociatedDatabasesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAssociatedDatabasesRequest.java index 7650eb628db..4edfe4cedc8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAssociatedDatabasesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAssociatedDatabasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAttentionLogsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAttentionLogsRequest.java index 9e3cdc33042..48eaaaf4468 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAttentionLogsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAttentionLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAwrDbSnapshotsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAwrDbSnapshotsRequest.java index 498d20f2bd2..7cb3b80ddda 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAwrDbSnapshotsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAwrDbSnapshotsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAwrDbsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAwrDbsRequest.java index 845449717db..c83f9dff65f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAwrDbsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListAwrDbsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudAsmDiskGroupsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudAsmDiskGroupsRequest.java index 574907a34b7..d88d2919938 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudAsmDiskGroupsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudAsmDiskGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudAsmInstancesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudAsmInstancesRequest.java index 5c22fb6c777..0d101e57388 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudAsmInstancesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudAsmInstancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudAsmUsersRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudAsmUsersRequest.java index af9dccb2aeb..f8187947046 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudAsmUsersRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudAsmUsersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudAsmsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudAsmsRequest.java index b8fe7b0b5f9..1b5827c887d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudAsmsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudAsmsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudClusterInstancesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudClusterInstancesRequest.java index f9c2bd76b7e..567a3b8a6c1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudClusterInstancesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudClusterInstancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudClustersRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudClustersRequest.java index 489608f77ed..16f86143f59 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudClustersRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudClustersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDatabasesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDatabasesRequest.java index 7484cde3dbe..001630735fa 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDatabasesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDatabasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDbHomesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDbHomesRequest.java index 290a1df9d20..4f222617a22 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDbHomesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDbHomesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDbNodesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDbNodesRequest.java index a3dedc7f86c..295ecb66980 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDbNodesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDbNodesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDbSystemConnectorsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDbSystemConnectorsRequest.java index 962e2086b60..da422f7fb7e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDbSystemConnectorsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDbSystemConnectorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDbSystemDiscoveriesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDbSystemDiscoveriesRequest.java index 95ab08c94e5..676faebcbb4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDbSystemDiscoveriesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDbSystemDiscoveriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDbSystemsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDbSystemsRequest.java index 723a0b6f043..174ad61f117 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDbSystemsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudDbSystemsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudListenerServicesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudListenerServicesRequest.java index 77377156887..aef01ab87ef 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudListenerServicesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudListenerServicesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudListenersRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudListenersRequest.java index e46e824ec2a..f054baea942 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudListenersRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCloudListenersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListConsumerGroupPrivilegesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListConsumerGroupPrivilegesRequest.java index 1542583d1b7..c8dfbc55f11 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListConsumerGroupPrivilegesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListConsumerGroupPrivilegesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCursorCacheStatementsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCursorCacheStatementsRequest.java index 53d05c15d41..2c7a76e66f6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCursorCacheStatementsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListCursorCacheStatementsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListDataAccessContainersRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListDataAccessContainersRequest.java index 7b605ea0f3c..c06364ab6c4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListDataAccessContainersRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListDataAccessContainersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListDatabaseParametersRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListDatabaseParametersRequest.java index 1583ece4c7b..d0cee2eb917 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListDatabaseParametersRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListDatabaseParametersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListDbManagementPrivateEndpointsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListDbManagementPrivateEndpointsRequest.java index 1efffb14431..0d11b58f619 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListDbManagementPrivateEndpointsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListDbManagementPrivateEndpointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalAsmDiskGroupsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalAsmDiskGroupsRequest.java index db82ac4b70c..54a975dc14f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalAsmDiskGroupsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalAsmDiskGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalAsmInstancesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalAsmInstancesRequest.java index f6b21a5f35b..dba096573c9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalAsmInstancesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalAsmInstancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalAsmUsersRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalAsmUsersRequest.java index 0b3e842086d..0c30b6d7989 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalAsmUsersRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalAsmUsersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalAsmsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalAsmsRequest.java index 6468fdce60b..353c4af7c23 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalAsmsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalAsmsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalClusterInstancesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalClusterInstancesRequest.java index 4a03cd29e7d..ed3a0239630 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalClusterInstancesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalClusterInstancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalClustersRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalClustersRequest.java index 0fd8feec043..0b702849b46 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalClustersRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalClustersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDatabasesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDatabasesRequest.java index 5487e10ef66..23cc201438f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDatabasesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDatabasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDbHomesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDbHomesRequest.java index c1e7e0fc90f..867f06707d6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDbHomesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDbHomesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDbNodesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDbNodesRequest.java index 43617f10f7e..6287731ba01 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDbNodesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDbNodesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDbSystemConnectorsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDbSystemConnectorsRequest.java index 0f894cf6a2e..53bddb2de5e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDbSystemConnectorsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDbSystemConnectorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDbSystemDiscoveriesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDbSystemDiscoveriesRequest.java index 26dc9e465e4..50e02032f6c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDbSystemDiscoveriesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDbSystemDiscoveriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDbSystemsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDbSystemsRequest.java index 7b849df2f83..939ea49da40 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDbSystemsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalDbSystemsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalExadataInfrastructuresRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalExadataInfrastructuresRequest.java index 58fdf814cfc..2141a5dab53 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalExadataInfrastructuresRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalExadataInfrastructuresRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalExadataStorageConnectorsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalExadataStorageConnectorsRequest.java index c78e9804d88..6aafc121846 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalExadataStorageConnectorsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalExadataStorageConnectorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalExadataStorageServersRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalExadataStorageServersRequest.java index 6a2b82858c0..3081f7585b8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalExadataStorageServersRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalExadataStorageServersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalListenerServicesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalListenerServicesRequest.java index 11f1dc968e8..7e953bb66eb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalListenerServicesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalListenerServicesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalListenersRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalListenersRequest.java index 543f6a87814..d533c882d2a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalListenersRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalListenersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalMySqlDatabasesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalMySqlDatabasesRequest.java index 147da29d035..dd4c100f442 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalMySqlDatabasesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListExternalMySqlDatabasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListHighAvailabilityMembersRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListHighAvailabilityMembersRequest.java index d15b08bd328..a519a8e2b8c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListHighAvailabilityMembersRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListHighAvailabilityMembersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListInboundReplicationsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListInboundReplicationsRequest.java index 10b06051ecb..9b07090ac38 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListInboundReplicationsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListInboundReplicationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListJobExecutionsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListJobExecutionsRequest.java index ed751815512..52f3f4f0360 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListJobExecutionsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListJobExecutionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListJobRunsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListJobRunsRequest.java index 9c9d677832c..a8b0f3b63b6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListJobRunsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListJobRunsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListJobsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListJobsRequest.java index 826ec1eb489..bcee421c340 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListJobsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListJobsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListManagedDatabaseGroupsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListManagedDatabaseGroupsRequest.java index f3f9cc60cb6..8ea56d7d56e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListManagedDatabaseGroupsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListManagedDatabaseGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListManagedDatabasesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListManagedDatabasesRequest.java index 116b284329e..23ea16954cb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListManagedDatabasesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListManagedDatabasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListManagedMySqlDatabaseConfigurationDataRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListManagedMySqlDatabaseConfigurationDataRequest.java index 4af877e0522..322e3ae1a91 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListManagedMySqlDatabaseConfigurationDataRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListManagedMySqlDatabaseConfigurationDataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListManagedMySqlDatabaseSqlDataRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListManagedMySqlDatabaseSqlDataRequest.java index 91b4f7f7354..481c74fa76f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListManagedMySqlDatabaseSqlDataRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListManagedMySqlDatabaseSqlDataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListManagedMySqlDatabasesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListManagedMySqlDatabasesRequest.java index db11942999b..1cee3f0632c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListManagedMySqlDatabasesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListManagedMySqlDatabasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListMySqlDatabaseConnectorsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListMySqlDatabaseConnectorsRequest.java index cab8a2b5161..d5316cbd575 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListMySqlDatabaseConnectorsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListMySqlDatabaseConnectorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListMySqlDigestErrorsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListMySqlDigestErrorsRequest.java index e2a0e469cfc..05a05ba1c0f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListMySqlDigestErrorsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListMySqlDigestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListNamedCredentialsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListNamedCredentialsRequest.java index 23363f3ed6f..ee020ab2106 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListNamedCredentialsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListNamedCredentialsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListObjectPrivilegesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListObjectPrivilegesRequest.java index ea0c5f53537..966d7325993 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListObjectPrivilegesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListObjectPrivilegesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListOptimizerStatisticsAdvisorExecutionsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListOptimizerStatisticsAdvisorExecutionsRequest.java index ffb9ecab9c6..37f205953bd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListOptimizerStatisticsAdvisorExecutionsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListOptimizerStatisticsAdvisorExecutionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListOptimizerStatisticsCollectionAggregationsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListOptimizerStatisticsCollectionAggregationsRequest.java index 2056246eec6..06f90c60247 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListOptimizerStatisticsCollectionAggregationsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListOptimizerStatisticsCollectionAggregationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListOptimizerStatisticsCollectionOperationsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListOptimizerStatisticsCollectionOperationsRequest.java index 0fe46d86593..5513f7f32c2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListOptimizerStatisticsCollectionOperationsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListOptimizerStatisticsCollectionOperationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListOutboundReplicationsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListOutboundReplicationsRequest.java index e77a2e4e865..945f94f7b6f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListOutboundReplicationsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListOutboundReplicationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListPreferredCredentialsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListPreferredCredentialsRequest.java index 0ab9c467407..6b837b78d18 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListPreferredCredentialsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListPreferredCredentialsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListProxiedForUsersRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListProxiedForUsersRequest.java index 255fee063d8..8ef203c318c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListProxiedForUsersRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListProxiedForUsersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListProxyUsersRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListProxyUsersRequest.java index 310ac101f48..5e9445e3b28 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListProxyUsersRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListProxyUsersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListRolesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListRolesRequest.java index a71d5a80e48..0d33a12b5c4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListRolesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListRolesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlPlanBaselineJobsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlPlanBaselineJobsRequest.java index e9087f6c7ab..d1e24290d06 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlPlanBaselineJobsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlPlanBaselineJobsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlPlanBaselinesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlPlanBaselinesRequest.java index 9aa97df523c..77c9fddd3c7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlPlanBaselinesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlPlanBaselinesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlTuningAdvisorTaskFindingsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlTuningAdvisorTaskFindingsRequest.java index c511b16e6fd..f6e948da297 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlTuningAdvisorTaskFindingsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlTuningAdvisorTaskFindingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlTuningAdvisorTaskRecommendationsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlTuningAdvisorTaskRecommendationsRequest.java index a7e5de7f7ea..1ccc958fbd7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlTuningAdvisorTaskRecommendationsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlTuningAdvisorTaskRecommendationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlTuningAdvisorTasksRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlTuningAdvisorTasksRequest.java index ec6add7250b..e90cbec775a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlTuningAdvisorTasksRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlTuningAdvisorTasksRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlTuningSetsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlTuningSetsRequest.java index 68fc0a008cc..bf3557bf549 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlTuningSetsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSqlTuningSetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSystemPrivilegesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSystemPrivilegesRequest.java index 7168fa6e176..5a4bdf4bd93 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSystemPrivilegesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListSystemPrivilegesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListTableStatisticsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListTableStatisticsRequest.java index d7f8f3b6cc9..269120c14d5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListTableStatisticsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListTableStatisticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListTablespacesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListTablespacesRequest.java index 13a86a011af..9bd21198afc 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListTablespacesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListTablespacesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListUsersRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListUsersRequest.java index 8bbca10830d..b1b0b1e0c76 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListUsersRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListUsersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListWorkRequestErrorsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListWorkRequestErrorsRequest.java index e7317fcbb1a..33d39d384b8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListWorkRequestLogsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListWorkRequestLogsRequest.java index eddd74cfdf3..110064c23a2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListWorkRequestLogsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListWorkRequestsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListWorkRequestsRequest.java index 9cf0b4d1e44..21967d87eb8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListWorkRequestsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/LoadSqlPlanBaselinesFromAwrRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/LoadSqlPlanBaselinesFromAwrRequest.java index b178ae73f4e..85e6cb41771 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/LoadSqlPlanBaselinesFromAwrRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/LoadSqlPlanBaselinesFromAwrRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/LoadSqlPlanBaselinesFromCursorCacheRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/LoadSqlPlanBaselinesFromCursorCacheRequest.java index 33d8b4606ae..7c5e6578cc1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/LoadSqlPlanBaselinesFromCursorCacheRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/LoadSqlPlanBaselinesFromCursorCacheRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/LoadSqlTuningSetRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/LoadSqlTuningSetRequest.java index 709701a4dc1..e2e1011df89 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/LoadSqlTuningSetRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/LoadSqlTuningSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ModifyAutonomousDatabaseManagementFeatureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ModifyAutonomousDatabaseManagementFeatureRequest.java index cfe8f4b11ba..68581a0f767 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ModifyAutonomousDatabaseManagementFeatureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ModifyAutonomousDatabaseManagementFeatureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ModifyDatabaseManagementFeatureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ModifyDatabaseManagementFeatureRequest.java index 21af22fdeb1..924ebe99ef9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ModifyDatabaseManagementFeatureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ModifyDatabaseManagementFeatureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ModifyExternalContainerDatabaseManagementFeatureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ModifyExternalContainerDatabaseManagementFeatureRequest.java index 27af9c147cd..c04c5a7d0a8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ModifyExternalContainerDatabaseManagementFeatureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ModifyExternalContainerDatabaseManagementFeatureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ModifyPluggableDatabaseManagementFeatureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ModifyPluggableDatabaseManagementFeatureRequest.java index dc169f85b72..462ebc8f71c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ModifyPluggableDatabaseManagementFeatureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ModifyPluggableDatabaseManagementFeatureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ModifySnapshotSettingsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ModifySnapshotSettingsRequest.java index e283242531c..dabb2de2704 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ModifySnapshotSettingsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ModifySnapshotSettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/PatchCloudDbSystemDiscoveryRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/PatchCloudDbSystemDiscoveryRequest.java index afdc6916038..a8b2f629fbd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/PatchCloudDbSystemDiscoveryRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/PatchCloudDbSystemDiscoveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/PatchExternalDbSystemDiscoveryRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/PatchExternalDbSystemDiscoveryRequest.java index d51f5c8d457..5a11e37f9ac 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/PatchExternalDbSystemDiscoveryRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/PatchExternalDbSystemDiscoveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/RemoveDataFileRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/RemoveDataFileRequest.java index cbe9282dcb5..be798a0c8f0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/RemoveDataFileRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/RemoveDataFileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/RemoveManagedDatabaseFromManagedDatabaseGroupRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/RemoveManagedDatabaseFromManagedDatabaseGroupRequest.java index 4cb04f71486..42c11b8763f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/RemoveManagedDatabaseFromManagedDatabaseGroupRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/RemoveManagedDatabaseFromManagedDatabaseGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ResetDatabaseParametersRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ResetDatabaseParametersRequest.java index ec312550db2..3a3a9fa0b14 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ResetDatabaseParametersRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ResetDatabaseParametersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ResizeDataFileRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ResizeDataFileRequest.java index ade8b2baa42..a00818fc86d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ResizeDataFileRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ResizeDataFileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/RunHistoricAddmRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/RunHistoricAddmRequest.java index 40a159d8798..4e403a68138 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/RunHistoricAddmRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/RunHistoricAddmRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SaveSqlTuningSetAsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SaveSqlTuningSetAsRequest.java index 4944c3c08e0..756b53a8834 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SaveSqlTuningSetAsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SaveSqlTuningSetAsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/StartSqlTuningTaskRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/StartSqlTuningTaskRequest.java index 2bdccd14d08..fe923a1da6b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/StartSqlTuningTaskRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/StartSqlTuningTaskRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAlertLogCountsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAlertLogCountsRequest.java index 19b8f9e1e69..ab26be89d32 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAlertLogCountsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAlertLogCountsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAttentionLogCountsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAttentionLogCountsRequest.java index 1c32a002959..894396fbf51 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAttentionLogCountsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAttentionLogCountsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbCpuUsagesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbCpuUsagesRequest.java index 513b5170607..46ae39cabaf 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbCpuUsagesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbCpuUsagesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbMetricsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbMetricsRequest.java index e3bc320af0d..cb137f24fb6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbMetricsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbParameterChangesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbParameterChangesRequest.java index beccec8d546..2ea9f69f7b8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbParameterChangesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbParameterChangesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbParametersRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbParametersRequest.java index 734b864d817..78d9339922e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbParametersRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbParametersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbSnapshotRangesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbSnapshotRangesRequest.java index ffe90278c44..5a2c71e340f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbSnapshotRangesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbSnapshotRangesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbSysstatsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbSysstatsRequest.java index 28b54ae132a..1169c3d751d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbSysstatsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbSysstatsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbTopWaitEventsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbTopWaitEventsRequest.java index 5ebcdd42ea0..33e3283c582 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbTopWaitEventsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbTopWaitEventsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbWaitEventBucketsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbWaitEventBucketsRequest.java index 1a0c06b2afd..c55a470c4ef 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbWaitEventBucketsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbWaitEventBucketsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbWaitEventsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbWaitEventsRequest.java index e356cdfaf1f..77cb602a9d0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbWaitEventsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeAwrDbWaitEventsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeCloudAsmMetricsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeCloudAsmMetricsRequest.java index 17aee2aabbe..9d613cde9d9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeCloudAsmMetricsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeCloudAsmMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeCloudClusterMetricsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeCloudClusterMetricsRequest.java index 129bb42f42e..3716b8cb39a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeCloudClusterMetricsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeCloudClusterMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeCloudDbNodeMetricsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeCloudDbNodeMetricsRequest.java index 5cf994a52d0..ad0ee9536ab 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeCloudDbNodeMetricsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeCloudDbNodeMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeCloudDbSystemAvailabilityMetricsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeCloudDbSystemAvailabilityMetricsRequest.java index 71ea2bdf7f8..8de91344f66 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeCloudDbSystemAvailabilityMetricsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeCloudDbSystemAvailabilityMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeCloudListenerMetricsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeCloudListenerMetricsRequest.java index de633615544..3e4544d95f4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeCloudListenerMetricsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeCloudListenerMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeExternalAsmMetricsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeExternalAsmMetricsRequest.java index e6ad84291d6..8b5fc523244 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeExternalAsmMetricsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeExternalAsmMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeExternalClusterMetricsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeExternalClusterMetricsRequest.java index fae5021d0ad..953b344ff6f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeExternalClusterMetricsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeExternalClusterMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeExternalDbNodeMetricsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeExternalDbNodeMetricsRequest.java index 27de6a0c6b8..8eef50791a3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeExternalDbNodeMetricsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeExternalDbNodeMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeExternalDbSystemAvailabilityMetricsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeExternalDbSystemAvailabilityMetricsRequest.java index ebb99bbb7e4..241c68ce478 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeExternalDbSystemAvailabilityMetricsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeExternalDbSystemAvailabilityMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeExternalListenerMetricsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeExternalListenerMetricsRequest.java index 2b7e3bb457d..68e56c99e77 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeExternalListenerMetricsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeExternalListenerMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeJobExecutionsStatusesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeJobExecutionsStatusesRequest.java index 58783bf2b8a..8a2462772dc 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeJobExecutionsStatusesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeJobExecutionsStatusesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeManagedDatabaseAvailabilityMetricsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeManagedDatabaseAvailabilityMetricsRequest.java index a72dbac6033..f1c1065d943 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeManagedDatabaseAvailabilityMetricsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeManagedDatabaseAvailabilityMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeManagedMySqlDatabaseAvailabilityMetricsRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeManagedMySqlDatabaseAvailabilityMetricsRequest.java index 32c8be0e26c..fb9f5c06ade 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeManagedMySqlDatabaseAvailabilityMetricsRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeManagedMySqlDatabaseAvailabilityMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeSqlPlanBaselinesByLastExecutionRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeSqlPlanBaselinesByLastExecutionRequest.java index aaa1bad1163..7a5fc7f984e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeSqlPlanBaselinesByLastExecutionRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeSqlPlanBaselinesByLastExecutionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeSqlPlanBaselinesRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeSqlPlanBaselinesRequest.java index 1df05ee14d3..cfc77625a7f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeSqlPlanBaselinesRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/SummarizeSqlPlanBaselinesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/TestNamedCredentialRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/TestNamedCredentialRequest.java index 703d296d6f7..5334b4dfc2e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/TestNamedCredentialRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/TestNamedCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/TestPreferredCredentialRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/TestPreferredCredentialRequest.java index 2c95491e413..bf177c431f0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/TestPreferredCredentialRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/TestPreferredCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudAsmInstanceRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudAsmInstanceRequest.java index 18e0ee7bf6f..27d720aee7d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudAsmInstanceRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudAsmInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudAsmRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudAsmRequest.java index e9fd05ef5bb..9a8bd4051ac 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudAsmRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudAsmRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudClusterInstanceRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudClusterInstanceRequest.java index 002dcdf4f0b..7b462aa047e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudClusterInstanceRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudClusterInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudClusterRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudClusterRequest.java index f214ec005fa..9f6e9439394 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudClusterRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudDbHomeRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudDbHomeRequest.java index 24dce286025..d1a9ad5ad5e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudDbHomeRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudDbHomeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudDbNodeRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudDbNodeRequest.java index d8778a25fe2..951b953f3e9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudDbNodeRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudDbNodeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudDbSystemConnectorRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudDbSystemConnectorRequest.java index 1ba55c90b3d..283f4056581 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudDbSystemConnectorRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudDbSystemConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudDbSystemDiscoveryRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudDbSystemDiscoveryRequest.java index a74d340fe4b..2320688d028 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudDbSystemDiscoveryRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudDbSystemDiscoveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudDbSystemRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudDbSystemRequest.java index 0e87fd85b79..bfa32041ba9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudDbSystemRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudDbSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudListenerRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudListenerRequest.java index 881775be6c1..9ce2d5b9b1c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudListenerRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateCloudListenerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateDbManagementPrivateEndpointRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateDbManagementPrivateEndpointRequest.java index fb16c9e81b3..0fcea55269d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateDbManagementPrivateEndpointRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateDbManagementPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalAsmInstanceRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalAsmInstanceRequest.java index bdc8fe216d2..c30dec5ef37 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalAsmInstanceRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalAsmInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalAsmRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalAsmRequest.java index eff7aa3bd20..bc14ca04d1f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalAsmRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalAsmRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalClusterInstanceRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalClusterInstanceRequest.java index 12da51758e9..595e21b247a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalClusterInstanceRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalClusterInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalClusterRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalClusterRequest.java index bd799d889ac..c05d66b6825 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalClusterRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalDbHomeRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalDbHomeRequest.java index 94311bf176c..25a93ac8d32 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalDbHomeRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalDbHomeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalDbNodeRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalDbNodeRequest.java index 95c8c056f9f..08ff2e48bb1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalDbNodeRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalDbNodeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalDbSystemConnectorRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalDbSystemConnectorRequest.java index f0da94d7961..c36c96d1152 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalDbSystemConnectorRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalDbSystemConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalDbSystemDiscoveryRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalDbSystemDiscoveryRequest.java index 4405abaf7d1..8635f6c4303 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalDbSystemDiscoveryRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalDbSystemDiscoveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalDbSystemRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalDbSystemRequest.java index cfa63dacd42..a8db5e1aaaf 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalDbSystemRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalDbSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalExadataInfrastructureRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalExadataInfrastructureRequest.java index 9fc052f8336..76e5cb569fe 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalExadataInfrastructureRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalExadataInfrastructureRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalExadataStorageConnectorRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalExadataStorageConnectorRequest.java index 8fb1019ef7e..caf5e1db3a4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalExadataStorageConnectorRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalExadataStorageConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalExadataStorageGridRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalExadataStorageGridRequest.java index 71432d02b20..e5665c3f8df 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalExadataStorageGridRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalExadataStorageGridRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalExadataStorageServerRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalExadataStorageServerRequest.java index e1b4c1325fb..355f090a0f6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalExadataStorageServerRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalExadataStorageServerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalListenerRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalListenerRequest.java index 47c03bcb591..fadff25ba2c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalListenerRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalListenerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalMysqlDatabaseConnectorRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalMysqlDatabaseConnectorRequest.java index 8700b2384c7..52f8d124521 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalMysqlDatabaseConnectorRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalMysqlDatabaseConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalMysqlDatabaseRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalMysqlDatabaseRequest.java index 22cf469d3a2..6d1c272a2b5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalMysqlDatabaseRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateExternalMysqlDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateJobRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateJobRequest.java index c70ac1cb163..08250b61b47 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateJobRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateManagedDatabaseGroupRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateManagedDatabaseGroupRequest.java index 4dcb487b9f7..3562d1975bb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateManagedDatabaseGroupRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateManagedDatabaseGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateManagedDatabaseRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateManagedDatabaseRequest.java index d956e320027..5f8950cf012 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateManagedDatabaseRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateManagedDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateNamedCredentialRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateNamedCredentialRequest.java index ce3910818ab..7067a07ecae 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateNamedCredentialRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateNamedCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdatePreferredCredentialRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdatePreferredCredentialRequest.java index ff034f8b462..09a57f2e68c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdatePreferredCredentialRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdatePreferredCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateTablespaceRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateTablespaceRequest.java index 19f5d68beb8..0ad14ccb0d6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateTablespaceRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/UpdateTablespaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ValidateBasicFilterRequest.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ValidateBasicFilterRequest.java index f2ca2fcf961..1d1f092a11a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ValidateBasicFilterRequest.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/requests/ValidateBasicFilterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.requests; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/AddDataFilesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/AddDataFilesResponse.java index 2fae7df686f..e3b05340aa0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/AddDataFilesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/AddDataFilesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/AddManagedDatabaseToManagedDatabaseGroupResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/AddManagedDatabaseToManagedDatabaseGroupResponse.java index 8619dc5e930..75e19f8727c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/AddManagedDatabaseToManagedDatabaseGroupResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/AddManagedDatabaseToManagedDatabaseGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/AddmTasksResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/AddmTasksResponse.java index c2724c5faa6..9a4f5a5c1a9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/AddmTasksResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/AddmTasksResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeDatabaseParametersResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeDatabaseParametersResponse.java index 3d4af4cdb58..98cb88d0ab9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeDatabaseParametersResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeDatabaseParametersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeDbManagementPrivateEndpointCompartmentResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeDbManagementPrivateEndpointCompartmentResponse.java index 268ddf468ff..397c842dfb9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeDbManagementPrivateEndpointCompartmentResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeDbManagementPrivateEndpointCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeExternalDbSystemCompartmentResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeExternalDbSystemCompartmentResponse.java index b15813dcd23..a4889e120fa 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeExternalDbSystemCompartmentResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeExternalDbSystemCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeExternalExadataInfrastructureCompartmentResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeExternalExadataInfrastructureCompartmentResponse.java index f407241c6e0..57e1aa40584 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeExternalExadataInfrastructureCompartmentResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeExternalExadataInfrastructureCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeJobCompartmentResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeJobCompartmentResponse.java index 88e421c6c81..7809c32aae8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeJobCompartmentResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeJobCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeManagedDatabaseGroupCompartmentResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeManagedDatabaseGroupCompartmentResponse.java index 277ac4c61fa..d45ef8eef53 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeManagedDatabaseGroupCompartmentResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeManagedDatabaseGroupCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeMysqlDatabaseManagementTypeResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeMysqlDatabaseManagementTypeResponse.java index ba386768370..f397fba9196 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeMysqlDatabaseManagementTypeResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeMysqlDatabaseManagementTypeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeNamedCredentialCompartmentResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeNamedCredentialCompartmentResponse.java index 1e8bceabfd5..4631d3e06f3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeNamedCredentialCompartmentResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeNamedCredentialCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangePlanRetentionResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangePlanRetentionResponse.java index 7e6a17b8dd1..c71785d18fc 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangePlanRetentionResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangePlanRetentionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeSpaceBudgetResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeSpaceBudgetResponse.java index 135917c28a2..d891c4a9d25 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeSpaceBudgetResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeSpaceBudgetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeSqlPlanBaselinesAttributesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeSqlPlanBaselinesAttributesResponse.java index a0b5d0e1c57..277e646551a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeSqlPlanBaselinesAttributesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ChangeSqlPlanBaselinesAttributesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CheckCloudDbSystemConnectorConnectionStatusResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CheckCloudDbSystemConnectorConnectionStatusResponse.java index 8f303f2fef7..c988972fb17 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CheckCloudDbSystemConnectorConnectionStatusResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CheckCloudDbSystemConnectorConnectionStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CheckExternalDbSystemConnectorConnectionStatusResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CheckExternalDbSystemConnectorConnectionStatusResponse.java index 5ec4627f05e..aa27c20ec17 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CheckExternalDbSystemConnectorConnectionStatusResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CheckExternalDbSystemConnectorConnectionStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CheckExternalExadataStorageConnectorResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CheckExternalExadataStorageConnectorResponse.java index 650625d188b..7079831a10e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CheckExternalExadataStorageConnectorResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CheckExternalExadataStorageConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CheckExternalMySqlDatabaseConnectorConnectionStatusResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CheckExternalMySqlDatabaseConnectorConnectionStatusResponse.java index 464c18318e5..9d3a2596a76 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CheckExternalMySqlDatabaseConnectorConnectionStatusResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CheckExternalMySqlDatabaseConnectorConnectionStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CloneSqlTuningTaskResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CloneSqlTuningTaskResponse.java index 17396a00902..f4f2ec6d2ef 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CloneSqlTuningTaskResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CloneSqlTuningTaskResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ConfigureAutomaticCaptureFiltersResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ConfigureAutomaticCaptureFiltersResponse.java index 22edc30f822..2fe9c167d8f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ConfigureAutomaticCaptureFiltersResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ConfigureAutomaticCaptureFiltersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ConfigureAutomaticSpmEvolveAdvisorTaskResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ConfigureAutomaticSpmEvolveAdvisorTaskResponse.java index 99b8000deeb..974a4954941 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ConfigureAutomaticSpmEvolveAdvisorTaskResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ConfigureAutomaticSpmEvolveAdvisorTaskResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateCloudDbSystemConnectorResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateCloudDbSystemConnectorResponse.java index 987a2301458..e1dbe2805e1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateCloudDbSystemConnectorResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateCloudDbSystemConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateCloudDbSystemDiscoveryResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateCloudDbSystemDiscoveryResponse.java index 709ed678b18..49d3d7a0cfd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateCloudDbSystemDiscoveryResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateCloudDbSystemDiscoveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateCloudDbSystemResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateCloudDbSystemResponse.java index ea13ea5b302..2f65e167a5f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateCloudDbSystemResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateCloudDbSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateDbManagementPrivateEndpointResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateDbManagementPrivateEndpointResponse.java index 2f93a816231..1e40c72110f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateDbManagementPrivateEndpointResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateDbManagementPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalDbSystemConnectorResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalDbSystemConnectorResponse.java index abb2663c8d3..923a605bc48 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalDbSystemConnectorResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalDbSystemConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalDbSystemDiscoveryResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalDbSystemDiscoveryResponse.java index 43c4e54cd6f..59918da3d62 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalDbSystemDiscoveryResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalDbSystemDiscoveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalDbSystemResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalDbSystemResponse.java index 9609d077730..c31044309d2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalDbSystemResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalDbSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalExadataInfrastructureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalExadataInfrastructureResponse.java index 8af3a11ac3f..d4cdf563a5a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalExadataInfrastructureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalExadataStorageConnectorResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalExadataStorageConnectorResponse.java index f95932951a3..217ca6cb847 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalExadataStorageConnectorResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalExadataStorageConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalMySqlDatabaseConnectorResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalMySqlDatabaseConnectorResponse.java index 3479d459ad9..04d667f8c0d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalMySqlDatabaseConnectorResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalMySqlDatabaseConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalMySqlDatabaseResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalMySqlDatabaseResponse.java index f928c17c2d9..2fb4bed767d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalMySqlDatabaseResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateExternalMySqlDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateJobResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateJobResponse.java index 444882a2043..e97202dc94b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateJobResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateManagedDatabaseGroupResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateManagedDatabaseGroupResponse.java index 1961000f15d..1a2147fa5e9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateManagedDatabaseGroupResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateManagedDatabaseGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateNamedCredentialResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateNamedCredentialResponse.java index 4425d78238e..0459ab2d328 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateNamedCredentialResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateNamedCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateSqlTuningSetResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateSqlTuningSetResponse.java index a4d9ff4c273..bab261f2332 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateSqlTuningSetResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateSqlTuningSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateTablespaceResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateTablespaceResponse.java index 27c54313c81..92bc9663db2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateTablespaceResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/CreateTablespaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteCloudDbSystemConnectorResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteCloudDbSystemConnectorResponse.java index ae6caa1fe10..93ed90ae035 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteCloudDbSystemConnectorResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteCloudDbSystemConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteCloudDbSystemDiscoveryResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteCloudDbSystemDiscoveryResponse.java index 28d89c53836..5afced55d04 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteCloudDbSystemDiscoveryResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteCloudDbSystemDiscoveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteCloudDbSystemResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteCloudDbSystemResponse.java index a231d5bc64d..08e2828f152 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteCloudDbSystemResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteCloudDbSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteDbManagementPrivateEndpointResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteDbManagementPrivateEndpointResponse.java index 3fce205ea13..6e2356b0fcc 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteDbManagementPrivateEndpointResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteDbManagementPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalDbSystemConnectorResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalDbSystemConnectorResponse.java index 2181c79576c..f3b38d164e7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalDbSystemConnectorResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalDbSystemConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalDbSystemDiscoveryResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalDbSystemDiscoveryResponse.java index f8c9d88bc34..fe8f5e1e8e1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalDbSystemDiscoveryResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalDbSystemDiscoveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalDbSystemResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalDbSystemResponse.java index d20631ab084..9119957133c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalDbSystemResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalDbSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalExadataInfrastructureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalExadataInfrastructureResponse.java index dc54ac8e78b..67812fe7211 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalExadataInfrastructureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalExadataStorageConnectorResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalExadataStorageConnectorResponse.java index 77b0859ac43..3cf95ab5a07 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalExadataStorageConnectorResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalExadataStorageConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalMySqlDatabaseConnectorResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalMySqlDatabaseConnectorResponse.java index d4a08a570b1..aa28df6c0af 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalMySqlDatabaseConnectorResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalMySqlDatabaseConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalMySqlDatabaseResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalMySqlDatabaseResponse.java index d5bb3d35558..3adc9339cb4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalMySqlDatabaseResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteExternalMySqlDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteJobResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteJobResponse.java index fc790895c5c..20cbe054904 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteJobResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteManagedDatabaseGroupResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteManagedDatabaseGroupResponse.java index 4b740b3097b..ba5d9a2245b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteManagedDatabaseGroupResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteManagedDatabaseGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteNamedCredentialResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteNamedCredentialResponse.java index b67bbf7079f..e7e329a3777 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteNamedCredentialResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeleteNamedCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeletePreferredCredentialResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeletePreferredCredentialResponse.java index 45cfaf48824..258fb87cf10 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeletePreferredCredentialResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DeletePreferredCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableAutomaticInitialPlanCaptureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableAutomaticInitialPlanCaptureResponse.java index ed980ed142b..29bf597d422 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableAutomaticInitialPlanCaptureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableAutomaticInitialPlanCaptureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableAutomaticSpmEvolveAdvisorTaskResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableAutomaticSpmEvolveAdvisorTaskResponse.java index 06bb965dce3..1cabb117ba3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableAutomaticSpmEvolveAdvisorTaskResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableAutomaticSpmEvolveAdvisorTaskResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableAutonomousDatabaseManagementFeatureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableAutonomousDatabaseManagementFeatureResponse.java index 6fb6ac6ca29..8f9e5c4531c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableAutonomousDatabaseManagementFeatureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableAutonomousDatabaseManagementFeatureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableCloudDbSystemDatabaseManagementResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableCloudDbSystemDatabaseManagementResponse.java index b177c955ad8..beeafa3c9a3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableCloudDbSystemDatabaseManagementResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableCloudDbSystemDatabaseManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableCloudDbSystemStackMonitoringResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableCloudDbSystemStackMonitoringResponse.java index 43b11241f67..1a25d0ff04a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableCloudDbSystemStackMonitoringResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableCloudDbSystemStackMonitoringResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableDatabaseManagementFeatureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableDatabaseManagementFeatureResponse.java index e72126db737..e3ff09f8a2f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableDatabaseManagementFeatureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableDatabaseManagementFeatureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalContainerDatabaseManagementFeatureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalContainerDatabaseManagementFeatureResponse.java index f79a8240091..91af2337d77 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalContainerDatabaseManagementFeatureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalContainerDatabaseManagementFeatureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalDbSystemDatabaseManagementResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalDbSystemDatabaseManagementResponse.java index dddb2585af7..a40d3d9997c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalDbSystemDatabaseManagementResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalDbSystemDatabaseManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalDbSystemStackMonitoringResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalDbSystemStackMonitoringResponse.java index 5153eca2d18..808f2715bb4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalDbSystemStackMonitoringResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalDbSystemStackMonitoringResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalExadataInfrastructureManagementResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalExadataInfrastructureManagementResponse.java index 34542c7e9b5..b8fbbbb8f7b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalExadataInfrastructureManagementResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalExadataInfrastructureManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalMySqlDatabaseManagementResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalMySqlDatabaseManagementResponse.java index c7dd249ec24..ff8cd28265e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalMySqlDatabaseManagementResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalMySqlDatabaseManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalNonContainerDatabaseManagementFeatureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalNonContainerDatabaseManagementFeatureResponse.java index 7d46eb8055f..a95f2ff112a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalNonContainerDatabaseManagementFeatureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalNonContainerDatabaseManagementFeatureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalPluggableDatabaseManagementFeatureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalPluggableDatabaseManagementFeatureResponse.java index 9f3c2cdc23f..e7bc8d6896f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalPluggableDatabaseManagementFeatureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableExternalPluggableDatabaseManagementFeatureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableHighFrequencyAutomaticSpmEvolveAdvisorTaskResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableHighFrequencyAutomaticSpmEvolveAdvisorTaskResponse.java index 75e267be05c..377d74594e1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableHighFrequencyAutomaticSpmEvolveAdvisorTaskResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableHighFrequencyAutomaticSpmEvolveAdvisorTaskResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisablePluggableDatabaseManagementFeatureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisablePluggableDatabaseManagementFeatureResponse.java index 8f551fdc484..9ffd420223c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisablePluggableDatabaseManagementFeatureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisablePluggableDatabaseManagementFeatureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableSqlPlanBaselinesUsageResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableSqlPlanBaselinesUsageResponse.java index ea80d95274c..e7c51b03ef4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableSqlPlanBaselinesUsageResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DisableSqlPlanBaselinesUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DiscoverExternalExadataInfrastructureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DiscoverExternalExadataInfrastructureResponse.java index ea6d0a74d85..be221af2789 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DiscoverExternalExadataInfrastructureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DiscoverExternalExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DropSqlPlanBaselinesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DropSqlPlanBaselinesResponse.java index e336d3ff84d..2ebc9b996c1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DropSqlPlanBaselinesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DropSqlPlanBaselinesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DropSqlTuningSetResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DropSqlTuningSetResponse.java index df9d421154d..02fd00219b8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DropSqlTuningSetResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DropSqlTuningSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DropSqlTuningTaskResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DropSqlTuningTaskResponse.java index ecbd673532d..c24ff528a99 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DropSqlTuningTaskResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DropSqlTuningTaskResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DropSqlsInSqlTuningSetResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DropSqlsInSqlTuningSetResponse.java index eaea277ae55..76b55a7718a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DropSqlsInSqlTuningSetResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DropSqlsInSqlTuningSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DropTablespaceResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DropTablespaceResponse.java index 5429f9d2d12..f4d8164f136 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DropTablespaceResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/DropTablespaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableAutomaticInitialPlanCaptureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableAutomaticInitialPlanCaptureResponse.java index be0090eb847..a2de5c72ae4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableAutomaticInitialPlanCaptureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableAutomaticInitialPlanCaptureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableAutomaticSpmEvolveAdvisorTaskResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableAutomaticSpmEvolveAdvisorTaskResponse.java index bfd02a28aad..2bdeaccf6cf 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableAutomaticSpmEvolveAdvisorTaskResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableAutomaticSpmEvolveAdvisorTaskResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableAutonomousDatabaseManagementFeatureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableAutonomousDatabaseManagementFeatureResponse.java index 6c2343e693d..522774607e9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableAutonomousDatabaseManagementFeatureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableAutonomousDatabaseManagementFeatureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableCloudDbSystemDatabaseManagementResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableCloudDbSystemDatabaseManagementResponse.java index 397b1f65904..b6d3a2e4e3a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableCloudDbSystemDatabaseManagementResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableCloudDbSystemDatabaseManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableCloudDbSystemStackMonitoringResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableCloudDbSystemStackMonitoringResponse.java index c9eccce62cc..111767e591f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableCloudDbSystemStackMonitoringResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableCloudDbSystemStackMonitoringResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableDatabaseManagementFeatureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableDatabaseManagementFeatureResponse.java index 0ff7cf1e825..eb1aa4dc928 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableDatabaseManagementFeatureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableDatabaseManagementFeatureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalContainerDatabaseManagementFeatureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalContainerDatabaseManagementFeatureResponse.java index 80afcf14268..096aeaed4cd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalContainerDatabaseManagementFeatureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalContainerDatabaseManagementFeatureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalDbSystemDatabaseManagementResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalDbSystemDatabaseManagementResponse.java index 7fe1a2926d0..5fddb0b3262 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalDbSystemDatabaseManagementResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalDbSystemDatabaseManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalDbSystemStackMonitoringResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalDbSystemStackMonitoringResponse.java index bd0acd80a8f..e7a791503a7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalDbSystemStackMonitoringResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalDbSystemStackMonitoringResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalExadataInfrastructureManagementResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalExadataInfrastructureManagementResponse.java index f358b22fdd9..fc831361fde 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalExadataInfrastructureManagementResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalExadataInfrastructureManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalMySqlDatabaseManagementResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalMySqlDatabaseManagementResponse.java index e25d769cade..4a6faf1e1b1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalMySqlDatabaseManagementResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalMySqlDatabaseManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalNonContainerDatabaseManagementFeatureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalNonContainerDatabaseManagementFeatureResponse.java index 0ecabf6f345..d9b225232f7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalNonContainerDatabaseManagementFeatureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalNonContainerDatabaseManagementFeatureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalPluggableDatabaseManagementFeatureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalPluggableDatabaseManagementFeatureResponse.java index 14d8ca542b4..f0b9e4abd38 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalPluggableDatabaseManagementFeatureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableExternalPluggableDatabaseManagementFeatureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableHighFrequencyAutomaticSpmEvolveAdvisorTaskResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableHighFrequencyAutomaticSpmEvolveAdvisorTaskResponse.java index c50295aa569..c06f534437e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableHighFrequencyAutomaticSpmEvolveAdvisorTaskResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableHighFrequencyAutomaticSpmEvolveAdvisorTaskResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnablePluggableDatabaseManagementFeatureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnablePluggableDatabaseManagementFeatureResponse.java index 5694df6fa4c..40317123788 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnablePluggableDatabaseManagementFeatureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnablePluggableDatabaseManagementFeatureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableSqlPlanBaselinesUsageResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableSqlPlanBaselinesUsageResponse.java index 739c83ae229..02368976e61 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableSqlPlanBaselinesUsageResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/EnableSqlPlanBaselinesUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/FetchSqlTuningSetResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/FetchSqlTuningSetResponse.java index 1269464f056..b1bece1bab4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/FetchSqlTuningSetResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/FetchSqlTuningSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GenerateAwrSnapshotResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GenerateAwrSnapshotResponse.java index 5bc27adf196..8b7cf2cedb7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GenerateAwrSnapshotResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GenerateAwrSnapshotResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetAwrDbReportResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetAwrDbReportResponse.java index 7d823c7894f..d2bf599e7d5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetAwrDbReportResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetAwrDbReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetAwrDbSqlReportResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetAwrDbSqlReportResponse.java index 18b1b340f5f..9b12eedf8eb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetAwrDbSqlReportResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetAwrDbSqlReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetBinaryLogInformationResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetBinaryLogInformationResponse.java index 5aea3f2cd98..ed96749f910 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetBinaryLogInformationResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetBinaryLogInformationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudAsmConfigurationResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudAsmConfigurationResponse.java index 0e5d9d526c4..f4e2ab9e845 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudAsmConfigurationResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudAsmConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudAsmInstanceResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudAsmInstanceResponse.java index 5782c586fcf..0f658800629 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudAsmInstanceResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudAsmInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudAsmResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudAsmResponse.java index 30c180fe2f3..8de01d79985 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudAsmResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudAsmResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudClusterInstanceResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudClusterInstanceResponse.java index b17fd518a5c..9842e732e89 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudClusterInstanceResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudClusterInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudClusterResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudClusterResponse.java index 3c1eef77915..6f00ef7f8ac 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudClusterResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudDbHomeResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudDbHomeResponse.java index 59ad1980f99..8bb478f59e7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudDbHomeResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudDbHomeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudDbNodeResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudDbNodeResponse.java index 9e70b1ea639..803cea9c385 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudDbNodeResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudDbNodeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudDbSystemConnectorResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudDbSystemConnectorResponse.java index 0d2c294d647..c8abb8a0bb5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudDbSystemConnectorResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudDbSystemConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudDbSystemDiscoveryResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudDbSystemDiscoveryResponse.java index bc0bd9920c0..de3e1a22444 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudDbSystemDiscoveryResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudDbSystemDiscoveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudDbSystemResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudDbSystemResponse.java index 0ff49f5bf4b..583af0fb5a0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudDbSystemResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudDbSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudListenerResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudListenerResponse.java index 292e449bfc2..7756dc66aa6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudListenerResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetCloudListenerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetClusterCacheMetricResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetClusterCacheMetricResponse.java index f2b52bdc112..347d0de79c0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetClusterCacheMetricResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetClusterCacheMetricResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseFleetBackupMetricsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseFleetBackupMetricsResponse.java index 50fb3de85fc..3d27db0b94f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseFleetBackupMetricsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseFleetBackupMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseFleetDataguardMetricsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseFleetDataguardMetricsResponse.java index 2a870ac27fb..f49494a7e63 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseFleetDataguardMetricsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseFleetDataguardMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseFleetHaOverviewMetricsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseFleetHaOverviewMetricsResponse.java index 02e94bdce21..ea73709f599 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseFleetHaOverviewMetricsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseFleetHaOverviewMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseFleetHealthMetricsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseFleetHealthMetricsResponse.java index a97afca9e2f..320977bc6a5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseFleetHealthMetricsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseFleetHealthMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseHaBackupDetailsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseHaBackupDetailsResponse.java index 4b4cc260a58..9a6d3f5bcd2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseHaBackupDetailsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseHaBackupDetailsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseHomeMetricsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseHomeMetricsResponse.java index 476766dbbcd..ce5d7139c4a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseHomeMetricsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDatabaseHomeMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDataguardPerformanceMetricsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDataguardPerformanceMetricsResponse.java index c72787b09bd..2c4b024e0a0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDataguardPerformanceMetricsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDataguardPerformanceMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDbManagementPrivateEndpointResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDbManagementPrivateEndpointResponse.java index ec19b2fd87f..54f61bd743f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDbManagementPrivateEndpointResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetDbManagementPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExecutionPlanStatsComparisionResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExecutionPlanStatsComparisionResponse.java index 3f28d0e431e..3eccf520136 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExecutionPlanStatsComparisionResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExecutionPlanStatsComparisionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalAsmConfigurationResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalAsmConfigurationResponse.java index 4c8aa9ef17f..e89cd9d832e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalAsmConfigurationResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalAsmConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalAsmInstanceResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalAsmInstanceResponse.java index c2b92d6727e..2838e68fd61 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalAsmInstanceResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalAsmInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalAsmResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalAsmResponse.java index 59da842332d..61f3f63bf48 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalAsmResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalAsmResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalClusterInstanceResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalClusterInstanceResponse.java index 34e3896d8d7..4aed9efcbb8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalClusterInstanceResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalClusterInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalClusterResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalClusterResponse.java index 281a3f5853c..82d3463a7a9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalClusterResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalDbHomeResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalDbHomeResponse.java index a4dda773aa7..af70d0b3e03 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalDbHomeResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalDbHomeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalDbNodeResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalDbNodeResponse.java index b4b61c3b4bd..2cd7ecca2ad 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalDbNodeResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalDbNodeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalDbSystemConnectorResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalDbSystemConnectorResponse.java index 1025a24b0f9..fca85475d6d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalDbSystemConnectorResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalDbSystemConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalDbSystemDiscoveryResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalDbSystemDiscoveryResponse.java index 959dc35f8e6..3f20404dbf8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalDbSystemDiscoveryResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalDbSystemDiscoveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalDbSystemResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalDbSystemResponse.java index fe4bb1c81ec..3c64ffa7a0a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalDbSystemResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalDbSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalExadataInfrastructureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalExadataInfrastructureResponse.java index 1b3e3c0451b..8e003666a04 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalExadataInfrastructureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalExadataStorageConnectorResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalExadataStorageConnectorResponse.java index 752e4221211..206ed63332b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalExadataStorageConnectorResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalExadataStorageConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalExadataStorageGridResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalExadataStorageGridResponse.java index 1f36fec0c7d..a1816921ef7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalExadataStorageGridResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalExadataStorageGridResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalExadataStorageServerResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalExadataStorageServerResponse.java index f55fa6cf73a..c6b770065e1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalExadataStorageServerResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalExadataStorageServerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalListenerResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalListenerResponse.java index 3e71e060a51..975a3c4d243 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalListenerResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalListenerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalMySqlDatabaseConnectorResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalMySqlDatabaseConnectorResponse.java index 6f420a28f63..185f582a840 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalMySqlDatabaseConnectorResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalMySqlDatabaseConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalMySqlDatabaseResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalMySqlDatabaseResponse.java index c784b9c00e5..7469d796257 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalMySqlDatabaseResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetExternalMySqlDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetGeneralReplicationInformationResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetGeneralReplicationInformationResponse.java index 48cc750c957..e9c5789a2c9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetGeneralReplicationInformationResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetGeneralReplicationInformationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetHeatWaveFleetMetricResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetHeatWaveFleetMetricResponse.java index d3ed025a26d..c2a7a52923a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetHeatWaveFleetMetricResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetHeatWaveFleetMetricResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetIormPlanResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetIormPlanResponse.java index 85a713e6eea..a8415bac9ed 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetIormPlanResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetIormPlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetJobExecutionResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetJobExecutionResponse.java index 3a978ee64f2..5de8eec1d68 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetJobExecutionResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetJobExecutionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetJobResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetJobResponse.java index d2e856546b8..c4804c86caf 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetJobResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetJobRunResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetJobRunResponse.java index 54a0047b312..4960ea55f9a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetJobRunResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetJobRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetManagedDatabaseGroupResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetManagedDatabaseGroupResponse.java index a74ccf347f7..6bd7180dc61 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetManagedDatabaseGroupResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetManagedDatabaseGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetManagedDatabaseResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetManagedDatabaseResponse.java index 1bb41c0e770..c1add8e22fb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetManagedDatabaseResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetManagedDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetManagedMySqlDatabaseResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetManagedMySqlDatabaseResponse.java index b47a61e6334..b86f86ab50e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetManagedMySqlDatabaseResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetManagedMySqlDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetMySqlFleetMetricResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetMySqlFleetMetricResponse.java index 2c09c04bf86..6673eebe04a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetMySqlFleetMetricResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetMySqlFleetMetricResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetMySqlQueryDetailsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetMySqlQueryDetailsResponse.java index 89678e36f52..e1b3a200abe 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetMySqlQueryDetailsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetMySqlQueryDetailsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetNamedCredentialResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetNamedCredentialResponse.java index 2c4f646e588..3c92b93d105 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetNamedCredentialResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetNamedCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetOpenAlertHistoryResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetOpenAlertHistoryResponse.java index 48920604e0a..54e7fac69b9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetOpenAlertHistoryResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetOpenAlertHistoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetOptimizerStatisticsAdvisorExecutionResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetOptimizerStatisticsAdvisorExecutionResponse.java index 060b0c9fd27..32b5d40df6d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetOptimizerStatisticsAdvisorExecutionResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetOptimizerStatisticsAdvisorExecutionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetOptimizerStatisticsAdvisorExecutionScriptResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetOptimizerStatisticsAdvisorExecutionScriptResponse.java index 622484806dc..ef08c526e02 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetOptimizerStatisticsAdvisorExecutionScriptResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetOptimizerStatisticsAdvisorExecutionScriptResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetOptimizerStatisticsCollectionOperationResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetOptimizerStatisticsCollectionOperationResponse.java index 52aecbf15cf..5999fb27ceb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetOptimizerStatisticsCollectionOperationResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetOptimizerStatisticsCollectionOperationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetPdbMetricsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetPdbMetricsResponse.java index 5dd25d288a1..a6c1bf084a8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetPdbMetricsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetPdbMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetPeerDatabaseMetricsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetPeerDatabaseMetricsResponse.java index 36cef00ee26..84b06508ae8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetPeerDatabaseMetricsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetPeerDatabaseMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetPreferredCredentialResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetPreferredCredentialResponse.java index 8ab608cb63f..e02d47a9c64 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetPreferredCredentialResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetPreferredCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetSqlExecutionPlanResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetSqlExecutionPlanResponse.java index 43759579745..ecb1a886d4d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetSqlExecutionPlanResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetSqlExecutionPlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetSqlPlanBaselineConfigurationResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetSqlPlanBaselineConfigurationResponse.java index dba4f451ddf..17c5b972900 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetSqlPlanBaselineConfigurationResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetSqlPlanBaselineConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetSqlPlanBaselineResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetSqlPlanBaselineResponse.java index cee0c653c41..0baf8cbef7f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetSqlPlanBaselineResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetSqlPlanBaselineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetSqlTuningAdvisorTaskSummaryReportResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetSqlTuningAdvisorTaskSummaryReportResponse.java index c18d3042b5b..c7204d0a622 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetSqlTuningAdvisorTaskSummaryReportResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetSqlTuningAdvisorTaskSummaryReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetTablespaceResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetTablespaceResponse.java index f725964c3e9..5610886adb3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetTablespaceResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetTablespaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetTopSqlCpuActivityResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetTopSqlCpuActivityResponse.java index 6787005c74c..97847854a0c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetTopSqlCpuActivityResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetTopSqlCpuActivityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetUserResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetUserResponse.java index 89a246ad3a6..1d0b21e3011 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetUserResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetUserResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetWorkRequestResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetWorkRequestResponse.java index ccfaf7b6dd6..27a0f15e0ce 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetWorkRequestResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ImplementOptimizerStatisticsAdvisorRecommendationsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ImplementOptimizerStatisticsAdvisorRecommendationsResponse.java index 14f1ee4e9f6..de43e8ed2ab 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ImplementOptimizerStatisticsAdvisorRecommendationsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ImplementOptimizerStatisticsAdvisorRecommendationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAlertLogsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAlertLogsResponse.java index 50186aac89a..9fd0db479e8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAlertLogsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAlertLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAsmPropertiesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAsmPropertiesResponse.java index cf9bd74dd17..08de7c6d063 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAsmPropertiesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAsmPropertiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAssociatedDatabasesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAssociatedDatabasesResponse.java index 58d5d881952..10e99a8f293 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAssociatedDatabasesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAssociatedDatabasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAttentionLogsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAttentionLogsResponse.java index 8464502f997..ea85a79ea39 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAttentionLogsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAttentionLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAwrDbSnapshotsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAwrDbSnapshotsResponse.java index 8f4e770c70b..7a593a4082d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAwrDbSnapshotsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAwrDbSnapshotsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAwrDbsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAwrDbsResponse.java index 544daa4727f..b81c613d662 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAwrDbsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListAwrDbsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudAsmDiskGroupsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudAsmDiskGroupsResponse.java index 996c199020c..95ad27c7230 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudAsmDiskGroupsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudAsmDiskGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudAsmInstancesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudAsmInstancesResponse.java index fa697f95680..263903a7e2b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudAsmInstancesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudAsmInstancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudAsmUsersResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudAsmUsersResponse.java index 7f55d77d43d..5d3ec873863 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudAsmUsersResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudAsmUsersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudAsmsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudAsmsResponse.java index 7474737c51a..d188697b79b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudAsmsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudAsmsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudClusterInstancesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudClusterInstancesResponse.java index 0264026b177..800f9575c15 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudClusterInstancesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudClusterInstancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudClustersResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudClustersResponse.java index 2067b7dd2b1..a9ea784042c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudClustersResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudClustersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDatabasesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDatabasesResponse.java index 07579abd7f0..6473ed42c62 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDatabasesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDatabasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDbHomesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDbHomesResponse.java index 565f5937251..0aaf103d5f7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDbHomesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDbHomesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDbNodesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDbNodesResponse.java index 9517a177529..3d450244ccc 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDbNodesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDbNodesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDbSystemConnectorsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDbSystemConnectorsResponse.java index f1423f90b2b..b55f2e722fb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDbSystemConnectorsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDbSystemConnectorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDbSystemDiscoveriesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDbSystemDiscoveriesResponse.java index 68469701a89..3f85755cc8a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDbSystemDiscoveriesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDbSystemDiscoveriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDbSystemsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDbSystemsResponse.java index 8857ab1f78c..1b6d44cab2e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDbSystemsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudDbSystemsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudListenerServicesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudListenerServicesResponse.java index d4c289f3df1..eedcc9bceba 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudListenerServicesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudListenerServicesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudListenersResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudListenersResponse.java index ff6c53f776d..f379966fc38 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudListenersResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCloudListenersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListConsumerGroupPrivilegesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListConsumerGroupPrivilegesResponse.java index 52c4fc9c0e3..ef4d2962fc1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListConsumerGroupPrivilegesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListConsumerGroupPrivilegesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCursorCacheStatementsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCursorCacheStatementsResponse.java index c1c75d2b53a..f72a5e201d2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCursorCacheStatementsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListCursorCacheStatementsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListDataAccessContainersResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListDataAccessContainersResponse.java index 0adb4c87f75..4f425aa7176 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListDataAccessContainersResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListDataAccessContainersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListDatabaseParametersResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListDatabaseParametersResponse.java index ba997ec8fe0..00108c091bb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListDatabaseParametersResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListDatabaseParametersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListDbManagementPrivateEndpointsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListDbManagementPrivateEndpointsResponse.java index 9ccf757db58..a1381b9ad9d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListDbManagementPrivateEndpointsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListDbManagementPrivateEndpointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalAsmDiskGroupsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalAsmDiskGroupsResponse.java index a59beee5e37..cc61ac2145f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalAsmDiskGroupsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalAsmDiskGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalAsmInstancesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalAsmInstancesResponse.java index d8d690d27ff..76bcfe912a8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalAsmInstancesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalAsmInstancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalAsmUsersResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalAsmUsersResponse.java index 683a66df2a1..25b6f45b1b3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalAsmUsersResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalAsmUsersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalAsmsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalAsmsResponse.java index 47a90815759..bafbee6d7b9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalAsmsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalAsmsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalClusterInstancesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalClusterInstancesResponse.java index 1ba96da94b4..95269eba319 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalClusterInstancesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalClusterInstancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalClustersResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalClustersResponse.java index ec1e3e6ea47..6ac615cf081 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalClustersResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalClustersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDatabasesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDatabasesResponse.java index 30f6f8e9a47..49af32d2fc6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDatabasesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDatabasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDbHomesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDbHomesResponse.java index 2397df8eca9..b8d3607db15 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDbHomesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDbHomesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDbNodesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDbNodesResponse.java index 47b250235f2..ced8ac15315 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDbNodesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDbNodesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDbSystemConnectorsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDbSystemConnectorsResponse.java index 9b15af7ef5b..42828ee850d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDbSystemConnectorsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDbSystemConnectorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDbSystemDiscoveriesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDbSystemDiscoveriesResponse.java index 716ff323631..75897bcb135 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDbSystemDiscoveriesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDbSystemDiscoveriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDbSystemsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDbSystemsResponse.java index 09d99ab1ab7..d17996f6e30 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDbSystemsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalDbSystemsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalExadataInfrastructuresResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalExadataInfrastructuresResponse.java index a8845c1f06a..02c4fddf701 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalExadataInfrastructuresResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalExadataInfrastructuresResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalExadataStorageConnectorsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalExadataStorageConnectorsResponse.java index 0760abea4e1..53c04459f20 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalExadataStorageConnectorsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalExadataStorageConnectorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalExadataStorageServersResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalExadataStorageServersResponse.java index c31f02adc31..bbc6e184072 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalExadataStorageServersResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalExadataStorageServersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalListenerServicesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalListenerServicesResponse.java index 30cd59d828b..d821c492f41 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalListenerServicesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalListenerServicesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalListenersResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalListenersResponse.java index 25048bb4bbe..6401f002a31 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalListenersResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalListenersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalMySqlDatabasesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalMySqlDatabasesResponse.java index 3fadbd52db2..5784f94ee77 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalMySqlDatabasesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListExternalMySqlDatabasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListHighAvailabilityMembersResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListHighAvailabilityMembersResponse.java index bccf7f00778..851c7618cd8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListHighAvailabilityMembersResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListHighAvailabilityMembersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListInboundReplicationsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListInboundReplicationsResponse.java index 61941b2e196..dce068fdc0b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListInboundReplicationsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListInboundReplicationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListJobExecutionsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListJobExecutionsResponse.java index 71e3aa2464d..88d924bcbb7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListJobExecutionsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListJobExecutionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListJobRunsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListJobRunsResponse.java index acfaa77c4e4..939baf5ab7c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListJobRunsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListJobRunsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListJobsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListJobsResponse.java index 33aa40266fd..3edb6c9a4dd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListJobsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListJobsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListManagedDatabaseGroupsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListManagedDatabaseGroupsResponse.java index efaaed94331..b6c16bee797 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListManagedDatabaseGroupsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListManagedDatabaseGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListManagedDatabasesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListManagedDatabasesResponse.java index 280a0577d3b..df931e96ad1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListManagedDatabasesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListManagedDatabasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListManagedMySqlDatabaseConfigurationDataResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListManagedMySqlDatabaseConfigurationDataResponse.java index 20104f26c0c..0a52987405c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListManagedMySqlDatabaseConfigurationDataResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListManagedMySqlDatabaseConfigurationDataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListManagedMySqlDatabaseSqlDataResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListManagedMySqlDatabaseSqlDataResponse.java index d5930f753f2..796717448a7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListManagedMySqlDatabaseSqlDataResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListManagedMySqlDatabaseSqlDataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListManagedMySqlDatabasesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListManagedMySqlDatabasesResponse.java index 3e02ae0edac..8f958da274d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListManagedMySqlDatabasesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListManagedMySqlDatabasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListMySqlDatabaseConnectorsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListMySqlDatabaseConnectorsResponse.java index ccb9fb1febb..612f28bd9f4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListMySqlDatabaseConnectorsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListMySqlDatabaseConnectorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListMySqlDigestErrorsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListMySqlDigestErrorsResponse.java index 1cca49b212a..7ed454d9e80 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListMySqlDigestErrorsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListMySqlDigestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListNamedCredentialsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListNamedCredentialsResponse.java index 5095d3f7a3c..f67a25e8f55 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListNamedCredentialsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListNamedCredentialsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListObjectPrivilegesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListObjectPrivilegesResponse.java index 31bf1d45736..e03b5569af8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListObjectPrivilegesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListObjectPrivilegesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListOptimizerStatisticsAdvisorExecutionsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListOptimizerStatisticsAdvisorExecutionsResponse.java index 1d5dd66ec61..434f37b7634 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListOptimizerStatisticsAdvisorExecutionsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListOptimizerStatisticsAdvisorExecutionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListOptimizerStatisticsCollectionAggregationsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListOptimizerStatisticsCollectionAggregationsResponse.java index a34d4794e7d..01760ec7dde 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListOptimizerStatisticsCollectionAggregationsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListOptimizerStatisticsCollectionAggregationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListOptimizerStatisticsCollectionOperationsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListOptimizerStatisticsCollectionOperationsResponse.java index 8ae30a8c3ec..dc0ac5bac93 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListOptimizerStatisticsCollectionOperationsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListOptimizerStatisticsCollectionOperationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListOutboundReplicationsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListOutboundReplicationsResponse.java index f9f1fac97d9..cc1850501a4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListOutboundReplicationsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListOutboundReplicationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListPreferredCredentialsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListPreferredCredentialsResponse.java index a101cd24745..529953787c9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListPreferredCredentialsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListPreferredCredentialsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListProxiedForUsersResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListProxiedForUsersResponse.java index 95f4c7d828e..cfcbaf7d712 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListProxiedForUsersResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListProxiedForUsersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListProxyUsersResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListProxyUsersResponse.java index 19db01082c1..9cbc1b04f34 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListProxyUsersResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListProxyUsersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListRolesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListRolesResponse.java index c0bcff88b06..6395ca9e2f9 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListRolesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListRolesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlPlanBaselineJobsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlPlanBaselineJobsResponse.java index 3b6bcc489d9..b7d5e5d6f23 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlPlanBaselineJobsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlPlanBaselineJobsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlPlanBaselinesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlPlanBaselinesResponse.java index d2839ed7bf2..f3408452a8a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlPlanBaselinesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlPlanBaselinesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlTuningAdvisorTaskFindingsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlTuningAdvisorTaskFindingsResponse.java index 25d2e9a5d34..aab6d7df8cf 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlTuningAdvisorTaskFindingsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlTuningAdvisorTaskFindingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlTuningAdvisorTaskRecommendationsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlTuningAdvisorTaskRecommendationsResponse.java index 7ec91e58739..fd13103f7be 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlTuningAdvisorTaskRecommendationsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlTuningAdvisorTaskRecommendationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlTuningAdvisorTasksResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlTuningAdvisorTasksResponse.java index d6977b40c1b..2d4afe2bcdb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlTuningAdvisorTasksResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlTuningAdvisorTasksResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlTuningSetsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlTuningSetsResponse.java index 5bf8a421314..45359852436 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlTuningSetsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSqlTuningSetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSystemPrivilegesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSystemPrivilegesResponse.java index 493ebbe0898..1725a8e5b7a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSystemPrivilegesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListSystemPrivilegesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListTableStatisticsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListTableStatisticsResponse.java index ff5eb1808a2..221556df074 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListTableStatisticsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListTableStatisticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListTablespacesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListTablespacesResponse.java index b87ca612b15..5d4391da99b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListTablespacesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListTablespacesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListUsersResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListUsersResponse.java index 900d4e03749..324aa1e2be5 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListUsersResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListUsersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListWorkRequestErrorsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListWorkRequestErrorsResponse.java index 269124e0191..919120482dd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListWorkRequestLogsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListWorkRequestLogsResponse.java index 47c11cf8aa9..7b5ff8c38fd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListWorkRequestLogsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListWorkRequestsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListWorkRequestsResponse.java index f8f15cb6c4b..28d1c3ad31e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListWorkRequestsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/LoadSqlPlanBaselinesFromAwrResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/LoadSqlPlanBaselinesFromAwrResponse.java index c3a6af8cd8b..cf2f4442b46 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/LoadSqlPlanBaselinesFromAwrResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/LoadSqlPlanBaselinesFromAwrResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/LoadSqlPlanBaselinesFromCursorCacheResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/LoadSqlPlanBaselinesFromCursorCacheResponse.java index f31d4fb9198..457e00d4e6f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/LoadSqlPlanBaselinesFromCursorCacheResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/LoadSqlPlanBaselinesFromCursorCacheResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/LoadSqlTuningSetResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/LoadSqlTuningSetResponse.java index 71bf90a64e2..c3e59ce1da8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/LoadSqlTuningSetResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/LoadSqlTuningSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ModifyAutonomousDatabaseManagementFeatureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ModifyAutonomousDatabaseManagementFeatureResponse.java index 720d0f59bac..ee1c62f1cc0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ModifyAutonomousDatabaseManagementFeatureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ModifyAutonomousDatabaseManagementFeatureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ModifyDatabaseManagementFeatureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ModifyDatabaseManagementFeatureResponse.java index c56b8c551f8..2ef7bddcd0d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ModifyDatabaseManagementFeatureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ModifyDatabaseManagementFeatureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ModifyExternalContainerDatabaseManagementFeatureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ModifyExternalContainerDatabaseManagementFeatureResponse.java index 8cbe26464ed..7eea72d8636 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ModifyExternalContainerDatabaseManagementFeatureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ModifyExternalContainerDatabaseManagementFeatureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ModifyPluggableDatabaseManagementFeatureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ModifyPluggableDatabaseManagementFeatureResponse.java index f06cfbe9157..37a33d668a2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ModifyPluggableDatabaseManagementFeatureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ModifyPluggableDatabaseManagementFeatureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ModifySnapshotSettingsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ModifySnapshotSettingsResponse.java index 31c429b0cc6..caebb6de38f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ModifySnapshotSettingsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ModifySnapshotSettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/PatchCloudDbSystemDiscoveryResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/PatchCloudDbSystemDiscoveryResponse.java index d37184ffd88..43fe0fc72d3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/PatchCloudDbSystemDiscoveryResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/PatchCloudDbSystemDiscoveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/PatchExternalDbSystemDiscoveryResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/PatchExternalDbSystemDiscoveryResponse.java index 541180e9f3f..f72d1f12bab 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/PatchExternalDbSystemDiscoveryResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/PatchExternalDbSystemDiscoveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/RemoveDataFileResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/RemoveDataFileResponse.java index 3db5bff24ea..ba00f0ef789 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/RemoveDataFileResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/RemoveDataFileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/RemoveManagedDatabaseFromManagedDatabaseGroupResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/RemoveManagedDatabaseFromManagedDatabaseGroupResponse.java index e8b2f1c7971..6594740608f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/RemoveManagedDatabaseFromManagedDatabaseGroupResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/RemoveManagedDatabaseFromManagedDatabaseGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ResetDatabaseParametersResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ResetDatabaseParametersResponse.java index ad018b29ef7..34c191f00e2 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ResetDatabaseParametersResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ResetDatabaseParametersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ResizeDataFileResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ResizeDataFileResponse.java index 33dabc141fb..7bd9d63c9dd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ResizeDataFileResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ResizeDataFileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/RunHistoricAddmResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/RunHistoricAddmResponse.java index 2595bae435e..c334a61dc2d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/RunHistoricAddmResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/RunHistoricAddmResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SaveSqlTuningSetAsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SaveSqlTuningSetAsResponse.java index 66d55dcce4b..433154305d6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SaveSqlTuningSetAsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SaveSqlTuningSetAsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/StartSqlTuningTaskResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/StartSqlTuningTaskResponse.java index 20e6e4daec3..90abe678ef1 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/StartSqlTuningTaskResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/StartSqlTuningTaskResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAlertLogCountsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAlertLogCountsResponse.java index f1e9986784d..2891c1ec943 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAlertLogCountsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAlertLogCountsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAttentionLogCountsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAttentionLogCountsResponse.java index 8721a0a7b0a..876e740544e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAttentionLogCountsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAttentionLogCountsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbCpuUsagesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbCpuUsagesResponse.java index dd319fcf4de..da289000e6b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbCpuUsagesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbCpuUsagesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbMetricsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbMetricsResponse.java index cc494ead0ca..3a269def399 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbMetricsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbParameterChangesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbParameterChangesResponse.java index 4e9f3551087..0bc114edcff 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbParameterChangesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbParameterChangesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbParametersResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbParametersResponse.java index f321984da4e..6e5e8d027af 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbParametersResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbParametersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbSnapshotRangesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbSnapshotRangesResponse.java index d24b927df26..ea3ea789f4f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbSnapshotRangesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbSnapshotRangesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbSysstatsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbSysstatsResponse.java index 432b1913031..73af0f34d5d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbSysstatsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbSysstatsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbTopWaitEventsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbTopWaitEventsResponse.java index fd0a4af9737..ae568d6a2ed 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbTopWaitEventsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbTopWaitEventsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbWaitEventBucketsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbWaitEventBucketsResponse.java index ac3b9038931..9fc0ae2e0cb 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbWaitEventBucketsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbWaitEventBucketsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbWaitEventsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbWaitEventsResponse.java index 598e3fe085c..43c8edebd45 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbWaitEventsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeAwrDbWaitEventsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeCloudAsmMetricsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeCloudAsmMetricsResponse.java index e07f71ca1b0..68bf044494e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeCloudAsmMetricsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeCloudAsmMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeCloudClusterMetricsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeCloudClusterMetricsResponse.java index 020147e4c4f..2adce9175bf 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeCloudClusterMetricsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeCloudClusterMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeCloudDbNodeMetricsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeCloudDbNodeMetricsResponse.java index 2b310689835..ae18d55949a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeCloudDbNodeMetricsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeCloudDbNodeMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeCloudDbSystemAvailabilityMetricsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeCloudDbSystemAvailabilityMetricsResponse.java index 0ce9f1fbd7d..6de308d0e91 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeCloudDbSystemAvailabilityMetricsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeCloudDbSystemAvailabilityMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeCloudListenerMetricsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeCloudListenerMetricsResponse.java index ea84a7a69b8..a2ba07752f8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeCloudListenerMetricsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeCloudListenerMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeExternalAsmMetricsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeExternalAsmMetricsResponse.java index 3e8b4b7f11a..82a3faad505 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeExternalAsmMetricsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeExternalAsmMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeExternalClusterMetricsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeExternalClusterMetricsResponse.java index a8d17c983ae..fed5659ce7c 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeExternalClusterMetricsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeExternalClusterMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeExternalDbNodeMetricsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeExternalDbNodeMetricsResponse.java index 6f8848b1ca9..95e87564d9a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeExternalDbNodeMetricsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeExternalDbNodeMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeExternalDbSystemAvailabilityMetricsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeExternalDbSystemAvailabilityMetricsResponse.java index 57dcbdcd057..9ed9018ecb8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeExternalDbSystemAvailabilityMetricsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeExternalDbSystemAvailabilityMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeExternalListenerMetricsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeExternalListenerMetricsResponse.java index ee62634b4e5..11905eee60a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeExternalListenerMetricsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeExternalListenerMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeJobExecutionsStatusesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeJobExecutionsStatusesResponse.java index 97eff241075..ccf6ac2f88e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeJobExecutionsStatusesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeJobExecutionsStatusesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeManagedDatabaseAvailabilityMetricsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeManagedDatabaseAvailabilityMetricsResponse.java index 88341b94f98..865fe8a9414 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeManagedDatabaseAvailabilityMetricsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeManagedDatabaseAvailabilityMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeManagedMySqlDatabaseAvailabilityMetricsResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeManagedMySqlDatabaseAvailabilityMetricsResponse.java index b68a6fc1b72..e3490377b7b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeManagedMySqlDatabaseAvailabilityMetricsResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeManagedMySqlDatabaseAvailabilityMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeSqlPlanBaselinesByLastExecutionResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeSqlPlanBaselinesByLastExecutionResponse.java index 4dd0052eb51..2ad9d13b7cd 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeSqlPlanBaselinesByLastExecutionResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeSqlPlanBaselinesByLastExecutionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeSqlPlanBaselinesResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeSqlPlanBaselinesResponse.java index 178d70bf29b..c7aebc22741 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeSqlPlanBaselinesResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/SummarizeSqlPlanBaselinesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/TestNamedCredentialResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/TestNamedCredentialResponse.java index 25c5e69713a..9c7f75e6c3e 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/TestNamedCredentialResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/TestNamedCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/TestPreferredCredentialResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/TestPreferredCredentialResponse.java index 045b6d8927c..1974b59d6e3 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/TestPreferredCredentialResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/TestPreferredCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudAsmInstanceResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudAsmInstanceResponse.java index 952ce69f702..a7328208d43 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudAsmInstanceResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudAsmInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudAsmResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudAsmResponse.java index 713197c7dff..7d158310e55 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudAsmResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudAsmResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudClusterInstanceResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudClusterInstanceResponse.java index 95f4f40836b..9608efacdb0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudClusterInstanceResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudClusterInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudClusterResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudClusterResponse.java index c7dc8899573..e167acd57ce 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudClusterResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudDbHomeResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudDbHomeResponse.java index 76dd1e7dd7a..6e0ff168766 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudDbHomeResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudDbHomeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudDbNodeResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudDbNodeResponse.java index a606b6677a6..7105e935b0d 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudDbNodeResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudDbNodeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudDbSystemConnectorResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudDbSystemConnectorResponse.java index 5a804d3cdaf..647a6edc344 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudDbSystemConnectorResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudDbSystemConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudDbSystemDiscoveryResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudDbSystemDiscoveryResponse.java index 6ea3d958cfc..a6399e03647 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudDbSystemDiscoveryResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudDbSystemDiscoveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudDbSystemResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudDbSystemResponse.java index a92955eee32..8b03ef9ffb8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudDbSystemResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudDbSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudListenerResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudListenerResponse.java index e17717faefa..942eeacb8e0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudListenerResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateCloudListenerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateDbManagementPrivateEndpointResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateDbManagementPrivateEndpointResponse.java index 8421e7f229b..34a3644881a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateDbManagementPrivateEndpointResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateDbManagementPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalAsmInstanceResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalAsmInstanceResponse.java index 611750a25d4..c2930dbf7af 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalAsmInstanceResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalAsmInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalAsmResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalAsmResponse.java index ca85a9240d1..30275c607de 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalAsmResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalAsmResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalClusterInstanceResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalClusterInstanceResponse.java index d55ccc4d349..9f7e4f5ae78 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalClusterInstanceResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalClusterInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalClusterResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalClusterResponse.java index 2f4c2802757..eb23d7f8033 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalClusterResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalDbHomeResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalDbHomeResponse.java index a4ecfc373ad..e0c239e2faf 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalDbHomeResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalDbHomeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalDbNodeResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalDbNodeResponse.java index 8990d465b02..d3b910320b4 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalDbNodeResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalDbNodeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalDbSystemConnectorResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalDbSystemConnectorResponse.java index ab35beee387..71d922d4ee7 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalDbSystemConnectorResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalDbSystemConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalDbSystemDiscoveryResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalDbSystemDiscoveryResponse.java index 72dd271df50..d44c5718052 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalDbSystemDiscoveryResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalDbSystemDiscoveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalDbSystemResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalDbSystemResponse.java index dcf355c6139..306496774e0 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalDbSystemResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalDbSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalExadataInfrastructureResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalExadataInfrastructureResponse.java index a2c0c634a63..a78dba41f23 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalExadataInfrastructureResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalExadataInfrastructureResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalExadataStorageConnectorResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalExadataStorageConnectorResponse.java index 30c5bbac93a..ef5e91cdce8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalExadataStorageConnectorResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalExadataStorageConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalExadataStorageGridResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalExadataStorageGridResponse.java index 95f2f2ada28..d8cf9a7e8ea 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalExadataStorageGridResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalExadataStorageGridResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalExadataStorageServerResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalExadataStorageServerResponse.java index 9364fdd07d5..b400491250a 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalExadataStorageServerResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalExadataStorageServerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalListenerResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalListenerResponse.java index 30aa4abda38..b5820b8f6ce 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalListenerResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalListenerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalMysqlDatabaseConnectorResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalMysqlDatabaseConnectorResponse.java index 6434e96dda8..5f0edbc762b 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalMysqlDatabaseConnectorResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalMysqlDatabaseConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalMysqlDatabaseResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalMysqlDatabaseResponse.java index 5c5045814ca..7428107602f 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalMysqlDatabaseResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateExternalMysqlDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateJobResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateJobResponse.java index 5f35f03b51a..6255d5bc011 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateJobResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateManagedDatabaseGroupResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateManagedDatabaseGroupResponse.java index cb62498d5ac..b78225d7cf8 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateManagedDatabaseGroupResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateManagedDatabaseGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateManagedDatabaseResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateManagedDatabaseResponse.java index 5e593fdf23e..c8ba5438b86 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateManagedDatabaseResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateManagedDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateNamedCredentialResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateNamedCredentialResponse.java index 2b10b7967fc..35959eec797 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateNamedCredentialResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateNamedCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdatePreferredCredentialResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdatePreferredCredentialResponse.java index 73f93949c5a..12b5c1c7501 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdatePreferredCredentialResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdatePreferredCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateTablespaceResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateTablespaceResponse.java index 1da78b0d32f..3ebcd22e6b6 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateTablespaceResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/UpdateTablespaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ValidateBasicFilterResponse.java b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ValidateBasicFilterResponse.java index afb0c6dc10c..13d6483d123 100644 --- a/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ValidateBasicFilterResponse.java +++ b/bmc-databasemanagement/src/main/java/com/oracle/bmc/databasemanagement/responses/ValidateBasicFilterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemanagement.responses; diff --git a/bmc-databasemanagement/src/main/resources/com/oracle/bmc/databasemanagement/client.properties b/bmc-databasemanagement/src/main/resources/com/oracle/bmc/databasemanagement/client.properties index 913bf71b8cf..4cc24932988 100644 --- a/bmc-databasemanagement/src/main/resources/com/oracle/bmc/databasemanagement/client.properties +++ b/bmc-databasemanagement/src/main/resources/com/oracle/bmc/databasemanagement/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-databasemigration/pom.xml b/bmc-databasemigration/pom.xml index 0088fe352e4..2357e9e0b81 100644 --- a/bmc-databasemigration/pom.xml +++ b/bmc-databasemigration/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-databasemigration @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigration.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigration.java index 4a9d94adbfa..ac2a048c736 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigration.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigrationAsync.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigrationAsync.java index ffec4577e4b..03954a7e15f 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigrationAsync.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigrationAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigrationAsyncClient.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigrationAsyncClient.java index 15766f0eaf5..110a4c0edcd 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigrationAsyncClient.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigrationAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigrationClient.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigrationClient.java index d8b116dad9c..c997cefc719 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigrationClient.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigrationClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigrationPaginators.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigrationPaginators.java index 41aebb2a5bf..fde6655e7f0 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigrationPaginators.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigrationPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigrationWaiters.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigrationWaiters.java index b64b970d334..9665b2efdc5 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigrationWaiters.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/DatabaseMigrationWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ADBDedicatedAutoCreateTablespaceDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ADBDedicatedAutoCreateTablespaceDetails.java index 55efc48512c..a5960a11a6d 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ADBDedicatedAutoCreateTablespaceDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ADBDedicatedAutoCreateTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ADBDedicatedRemapTargetTablespaceDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ADBDedicatedRemapTargetTablespaceDetails.java index 623a1c10351..e46c2977f89 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ADBDedicatedRemapTargetTablespaceDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ADBDedicatedRemapTargetTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ADBServerlesTablespaceDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ADBServerlesTablespaceDetails.java index b6764444eb2..2cd4b4cffa0 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ADBServerlesTablespaceDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ADBServerlesTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdminCredentials.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdminCredentials.java index 8c9e6b9e90f..220140eb9a3 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdminCredentials.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdminCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdvancedParameterDataTypes.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdvancedParameterDataTypes.java index 2641cd45b97..8b70eccbad6 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdvancedParameterDataTypes.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdvancedParameterDataTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdvisorReport.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdvisorReport.java index 1ca56ba2b39..4917a22f284 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdvisorReport.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdvisorReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdvisorReportBucketDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdvisorReportBucketDetails.java index bd5f2c277d3..680bd648081 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdvisorReportBucketDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdvisorReportBucketDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdvisorReportLocationDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdvisorReportLocationDetails.java index 6a019ae4c2e..4e43a4bcaf9 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdvisorReportLocationDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdvisorReportLocationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdvisorResults.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdvisorResults.java index 6a87ab430cf..e22ba3da572 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdvisorResults.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/AdvisorResults.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ChangeConnectionCompartmentDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ChangeConnectionCompartmentDetails.java index efc00f6758f..a60ca70e476 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ChangeConnectionCompartmentDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ChangeConnectionCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ChangeMigrationCompartmentDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ChangeMigrationCompartmentDetails.java index e3ef3f81135..f09fa24a933 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ChangeMigrationCompartmentDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ChangeMigrationCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CloneMigrationDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CloneMigrationDetails.java index 2eeee4ad5d5..90eb24cd7ba 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CloneMigrationDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CloneMigrationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CollectTracesData.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CollectTracesData.java index 1f3d07bb0e6..2755d975d41 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CollectTracesData.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CollectTracesData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CollectTracesDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CollectTracesDetails.java index 8be47c31585..f95878769e6 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CollectTracesDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CollectTracesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CollectTracesStates.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CollectTracesStates.java index 794acc4afd3..9059a9a9e5f 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CollectTracesStates.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CollectTracesStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CompatibilityOption.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CompatibilityOption.java index badf45102c9..626a49b7f26 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CompatibilityOption.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CompatibilityOption.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/Connection.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/Connection.java index e5bc5498ae7..fa7d7d16292 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/Connection.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/Connection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ConnectionCollection.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ConnectionCollection.java index 584309b9b19..7808e49345e 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ConnectionCollection.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ConnectionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ConnectionSummary.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ConnectionSummary.java index 7373a31befa..f87d740ccbf 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ConnectionSummary.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ConnectionType.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ConnectionType.java index a8b9d93b202..ffe59dc6599 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ConnectionType.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ConnectionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateADBDedicatedAutoCreateTablespaceDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateADBDedicatedAutoCreateTablespaceDetails.java index 9a50f067990..6773221a7a0 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateADBDedicatedAutoCreateTablespaceDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateADBDedicatedAutoCreateTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateADBDedicatedRemapTargetTablespaceDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateADBDedicatedRemapTargetTablespaceDetails.java index 30c198d8b98..bb645026aeb 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateADBDedicatedRemapTargetTablespaceDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateADBDedicatedRemapTargetTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateADBServerlesTablespaceDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateADBServerlesTablespaceDetails.java index d84ac3a424d..e8eae0d59c9 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateADBServerlesTablespaceDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateADBServerlesTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateAdminCredentials.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateAdminCredentials.java index 98bc8ef442c..4a459d6f8e3 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateAdminCredentials.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateAdminCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateConnectionDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateConnectionDetails.java index 16ed52c9853..7b1159ea712 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateConnectionDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateCurlTransferDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateCurlTransferDetails.java index 6a6921c9d44..3e12eb7092b 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateCurlTransferDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateCurlTransferDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateDataPumpParameters.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateDataPumpParameters.java index e47c0e22ca0..903f0864362 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateDataPumpParameters.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateDataPumpParameters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateDirectoryObject.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateDirectoryObject.java index c3e87ec64f1..ab71ba5da0e 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateDirectoryObject.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateDirectoryObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateExtract.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateExtract.java index 4e4f3a9017c..3126956b015 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateExtract.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateExtract.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateGoldenGateHubDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateGoldenGateHubDetails.java index 05426a21d2c..c9de1f7373d 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateGoldenGateHubDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateGoldenGateHubDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateHostDumpTransferDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateHostDumpTransferDetails.java index c44489dbacb..5be7a8abfe1 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateHostDumpTransferDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateHostDumpTransferDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMigrationDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMigrationDetails.java index e226a45edf9..9c3b1f43d43 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMigrationDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMigrationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlAdvisorSettings.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlAdvisorSettings.java index 77dbdc18294..e36ab7e70bf 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlAdvisorSettings.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlAdvisorSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlDataTransferMediumDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlDataTransferMediumDetails.java index 63f9f7ea444..2067d441a0e 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlDataTransferMediumDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlDataTransferMediumDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlGgsDeploymentDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlGgsDeploymentDetails.java index 8b28f1ec259..d4764a4ee5b 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlGgsDeploymentDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlGgsDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlInitialLoadSettings.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlInitialLoadSettings.java index 90131fb435f..a7ee534c69a 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlInitialLoadSettings.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlInitialLoadSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlMigrationDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlMigrationDetails.java index e02e8ec76a9..fd8425839f0 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlMigrationDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlMigrationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlObjectStorageDataTransferMediumDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlObjectStorageDataTransferMediumDetails.java index e8554bff4af..ca764478e7e 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlObjectStorageDataTransferMediumDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMySqlObjectStorageDataTransferMediumDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMysqlConnectionDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMysqlConnectionDetails.java index cfaadb593b3..0c977e7cf28 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMysqlConnectionDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateMysqlConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateNonADBAutoCreateTablespaceDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateNonADBAutoCreateTablespaceDetails.java index ab794831c62..9fcd2517618 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateNonADBAutoCreateTablespaceDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateNonADBAutoCreateTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateNonADBRemapTablespaceDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateNonADBRemapTablespaceDetails.java index f9a299cb37e..501f786a106 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateNonADBRemapTablespaceDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateNonADBRemapTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateObjectStoreBucket.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateObjectStoreBucket.java index 9888a030416..48e63bb752b 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateObjectStoreBucket.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateObjectStoreBucket.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOciCliDumpTransferDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOciCliDumpTransferDetails.java index c1abe3b1398..0956168be0f 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOciCliDumpTransferDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOciCliDumpTransferDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleAdvisorSettings.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleAdvisorSettings.java index 7173e3ffa48..7be85572228 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleAdvisorSettings.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleAdvisorSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleAwsS3DataTransferMediumDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleAwsS3DataTransferMediumDetails.java index 96204681fe7..2f0350a93f4 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleAwsS3DataTransferMediumDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleAwsS3DataTransferMediumDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleConnectionDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleConnectionDetails.java index 04412aed9db..e7d5a01281a 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleConnectionDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleDataTransferMediumDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleDataTransferMediumDetails.java index 350c27a745e..47813b9b0fe 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleDataTransferMediumDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleDataTransferMediumDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleDbLinkDataTransferMediumDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleDbLinkDataTransferMediumDetails.java index 2381c84ffa2..e438521f4b4 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleDbLinkDataTransferMediumDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleDbLinkDataTransferMediumDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleGgsDeploymentDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleGgsDeploymentDetails.java index b08a1195cc4..d65154afcd3 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleGgsDeploymentDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleGgsDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleInitialLoadSettings.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleInitialLoadSettings.java index faa758e81b1..b8ca667bf62 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleInitialLoadSettings.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleInitialLoadSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleMigrationDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleMigrationDetails.java index 141d884caac..b32d8868fce 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleMigrationDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleMigrationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleNfsDataTransferMediumDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleNfsDataTransferMediumDetails.java index 464414e0f93..5ff32238b53 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleNfsDataTransferMediumDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleNfsDataTransferMediumDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleObjectStorageDataTransferMediumDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleObjectStorageDataTransferMediumDetails.java index 476ad539d6d..2b51006c04f 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleObjectStorageDataTransferMediumDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateOracleObjectStorageDataTransferMediumDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateParameterFileVersionDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateParameterFileVersionDetails.java index 3830ade209b..afd1b1d2b1a 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateParameterFileVersionDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateParameterFileVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateReplicat.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateReplicat.java index 926f986bbcf..0098e86d8f6 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateReplicat.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateReplicat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateTargetTypeTablespaceDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateTargetTypeTablespaceDetails.java index 7f3579543f0..fac35d8131e 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateTargetTypeTablespaceDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CreateTargetTypeTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CurlTransferDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CurlTransferDetails.java index a20048fa589..14627e1d074 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CurlTransferDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/CurlTransferDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DataPumpEstimate.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DataPumpEstimate.java index b6c76b87b61..fa911e8ce1b 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DataPumpEstimate.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DataPumpEstimate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DataPumpExcludeParameters.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DataPumpExcludeParameters.java index 4a011e1426f..78a1b3a764e 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DataPumpExcludeParameters.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DataPumpExcludeParameters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DataPumpParameters.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DataPumpParameters.java index 3ceebfcbbb6..e21d813299a 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DataPumpParameters.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DataPumpParameters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DataPumpTableExistsAction.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DataPumpTableExistsAction.java index f28de655d67..fdfb2d80e50 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DataPumpTableExistsAction.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DataPumpTableExistsAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DataPumpTablespaceBlockSizesInKb.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DataPumpTablespaceBlockSizesInKb.java index 03b54d0315e..b1102d34a50 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DataPumpTablespaceBlockSizesInKb.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DataPumpTablespaceBlockSizesInKb.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DatabaseCombination.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DatabaseCombination.java index b525b866b8f..1b54eeab3e4 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DatabaseCombination.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DatabaseCombination.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DiagnosticsResult.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DiagnosticsResult.java index 0fed87140c3..4cc9e096edc 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DiagnosticsResult.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DiagnosticsResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DirectoryObject.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DirectoryObject.java index 4509c352feb..7779bfd596c 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DirectoryObject.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/DirectoryObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ExcludedObjectSummary.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ExcludedObjectSummary.java index 5275f4dca47..88bc4f1b3c2 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ExcludedObjectSummary.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ExcludedObjectSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ExcludedObjectSummaryCollection.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ExcludedObjectSummaryCollection.java index 340310489c7..7803391c8cb 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ExcludedObjectSummaryCollection.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ExcludedObjectSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/Extract.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/Extract.java index f73ebb4145a..d3f435ca2c6 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/Extract.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/Extract.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ExtractPerformanceProfile.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ExtractPerformanceProfile.java index ea58221bc85..fc9603ea8b9 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ExtractPerformanceProfile.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ExtractPerformanceProfile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/GgsDeployment.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/GgsDeployment.java index 99faf1a8715..2960e6d0ad3 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/GgsDeployment.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/GgsDeployment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/GoldenGateHubDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/GoldenGateHubDetails.java index dfba1757e64..92ed5d8b3ab 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/GoldenGateHubDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/GoldenGateHubDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/HandleGrantErrors.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/HandleGrantErrors.java index c38a824db54..537b191438e 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/HandleGrantErrors.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/HandleGrantErrors.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/HostDumpTransferDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/HostDumpTransferDetails.java index dfcd759ec37..e173e2a230e 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/HostDumpTransferDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/HostDumpTransferDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/IngressIpDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/IngressIpDetails.java index 5d4518164d3..b7136c4aea1 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/IngressIpDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/IngressIpDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/Job.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/Job.java index cdcb3d51258..ffcca6baf28 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/Job.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/Job.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobCollection.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobCollection.java index 00b91d57d4d..89c25e6c1c0 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobCollection.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobLifecycleStates.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobLifecycleStates.java index c3aefd019e9..123a277ca30 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobLifecycleStates.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobLifecycleStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobModeMySql.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobModeMySql.java index 776cfc920a7..900cfaa54aa 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobModeMySql.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobModeMySql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobModeOracle.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobModeOracle.java index 97b0921a80b..f69fa6fd884 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobModeOracle.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobModeOracle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobOutputSummary.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobOutputSummary.java index bb9f1350241..50cb13f33c2 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobOutputSummary.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobOutputSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobOutputSummaryCollection.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobOutputSummaryCollection.java index b045f49073b..d257f991b06 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobOutputSummaryCollection.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobOutputSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobParameterFileVersionKind.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobParameterFileVersionKind.java index a6cace29537..e9cd42abc05 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobParameterFileVersionKind.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobParameterFileVersionKind.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobPhaseStatus.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobPhaseStatus.java index 6bd0c67768c..1fe982ee111 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobPhaseStatus.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobPhaseStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobSummary.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobSummary.java index 473e66e579d..3aea7b4a5a9 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobSummary.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobTypes.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobTypes.java index 469ae8e42af..0a03e83f315 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobTypes.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/JobTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/LifecycleStates.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/LifecycleStates.java index 35d4fdbb4fa..f35595dc83d 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/LifecycleStates.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/LifecycleStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/LogLocationBucketDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/LogLocationBucketDetails.java index d3550da3e88..2271b421b40 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/LogLocationBucketDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/LogLocationBucketDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MetadataRemap.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MetadataRemap.java index ba4bb1355be..d9b9f60b605 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MetadataRemap.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MetadataRemap.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/Migration.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/Migration.java index 15b64f5fbb8..723d9a9564d 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/Migration.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/Migration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationCollection.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationCollection.java index bf932926b2f..3d141549d69 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationCollection.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationDatabaseTargetTypes.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationDatabaseTargetTypes.java index 36374caaf9f..5b6b05a0c17 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationDatabaseTargetTypes.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationDatabaseTargetTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationDatabaseTargetTypesUpdate.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationDatabaseTargetTypesUpdate.java index 552867d39dc..616fdc56eb8 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationDatabaseTargetTypesUpdate.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationDatabaseTargetTypesUpdate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationJobProgressResource.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationJobProgressResource.java index 151eb95383d..3a10b1ef323 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationJobProgressResource.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationJobProgressResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationJobProgressSummary.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationJobProgressSummary.java index 6dec743e3a1..406b7a1657f 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationJobProgressSummary.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationJobProgressSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationLifecycleStates.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationLifecycleStates.java index d5b7996c457..61b0a09e4b6 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationLifecycleStates.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationLifecycleStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationObjectCollection.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationObjectCollection.java index b0f74741dcf..973b2e8bee1 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationObjectCollection.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationObjectCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationObjectTypeSummary.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationObjectTypeSummary.java index 90c62d15587..1dd8ef03d9c 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationObjectTypeSummary.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationObjectTypeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationObjectTypeSummaryCollection.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationObjectTypeSummaryCollection.java index 87303cdca77..d835f91e6c6 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationObjectTypeSummaryCollection.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationObjectTypeSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationParameterBase.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationParameterBase.java index 056bce619c3..da094562d03 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationParameterBase.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationParameterBase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationParameterDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationParameterDetails.java index 7b53a8af945..ab0f2e19aa8 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationParameterDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationParameterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationParameterSummary.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationParameterSummary.java index 39aaba902f3..653df4b2c4a 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationParameterSummary.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationParameterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationParameterSummaryCollection.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationParameterSummaryCollection.java index b47b485f7df..341992e9626 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationParameterSummaryCollection.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationParameterSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationPhaseCollection.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationPhaseCollection.java index 21fca884443..eced84a1ede 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationPhaseCollection.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationPhaseCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationPhaseSummary.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationPhaseSummary.java index 65ef85fb944..bb347d14d93 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationPhaseSummary.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationPhaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationStatus.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationStatus.java index 46df3080c4f..f231f35cee4 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationStatus.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationSummary.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationSummary.java index 4209fe8c000..7ed0f4b49f3 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationSummary.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationTypes.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationTypes.java index 1e3d93b61d5..a7ad39b10fb 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationTypes.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MigrationTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlAdvisorSettings.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlAdvisorSettings.java index f5c0767f76d..6fb6b555611 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlAdvisorSettings.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlAdvisorSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlCloneMigrationDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlCloneMigrationDetails.java index 3b4a92bc9d9..deaa3e5005c 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlCloneMigrationDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlCloneMigrationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlDataTransferMediumDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlDataTransferMediumDetails.java index 525673f9465..bf0a9e717e2 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlDataTransferMediumDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlDataTransferMediumDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlDatabaseObject.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlDatabaseObject.java index c373ef58a42..28f3038390d 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlDatabaseObject.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlDatabaseObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlDatabaseObjectSummary.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlDatabaseObjectSummary.java index 1a8effff0d8..a8d86077bff 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlDatabaseObjectSummary.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlDatabaseObjectSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlGgsDeploymentDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlGgsDeploymentDetails.java index 524e9c8f544..c8baef37452 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlGgsDeploymentDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlGgsDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlInitialLoadSettings.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlInitialLoadSettings.java index ea0d884a28e..dae3e66878f 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlInitialLoadSettings.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlInitialLoadSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlMigration.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlMigration.java index f2f8c08f227..274dc013f61 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlMigration.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlMigration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlMigrationObjectCollection.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlMigrationObjectCollection.java index 38fe19d87e1..ea8286dc2bf 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlMigrationObjectCollection.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlMigrationObjectCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlMigrationSummary.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlMigrationSummary.java index 893db9cf4d1..a0ee31a2e90 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlMigrationSummary.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlMigrationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlObjectStorageDataTransferMediumDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlObjectStorageDataTransferMediumDetails.java index 09bdcdcb7b5..7581054ee92 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlObjectStorageDataTransferMediumDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MySqlObjectStorageDataTransferMediumDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MysqlConnection.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MysqlConnection.java index 1335b0330e2..93c3df9dc41 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MysqlConnection.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MysqlConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MysqlConnectionSummary.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MysqlConnectionSummary.java index 18abf6f9d92..ec0cb0e3b5c 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MysqlConnectionSummary.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/MysqlConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/NameValuePair.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/NameValuePair.java index 1e82638eedb..74914894160 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/NameValuePair.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/NameValuePair.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/NonADBAutoCreateTablespaceDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/NonADBAutoCreateTablespaceDetails.java index e4e2638c0cf..c5c6bb8abd0 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/NonADBAutoCreateTablespaceDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/NonADBAutoCreateTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/NonADBRemapTablespaceDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/NonADBRemapTablespaceDetails.java index 8c4ebb6201f..9b683d676e9 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/NonADBRemapTablespaceDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/NonADBRemapTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ObjectStatus.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ObjectStatus.java index ce321a55d56..d02210f2013 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ObjectStatus.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ObjectStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ObjectStoreBucket.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ObjectStoreBucket.java index 6b35b06589c..ca29bd708e4 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ObjectStoreBucket.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ObjectStoreBucket.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OciCliDumpTransferDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OciCliDumpTransferDetails.java index a6d612e42e4..656049455de 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OciCliDumpTransferDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OciCliDumpTransferDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OdmsJobPhases.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OdmsJobPhases.java index 758d6920a70..467f3670e47 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OdmsJobPhases.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OdmsJobPhases.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OdmsPhaseActions.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OdmsPhaseActions.java index 705a5a260dd..d42b45de1de 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OdmsPhaseActions.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OdmsPhaseActions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OperationStatus.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OperationStatus.java index e6d4e255ce8..40b6fac82af 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OperationStatus.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OperationTypes.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OperationTypes.java index ac99e23756d..d87f4485035 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OperationTypes.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OperationTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleAdvisorSettings.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleAdvisorSettings.java index bf4d2bce40a..fe6fb7bd292 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleAdvisorSettings.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleAdvisorSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleAwsS3DataTransferMediumDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleAwsS3DataTransferMediumDetails.java index ed4c96fbb08..11b3fbc90ee 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleAwsS3DataTransferMediumDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleAwsS3DataTransferMediumDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleCloneMigrationDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleCloneMigrationDetails.java index c5905349481..4cf74672443 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleCloneMigrationDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleCloneMigrationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleConnection.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleConnection.java index 7b1cabf5ea8..8b071de6c17 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleConnection.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleConnectionSummary.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleConnectionSummary.java index fa5a1d03a70..b328413ad12 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleConnectionSummary.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleDataTransferMediumDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleDataTransferMediumDetails.java index 7cdc4f69605..421754b31ce 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleDataTransferMediumDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleDataTransferMediumDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleDatabaseObject.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleDatabaseObject.java index d9f3e25f486..bef13399279 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleDatabaseObject.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleDatabaseObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleDatabaseObjectSummary.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleDatabaseObjectSummary.java index d4b704af4cf..c426a346867 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleDatabaseObjectSummary.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleDatabaseObjectSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleDbLinkDataTransferMediumDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleDbLinkDataTransferMediumDetails.java index ec8e06bfebb..dc1334174b1 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleDbLinkDataTransferMediumDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleDbLinkDataTransferMediumDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleGgsDeploymentDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleGgsDeploymentDetails.java index 48afb1cad32..eb408530935 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleGgsDeploymentDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleGgsDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleInitialLoadSettings.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleInitialLoadSettings.java index 5a10560546b..c5ebbb68a16 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleInitialLoadSettings.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleInitialLoadSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleMigration.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleMigration.java index 7f85135aa02..85e0c7ee8b2 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleMigration.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleMigration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleMigrationObjectCollection.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleMigrationObjectCollection.java index 65068a45638..a4a0e990bf3 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleMigrationObjectCollection.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleMigrationObjectCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleMigrationSummary.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleMigrationSummary.java index 7ae01be401a..66d47a1314a 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleMigrationSummary.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleMigrationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleNfsDataTransferMediumDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleNfsDataTransferMediumDetails.java index 2e9d0ec0956..65fb0b5196b 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleNfsDataTransferMediumDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleNfsDataTransferMediumDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleObjectStorageDataTransferMediumDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleObjectStorageDataTransferMediumDetails.java index f2072a49bed..1967036b1f1 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleObjectStorageDataTransferMediumDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/OracleObjectStorageDataTransferMediumDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ParameterFileVersion.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ParameterFileVersion.java index 9bfa38425cd..94dc5fa3a48 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ParameterFileVersion.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ParameterFileVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ParameterFileVersionCollection.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ParameterFileVersionCollection.java index 25ce967075b..1c13f9ea445 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ParameterFileVersionCollection.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ParameterFileVersionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ParameterFileVersionSummary.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ParameterFileVersionSummary.java index 3ac56040638..8eb098e83a2 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ParameterFileVersionSummary.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ParameterFileVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/PhaseExtractEntry.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/PhaseExtractEntry.java index 42ce4cf9466..c067c12d241 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/PhaseExtractEntry.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/PhaseExtractEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/PhaseExtractTypes.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/PhaseExtractTypes.java index 0b7467dde3a..5581f71a977 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/PhaseExtractTypes.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/PhaseExtractTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/PhaseStatus.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/PhaseStatus.java index 63fc60bb2a9..8eb462daf57 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/PhaseStatus.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/PhaseStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/PrimaryKeyCompatibility.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/PrimaryKeyCompatibility.java index d202ae1a752..fa0472e0761 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/PrimaryKeyCompatibility.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/PrimaryKeyCompatibility.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ReasonKeywords.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ReasonKeywords.java index c0632ec5aa3..99f2d245604 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ReasonKeywords.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ReasonKeywords.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/Replicat.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/Replicat.java index a362c1f8b08..b65709167d8 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/Replicat.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/Replicat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ReplicatPerformanceProfile.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ReplicatPerformanceProfile.java index d338579a0ae..f3cf4d289b0 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ReplicatPerformanceProfile.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ReplicatPerformanceProfile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ResultError.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ResultError.java index 36e1e683d13..4f927f07e68 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ResultError.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ResultError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ResultType.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ResultType.java index a69f047ffe8..7a25094e831 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ResultType.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ResultType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ResumeJobDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ResumeJobDetails.java index 1d4219fbff8..2548ab857db 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ResumeJobDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/ResumeJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/SortOrders.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/SortOrders.java index ae0ebde5b7c..3dcfc29fa21 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/SortOrders.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/SortOrders.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/StartMigrationDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/StartMigrationDetails.java index 9c7a43b0ae3..85ad3f7a63a 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/StartMigrationDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/StartMigrationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/TargetTypeTablespaceDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/TargetTypeTablespaceDetails.java index e20e39d476c..5ccbf3ccce1 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/TargetTypeTablespaceDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/TargetTypeTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/TechnologyType.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/TechnologyType.java index 4a66ea627f0..10079f92da2 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/TechnologyType.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/TechnologyType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UnsupportedDatabaseObject.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UnsupportedDatabaseObject.java index 31df17b7a52..70eefeb0529 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UnsupportedDatabaseObject.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UnsupportedDatabaseObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateADBDedicatedAutoCreateTablespaceDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateADBDedicatedAutoCreateTablespaceDetails.java index 6fccdcf5567..476a519d6f3 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateADBDedicatedAutoCreateTablespaceDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateADBDedicatedAutoCreateTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateADBDedicatedRemapTargetTablespaceDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateADBDedicatedRemapTargetTablespaceDetails.java index 181a9fa6279..2b0f1c56f94 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateADBDedicatedRemapTargetTablespaceDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateADBDedicatedRemapTargetTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateADBServerlesTablespaceDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateADBServerlesTablespaceDetails.java index 5f9fe4c336a..3912050326f 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateADBServerlesTablespaceDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateADBServerlesTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateAdminCredentials.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateAdminCredentials.java index 37415a4d725..be4830dc5a2 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateAdminCredentials.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateAdminCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateConnectionDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateConnectionDetails.java index 78c6d0bf121..42b8d15e2a9 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateConnectionDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateCurlTransferDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateCurlTransferDetails.java index 05492ab5854..3ea9d6a5fcf 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateCurlTransferDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateCurlTransferDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateDataPumpParameters.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateDataPumpParameters.java index a49e2cf7091..85a95e6ffca 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateDataPumpParameters.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateDataPumpParameters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateDirectoryObject.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateDirectoryObject.java index 77f6b2f2ab5..452859af7e4 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateDirectoryObject.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateDirectoryObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateExtract.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateExtract.java index 4e66806fd1c..20f74e6237b 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateExtract.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateExtract.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateGoldenGateHubDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateGoldenGateHubDetails.java index c2da7b6996a..89b6e0f95f2 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateGoldenGateHubDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateGoldenGateHubDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateHostDumpTransferDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateHostDumpTransferDetails.java index f04dbde3e16..c150eaf5023 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateHostDumpTransferDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateHostDumpTransferDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateJobDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateJobDetails.java index d4fdadbcfb0..e90e6509d17 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateJobDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMigrationDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMigrationDetails.java index a74821be136..f7b2079f24a 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMigrationDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMigrationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlAdvisorSettings.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlAdvisorSettings.java index 5498300e87d..622ca07bca9 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlAdvisorSettings.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlAdvisorSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlDataTransferMediumDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlDataTransferMediumDetails.java index 388d965c512..7b5ca93c3eb 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlDataTransferMediumDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlDataTransferMediumDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlGgsDeploymentDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlGgsDeploymentDetails.java index b891f29759c..f7923ba34c7 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlGgsDeploymentDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlGgsDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlInitialLoadSettings.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlInitialLoadSettings.java index 310915503c3..a699a86b975 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlInitialLoadSettings.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlInitialLoadSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlMigrationDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlMigrationDetails.java index efc2fec4d0d..77d7b6e7336 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlMigrationDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlMigrationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlObjectStorageDataTransferMediumDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlObjectStorageDataTransferMediumDetails.java index 1d905881cae..a1e72838299 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlObjectStorageDataTransferMediumDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMySqlObjectStorageDataTransferMediumDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMysqlConnectionDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMysqlConnectionDetails.java index 7d4c5e37feb..4a73b9a868f 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMysqlConnectionDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateMysqlConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateNonADBAutoCreateTablespaceDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateNonADBAutoCreateTablespaceDetails.java index 4e3bcc088fd..e52d8ad53a7 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateNonADBAutoCreateTablespaceDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateNonADBAutoCreateTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateNonADBRemapTablespaceDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateNonADBRemapTablespaceDetails.java index 82be1caa5bd..62cb7e55af8 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateNonADBRemapTablespaceDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateNonADBRemapTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateObjectStoreBucket.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateObjectStoreBucket.java index aca1a3155cb..5fe36464c1f 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateObjectStoreBucket.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateObjectStoreBucket.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOciCliDumpTransferDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOciCliDumpTransferDetails.java index 33f814fde57..1ce2190c87e 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOciCliDumpTransferDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOciCliDumpTransferDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleAdvisorSettings.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleAdvisorSettings.java index f115df36e84..0a65ecff6b0 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleAdvisorSettings.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleAdvisorSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleAwsS3DataTransferMediumDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleAwsS3DataTransferMediumDetails.java index 5bfe15c43b1..fd5497ad8d9 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleAwsS3DataTransferMediumDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleAwsS3DataTransferMediumDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleConnectionDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleConnectionDetails.java index 89a5c322152..82fa37b302f 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleConnectionDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleDataTransferMediumDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleDataTransferMediumDetails.java index 3a9a9e73785..4265ac39f30 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleDataTransferMediumDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleDataTransferMediumDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleDbLinkDataTransferMediumDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleDbLinkDataTransferMediumDetails.java index 868e731f693..660ea99ec4e 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleDbLinkDataTransferMediumDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleDbLinkDataTransferMediumDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleGgsDeploymentDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleGgsDeploymentDetails.java index a5ba91dfa6d..d65598ea6d0 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleGgsDeploymentDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleGgsDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleInitialLoadSettings.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleInitialLoadSettings.java index d0264d30f47..72ea203b4a0 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleInitialLoadSettings.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleInitialLoadSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleMigrationDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleMigrationDetails.java index 24383453e22..d917dfbface 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleMigrationDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleMigrationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleNfsDataTransferMediumDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleNfsDataTransferMediumDetails.java index 71dbcdb4f33..9684720bf30 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleNfsDataTransferMediumDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleNfsDataTransferMediumDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleObjectStorageDataTransferMediumDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleObjectStorageDataTransferMediumDetails.java index 11273e3e3da..b74fa40e2a7 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleObjectStorageDataTransferMediumDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateOracleObjectStorageDataTransferMediumDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateReplicat.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateReplicat.java index c5726bc743a..3d4e01acd7a 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateReplicat.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateReplicat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateTargetDefaultsAutoCreateTablespaceDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateTargetDefaultsAutoCreateTablespaceDetails.java index dd4f7eb9031..d2c1420c59c 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateTargetDefaultsAutoCreateTablespaceDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateTargetDefaultsAutoCreateTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateTargetDefaultsRemapTablespaceDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateTargetDefaultsRemapTablespaceDetails.java index 8c39d183292..956b70d4dd5 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateTargetDefaultsRemapTablespaceDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateTargetDefaultsRemapTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateTargetTypeTablespaceDetails.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateTargetTypeTablespaceDetails.java index 3e26b5595ff..bd4020d3a4d 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateTargetTypeTablespaceDetails.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/UpdateTargetTypeTablespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequest.java index 0a57e322b7e..14cec9694f0 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestCollection.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestCollection.java index 86a3b7caecf..1c22f17f047 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestCollection.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestError.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestError.java index 45c078a8788..339dcbabc7d 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestError.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestErrorCollection.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestErrorCollection.java index a55c51360d5..e462d482471 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestErrorCollection.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestLogEntry.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestLogEntry.java index 19bf1fd2cfa..b61da0969c7 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestLogEntry.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestLogEntryCollection.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestLogEntryCollection.java index 5521f2c7201..f752c6c5a32 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestLogEntryCollection.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestResource.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestResource.java index b1222a31f76..3011ca3597e 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestResource.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestSummary.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestSummary.java index e7b5383315a..798c2cd3e8d 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestSummary.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.model; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/AbortJobRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/AbortJobRequest.java index 4d688e0a21c..e9394b7bbe3 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/AbortJobRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/AbortJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/AddMigrationObjectsRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/AddMigrationObjectsRequest.java index e616a6422ad..aaab0b09b3d 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/AddMigrationObjectsRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/AddMigrationObjectsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ChangeConnectionCompartmentRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ChangeConnectionCompartmentRequest.java index af96f6e9916..d177163b5c9 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ChangeConnectionCompartmentRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ChangeConnectionCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ChangeMigrationCompartmentRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ChangeMigrationCompartmentRequest.java index be2962c3d75..2308a2fb290 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ChangeMigrationCompartmentRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ChangeMigrationCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/CloneMigrationRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/CloneMigrationRequest.java index f8f834c4a16..9bcdfcb9e6b 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/CloneMigrationRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/CloneMigrationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/CollectTracesRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/CollectTracesRequest.java index 9ebb10ee58c..6236a980077 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/CollectTracesRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/CollectTracesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ConnectionDiagnosticsRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ConnectionDiagnosticsRequest.java index 9cbbed919e0..f7430ba0985 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ConnectionDiagnosticsRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ConnectionDiagnosticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/CreateConnectionRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/CreateConnectionRequest.java index b6adc43dc01..6017e3c58ce 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/CreateConnectionRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/CreateConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/CreateMigrationRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/CreateMigrationRequest.java index f396a241cc3..955f85f93ee 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/CreateMigrationRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/CreateMigrationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/CreateParameterFileVersionRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/CreateParameterFileVersionRequest.java index fa04bbc0da8..1884fea1558 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/CreateParameterFileVersionRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/CreateParameterFileVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/DeleteConnectionRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/DeleteConnectionRequest.java index 686d74be9ab..4dc1e41bd0a 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/DeleteConnectionRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/DeleteConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/DeleteJobRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/DeleteJobRequest.java index 6b8b4e74ba1..5867208dbf8 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/DeleteJobRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/DeleteJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/DeleteMigrationRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/DeleteMigrationRequest.java index d7d71db9fe3..35578f349d9 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/DeleteMigrationRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/DeleteMigrationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/DeleteParameterFileVersionRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/DeleteParameterFileVersionRequest.java index 76813d2950c..c6e035a80f4 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/DeleteParameterFileVersionRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/DeleteParameterFileVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/EvaluateMigrationRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/EvaluateMigrationRequest.java index ddf583d9253..f87d83b3f64 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/EvaluateMigrationRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/EvaluateMigrationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetAdvisorReportRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetAdvisorReportRequest.java index e0754657606..007d3e0a908 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetAdvisorReportRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetAdvisorReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetConnectionRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetConnectionRequest.java index 511a66fb795..fad99e237ff 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetConnectionRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetJobOutputContentRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetJobOutputContentRequest.java index c8ea4c0e4fc..17c66ad76c4 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetJobOutputContentRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetJobOutputContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetJobRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetJobRequest.java index e11f72fb4cd..2ac3cf27f57 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetJobRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetMigrationRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetMigrationRequest.java index 2899597dbc1..8ddb6079d1e 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetMigrationRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetMigrationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetParameterFileVersionRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetParameterFileVersionRequest.java index 639a05d6ec9..7d06fcdcab4 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetParameterFileVersionRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetParameterFileVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetWorkRequestRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetWorkRequestRequest.java index 62beab7979a..ee2be4fa545 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetWorkRequestRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListConnectionsRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListConnectionsRequest.java index 80ca3d5dc74..4f1562c2f63 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListConnectionsRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListConnectionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListExcludedObjectsRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListExcludedObjectsRequest.java index f1906776ff1..2f9bc8c7734 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListExcludedObjectsRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListExcludedObjectsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListJobOutputsRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListJobOutputsRequest.java index 807d0eeed52..9f9ee425661 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListJobOutputsRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListJobOutputsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListJobsRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListJobsRequest.java index 993996c6978..fd7aef50be1 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListJobsRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListJobsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListMigrationObjectTypesRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListMigrationObjectTypesRequest.java index 7c0cae241f6..23bafee8000 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListMigrationObjectTypesRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListMigrationObjectTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListMigrationObjectsRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListMigrationObjectsRequest.java index 28899e55e5d..a9b7cd69234 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListMigrationObjectsRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListMigrationObjectsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListMigrationParametersRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListMigrationParametersRequest.java index 57d991700de..8bf493138a7 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListMigrationParametersRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListMigrationParametersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListMigrationsRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListMigrationsRequest.java index 5d4af7bcd90..2ec7a5b0efa 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListMigrationsRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListMigrationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListParameterFileVersionsRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListParameterFileVersionsRequest.java index c994f97aa4f..7fe78097556 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListParameterFileVersionsRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListParameterFileVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListWorkRequestErrorsRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListWorkRequestErrorsRequest.java index 6d73eb735bb..fc5875b8947 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListWorkRequestLogsRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListWorkRequestLogsRequest.java index 3bc00134ac9..6f58abb1b5d 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListWorkRequestLogsRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListWorkRequestsRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListWorkRequestsRequest.java index 73d8914035a..73b692f1e98 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListWorkRequestsRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/MakeCurrentParameterFileVersionRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/MakeCurrentParameterFileVersionRequest.java index b6b05dc76fe..9c5946001e7 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/MakeCurrentParameterFileVersionRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/MakeCurrentParameterFileVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/RemoveMigrationObjectsRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/RemoveMigrationObjectsRequest.java index 283283be480..54b75295136 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/RemoveMigrationObjectsRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/RemoveMigrationObjectsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ResumeJobRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ResumeJobRequest.java index 10f6f124f4f..38707dd8f79 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ResumeJobRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/ResumeJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/RetrieveSupportedPhasesRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/RetrieveSupportedPhasesRequest.java index 09d83a9bc2d..e466c34a489 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/RetrieveSupportedPhasesRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/RetrieveSupportedPhasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/StartMigrationRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/StartMigrationRequest.java index b8ae3720ca3..b2c55b3d956 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/StartMigrationRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/StartMigrationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/SuspendJobRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/SuspendJobRequest.java index c25d2c4d826..d8717c2a96b 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/SuspendJobRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/SuspendJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/UpdateConnectionRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/UpdateConnectionRequest.java index cadaf62309e..c046780a6ae 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/UpdateConnectionRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/UpdateConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/UpdateJobRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/UpdateJobRequest.java index 5af5e8ccc77..ef2229fdcb7 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/UpdateJobRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/UpdateJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/UpdateMigrationRequest.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/UpdateMigrationRequest.java index 07274fa8e9d..409ead0ba90 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/UpdateMigrationRequest.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/requests/UpdateMigrationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.requests; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/AbortJobResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/AbortJobResponse.java index 42edd0e2f5f..727f134cd48 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/AbortJobResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/AbortJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/AddMigrationObjectsResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/AddMigrationObjectsResponse.java index 739478e229a..dfa1e3f5230 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/AddMigrationObjectsResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/AddMigrationObjectsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ChangeConnectionCompartmentResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ChangeConnectionCompartmentResponse.java index 7d8b5581c12..a17bcf8dfab 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ChangeConnectionCompartmentResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ChangeConnectionCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ChangeMigrationCompartmentResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ChangeMigrationCompartmentResponse.java index feb6e6c31fe..42dd44926f4 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ChangeMigrationCompartmentResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ChangeMigrationCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/CloneMigrationResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/CloneMigrationResponse.java index d9c8ab79dbd..cef82f709ee 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/CloneMigrationResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/CloneMigrationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/CollectTracesResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/CollectTracesResponse.java index b36c436b656..d1026c72a99 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/CollectTracesResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/CollectTracesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ConnectionDiagnosticsResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ConnectionDiagnosticsResponse.java index cb1a9c8ad91..d0d22ad0176 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ConnectionDiagnosticsResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ConnectionDiagnosticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/CreateConnectionResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/CreateConnectionResponse.java index 51c027ff579..b6393421839 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/CreateConnectionResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/CreateConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/CreateMigrationResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/CreateMigrationResponse.java index 47e7f2a3990..b5c6a13d114 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/CreateMigrationResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/CreateMigrationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/CreateParameterFileVersionResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/CreateParameterFileVersionResponse.java index e80fc7d6d3f..165db2e8c6b 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/CreateParameterFileVersionResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/CreateParameterFileVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/DeleteConnectionResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/DeleteConnectionResponse.java index 78f30d72985..3227659454f 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/DeleteConnectionResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/DeleteConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/DeleteJobResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/DeleteJobResponse.java index 8452e0f410f..c61f5d4854d 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/DeleteJobResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/DeleteJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/DeleteMigrationResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/DeleteMigrationResponse.java index 9583f19ec8f..c5ab2f38f05 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/DeleteMigrationResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/DeleteMigrationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/DeleteParameterFileVersionResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/DeleteParameterFileVersionResponse.java index 50c1e4865ca..269169110ed 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/DeleteParameterFileVersionResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/DeleteParameterFileVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/EvaluateMigrationResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/EvaluateMigrationResponse.java index 42ebb8df32c..7d093ecd0fe 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/EvaluateMigrationResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/EvaluateMigrationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetAdvisorReportResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetAdvisorReportResponse.java index 53861738dab..12b1d5b75f0 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetAdvisorReportResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetAdvisorReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetConnectionResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetConnectionResponse.java index 3dec8450e51..d5c6a46c292 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetConnectionResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetJobOutputContentResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetJobOutputContentResponse.java index ae822d53744..b51787b97c6 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetJobOutputContentResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetJobOutputContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetJobResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetJobResponse.java index 8b50dc84112..f8e88eb5d20 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetJobResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetMigrationResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetMigrationResponse.java index e43828a8182..1cb278f352e 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetMigrationResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetMigrationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetParameterFileVersionResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetParameterFileVersionResponse.java index 5d245f248a5..922f696a366 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetParameterFileVersionResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetParameterFileVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetWorkRequestResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetWorkRequestResponse.java index 88175fa3886..3ce148ee8d9 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetWorkRequestResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListConnectionsResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListConnectionsResponse.java index ff824525364..35ad6af9725 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListConnectionsResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListConnectionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListExcludedObjectsResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListExcludedObjectsResponse.java index dab6dd461b3..09e285f1a7c 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListExcludedObjectsResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListExcludedObjectsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListJobOutputsResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListJobOutputsResponse.java index c623c7f3bcd..7f925e11414 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListJobOutputsResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListJobOutputsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListJobsResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListJobsResponse.java index b92fdcb2348..310c86e1e42 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListJobsResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListJobsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListMigrationObjectTypesResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListMigrationObjectTypesResponse.java index df5d6910ab5..689a375a980 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListMigrationObjectTypesResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListMigrationObjectTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListMigrationObjectsResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListMigrationObjectsResponse.java index 6fb2c7cd93b..90ad17acf90 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListMigrationObjectsResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListMigrationObjectsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListMigrationParametersResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListMigrationParametersResponse.java index 848717da02f..054d6aee5a4 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListMigrationParametersResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListMigrationParametersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListMigrationsResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListMigrationsResponse.java index 33009bcdeb7..85bfbdbb60c 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListMigrationsResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListMigrationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListParameterFileVersionsResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListParameterFileVersionsResponse.java index 3bb3bf097b8..d1ea83459ff 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListParameterFileVersionsResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListParameterFileVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListWorkRequestErrorsResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListWorkRequestErrorsResponse.java index ecff76904f9..7718b3df292 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListWorkRequestLogsResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListWorkRequestLogsResponse.java index 3e5eef5669a..4691b41b665 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListWorkRequestLogsResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListWorkRequestsResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListWorkRequestsResponse.java index 272e6d561b3..c14510cff23 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListWorkRequestsResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/MakeCurrentParameterFileVersionResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/MakeCurrentParameterFileVersionResponse.java index 37bff6eeedd..a913d637a92 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/MakeCurrentParameterFileVersionResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/MakeCurrentParameterFileVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/RemoveMigrationObjectsResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/RemoveMigrationObjectsResponse.java index 670f20f3f25..c2982289f8d 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/RemoveMigrationObjectsResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/RemoveMigrationObjectsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ResumeJobResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ResumeJobResponse.java index caad69ca1d0..de2c0e522dd 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ResumeJobResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/ResumeJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/RetrieveSupportedPhasesResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/RetrieveSupportedPhasesResponse.java index b4c3a3b0fae..dc5cb780b7f 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/RetrieveSupportedPhasesResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/RetrieveSupportedPhasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/StartMigrationResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/StartMigrationResponse.java index 292d388e41f..3a77f262066 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/StartMigrationResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/StartMigrationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/SuspendJobResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/SuspendJobResponse.java index 183f1645986..b1d4f912809 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/SuspendJobResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/SuspendJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/UpdateConnectionResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/UpdateConnectionResponse.java index 917d5e22275..9a6ad987f42 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/UpdateConnectionResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/UpdateConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/UpdateJobResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/UpdateJobResponse.java index 486964eafae..ebf17f452b0 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/UpdateJobResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/UpdateJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/UpdateMigrationResponse.java b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/UpdateMigrationResponse.java index 80296b81932..29d1613bed8 100644 --- a/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/UpdateMigrationResponse.java +++ b/bmc-databasemigration/src/main/java/com/oracle/bmc/databasemigration/responses/UpdateMigrationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasemigration.responses; diff --git a/bmc-databasemigration/src/main/resources/com/oracle/bmc/databasemigration/client.properties b/bmc-databasemigration/src/main/resources/com/oracle/bmc/databasemigration/client.properties index d604dbd8765..09d21c7931a 100644 --- a/bmc-databasemigration/src/main/resources/com/oracle/bmc/databasemigration/client.properties +++ b/bmc-databasemigration/src/main/resources/com/oracle/bmc/databasemigration/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-databasetools/pom.xml b/bmc-databasetools/pom.xml index c3aaa245fd2..02352669817 100644 --- a/bmc-databasetools/pom.xml +++ b/bmc-databasetools/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-databasetools @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseTools.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseTools.java index ff40a647d61..ca5a0109b19 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseTools.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseTools.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseToolsAsync.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseToolsAsync.java index 0c77c32fb8b..0b0c6684dd0 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseToolsAsync.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseToolsAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseToolsAsyncClient.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseToolsAsyncClient.java index 5935c7e5f6b..a5622d61287 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseToolsAsyncClient.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseToolsAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseToolsClient.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseToolsClient.java index 40da15ea37c..c2f257ead7c 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseToolsClient.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseToolsClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseToolsPaginators.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseToolsPaginators.java index e4d154fc28a..db29ed5e4ba 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseToolsPaginators.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseToolsPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseToolsWaiters.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseToolsWaiters.java index 060cae6b229..faac324eb7a 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseToolsWaiters.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/DatabaseToolsWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ActionType.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ActionType.java index 53219b44a93..f445b6680ad 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ActionType.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/AddResourceLockDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/AddResourceLockDetails.java index 523aa27d9ad..fdbe7fdac3a 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/AddResourceLockDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/AddResourceLockDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ChangeDatabaseToolsConnectionCompartmentDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ChangeDatabaseToolsConnectionCompartmentDetails.java index ad5a0a6f5ec..e753cb30e03 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ChangeDatabaseToolsConnectionCompartmentDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ChangeDatabaseToolsConnectionCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ChangeDatabaseToolsIdentityCompartmentDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ChangeDatabaseToolsIdentityCompartmentDetails.java index e74e3d5261d..959e85b1205 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ChangeDatabaseToolsIdentityCompartmentDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ChangeDatabaseToolsIdentityCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ChangeDatabaseToolsPrivateEndpointCompartmentDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ChangeDatabaseToolsPrivateEndpointCompartmentDetails.java index 5b8f3faa9a4..2935fd8cff0 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ChangeDatabaseToolsPrivateEndpointCompartmentDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ChangeDatabaseToolsPrivateEndpointCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ConnectionType.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ConnectionType.java index bf244ef8856..4d0088f1f3f 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ConnectionType.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ConnectionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsConnectionDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsConnectionDetails.java index f5766d3ac62..f8e0904baea 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsConnectionDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsConnectionGenericJdbcDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsConnectionGenericJdbcDetails.java index 136b1c9e034..7ea49517367 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsConnectionGenericJdbcDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsConnectionGenericJdbcDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsConnectionMySqlDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsConnectionMySqlDetails.java index 5745d769f62..d97128cf821 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsConnectionMySqlDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsConnectionMySqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsConnectionOracleDatabaseDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsConnectionOracleDatabaseDetails.java index b3842bab3e0..e1756c7e844 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsConnectionOracleDatabaseDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsConnectionOracleDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsConnectionPostgresqlDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsConnectionPostgresqlDetails.java index 93738bf40a5..a689856a18f 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsConnectionPostgresqlDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsConnectionPostgresqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsIdentityDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsIdentityDetails.java index df3b73f6a4c..65877b73274 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsIdentityDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsIdentityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsIdentityOracleDatabaseResourcePrincipalDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsIdentityOracleDatabaseResourcePrincipalDetails.java index f9e3e18bb96..fc43b6b3aab 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsIdentityOracleDatabaseResourcePrincipalDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsIdentityOracleDatabaseResourcePrincipalDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsPrivateEndpointDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsPrivateEndpointDetails.java index cc310b409c7..50afa58fc67 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsPrivateEndpointDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsPrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsRelatedResourceDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsRelatedResourceDetails.java index f3f17403193..2915db3bf8f 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsRelatedResourceDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsRelatedResourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsRelatedResourceMySqlDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsRelatedResourceMySqlDetails.java index d5874f2493f..6cf5282a055 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsRelatedResourceMySqlDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsRelatedResourceMySqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsRelatedResourcePostgresqlDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsRelatedResourcePostgresqlDetails.java index d40109210fd..a454ad1104c 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsRelatedResourcePostgresqlDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/CreateDatabaseToolsRelatedResourcePostgresqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnection.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnection.java index f5519209ac0..24f990c39be 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnection.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionCollection.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionCollection.java index 2c3ec27844e..1a7b3771c4b 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionCollection.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionGenericJdbc.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionGenericJdbc.java index 4906e294e61..7f70204b8b0 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionGenericJdbc.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionGenericJdbc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionGenericJdbcSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionGenericJdbcSummary.java index c283c2f5bc4..6c7deca09fe 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionGenericJdbcSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionGenericJdbcSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionMySql.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionMySql.java index bd4cfc33ac0..3a9b23ade5e 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionMySql.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionMySql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionMySqlSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionMySqlSummary.java index 40f65bc1de2..146dd8ff824 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionMySqlSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionMySqlSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabase.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabase.java index ee0dd2e8fd9..f0411da6d24 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabase.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClient.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClient.java index becc25aa93f..3cd57f231bc 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClient.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientDetails.java index 704ae36c605..e6b5b44dc7d 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientNoProxy.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientNoProxy.java index 408f3788e7c..1faa44ef1f2 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientNoProxy.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientNoProxy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientNoProxyDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientNoProxyDetails.java index c23283499b6..fed7ca1bd46 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientNoProxyDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientNoProxyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientNoProxySummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientNoProxySummary.java index 62b81f3259f..feb85ac2d72 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientNoProxySummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientNoProxySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientSummary.java index 962cfb935b2..e92a91c6d9f 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientUserName.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientUserName.java index da19cd8d494..f3060415a7e 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientUserName.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientUserName.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientUserNameDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientUserNameDetails.java index bf7e2e1803a..50fbdaecff3 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientUserNameDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientUserNameDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientUserNameSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientUserNameSummary.java index addd4ef5159..ce5478d061c 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientUserNameSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseProxyClientUserNameSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseSummary.java index 2736c7d2d4d..4c91c4a2d76 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionOracleDatabaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionPostgresql.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionPostgresql.java index 0ea508ca8b1..f7c19553b2f 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionPostgresql.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionPostgresql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionPostgresqlSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionPostgresqlSummary.java index 00a228cc3f3..733a577abd6 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionPostgresqlSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionPostgresqlSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionSummary.java index 0639596b34e..3d372224a06 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsEndpointService.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsEndpointService.java index 253fcfe04f3..8c23c3b760c 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsEndpointService.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsEndpointService.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsEndpointServiceCollection.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsEndpointServiceCollection.java index eba801a3452..9301fd2e901 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsEndpointServiceCollection.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsEndpointServiceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsEndpointServiceSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsEndpointServiceSummary.java index ee1ef7bc198..62a451687b9 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsEndpointServiceSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsEndpointServiceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentity.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentity.java index 636044e6854..39739d93515 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentity.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentityCollection.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentityCollection.java index 05fa7aa5f7b..5c3fa877ad5 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentityCollection.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentityCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentityLifecycleState.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentityLifecycleState.java index 6a47e7e8272..c0273fac8b4 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentityLifecycleState.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentityLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentityOracleDatabaseResourcePrincipal.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentityOracleDatabaseResourcePrincipal.java index b271131f840..e740a96f490 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentityOracleDatabaseResourcePrincipal.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentityOracleDatabaseResourcePrincipal.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentityOracleDatabaseResourcePrincipalSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentityOracleDatabaseResourcePrincipalSummary.java index 7a9688c49e8..dfb9e6bf2d1 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentityOracleDatabaseResourcePrincipalSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentityOracleDatabaseResourcePrincipalSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentityStatus.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentityStatus.java index 35b47068a93..c8f04fda0f2 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentityStatus.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentityStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentitySummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentitySummary.java index 9e9fd4fa423..1649b4aa9fb 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentitySummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsIdentitySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStore.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStore.java index ef95ae41c57..855e8f9f5fd 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStore.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStore.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContent.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContent.java index f9a9e21d7a9..661b5b93383 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContent.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentDetails.java index a917cd85e00..7bf969021ea 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentGenericJdbc.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentGenericJdbc.java index 101518ef0ae..6db7c8b29f4 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentGenericJdbc.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentGenericJdbc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentGenericJdbcDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentGenericJdbcDetails.java index 627f3c44af4..222df85758f 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentGenericJdbcDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentGenericJdbcDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentGenericJdbcSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentGenericJdbcSummary.java index 4a194c3ef21..8af7df76801 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentGenericJdbcSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentGenericJdbcSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentMySql.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentMySql.java index c46ea6c6bdc..c6b81d9c848 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentMySql.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentMySql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentMySqlDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentMySqlDetails.java index 45a878ef7e7..6af34442e98 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentMySqlDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentMySqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentMySqlSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentMySqlSummary.java index a436d722336..b88286ca468 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentMySqlSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentMySqlSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentPostgresql.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentPostgresql.java index 48ed0881f70..f717e1f388a 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentPostgresql.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentPostgresql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentPostgresqlDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentPostgresqlDetails.java index 608f7d9dd24..880e6d8f50d 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentPostgresqlDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentPostgresqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentPostgresqlSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentPostgresqlSummary.java index 765b89ce908..ac9b6034933 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentPostgresqlSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentPostgresqlSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretId.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretId.java index 0e2c237c203..fd6f93c795e 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretId.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdDetails.java index bf0896b743d..f16f98e2498 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdGenericJdbc.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdGenericJdbc.java index bc5be1844a8..5f83c709636 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdGenericJdbc.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdGenericJdbc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdGenericJdbcDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdGenericJdbcDetails.java index 733ca673539..c86cdfa5359 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdGenericJdbcDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdGenericJdbcDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdGenericJdbcSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdGenericJdbcSummary.java index a5132bb9837..634e038611d 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdGenericJdbcSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdGenericJdbcSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdMySql.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdMySql.java index ce36dd01201..5b50cf3223f 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdMySql.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdMySql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdMySqlDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdMySqlDetails.java index 5f53cdbc6f0..37391b98c62 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdMySqlDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdMySqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdMySqlSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdMySqlSummary.java index 9ee5c7002dc..ea026ac93a9 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdMySqlSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdMySqlSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdPostgresql.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdPostgresql.java index 196dbec0877..bd637d49d91 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdPostgresql.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdPostgresql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdPostgresqlDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdPostgresqlDetails.java index 32c0c12fd43..ae5b50929e1 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdPostgresqlDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdPostgresqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdPostgresqlSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdPostgresqlSummary.java index 46c49c319b0..71e8034e43f 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdPostgresqlSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdPostgresqlSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdSummary.java index ebead000330..4f69fc7e39d 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSecretIdSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSummary.java index e4538c99452..c7d37021d2f 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreContentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreDetails.java index 2b58df0f94b..0ff63ded12b 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreGenericJdbc.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreGenericJdbc.java index 203abf77563..9ae8d825620 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreGenericJdbc.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreGenericJdbc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreGenericJdbcDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreGenericJdbcDetails.java index 45d1895efd3..2599a27c7e6 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreGenericJdbcDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreGenericJdbcDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreGenericJdbcSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreGenericJdbcSummary.java index 91d34de85b5..1b8f36693b6 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreGenericJdbcSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreGenericJdbcSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreMySql.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreMySql.java index 02112de9b67..a5644defff8 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreMySql.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreMySql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreMySqlDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreMySqlDetails.java index 841f349cac1..63db34d0566 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreMySqlDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreMySqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreMySqlSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreMySqlSummary.java index e61d3fc3627..208e944b68b 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreMySqlSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreMySqlSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePassword.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePassword.java index 224062f3873..33c54cb1ec7 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePassword.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePassword.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordDetails.java index 28025846182..b5dcc4a20d0 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordGenericJdbc.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordGenericJdbc.java index be37a64ce3b..eb35af15f32 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordGenericJdbc.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordGenericJdbc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordGenericJdbcDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordGenericJdbcDetails.java index 5041746278b..9fbf43eb5f3 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordGenericJdbcDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordGenericJdbcDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordGenericJdbcSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordGenericJdbcSummary.java index 8d3d045f442..d0dee157e84 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordGenericJdbcSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordGenericJdbcSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordMySql.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordMySql.java index d6eac31a129..0c28608a57e 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordMySql.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordMySql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordMySqlDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordMySqlDetails.java index a6c4509021d..b66f1ec7423 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordMySqlDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordMySqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordMySqlSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordMySqlSummary.java index 0ededa1e716..abed156667f 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordMySqlSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordMySqlSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordPostgresql.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordPostgresql.java index cb4dc119f91..6b3ff1fd743 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordPostgresql.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordPostgresql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordPostgresqlDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordPostgresqlDetails.java index fa306d70e5f..cf2bb90ede0 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordPostgresqlDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordPostgresqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordPostgresqlSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordPostgresqlSummary.java index 6ac561333bf..3cf10b6de61 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordPostgresqlSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordPostgresqlSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretId.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretId.java index 309e3d0b421..8537b1c0068 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretId.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdDetails.java index 7c4b66a5255..b91f9a628f3 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdGenericJdbc.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdGenericJdbc.java index 32ed3832eca..3713d423a11 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdGenericJdbc.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdGenericJdbc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdGenericJdbcDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdGenericJdbcDetails.java index f8b2a641d14..7274212b7b8 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdGenericJdbcDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdGenericJdbcDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdGenericJdbcSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdGenericJdbcSummary.java index 3b997fb59cc..3e7b156b75d 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdGenericJdbcSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdGenericJdbcSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdMySql.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdMySql.java index e3c48daea4d..2fedbfbeadc 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdMySql.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdMySql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdMySqlDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdMySqlDetails.java index da60bb8a319..f38be386c62 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdMySqlDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdMySqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdMySqlSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdMySqlSummary.java index 4184c1b5fb0..8ee66698e18 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdMySqlSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdMySqlSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdPostgresql.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdPostgresql.java index 34bd6d938f1..ade30ead770 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdPostgresql.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdPostgresql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdPostgresqlDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdPostgresqlDetails.java index c91da988628..7340d30314e 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdPostgresqlDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdPostgresqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdPostgresqlSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdPostgresqlSummary.java index 75c9381c1ec..465c66c7a73 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdPostgresqlSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdPostgresqlSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdSummary.java index 565e31c2848..6a791a8e57f 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSecretIdSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSummary.java index 88d53a0d1c2..785e24d3025 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePasswordSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePostgresql.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePostgresql.java index c00237b3041..e06f3527d37 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePostgresql.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePostgresql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePostgresqlDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePostgresqlDetails.java index 5f066df6cee..8cd6d19dd36 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePostgresqlDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePostgresqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePostgresqlSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePostgresqlSummary.java index 25d97f60b31..f592bbc6a5b 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePostgresqlSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStorePostgresqlSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreSummary.java index 46efb3046be..51f921d4e96 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsKeyStoreSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsPrivateEndpoint.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsPrivateEndpoint.java index 287981b88a0..9ec871b09d1 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsPrivateEndpoint.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsPrivateEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsPrivateEndpointCollection.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsPrivateEndpointCollection.java index d6e21373c1c..83aa6e2005d 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsPrivateEndpointCollection.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsPrivateEndpointCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsPrivateEndpointReverseConnectionConfiguration.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsPrivateEndpointReverseConnectionConfiguration.java index 86f3afec80f..110e0b63776 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsPrivateEndpointReverseConnectionConfiguration.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsPrivateEndpointReverseConnectionConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsPrivateEndpointReverseConnectionsSourceIp.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsPrivateEndpointReverseConnectionsSourceIp.java index 91e0b2b1002..488de43e72f 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsPrivateEndpointReverseConnectionsSourceIp.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsPrivateEndpointReverseConnectionsSourceIp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsPrivateEndpointSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsPrivateEndpointSummary.java index 6e16503a0a5..f8079d2d59b 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsPrivateEndpointSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsPrivateEndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsRelatedResource.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsRelatedResource.java index a34b8fcdcfd..cba5258747f 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsRelatedResource.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsRelatedResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsRelatedResourceMySql.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsRelatedResourceMySql.java index eb5b2b2d426..a915116b498 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsRelatedResourceMySql.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsRelatedResourceMySql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsRelatedResourcePostgresql.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsRelatedResourcePostgresql.java index 4e8c8650716..3d9f88726e4 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsRelatedResourcePostgresql.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsRelatedResourcePostgresql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPassword.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPassword.java index 1d7acc7bbe8..fc23eb00ca9 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPassword.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPassword.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPasswordDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPasswordDetails.java index 24137230df8..593b0c35405 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPasswordDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPasswordDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPasswordSecretId.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPasswordSecretId.java index 00166459e34..9a472ec1530 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPasswordSecretId.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPasswordSecretId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPasswordSecretIdDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPasswordSecretIdDetails.java index e2314cfc83b..86eca0a2933 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPasswordSecretIdDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPasswordSecretIdDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPasswordSecretIdSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPasswordSecretIdSummary.java index d15b7de205e..7722b5e1af7 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPasswordSecretIdSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPasswordSecretIdSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPasswordSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPasswordSummary.java index 67f5962ff28..da03527fa38 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPasswordSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DatabaseToolsUserPasswordSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DbmsCloudStatus.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DbmsCloudStatus.java index 629c407ab3d..09a491d2b6e 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DbmsCloudStatus.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/DbmsCloudStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/IdentityType.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/IdentityType.java index 4d0388653a7..af198586587 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/IdentityType.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/IdentityType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/KeyStoreType.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/KeyStoreType.java index 59827e3d4ba..257a0714de7 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/KeyStoreType.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/KeyStoreType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/KeyStoreTypeGenericJdbc.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/KeyStoreTypeGenericJdbc.java index 17c07fa9039..edea0c1e875 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/KeyStoreTypeGenericJdbc.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/KeyStoreTypeGenericJdbc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/KeyStoreTypeMySql.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/KeyStoreTypeMySql.java index 55ab24e06c6..0d2c823f988 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/KeyStoreTypeMySql.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/KeyStoreTypeMySql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/KeyStoreTypePostgresql.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/KeyStoreTypePostgresql.java index e2a3b04c8b0..a663fa79da6 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/KeyStoreTypePostgresql.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/KeyStoreTypePostgresql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/LifecycleState.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/LifecycleState.java index 374f8b397b3..32552fd2f6d 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/LifecycleState.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/LifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/OperationStatus.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/OperationStatus.java index 0b601cd34bb..e70a78afbcf 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/OperationStatus.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/OperationType.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/OperationType.java index 27cf2f114d9..c267be54d8d 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/OperationType.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ProxyAuthenticationType.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ProxyAuthenticationType.java index 8ded32b11d7..39bf8be2ae3 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ProxyAuthenticationType.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ProxyAuthenticationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RefreshDatabaseToolsIdentityCredentialDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RefreshDatabaseToolsIdentityCredentialDetails.java index d6f7e400546..6d6f1dd75c5 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RefreshDatabaseToolsIdentityCredentialDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RefreshDatabaseToolsIdentityCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RefreshDatabaseToolsIdentityOracleDatabaseResourcePrincipalCredentialDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RefreshDatabaseToolsIdentityOracleDatabaseResourcePrincipalCredentialDetails.java index ec08f4f6dda..f5c91b804ea 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RefreshDatabaseToolsIdentityOracleDatabaseResourcePrincipalCredentialDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RefreshDatabaseToolsIdentityOracleDatabaseResourcePrincipalCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RelatedResourceEntityType.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RelatedResourceEntityType.java index 92603b94b66..e7be45c4c2a 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RelatedResourceEntityType.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RelatedResourceEntityType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RelatedResourceEntityTypeMySql.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RelatedResourceEntityTypeMySql.java index 6b65b7f9422..b2cf9f1cc9b 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RelatedResourceEntityTypeMySql.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RelatedResourceEntityTypeMySql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RelatedResourceEntityTypePostgresql.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RelatedResourceEntityTypePostgresql.java index 728bb8b2512..729b4b523ec 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RelatedResourceEntityTypePostgresql.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RelatedResourceEntityTypePostgresql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RemoveResourceLockDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RemoveResourceLockDetails.java index d00dda656f9..b7a2b0cd9ba 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RemoveResourceLockDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RemoveResourceLockDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ResourceLock.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ResourceLock.java index 172a4c2300c..94d13c5fee2 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ResourceLock.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ResourceLock.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RuntimeIdentity.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RuntimeIdentity.java index 81c88cf82da..03425ab343b 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RuntimeIdentity.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RuntimeIdentity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RuntimeSupport.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RuntimeSupport.java index cbde3413638..4830340fc7a 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RuntimeSupport.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/RuntimeSupport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/SortOrder.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/SortOrder.java index 71867652333..1edc63d438f 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/SortOrder.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsConnectionDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsConnectionDetails.java index 02e32b35767..c656a7785eb 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsConnectionDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsConnectionGenericJdbcDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsConnectionGenericJdbcDetails.java index 82c9aae7701..7c61ba76869 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsConnectionGenericJdbcDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsConnectionGenericJdbcDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsConnectionMySqlDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsConnectionMySqlDetails.java index 20ec404e3ea..f7befbb7f2c 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsConnectionMySqlDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsConnectionMySqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsConnectionOracleDatabaseDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsConnectionOracleDatabaseDetails.java index 495b971ef4b..d093bf155e7 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsConnectionOracleDatabaseDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsConnectionOracleDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsConnectionPostgresqlDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsConnectionPostgresqlDetails.java index daa3c6d2141..f6d15c8c4b2 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsConnectionPostgresqlDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsConnectionPostgresqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsIdentityDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsIdentityDetails.java index 4f3f7f9f839..4610f8625d2 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsIdentityDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsIdentityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsIdentityOracleDatabaseResourcePrincipalDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsIdentityOracleDatabaseResourcePrincipalDetails.java index b7599784855..2ebb92d064c 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsIdentityOracleDatabaseResourcePrincipalDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsIdentityOracleDatabaseResourcePrincipalDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsPrivateEndpointDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsPrivateEndpointDetails.java index b166722013c..7c1d6ab55be 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsPrivateEndpointDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsPrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsRelatedResourceDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsRelatedResourceDetails.java index 4be601c5e0b..5e4e4cd72df 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsRelatedResourceDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsRelatedResourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsRelatedResourceMySqlDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsRelatedResourceMySqlDetails.java index 9c0dab7be2c..e02c9ff1a15 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsRelatedResourceMySqlDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsRelatedResourceMySqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsRelatedResourcePostgresqlDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsRelatedResourcePostgresqlDetails.java index 3b77bcde778..4e0732da028 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsRelatedResourcePostgresqlDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/UpdateDatabaseToolsRelatedResourcePostgresqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionDetails.java index 28675a04217..866a0eaee86 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionMySqlDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionMySqlDetails.java index dbb4e63facd..dc5cfeaa7da 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionMySqlDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionMySqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionMySqlResult.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionMySqlResult.java index ca0d710154c..88331f8d9ae 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionMySqlResult.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionMySqlResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionOracleDatabaseDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionOracleDatabaseDetails.java index c8294a10593..c721f66552e 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionOracleDatabaseDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionOracleDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionOracleDatabaseResult.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionOracleDatabaseResult.java index 01271268f70..4ad0e91db3f 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionOracleDatabaseResult.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionOracleDatabaseResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionPostgresqlDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionPostgresqlDetails.java index 9174900c312..98cbd9d1c5d 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionPostgresqlDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionPostgresqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionPostgresqlResult.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionPostgresqlResult.java index 2a8939f7c57..53174042711 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionPostgresqlResult.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionPostgresqlResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionResult.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionResult.java index 64b18bd75e6..9c2871aa418 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionResult.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsConnectionResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsIdentityCredentialDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsIdentityCredentialDetails.java index bb5a83e7678..1937d36a2fd 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsIdentityCredentialDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsIdentityCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsIdentityCredentialOracleDatabaseResourcePrincipalDetails.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsIdentityCredentialOracleDatabaseResourcePrincipalDetails.java index 7b993a19275..1b03c6dc3f0 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsIdentityCredentialOracleDatabaseResourcePrincipalDetails.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsIdentityCredentialOracleDatabaseResourcePrincipalDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsIdentityCredentialOracleDatabaseResourcePrincipalResult.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsIdentityCredentialOracleDatabaseResourcePrincipalResult.java index 86fc0cc44a5..100360a8082 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsIdentityCredentialOracleDatabaseResourcePrincipalResult.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsIdentityCredentialOracleDatabaseResourcePrincipalResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsIdentityCredentialResult.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsIdentityCredentialResult.java index 43db8ac1834..969f8f764fa 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsIdentityCredentialResult.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidateDatabaseToolsIdentityCredentialResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidationIdentityStatus.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidationIdentityStatus.java index 30b0285c0ab..a2455164518 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidationIdentityStatus.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/ValidationIdentityStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequest.java index 293c9a211f8..9745535fe5b 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestCollection.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestCollection.java index 2678f18149b..c3087882784 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestCollection.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestError.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestError.java index 354d41d352e..1e596dd54ff 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestError.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestErrorCollection.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestErrorCollection.java index 7e713036445..fd4d62d7ae3 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestErrorCollection.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestLogEntry.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestLogEntry.java index e135817d6aa..0429e5ead9f 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestLogEntry.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestLogEntryCollection.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestLogEntryCollection.java index b6835cd6b5f..e1192bfad71 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestLogEntryCollection.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestResource.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestResource.java index 37afce2d4da..f697e30e217 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestResource.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestSummary.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestSummary.java index 2955fe11eeb..78a250260cf 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestSummary.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.model; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/AddDatabaseToolsConnectionLockRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/AddDatabaseToolsConnectionLockRequest.java index ee18916b610..7bf47229185 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/AddDatabaseToolsConnectionLockRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/AddDatabaseToolsConnectionLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/AddDatabaseToolsIdentityLockRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/AddDatabaseToolsIdentityLockRequest.java index 1747a10ab70..644982c1cd0 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/AddDatabaseToolsIdentityLockRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/AddDatabaseToolsIdentityLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/AddDatabaseToolsPrivateEndpointLockRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/AddDatabaseToolsPrivateEndpointLockRequest.java index e932492bce0..40367aea6b0 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/AddDatabaseToolsPrivateEndpointLockRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/AddDatabaseToolsPrivateEndpointLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ChangeDatabaseToolsConnectionCompartmentRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ChangeDatabaseToolsConnectionCompartmentRequest.java index 4fd11b21bee..9efa793c2c7 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ChangeDatabaseToolsConnectionCompartmentRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ChangeDatabaseToolsConnectionCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ChangeDatabaseToolsIdentityCompartmentRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ChangeDatabaseToolsIdentityCompartmentRequest.java index f56061c84bf..20bb9f31a4f 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ChangeDatabaseToolsIdentityCompartmentRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ChangeDatabaseToolsIdentityCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ChangeDatabaseToolsPrivateEndpointCompartmentRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ChangeDatabaseToolsPrivateEndpointCompartmentRequest.java index 016c692f739..cc270108399 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ChangeDatabaseToolsPrivateEndpointCompartmentRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ChangeDatabaseToolsPrivateEndpointCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/CreateDatabaseToolsConnectionRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/CreateDatabaseToolsConnectionRequest.java index 2938d4fc9dc..0556795ac89 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/CreateDatabaseToolsConnectionRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/CreateDatabaseToolsConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/CreateDatabaseToolsIdentityRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/CreateDatabaseToolsIdentityRequest.java index 0d197533ba6..1617df51ae3 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/CreateDatabaseToolsIdentityRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/CreateDatabaseToolsIdentityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/CreateDatabaseToolsPrivateEndpointRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/CreateDatabaseToolsPrivateEndpointRequest.java index a4b88faf167..72caec3d4f8 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/CreateDatabaseToolsPrivateEndpointRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/CreateDatabaseToolsPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/DeleteDatabaseToolsConnectionRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/DeleteDatabaseToolsConnectionRequest.java index b43066e6216..2fe8420960e 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/DeleteDatabaseToolsConnectionRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/DeleteDatabaseToolsConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/DeleteDatabaseToolsIdentityRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/DeleteDatabaseToolsIdentityRequest.java index a2e422bd9b7..e622410c3b5 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/DeleteDatabaseToolsIdentityRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/DeleteDatabaseToolsIdentityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/DeleteDatabaseToolsPrivateEndpointRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/DeleteDatabaseToolsPrivateEndpointRequest.java index 94b5f082fad..026b346ca4d 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/DeleteDatabaseToolsPrivateEndpointRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/DeleteDatabaseToolsPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/GetDatabaseToolsConnectionRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/GetDatabaseToolsConnectionRequest.java index dad192d9c81..25364ba373c 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/GetDatabaseToolsConnectionRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/GetDatabaseToolsConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/GetDatabaseToolsEndpointServiceRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/GetDatabaseToolsEndpointServiceRequest.java index bff50c1c9f7..54a11025767 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/GetDatabaseToolsEndpointServiceRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/GetDatabaseToolsEndpointServiceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/GetDatabaseToolsIdentityRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/GetDatabaseToolsIdentityRequest.java index dc4d8b31909..ae8ea089020 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/GetDatabaseToolsIdentityRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/GetDatabaseToolsIdentityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/GetDatabaseToolsPrivateEndpointRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/GetDatabaseToolsPrivateEndpointRequest.java index bba15fd45b4..dd1a42a8f98 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/GetDatabaseToolsPrivateEndpointRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/GetDatabaseToolsPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/GetWorkRequestRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/GetWorkRequestRequest.java index c811d526477..3c6c057fe5d 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/GetWorkRequestRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListDatabaseToolsConnectionsRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListDatabaseToolsConnectionsRequest.java index 211b6ea5d9f..8c8f825c201 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListDatabaseToolsConnectionsRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListDatabaseToolsConnectionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListDatabaseToolsEndpointServicesRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListDatabaseToolsEndpointServicesRequest.java index 4ede71245da..b35733f68cb 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListDatabaseToolsEndpointServicesRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListDatabaseToolsEndpointServicesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListDatabaseToolsIdentitiesRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListDatabaseToolsIdentitiesRequest.java index 6afa7324666..a15d32972db 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListDatabaseToolsIdentitiesRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListDatabaseToolsIdentitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListDatabaseToolsPrivateEndpointsRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListDatabaseToolsPrivateEndpointsRequest.java index 2c527567593..7af00f1a2e6 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListDatabaseToolsPrivateEndpointsRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListDatabaseToolsPrivateEndpointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListWorkRequestErrorsRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListWorkRequestErrorsRequest.java index c994264274e..43010e68165 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListWorkRequestLogsRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListWorkRequestLogsRequest.java index b745ade9a29..ba855ab6238 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListWorkRequestLogsRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListWorkRequestsRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListWorkRequestsRequest.java index 1a64fc3765b..99833d43c16 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListWorkRequestsRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/RefreshDatabaseToolsIdentityCredentialRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/RefreshDatabaseToolsIdentityCredentialRequest.java index e08722ef765..607a5e20875 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/RefreshDatabaseToolsIdentityCredentialRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/RefreshDatabaseToolsIdentityCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/RemoveDatabaseToolsConnectionLockRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/RemoveDatabaseToolsConnectionLockRequest.java index b4bab41faa2..f7161b0e08f 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/RemoveDatabaseToolsConnectionLockRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/RemoveDatabaseToolsConnectionLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/RemoveDatabaseToolsIdentityLockRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/RemoveDatabaseToolsIdentityLockRequest.java index 4621a97db69..1347dd26997 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/RemoveDatabaseToolsIdentityLockRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/RemoveDatabaseToolsIdentityLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/RemoveDatabaseToolsPrivateEndpointLockRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/RemoveDatabaseToolsPrivateEndpointLockRequest.java index 73327fe4c35..3ae9e941f7a 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/RemoveDatabaseToolsPrivateEndpointLockRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/RemoveDatabaseToolsPrivateEndpointLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/UpdateDatabaseToolsConnectionRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/UpdateDatabaseToolsConnectionRequest.java index 16499ce26bf..4b7e45b52bd 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/UpdateDatabaseToolsConnectionRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/UpdateDatabaseToolsConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/UpdateDatabaseToolsIdentityRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/UpdateDatabaseToolsIdentityRequest.java index 6193355e0a5..41c7517ee2b 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/UpdateDatabaseToolsIdentityRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/UpdateDatabaseToolsIdentityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/UpdateDatabaseToolsPrivateEndpointRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/UpdateDatabaseToolsPrivateEndpointRequest.java index 47065af3ba9..d4d5fb6bbe6 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/UpdateDatabaseToolsPrivateEndpointRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/UpdateDatabaseToolsPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ValidateDatabaseToolsConnectionRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ValidateDatabaseToolsConnectionRequest.java index 1432305f433..a7ad7d7775d 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ValidateDatabaseToolsConnectionRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ValidateDatabaseToolsConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ValidateDatabaseToolsIdentityCredentialRequest.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ValidateDatabaseToolsIdentityCredentialRequest.java index 27ac8e65495..5211459e6f5 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ValidateDatabaseToolsIdentityCredentialRequest.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/requests/ValidateDatabaseToolsIdentityCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.requests; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/AddDatabaseToolsConnectionLockResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/AddDatabaseToolsConnectionLockResponse.java index f24c8371275..b270e6d6c91 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/AddDatabaseToolsConnectionLockResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/AddDatabaseToolsConnectionLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/AddDatabaseToolsIdentityLockResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/AddDatabaseToolsIdentityLockResponse.java index 7f7611dec6b..1e28129aa54 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/AddDatabaseToolsIdentityLockResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/AddDatabaseToolsIdentityLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/AddDatabaseToolsPrivateEndpointLockResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/AddDatabaseToolsPrivateEndpointLockResponse.java index 1c36215c371..80e1aec6551 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/AddDatabaseToolsPrivateEndpointLockResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/AddDatabaseToolsPrivateEndpointLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ChangeDatabaseToolsConnectionCompartmentResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ChangeDatabaseToolsConnectionCompartmentResponse.java index 529df8f0595..fa276f4333e 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ChangeDatabaseToolsConnectionCompartmentResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ChangeDatabaseToolsConnectionCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ChangeDatabaseToolsIdentityCompartmentResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ChangeDatabaseToolsIdentityCompartmentResponse.java index 4eeaaaa658d..0eba1582514 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ChangeDatabaseToolsIdentityCompartmentResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ChangeDatabaseToolsIdentityCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ChangeDatabaseToolsPrivateEndpointCompartmentResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ChangeDatabaseToolsPrivateEndpointCompartmentResponse.java index 733d80febf2..2b6999fa449 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ChangeDatabaseToolsPrivateEndpointCompartmentResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ChangeDatabaseToolsPrivateEndpointCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/CreateDatabaseToolsConnectionResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/CreateDatabaseToolsConnectionResponse.java index 9dc4e857162..11007727cf3 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/CreateDatabaseToolsConnectionResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/CreateDatabaseToolsConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/CreateDatabaseToolsIdentityResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/CreateDatabaseToolsIdentityResponse.java index 1d356da16e6..21dd751dbf4 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/CreateDatabaseToolsIdentityResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/CreateDatabaseToolsIdentityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/CreateDatabaseToolsPrivateEndpointResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/CreateDatabaseToolsPrivateEndpointResponse.java index 75f0512b220..d4e1c9b4cae 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/CreateDatabaseToolsPrivateEndpointResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/CreateDatabaseToolsPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/DeleteDatabaseToolsConnectionResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/DeleteDatabaseToolsConnectionResponse.java index b8b2362ea95..bfa6b3ccec2 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/DeleteDatabaseToolsConnectionResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/DeleteDatabaseToolsConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/DeleteDatabaseToolsIdentityResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/DeleteDatabaseToolsIdentityResponse.java index 89e610e2479..e1b7df88362 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/DeleteDatabaseToolsIdentityResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/DeleteDatabaseToolsIdentityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/DeleteDatabaseToolsPrivateEndpointResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/DeleteDatabaseToolsPrivateEndpointResponse.java index 3bbeb3b634b..88de582efd0 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/DeleteDatabaseToolsPrivateEndpointResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/DeleteDatabaseToolsPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/GetDatabaseToolsConnectionResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/GetDatabaseToolsConnectionResponse.java index 9c46bee841f..98a8e59511f 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/GetDatabaseToolsConnectionResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/GetDatabaseToolsConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/GetDatabaseToolsEndpointServiceResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/GetDatabaseToolsEndpointServiceResponse.java index 031d9ea1445..b6577e2ed6d 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/GetDatabaseToolsEndpointServiceResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/GetDatabaseToolsEndpointServiceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/GetDatabaseToolsIdentityResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/GetDatabaseToolsIdentityResponse.java index 7f9137dc433..db82b68c16c 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/GetDatabaseToolsIdentityResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/GetDatabaseToolsIdentityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/GetDatabaseToolsPrivateEndpointResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/GetDatabaseToolsPrivateEndpointResponse.java index 00cd5bbaeab..c69e3011b82 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/GetDatabaseToolsPrivateEndpointResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/GetDatabaseToolsPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/GetWorkRequestResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/GetWorkRequestResponse.java index 1c74e5d7bff..1dbe220533a 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/GetWorkRequestResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListDatabaseToolsConnectionsResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListDatabaseToolsConnectionsResponse.java index 878cb5205b3..d1f1af171d5 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListDatabaseToolsConnectionsResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListDatabaseToolsConnectionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListDatabaseToolsEndpointServicesResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListDatabaseToolsEndpointServicesResponse.java index 298cd0e7324..4059a1ac62d 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListDatabaseToolsEndpointServicesResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListDatabaseToolsEndpointServicesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListDatabaseToolsIdentitiesResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListDatabaseToolsIdentitiesResponse.java index 136c90c4eac..6c6ac5de5d6 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListDatabaseToolsIdentitiesResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListDatabaseToolsIdentitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListDatabaseToolsPrivateEndpointsResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListDatabaseToolsPrivateEndpointsResponse.java index 0ef71425b3f..54e25de14c8 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListDatabaseToolsPrivateEndpointsResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListDatabaseToolsPrivateEndpointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListWorkRequestErrorsResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListWorkRequestErrorsResponse.java index fb1d7ca6756..ac6f8b2bf29 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListWorkRequestLogsResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListWorkRequestLogsResponse.java index 12d5fb459dd..8d4cda7049d 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListWorkRequestLogsResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListWorkRequestsResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListWorkRequestsResponse.java index ba82b48ffb2..9d9a8a8c48b 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListWorkRequestsResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/RefreshDatabaseToolsIdentityCredentialResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/RefreshDatabaseToolsIdentityCredentialResponse.java index 66d1c28de87..9803b9bb069 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/RefreshDatabaseToolsIdentityCredentialResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/RefreshDatabaseToolsIdentityCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/RemoveDatabaseToolsConnectionLockResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/RemoveDatabaseToolsConnectionLockResponse.java index 848161eb48b..00e94ffb98b 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/RemoveDatabaseToolsConnectionLockResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/RemoveDatabaseToolsConnectionLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/RemoveDatabaseToolsIdentityLockResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/RemoveDatabaseToolsIdentityLockResponse.java index 95f896d5bb9..766acfe705f 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/RemoveDatabaseToolsIdentityLockResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/RemoveDatabaseToolsIdentityLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/RemoveDatabaseToolsPrivateEndpointLockResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/RemoveDatabaseToolsPrivateEndpointLockResponse.java index 0919d6a96ba..e4b81ee8111 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/RemoveDatabaseToolsPrivateEndpointLockResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/RemoveDatabaseToolsPrivateEndpointLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/UpdateDatabaseToolsConnectionResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/UpdateDatabaseToolsConnectionResponse.java index 1527b1ce52f..3d311735c4a 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/UpdateDatabaseToolsConnectionResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/UpdateDatabaseToolsConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/UpdateDatabaseToolsIdentityResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/UpdateDatabaseToolsIdentityResponse.java index 48ff3fe2e62..f7bfa380e04 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/UpdateDatabaseToolsIdentityResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/UpdateDatabaseToolsIdentityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/UpdateDatabaseToolsPrivateEndpointResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/UpdateDatabaseToolsPrivateEndpointResponse.java index f0d0c2a06c5..6d82e4eb6b9 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/UpdateDatabaseToolsPrivateEndpointResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/UpdateDatabaseToolsPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ValidateDatabaseToolsConnectionResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ValidateDatabaseToolsConnectionResponse.java index b64088bf1d6..9065b8b9589 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ValidateDatabaseToolsConnectionResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ValidateDatabaseToolsConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ValidateDatabaseToolsIdentityCredentialResponse.java b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ValidateDatabaseToolsIdentityCredentialResponse.java index fc5b5981de2..e6da63635d6 100644 --- a/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ValidateDatabaseToolsIdentityCredentialResponse.java +++ b/bmc-databasetools/src/main/java/com/oracle/bmc/databasetools/responses/ValidateDatabaseToolsIdentityCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.databasetools.responses; diff --git a/bmc-databasetools/src/main/resources/com/oracle/bmc/databasetools/client.properties b/bmc-databasetools/src/main/resources/com/oracle/bmc/databasetools/client.properties index 8f2694346a1..9408070aa39 100644 --- a/bmc-databasetools/src/main/resources/com/oracle/bmc/databasetools/client.properties +++ b/bmc-databasetools/src/main/resources/com/oracle/bmc/databasetools/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-datacatalog/pom.xml b/bmc-datacatalog/pom.xml index f5f3dcc6024..82b2c69199d 100644 --- a/bmc-datacatalog/pom.xml +++ b/bmc-datacatalog/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-datacatalog @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalog.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalog.java index 27f3c7ffded..6c10a923b9a 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalog.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalogAsync.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalogAsync.java index 86673d45388..d49fa2217fe 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalogAsync.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalogAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalogAsyncClient.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalogAsyncClient.java index c31fe16aa5f..cc42d18125f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalogAsyncClient.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalogAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalogClient.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalogClient.java index 92049869aca..fcdf185e0c4 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalogClient.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalogClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalogPaginators.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalogPaginators.java index 691f01e850e..5e69f997d9f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalogPaginators.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalogPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalogWaiters.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalogWaiters.java index 5d107d3f05d..a7442872413 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalogWaiters.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/DataCatalogWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AddResourceLockDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AddResourceLockDetails.java index 1796e07e7ab..a3ab0c42299 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AddResourceLockDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AddResourceLockDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportDataAssetDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportDataAssetDetails.java index b662ac4b053..eb4621569bf 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportDataAssetDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportDataAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportDataAssetResult.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportDataAssetResult.java index cabd02bd7ce..d1365a08071 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportDataAssetResult.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportDataAssetResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportGlossaryDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportGlossaryDetails.java index 8d79f839c87..c55ec3c290a 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportGlossaryDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportGlossaryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportGlossaryResult.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportGlossaryResult.java index 62557bb4829..045cf8e0308 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportGlossaryResult.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportGlossaryResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportRequestDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportRequestDetails.java index bf70b3831ec..a96fcc58c17 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportRequestDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportResult.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportResult.java index e51393b7bc3..15b7c3bb80f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportResult.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AsynchronousExportResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttachCatalogPrivateEndpointDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttachCatalogPrivateEndpointDetails.java index d5ca6263afc..381e83eb8ca 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttachCatalogPrivateEndpointDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttachCatalogPrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Attribute.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Attribute.java index eb663453d71..a909e55732d 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Attribute.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Attribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttributeCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttributeCollection.java index ec4d9bda1c4..a3b02bedd1a 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttributeCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttributeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttributeSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttributeSummary.java index 0872bb84fb1..c166f9a272c 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttributeSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttributeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttributeTag.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttributeTag.java index 8154e3a6477..99f02f1b623 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttributeTag.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttributeTag.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttributeTagCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttributeTagCollection.java index 1098d6c5e9b..62185614c79 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttributeTagCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttributeTagCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttributeTagSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttributeTagSummary.java index 97f8286d10b..50e6eada234 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttributeTagSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/AttributeTagSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/BasePermissionsSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/BasePermissionsSummary.java index 1fd8ca81097..db2da1ccb2c 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/BasePermissionsSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/BasePermissionsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/BaseTag.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/BaseTag.java index dde34acd980..3d5cf0eb252 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/BaseTag.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/BaseTag.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/BaseTagSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/BaseTagSummary.java index 15d42ca6f3d..54e92ad5cf5 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/BaseTagSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/BaseTagSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Catalog.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Catalog.java index bfd53e5703b..8764b594351 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Catalog.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Catalog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CatalogPermissionsSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CatalogPermissionsSummary.java index 2161011a3f4..27964743251 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CatalogPermissionsSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CatalogPermissionsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CatalogPrivateEndpoint.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CatalogPrivateEndpoint.java index edc549fa0b6..c5e5cc6ca54 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CatalogPrivateEndpoint.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CatalogPrivateEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CatalogPrivateEndpointSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CatalogPrivateEndpointSummary.java index cb6a2e4fb8f..5ccdef25885 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CatalogPrivateEndpointSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CatalogPrivateEndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CatalogSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CatalogSummary.java index 37c11000814..6d744d416f9 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CatalogSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CatalogSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ChangeCatalogCompartmentDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ChangeCatalogCompartmentDetails.java index 926cf022460..f032560e098 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ChangeCatalogCompartmentDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ChangeCatalogCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ChangeCatalogPrivateEndpointCompartmentDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ChangeCatalogPrivateEndpointCompartmentDetails.java index a76675361c3..43d41acf381 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ChangeCatalogPrivateEndpointCompartmentDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ChangeCatalogPrivateEndpointCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ChangeMetastoreCompartmentDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ChangeMetastoreCompartmentDetails.java index d308893e521..4a45c8fa137 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ChangeMetastoreCompartmentDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ChangeMetastoreCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Connection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Connection.java index 89f6ae59ab8..0539e611bf9 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Connection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Connection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ConnectionAliasSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ConnectionAliasSummary.java index c99aa6e15c3..7d92ab4be20 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ConnectionAliasSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ConnectionAliasSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ConnectionCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ConnectionCollection.java index 349b695c43a..d4c5d22403f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ConnectionCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ConnectionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ConnectionResult.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ConnectionResult.java index 4697c25aaa2..b96245c3517 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ConnectionResult.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ConnectionResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ConnectionSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ConnectionSummary.java index 4639a6001ea..c285e1450e1 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ConnectionSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateAttributeDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateAttributeDetails.java index 16bc3858fe7..d68d48ddd91 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateAttributeDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateAttributeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateCatalogDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateCatalogDetails.java index a693a3cb58e..0a4284d1db7 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateCatalogDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateCatalogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateCatalogPrivateEndpointDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateCatalogPrivateEndpointDetails.java index d898c95022c..c84c33e648a 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateCatalogPrivateEndpointDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateCatalogPrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateConnectionDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateConnectionDetails.java index 5139f1eadbb..b01a34446a3 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateConnectionDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateCustomPropertyDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateCustomPropertyDetails.java index 74e411e97ec..f7b45920555 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateCustomPropertyDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateCustomPropertyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateDataAssetDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateDataAssetDetails.java index d1f6fd20c7f..95d3dbf5142 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateDataAssetDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateDataAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateEntityDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateEntityDetails.java index af7a1062bba..8937be3d71f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateEntityDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateEntityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateFolderDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateFolderDetails.java index 0835f3cb95c..0a6ef9b705e 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateFolderDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateFolderDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateGlossaryDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateGlossaryDetails.java index aed55eae684..9278e50f27c 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateGlossaryDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateGlossaryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateJobDefinitionDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateJobDefinitionDetails.java index 6b5604c7fc9..a9dc902102b 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateJobDefinitionDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateJobDefinitionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateJobDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateJobDetails.java index 1b163322eeb..783113ee263 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateJobDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateJobExecutionDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateJobExecutionDetails.java index d8c57ad2c29..04f07293e67 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateJobExecutionDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateJobExecutionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateMetastoreDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateMetastoreDetails.java index 8b7ef03310b..c8e8d8890f8 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateMetastoreDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateMetastoreDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateNamespaceDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateNamespaceDetails.java index a93000c9644..54cec6afd13 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateNamespaceDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateNamespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreatePatternDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreatePatternDetails.java index 92bf9cdfe6b..6b37b10a309 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreatePatternDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreatePatternDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateTagDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateTagDetails.java index e48e526247c..2ba1e64a672 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateTagDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateTagDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateTermDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateTermDetails.java index b392a39fa8c..c353a512d6a 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateTermDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateTermDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateTermRelationshipDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateTermRelationshipDetails.java index c63f78312c7..f9e787e404e 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateTermRelationshipDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CreateTermRelationshipDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomProperty.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomProperty.java index adae8d3d382..6d5fbe8fc9e 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomProperty.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomProperty.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertyCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertyCollection.java index fa69fc8557e..da71214f87d 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertyCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertyDataType.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertyDataType.java index 24a976e87a7..fbc50d6df95 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertyDataType.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertyDataType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertyGetUsage.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertyGetUsage.java index 321817e90c5..d5bc26fd0a8 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertyGetUsage.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertyGetUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertySetUsage.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertySetUsage.java index da9f80360df..a4adeea1ddc 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertySetUsage.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertySetUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertySummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertySummary.java index 7cd5cb9be74..8547c4d5443 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertySummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertyTypeUsage.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertyTypeUsage.java index 794aa5df999..079c01c1916 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertyTypeUsage.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/CustomPropertyTypeUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAsset.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAsset.java index 376a795a6e8..dc58cf5a294 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAsset.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAsset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetCollection.java index 2b8dba73c1d..edf1ccd2ca3 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetExportScope.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetExportScope.java index 34a2c4365d1..a524bce2b16 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetExportScope.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetExportScope.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetImportExportTypeFilter.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetImportExportTypeFilter.java index ea5298ea7c8..54e157a9ab3 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetImportExportTypeFilter.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetImportExportTypeFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetPermissionsSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetPermissionsSummary.java index 80adc694351..3354c59cb29 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetPermissionsSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetPermissionsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetSummary.java index 143e8a0e0a3..cf44ef2c5eb 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetTag.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetTag.java index 5e95a3a2277..da19efa08ad 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetTag.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetTag.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetTagCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetTagCollection.java index cd12b48e752..04a98536d31 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetTagCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetTagCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetTagSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetTagSummary.java index 58d74f125ac..9c19b871916 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetTagSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataAssetTagSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataSelectorPatternDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataSelectorPatternDetails.java index 4cf6c93f807..bff583c27be 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataSelectorPatternDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DataSelectorPatternDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DerivedLogicalEntities.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DerivedLogicalEntities.java index dd279d42914..6fc9f42e38c 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DerivedLogicalEntities.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DerivedLogicalEntities.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DetachCatalogPrivateEndpointDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DetachCatalogPrivateEndpointDetails.java index d4171317ee5..9b76fc75f41 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DetachCatalogPrivateEndpointDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/DetachCatalogPrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Entity.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Entity.java index f92b424331e..56836dae959 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Entity.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Entity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntityCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntityCollection.java index 2a64051c719..335e05904c4 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntityCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntityCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntityLineage.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntityLineage.java index c7e4dba4cae..eb7bf0f38a4 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntityLineage.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntityLineage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntitySummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntitySummary.java index 0f751d95f21..f9b9a4f2042 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntitySummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntitySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntityTag.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntityTag.java index 6b3a8e7c1ea..f269f140d3d 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntityTag.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntityTag.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntityTagCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntityTagCollection.java index f2f2090bbd0..f2222ac93c2 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntityTagCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntityTagCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntityTagSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntityTagSummary.java index 48b624a6c6b..45113cc0347 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntityTagSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EntityTagSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EventConfig.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EventConfig.java index 041bbbcc286..5aa4c894a0a 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EventConfig.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EventConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EventConfigStatus.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EventConfigStatus.java index 99ebf788cc0..7dc4ee62e28 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EventConfigStatus.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/EventConfigStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ExportDataAssetDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ExportDataAssetDetails.java index 4032e58815f..4d3d42e6af1 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ExportDataAssetDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ExportDataAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchAggregation.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchAggregation.java index b765d07ecf7..4db51f92f54 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchAggregation.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchCustomProperty.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchCustomProperty.java index b3996e600ab..754366d79ca 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchCustomProperty.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchCustomProperty.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchDateFilterRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchDateFilterRequest.java index 733844ac410..4835d202e6b 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchDateFilterRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchDateFilterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchFilterRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchFilterRequest.java index 03a34541f48..f9e8b60ce36 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchFilterRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchFilterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchSortRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchSortRequest.java index 58e59225756..2ca78d7ba46 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchSortRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchSortRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchStringFilterRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchStringFilterRequest.java index d6e66c1c8f5..699b1b7881a 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchStringFilterRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FacetedSearchStringFilterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FetchEntityLineageDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FetchEntityLineageDetails.java index 41d22d03eda..37545cc228f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FetchEntityLineageDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FetchEntityLineageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Folder.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Folder.java index 2072d9a88ac..958eed38548 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Folder.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Folder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FolderCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FolderCollection.java index 0fcf5a08c5f..820c215426b 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FolderCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FolderCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FolderSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FolderSummary.java index d5fb410381a..18731017696 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FolderSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FolderSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FolderTag.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FolderTag.java index d9e34d22b46..2562899d3b3 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FolderTag.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FolderTag.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FolderTagCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FolderTagCollection.java index d1dac15aae1..0236bb365a0 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FolderTagCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FolderTagCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FolderTagSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FolderTagSummary.java index 25ceb191305..cbf83ef2169 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FolderTagSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/FolderTagSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Glossary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Glossary.java index aafa8f7e7f5..49eb9fa529f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Glossary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Glossary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/GlossaryCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/GlossaryCollection.java index b5baf1868ff..47f3a429241 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/GlossaryCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/GlossaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/GlossaryPermissionsSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/GlossaryPermissionsSummary.java index 33c921c94c9..01c38b2beed 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/GlossaryPermissionsSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/GlossaryPermissionsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/GlossarySummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/GlossarySummary.java index 717755abe3e..0230ee515f7 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/GlossarySummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/GlossarySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/GlossaryTreeElement.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/GlossaryTreeElement.java index 15b9e7d03cb..555fb596d2d 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/GlossaryTreeElement.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/GlossaryTreeElement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/HarvestStatus.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/HarvestStatus.java index 914a1da0565..46ac2e75561 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/HarvestStatus.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/HarvestStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportConnectionDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportConnectionDetails.java index ef0673a3157..b1a0a86dab1 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportConnectionDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportDataAssetDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportDataAssetDetails.java index bbf0f76d746..b2123713b70 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportDataAssetDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportDataAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportDataAssetJobResult.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportDataAssetJobResult.java index ad7123a0e51..12880f570aa 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportDataAssetJobResult.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportDataAssetJobResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportGlossaryDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportGlossaryDetails.java index 6d0c5fc12b9..9791314c3d0 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportGlossaryDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportGlossaryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportLineageDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportLineageDetails.java index 5fa6a22fff3..edb1118a704 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportLineageDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportLineageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportLineageJobResult.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportLineageJobResult.java index 987cf0553e5..1b1175781b3 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportLineageJobResult.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ImportLineageJobResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Job.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Job.java index d5a5be977af..75a30cb2db0 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Job.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Job.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobCollection.java index f637b1f134f..13ecda5eb5a 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobDefinition.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobDefinition.java index 15d137ce3db..98551233463 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobDefinition.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobDefinitionCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobDefinitionCollection.java index 23508aa1567..0e451fae18c 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobDefinitionCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobDefinitionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobDefinitionPermissionsSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobDefinitionPermissionsSummary.java index 93a5eaed648..24b689a7466 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobDefinitionPermissionsSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobDefinitionPermissionsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobDefinitionScope.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobDefinitionScope.java index 44f2ef8656d..aec7b5658a3 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobDefinitionScope.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobDefinitionScope.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobDefinitionSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobDefinitionSummary.java index 5a1628c859b..cfc2fb8ff56 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobDefinitionSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobDefinitionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobExecution.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobExecution.java index 2488a0fd5d5..342eb8cdb22 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobExecution.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobExecution.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobExecutionCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobExecutionCollection.java index 29634d0fb96..ef7e9166864 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobExecutionCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobExecutionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobExecutionState.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobExecutionState.java index af9dd4e0eef..0c69236b631 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobExecutionState.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobExecutionState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobExecutionSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobExecutionSummary.java index 57496271bbb..e3495bc8f04 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobExecutionSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobExecutionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobLifecycleState.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobLifecycleState.java index 6c24ced5be4..45b8d6ec15c 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobLifecycleState.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobLog.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobLog.java index 1099467457d..b05b0de4520 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobLog.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobLog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobLogCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobLogCollection.java index 0bb465dc059..5b571ed7829 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobLogCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobLogCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobLogSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobLogSummary.java index b2057e70394..804fa428f69 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobLogSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobLogSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobMetric.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobMetric.java index 6d24bff1aa1..e9a18fc3704 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobMetric.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobMetric.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobMetricCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobMetricCollection.java index 0fd9124e7df..9dafd6adb79 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobMetricCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobMetricCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobMetricSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobMetricSummary.java index 979821de437..083c359bbb8 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobMetricSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobMetricSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobScheduleType.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobScheduleType.java index 12d9083a26a..d2ffac0c0da 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobScheduleType.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobScheduleType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobSummary.java index c9595bd5ff6..2378a2d1c13 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobType.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobType.java index 9ac676c6078..19448d20867 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobType.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/JobType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/LifecycleState.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/LifecycleState.java index f78ee839ef9..ebbf2f6e079 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/LifecycleState.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/LifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/LineageDirection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/LineageDirection.java index 39ed6afd451..fb2ae688a61 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/LineageDirection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/LineageDirection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/LineageObject.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/LineageObject.java index 460c679711d..71b706f10d5 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/LineageObject.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/LineageObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/LineageRelationship.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/LineageRelationship.java index 61ec62c0d41..e9b49c0abc7 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/LineageRelationship.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/LineageRelationship.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Metastore.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Metastore.java index d9201aa8e35..77848e5fcac 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Metastore.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Metastore.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/MetastoreSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/MetastoreSummary.java index 61983a09684..75830875349 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/MetastoreSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/MetastoreSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Namespace.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Namespace.java index 0e128df2fd3..369310e7845 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Namespace.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Namespace.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/NamespaceCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/NamespaceCollection.java index 7e47041bc19..419f1523bd7 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/NamespaceCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/NamespaceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/NamespaceSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/NamespaceSummary.java index ec74fc4c6c3..1f6a14b5acb 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/NamespaceSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/NamespaceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ObjectLineage.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ObjectLineage.java index 17b46ec2baa..afc6212167d 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ObjectLineage.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ObjectLineage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ObjectLineageRequestDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ObjectLineageRequestDetails.java index e9dc5198ebd..dd30027d7da 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ObjectLineageRequestDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ObjectLineageRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ObjectRelationship.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ObjectRelationship.java index db0b2318ccf..238cfc5ed5d 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ObjectRelationship.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ObjectRelationship.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ObjectStorageObjectReference.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ObjectStorageObjectReference.java index 3c201bb3e25..8a0dfee5e30 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ObjectStorageObjectReference.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ObjectStorageObjectReference.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ParseConnectionDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ParseConnectionDetails.java index ec2b5bf21a5..6bf21f81cea 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ParseConnectionDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ParseConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Pattern.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Pattern.java index 02b53538478..2c48fcbed02 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Pattern.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Pattern.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/PatternCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/PatternCollection.java index a17a7b25157..fad1051b9fe 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/PatternCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/PatternCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/PatternSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/PatternSummary.java index fcec05c5068..416ae5a2551 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/PatternSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/PatternSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ProcessRecommendationDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ProcessRecommendationDetails.java index 841a37ffd45..433740cf1f8 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ProcessRecommendationDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ProcessRecommendationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/PropertyDefinition.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/PropertyDefinition.java index 15e3cbcaf27..7316ba976a9 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/PropertyDefinition.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/PropertyDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RecommendationCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RecommendationCollection.java index a3983412af8..90c662f4f02 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RecommendationCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RecommendationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RecommendationDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RecommendationDetails.java index a1fa7be3a95..89cb552cb17 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RecommendationDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RecommendationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RecommendationResourceType.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RecommendationResourceType.java index 851b466ab50..f46577e58e6 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RecommendationResourceType.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RecommendationResourceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RecommendationStatus.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RecommendationStatus.java index d7d9150b284..15ba10cf918 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RecommendationStatus.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RecommendationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RecommendationType.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RecommendationType.java index cc697cbbb37..e8497b93008 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RecommendationType.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RecommendationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RemoveResourceLockDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RemoveResourceLockDetails.java index 5ad74c1f009..12cb0cb406d 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RemoveResourceLockDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RemoveResourceLockDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ResourceLock.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ResourceLock.java index afc3e64623c..a48eb7bbd62 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ResourceLock.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ResourceLock.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RuleAttribute.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RuleAttribute.java index b38dad53e74..3592eab988b 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RuleAttribute.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RuleAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RuleCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RuleCollection.java index 5cb1504eab6..ba4d51b069b 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RuleCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RuleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RuleOriginType.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RuleOriginType.java index 148f3aa4be3..ec1e33b5a47 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RuleOriginType.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RuleOriginType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RuleSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RuleSummary.java index 8cc20a1c829..1a938e28c98 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RuleSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RuleType.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RuleType.java index 5adae4fd189..98c784de094 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RuleType.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/RuleType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SearchCriteria.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SearchCriteria.java index 18acc5583be..c60704d38c3 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SearchCriteria.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SearchCriteria.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SearchResult.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SearchResult.java index 6161a832dbd..319c5743a41 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SearchResult.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SearchResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SearchResultCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SearchResultCollection.java index ee0e87ad5e7..f4268ea0310 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SearchResultCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SearchResultCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SearchTagSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SearchTagSummary.java index 2da9a19d4ec..26d22b1482c 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SearchTagSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SearchTagSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SearchTermSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SearchTermSummary.java index 7ef45fd9752..55d22f793de 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SearchTermSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SearchTermSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SuggestListItem.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SuggestListItem.java index 65271ee4bd9..1ed364fb083 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SuggestListItem.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SuggestListItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SuggestResults.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SuggestResults.java index 8a698ccbaed..6790ed2b59e 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SuggestResults.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/SuggestResults.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Term.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Term.java index 195947196ee..38020ba73ef 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Term.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Term.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermAssociatedObject.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermAssociatedObject.java index e3420297402..e27a321bcf6 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermAssociatedObject.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermAssociatedObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermCollection.java index dea30f80504..075b0656d5f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermRelationship.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermRelationship.java index 4ff8b4f2b60..215a0e99225 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermRelationship.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermRelationship.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermRelationshipCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermRelationshipCollection.java index ae5cd6e2b03..d211a51d8d7 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermRelationshipCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermRelationshipCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermRelationshipSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermRelationshipSummary.java index 721c5d17fe2..dd287d2324d 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermRelationshipSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermRelationshipSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermSummary.java index 11899e9c857..73ea65ba9f3 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermWorkflowStatus.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermWorkflowStatus.java index e6b1db903b7..580f8e3b51f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermWorkflowStatus.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TermWorkflowStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Type.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Type.java index 2d704c9903a..7c00e019439 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Type.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/Type.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TypeCollection.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TypeCollection.java index 09dc83686a8..fff34c64c3e 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TypeCollection.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TypeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TypeCustomPropertyDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TypeCustomPropertyDetails.java index 97a9a31920a..80405ecdfb9 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TypeCustomPropertyDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TypeCustomPropertyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TypeSummary.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TypeSummary.java index ed273ebf188..197d37bd477 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TypeSummary.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/TypeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateAttributeDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateAttributeDetails.java index 5af0164f4a3..6ceb44db081 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateAttributeDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateAttributeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateCatalogDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateCatalogDetails.java index 52e235c151a..1337fad0acf 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateCatalogDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateCatalogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateCatalogPrivateEndpointDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateCatalogPrivateEndpointDetails.java index 49ce13c8edf..3f256ab1da0 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateCatalogPrivateEndpointDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateCatalogPrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateConnectionDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateConnectionDetails.java index 5bb377d92d5..1487445abec 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateConnectionDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateCustomPropertyDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateCustomPropertyDetails.java index 55f8d03125f..2718edec483 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateCustomPropertyDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateCustomPropertyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateDataAssetDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateDataAssetDetails.java index c8bbc2411ed..cecc62fe730 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateDataAssetDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateDataAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateEntityDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateEntityDetails.java index ce498525f0d..2745e5ca1a8 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateEntityDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateEntityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateFolderDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateFolderDetails.java index 5dbfe23d819..0a9c690dcbb 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateFolderDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateFolderDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateGlossaryDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateGlossaryDetails.java index 8bc0be004fc..ce87cba8c1c 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateGlossaryDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateGlossaryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateJobDefinitionDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateJobDefinitionDetails.java index cff333bb60d..d557aef8b3c 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateJobDefinitionDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateJobDefinitionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateJobDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateJobDetails.java index 7ac3edf0ed1..b10069ccf4b 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateJobDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateMetastoreDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateMetastoreDetails.java index a463dd8eb1b..daf71d1b4c1 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateMetastoreDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateMetastoreDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateNamespaceDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateNamespaceDetails.java index 11225efd07a..6f1ba7eb602 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateNamespaceDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateNamespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdatePatternDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdatePatternDetails.java index 76621857cdd..1cdec4899d5 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdatePatternDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdatePatternDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateTermDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateTermDetails.java index e9e378173fa..3c105c1e65f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateTermDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateTermDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateTermRelationshipDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateTermRelationshipDetails.java index 96a0af0ddbc..9aa84102a67 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateTermRelationshipDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UpdateTermRelationshipDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UploadCredentialsDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UploadCredentialsDetails.java index b35dabe3b26..d25a0da798c 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UploadCredentialsDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/UploadCredentialsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ValidateConnectionDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ValidateConnectionDetails.java index 11fa65245fa..e752c1f19c4 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ValidateConnectionDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ValidateConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ValidateConnectionResult.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ValidateConnectionResult.java index b953def9c87..41297fba1c1 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ValidateConnectionResult.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ValidateConnectionResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ValidatePatternDetails.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ValidatePatternDetails.java index a4c519b9733..e572cbbf224 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ValidatePatternDetails.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ValidatePatternDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ValidatePatternResult.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ValidatePatternResult.java index 948b929a4b9..8a551f8e4c2 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ValidatePatternResult.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/ValidatePatternResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/WorkRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/WorkRequest.java index 7d14e24285f..87be30be451 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/WorkRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/WorkRequestError.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/WorkRequestError.java index e5f897c1230..d0a16d2e6f6 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/WorkRequestError.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/WorkRequestLog.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/WorkRequestLog.java index 293037132e5..07fe1307f96 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/WorkRequestLog.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/WorkRequestLog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/WorkRequestResource.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/WorkRequestResource.java index 43b32dfc3f4..31c0906b299 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/WorkRequestResource.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.model; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AddCatalogLockRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AddCatalogLockRequest.java index 89566984108..2722a95646a 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AddCatalogLockRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AddCatalogLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AddCatalogPrivateEndpointLockRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AddCatalogPrivateEndpointLockRequest.java index c8b6d3a92df..23a127391ef 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AddCatalogPrivateEndpointLockRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AddCatalogPrivateEndpointLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AddDataSelectorPatternsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AddDataSelectorPatternsRequest.java index 85099eb82eb..1b135b25c67 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AddDataSelectorPatternsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AddDataSelectorPatternsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AddMetastoreLockRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AddMetastoreLockRequest.java index 3ad6b29dbe9..2479a8f9258 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AddMetastoreLockRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AddMetastoreLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AssociateCustomPropertyRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AssociateCustomPropertyRequest.java index b90856977ac..7dcdd595bf8 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AssociateCustomPropertyRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AssociateCustomPropertyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AsynchronousExportDataAssetRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AsynchronousExportDataAssetRequest.java index 3d55c57a155..7e04a1ad239 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AsynchronousExportDataAssetRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AsynchronousExportDataAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AsynchronousExportGlossaryRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AsynchronousExportGlossaryRequest.java index 1cd595ce766..6b6ceb5608f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AsynchronousExportGlossaryRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AsynchronousExportGlossaryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AttachCatalogPrivateEndpointRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AttachCatalogPrivateEndpointRequest.java index d73c29a1073..1ae8022aa74 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AttachCatalogPrivateEndpointRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/AttachCatalogPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ChangeCatalogCompartmentRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ChangeCatalogCompartmentRequest.java index a8fd982233c..88bc7a8590f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ChangeCatalogCompartmentRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ChangeCatalogCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ChangeCatalogPrivateEndpointCompartmentRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ChangeCatalogPrivateEndpointCompartmentRequest.java index 77425a9c86e..324dd764b4b 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ChangeCatalogPrivateEndpointCompartmentRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ChangeCatalogPrivateEndpointCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ChangeMetastoreCompartmentRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ChangeMetastoreCompartmentRequest.java index fc9fcd9ed2c..330ecd495d5 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ChangeMetastoreCompartmentRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ChangeMetastoreCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateAttributeRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateAttributeRequest.java index c3af56bbd7f..1ae424f2a9a 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateAttributeRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateAttributeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateAttributeTagRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateAttributeTagRequest.java index 63b8169ff8d..fc5661e7848 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateAttributeTagRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateAttributeTagRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateCatalogPrivateEndpointRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateCatalogPrivateEndpointRequest.java index 083c1e2e979..e18a4c492d7 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateCatalogPrivateEndpointRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateCatalogPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateCatalogRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateCatalogRequest.java index 815e588a036..e82ab7b9e84 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateCatalogRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateCatalogRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateConnectionRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateConnectionRequest.java index e0dc49e2bfd..171528035ce 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateConnectionRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateCustomPropertyRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateCustomPropertyRequest.java index af7c30a9acb..d462187d518 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateCustomPropertyRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateCustomPropertyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateDataAssetRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateDataAssetRequest.java index 845b4fbc8c3..0dd697e1344 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateDataAssetRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateDataAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateDataAssetTagRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateDataAssetTagRequest.java index 98ab13ac4d4..51f878aa5fa 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateDataAssetTagRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateDataAssetTagRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateEntityRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateEntityRequest.java index 1ff7215a650..89239a4a2fa 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateEntityRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateEntityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateEntityTagRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateEntityTagRequest.java index cd4de507aef..25498fad433 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateEntityTagRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateEntityTagRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateFolderRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateFolderRequest.java index b6bb18f183e..c9b22703dc8 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateFolderRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateFolderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateFolderTagRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateFolderTagRequest.java index 03d8f08d4a0..269f50f38fa 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateFolderTagRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateFolderTagRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateGlossaryRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateGlossaryRequest.java index 2db2ac4aa89..67b65f135b4 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateGlossaryRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateGlossaryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateJobDefinitionRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateJobDefinitionRequest.java index 3a044aec777..b255aa3431f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateJobDefinitionRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateJobDefinitionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateJobExecutionRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateJobExecutionRequest.java index 6fd22d1210c..a86df94ab36 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateJobExecutionRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateJobExecutionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateJobRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateJobRequest.java index 294d7215f28..e1a037f412d 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateJobRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateMetastoreRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateMetastoreRequest.java index 309f1227b21..c8555cb668a 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateMetastoreRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateMetastoreRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateNamespaceRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateNamespaceRequest.java index 16b012980e9..ea228dea7c6 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateNamespaceRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateNamespaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreatePatternRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreatePatternRequest.java index 3473c12f4d0..2e6261ea6dc 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreatePatternRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreatePatternRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateTermRelationshipRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateTermRelationshipRequest.java index cd1ea898039..c6d5c5ea18d 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateTermRelationshipRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateTermRelationshipRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateTermRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateTermRequest.java index 8984457b72e..070f353eceb 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateTermRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/CreateTermRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteAttributeRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteAttributeRequest.java index cf5c270ea84..dc5f201e879 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteAttributeRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteAttributeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteAttributeTagRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteAttributeTagRequest.java index 1a45fe1047c..e7a6f44c2d6 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteAttributeTagRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteAttributeTagRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteCatalogPrivateEndpointRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteCatalogPrivateEndpointRequest.java index 492852c131a..5287050d4e0 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteCatalogPrivateEndpointRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteCatalogPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteCatalogRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteCatalogRequest.java index 53c535463ac..ce7b47ccd54 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteCatalogRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteCatalogRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteConnectionRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteConnectionRequest.java index d87786746e9..f4db77b266b 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteConnectionRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteCustomPropertyRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteCustomPropertyRequest.java index 1cfa8cd0794..cae6d446696 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteCustomPropertyRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteCustomPropertyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteDataAssetRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteDataAssetRequest.java index a6ba830fa68..04fbad55964 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteDataAssetRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteDataAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteDataAssetTagRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteDataAssetTagRequest.java index 1ce1fd5e5c8..8f2e04e374d 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteDataAssetTagRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteDataAssetTagRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteEntityRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteEntityRequest.java index 617491e6d1e..1286bf3a442 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteEntityRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteEntityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteEntityTagRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteEntityTagRequest.java index fe9534b508e..6147c4ae489 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteEntityTagRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteEntityTagRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteFolderRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteFolderRequest.java index 4eb5d23922b..3d72d1accb6 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteFolderRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteFolderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteFolderTagRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteFolderTagRequest.java index f5d6a548551..a99340111db 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteFolderTagRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteFolderTagRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteGlossaryRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteGlossaryRequest.java index 2cc4e6ef4a4..bb9af8a7a2d 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteGlossaryRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteGlossaryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteJobDefinitionRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteJobDefinitionRequest.java index 2b799e45588..be883f78e4d 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteJobDefinitionRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteJobDefinitionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteJobRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteJobRequest.java index 60269dd8901..ff06911aff4 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteJobRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteMetastoreRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteMetastoreRequest.java index da0267b9fce..6fccc60c032 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteMetastoreRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteMetastoreRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteNamespaceRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteNamespaceRequest.java index 02a00ae41a3..5bbb336c20f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteNamespaceRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteNamespaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeletePatternRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeletePatternRequest.java index c84127e7edd..9157d548257 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeletePatternRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeletePatternRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteTermRelationshipRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteTermRelationshipRequest.java index 373aecc2379..32de9e0b3ca 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteTermRelationshipRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteTermRelationshipRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteTermRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteTermRequest.java index 04b5d11f383..ca22ce9dd82 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteTermRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DeleteTermRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DetachCatalogPrivateEndpointRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DetachCatalogPrivateEndpointRequest.java index 7b1c5e095ad..ef05d43988e 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DetachCatalogPrivateEndpointRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DetachCatalogPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DisassociateCustomPropertyRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DisassociateCustomPropertyRequest.java index 1b0a6651213..998ba0f2692 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DisassociateCustomPropertyRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/DisassociateCustomPropertyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ExpandTreeForGlossaryRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ExpandTreeForGlossaryRequest.java index ada8c5e5f84..050e1323fa9 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ExpandTreeForGlossaryRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ExpandTreeForGlossaryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ExportGlossaryRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ExportGlossaryRequest.java index 0b3de5fe6ab..5fc062d376e 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ExportGlossaryRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ExportGlossaryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/FetchEntityLineageRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/FetchEntityLineageRequest.java index c5ea074357f..aef6e14c09e 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/FetchEntityLineageRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/FetchEntityLineageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetAttributeRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetAttributeRequest.java index 11d4729c949..d54716637d6 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetAttributeRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetAttributeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetAttributeTagRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetAttributeTagRequest.java index 9121ecf47eb..d2c4470a6dc 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetAttributeTagRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetAttributeTagRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetCatalogPrivateEndpointRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetCatalogPrivateEndpointRequest.java index ed5a6f990d0..e0225e9ea65 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetCatalogPrivateEndpointRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetCatalogPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetCatalogRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetCatalogRequest.java index a12a3f11890..671a95660ee 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetCatalogRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetCatalogRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetConnectionRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetConnectionRequest.java index 5e9487bc26b..ef2aa8a4a0b 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetConnectionRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetCustomPropertyRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetCustomPropertyRequest.java index 37a467636d3..bff2025dc1b 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetCustomPropertyRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetCustomPropertyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetDataAssetRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetDataAssetRequest.java index dcb431407cf..5c8a97c77cc 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetDataAssetRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetDataAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetDataAssetTagRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetDataAssetTagRequest.java index 5db432c07fb..97dda22a86e 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetDataAssetTagRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetDataAssetTagRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetEntityRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetEntityRequest.java index d50b265b0b8..be6febf752f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetEntityRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetEntityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetEntityTagRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetEntityTagRequest.java index 09bffc2ce36..f86dde7217d 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetEntityTagRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetEntityTagRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetFolderRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetFolderRequest.java index 58fd0046382..86896047659 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetFolderRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetFolderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetFolderTagRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetFolderTagRequest.java index 0939688d9b1..41f62983069 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetFolderTagRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetFolderTagRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetGlossaryRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetGlossaryRequest.java index 2957c1f5cbf..46fa05cdd0c 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetGlossaryRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetGlossaryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetJobDefinitionRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetJobDefinitionRequest.java index 47def8a70b1..d6a56e52415 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetJobDefinitionRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetJobDefinitionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetJobExecutionRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetJobExecutionRequest.java index 017235a3219..f73ccba7a2b 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetJobExecutionRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetJobExecutionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetJobLogRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetJobLogRequest.java index 9727a5104b6..3c065a82144 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetJobLogRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetJobLogRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetJobMetricsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetJobMetricsRequest.java index 2b92f27b8b8..047043b0051 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetJobMetricsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetJobMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetJobRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetJobRequest.java index 9be9c4a7e5e..3750ec01e55 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetJobRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetMetastoreRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetMetastoreRequest.java index 7a1d40e20f6..3fac85d901f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetMetastoreRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetMetastoreRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetNamespaceRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetNamespaceRequest.java index 55da20c6e45..ba02a0debcf 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetNamespaceRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetNamespaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetPatternRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetPatternRequest.java index 7f8cd598132..63217bd3dde 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetPatternRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetPatternRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetTermRelationshipRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetTermRelationshipRequest.java index bb63657e885..fe266775b38 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetTermRelationshipRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetTermRelationshipRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetTermRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetTermRequest.java index 8af9b1d5c19..d93931853e6 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetTermRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetTermRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetTypeRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetTypeRequest.java index 59826495264..3625a79d190 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetTypeRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetTypeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetWorkRequestRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetWorkRequestRequest.java index a7ba87f1e75..1240d8fbd88 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetWorkRequestRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ImportConnectionRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ImportConnectionRequest.java index 009c8611f0c..8489317fea4 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ImportConnectionRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ImportConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ImportDataAssetRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ImportDataAssetRequest.java index f849ec98bcb..505c56696e6 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ImportDataAssetRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ImportDataAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ImportGlossaryRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ImportGlossaryRequest.java index 2bcedb4afbe..ecb5df1357f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ImportGlossaryRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ImportGlossaryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ImportLineageRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ImportLineageRequest.java index 228f9788952..0db9fc95901 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ImportLineageRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ImportLineageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListAggregatedPhysicalEntitiesRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListAggregatedPhysicalEntitiesRequest.java index e943d01a4e2..b3b0dccabc7 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListAggregatedPhysicalEntitiesRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListAggregatedPhysicalEntitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListAttributeTagsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListAttributeTagsRequest.java index 2a4c4f2bd38..6bafd8aa1c7 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListAttributeTagsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListAttributeTagsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListAttributesRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListAttributesRequest.java index 4805067255a..54f44d3c070 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListAttributesRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListAttributesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListCatalogPrivateEndpointsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListCatalogPrivateEndpointsRequest.java index 20759c38a3a..9217cfbfad8 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListCatalogPrivateEndpointsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListCatalogPrivateEndpointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListCatalogsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListCatalogsRequest.java index 466c43aa5b7..cffa1adbfd4 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListCatalogsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListCatalogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListConnectionsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListConnectionsRequest.java index 80bfec1eebd..09d1203f61f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListConnectionsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListConnectionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListCustomPropertiesRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListCustomPropertiesRequest.java index fc99b4bc789..4bf944cd54b 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListCustomPropertiesRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListCustomPropertiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListDataAssetTagsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListDataAssetTagsRequest.java index 2aee1e131ad..ce8b6011509 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListDataAssetTagsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListDataAssetTagsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListDataAssetsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListDataAssetsRequest.java index 0c40152ef6a..fea58251826 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListDataAssetsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListDataAssetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListDerivedLogicalEntitiesRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListDerivedLogicalEntitiesRequest.java index 37a46f93c35..94da6ff956e 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListDerivedLogicalEntitiesRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListDerivedLogicalEntitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListEntitiesRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListEntitiesRequest.java index bd743b63782..76ba2d562ac 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListEntitiesRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListEntitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListEntityTagsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListEntityTagsRequest.java index cd4338fdad6..992ac596531 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListEntityTagsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListEntityTagsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListFolderTagsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListFolderTagsRequest.java index d955290ba3f..6f4635a9015 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListFolderTagsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListFolderTagsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListFoldersRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListFoldersRequest.java index 108288e280b..abe4c3e903b 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListFoldersRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListFoldersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListGlossariesRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListGlossariesRequest.java index 291ac70c384..ba6940648cb 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListGlossariesRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListGlossariesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListJobDefinitionsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListJobDefinitionsRequest.java index 53b9e40e295..1d35e948967 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListJobDefinitionsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListJobDefinitionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListJobExecutionsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListJobExecutionsRequest.java index cbad27ff1f9..1f7e0a13794 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListJobExecutionsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListJobExecutionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListJobLogsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListJobLogsRequest.java index 5dad8d0cf3b..71283d30391 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListJobLogsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListJobLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListJobMetricsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListJobMetricsRequest.java index 4e5259c4d33..72012ae861b 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListJobMetricsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListJobMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListJobsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListJobsRequest.java index 245ec2eda1b..cd6dc593143 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListJobsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListJobsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListMetastoresRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListMetastoresRequest.java index afdf916a9af..5a058424da1 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListMetastoresRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListMetastoresRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListNamespacesRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListNamespacesRequest.java index fdfecdefb38..1a4455dabee 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListNamespacesRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListNamespacesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListPatternsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListPatternsRequest.java index aee28607179..e15909bd182 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListPatternsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListPatternsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListRulesRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListRulesRequest.java index 14462b7a4d9..a8ebcab41ff 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListRulesRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListTagsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListTagsRequest.java index 8b8cbef3df5..01a76ac4a5c 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListTagsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListTagsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListTermRelationshipsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListTermRelationshipsRequest.java index 7522319d78d..dd9f2a0273f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListTermRelationshipsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListTermRelationshipsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListTermsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListTermsRequest.java index cab39d62d66..f9a1fc66a33 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListTermsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListTermsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListTypesRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListTypesRequest.java index 1c404c766ce..c1d77994259 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListTypesRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListWorkRequestErrorsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListWorkRequestErrorsRequest.java index 0db6cf2f2dd..3cb0290485c 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListWorkRequestLogsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListWorkRequestLogsRequest.java index 65871ebb274..b663c391a11 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListWorkRequestLogsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListWorkRequestsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListWorkRequestsRequest.java index 2b7d8d863ff..c6926190f86 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListWorkRequestsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ObjectStatsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ObjectStatsRequest.java index 1968e1180b5..5a48b6eb026 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ObjectStatsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ObjectStatsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ParseConnectionRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ParseConnectionRequest.java index aa641cbb2df..64be2b60334 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ParseConnectionRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ParseConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ProcessRecommendationRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ProcessRecommendationRequest.java index 08384b0acfb..bff0ce3926c 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ProcessRecommendationRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ProcessRecommendationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/RecommendationsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/RecommendationsRequest.java index ef63edcbc2e..f9c1e8db197 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/RecommendationsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/RecommendationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/RemoveCatalogLockRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/RemoveCatalogLockRequest.java index 3245191c866..963f88591bf 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/RemoveCatalogLockRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/RemoveCatalogLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/RemoveCatalogPrivateEndpointLockRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/RemoveCatalogPrivateEndpointLockRequest.java index abf205cd57e..bbc53289da5 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/RemoveCatalogPrivateEndpointLockRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/RemoveCatalogPrivateEndpointLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/RemoveDataSelectorPatternsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/RemoveDataSelectorPatternsRequest.java index c764530c9c3..eb4bfad3d73 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/RemoveDataSelectorPatternsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/RemoveDataSelectorPatternsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/RemoveMetastoreLockRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/RemoveMetastoreLockRequest.java index c3a4a488c6a..e8e0c1fb0de 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/RemoveMetastoreLockRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/RemoveMetastoreLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/SearchCriteriaRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/SearchCriteriaRequest.java index f315fc3f847..e2cc65b0308 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/SearchCriteriaRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/SearchCriteriaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/SuggestMatchesRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/SuggestMatchesRequest.java index ae664f10836..980bc75bc66 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/SuggestMatchesRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/SuggestMatchesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/SynchronousExportDataAssetRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/SynchronousExportDataAssetRequest.java index fbbafecb370..39be9baaa12 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/SynchronousExportDataAssetRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/SynchronousExportDataAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/TestConnectionRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/TestConnectionRequest.java index 30332a88d83..88206b0fa85 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/TestConnectionRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/TestConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateAttributeRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateAttributeRequest.java index 6c523cf190f..7b5e0db2f8a 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateAttributeRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateAttributeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateCatalogPrivateEndpointRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateCatalogPrivateEndpointRequest.java index 7f1c75d6fb2..3598d211803 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateCatalogPrivateEndpointRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateCatalogPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateCatalogRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateCatalogRequest.java index b9806172d5b..47aa39bc7f5 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateCatalogRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateCatalogRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateConnectionRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateConnectionRequest.java index ffae6e503f1..ac18b66fdf2 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateConnectionRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateCustomPropertyRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateCustomPropertyRequest.java index 93b0a64990a..e411d7342c4 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateCustomPropertyRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateCustomPropertyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateDataAssetRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateDataAssetRequest.java index 8548c3e156d..a5cd292cdc1 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateDataAssetRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateDataAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateEntityRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateEntityRequest.java index c895eeddf4f..fddde43e6f1 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateEntityRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateEntityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateFolderRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateFolderRequest.java index 88a23833559..d03477e4134 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateFolderRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateFolderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateGlossaryRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateGlossaryRequest.java index d6b6ccbf820..48d188dcf57 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateGlossaryRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateGlossaryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateJobDefinitionRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateJobDefinitionRequest.java index 62ffd7c3971..fc1d178905a 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateJobDefinitionRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateJobDefinitionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateJobRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateJobRequest.java index 43b942f6757..70f2ed23f63 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateJobRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateMetastoreRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateMetastoreRequest.java index f192b9471a1..93fdddbd011 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateMetastoreRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateMetastoreRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateNamespaceRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateNamespaceRequest.java index 44ed5f0ddff..fa256b93347 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateNamespaceRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateNamespaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdatePatternRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdatePatternRequest.java index 159e19c27a7..6519d9f29e8 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdatePatternRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdatePatternRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateTermRelationshipRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateTermRelationshipRequest.java index 0157779656b..df72d11ef85 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateTermRelationshipRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateTermRelationshipRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateTermRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateTermRequest.java index c4331f83c3e..52e629e25a4 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateTermRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UpdateTermRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UploadCredentialsRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UploadCredentialsRequest.java index 5753278b179..01767e3b38e 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UploadCredentialsRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UploadCredentialsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UsersRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UsersRequest.java index d09023ec3f0..a859514287f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UsersRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/UsersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ValidateConnectionRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ValidateConnectionRequest.java index dc47912dd9f..0d948603470 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ValidateConnectionRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ValidateConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ValidatePatternRequest.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ValidatePatternRequest.java index fabae04a7c2..05d73fcd3af 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ValidatePatternRequest.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/requests/ValidatePatternRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.requests; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AddCatalogLockResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AddCatalogLockResponse.java index 3427afe0053..769357ca08d 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AddCatalogLockResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AddCatalogLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AddCatalogPrivateEndpointLockResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AddCatalogPrivateEndpointLockResponse.java index 0b24fa807ad..0d5ba3b38e6 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AddCatalogPrivateEndpointLockResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AddCatalogPrivateEndpointLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AddDataSelectorPatternsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AddDataSelectorPatternsResponse.java index c8e46e3a631..44faab91883 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AddDataSelectorPatternsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AddDataSelectorPatternsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AddMetastoreLockResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AddMetastoreLockResponse.java index cdbd17153dd..a8cbcf1dc38 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AddMetastoreLockResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AddMetastoreLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AssociateCustomPropertyResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AssociateCustomPropertyResponse.java index dfc80fe9b50..45d00765ce2 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AssociateCustomPropertyResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AssociateCustomPropertyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AsynchronousExportDataAssetResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AsynchronousExportDataAssetResponse.java index ab057db3f9f..5eab26d9e39 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AsynchronousExportDataAssetResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AsynchronousExportDataAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AsynchronousExportGlossaryResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AsynchronousExportGlossaryResponse.java index a96ef35a19b..6e3f1e63163 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AsynchronousExportGlossaryResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AsynchronousExportGlossaryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AttachCatalogPrivateEndpointResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AttachCatalogPrivateEndpointResponse.java index 25c6b6f0a75..7222a51cc91 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AttachCatalogPrivateEndpointResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/AttachCatalogPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ChangeCatalogCompartmentResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ChangeCatalogCompartmentResponse.java index a361cb2bf3e..31a79d385c7 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ChangeCatalogCompartmentResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ChangeCatalogCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ChangeCatalogPrivateEndpointCompartmentResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ChangeCatalogPrivateEndpointCompartmentResponse.java index 41d457bb7e9..28faeadcee5 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ChangeCatalogPrivateEndpointCompartmentResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ChangeCatalogPrivateEndpointCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ChangeMetastoreCompartmentResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ChangeMetastoreCompartmentResponse.java index 6f7e690aaf5..d2aa71ea305 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ChangeMetastoreCompartmentResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ChangeMetastoreCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateAttributeResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateAttributeResponse.java index 525fb082619..5d01fe78b80 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateAttributeResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateAttributeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateAttributeTagResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateAttributeTagResponse.java index f6b5c7ecff6..ef6ccdd14e3 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateAttributeTagResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateAttributeTagResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateCatalogPrivateEndpointResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateCatalogPrivateEndpointResponse.java index 1f14984feaf..cfa46447ee6 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateCatalogPrivateEndpointResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateCatalogPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateCatalogResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateCatalogResponse.java index 8d673a41c36..7419e703eb6 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateCatalogResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateCatalogResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateConnectionResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateConnectionResponse.java index 534b9db8b9d..1af03563f70 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateConnectionResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateCustomPropertyResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateCustomPropertyResponse.java index 7b04e24a74c..f276c4f02b1 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateCustomPropertyResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateCustomPropertyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateDataAssetResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateDataAssetResponse.java index 5f5e93bd3c9..3a5130aaf09 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateDataAssetResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateDataAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateDataAssetTagResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateDataAssetTagResponse.java index 9e54112709b..1c99e2c6ffb 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateDataAssetTagResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateDataAssetTagResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateEntityResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateEntityResponse.java index 2eeef6f97e8..46679742cb2 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateEntityResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateEntityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateEntityTagResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateEntityTagResponse.java index 6ab95c7d0b3..c96691b0142 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateEntityTagResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateEntityTagResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateFolderResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateFolderResponse.java index fa2a4f6e28b..5f87627f45a 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateFolderResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateFolderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateFolderTagResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateFolderTagResponse.java index 0d4cd41f2e5..b3b8546261c 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateFolderTagResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateFolderTagResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateGlossaryResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateGlossaryResponse.java index 2210064ac2b..5795a3b9633 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateGlossaryResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateGlossaryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateJobDefinitionResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateJobDefinitionResponse.java index 0fcbba6ed25..18539f89dfb 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateJobDefinitionResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateJobDefinitionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateJobExecutionResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateJobExecutionResponse.java index 4ea9942f02b..89c69ab5c64 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateJobExecutionResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateJobExecutionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateJobResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateJobResponse.java index 598d6819f32..cc0f9281ea0 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateJobResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateMetastoreResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateMetastoreResponse.java index 5c1b8bdbd9f..d54a27a353b 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateMetastoreResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateMetastoreResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateNamespaceResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateNamespaceResponse.java index 0727002bd30..514669be818 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateNamespaceResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateNamespaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreatePatternResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreatePatternResponse.java index 624d22b339d..320171d9e77 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreatePatternResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreatePatternResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateTermRelationshipResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateTermRelationshipResponse.java index d580930d16d..8920249e8f4 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateTermRelationshipResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateTermRelationshipResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateTermResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateTermResponse.java index 7d36cefa979..76e22c1fcce 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateTermResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/CreateTermResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteAttributeResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteAttributeResponse.java index c33fd0f6f5e..3c49c247858 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteAttributeResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteAttributeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteAttributeTagResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteAttributeTagResponse.java index 1f692b08789..c35e0e97134 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteAttributeTagResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteAttributeTagResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteCatalogPrivateEndpointResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteCatalogPrivateEndpointResponse.java index 4a621c961a2..8dd63343071 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteCatalogPrivateEndpointResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteCatalogPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteCatalogResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteCatalogResponse.java index 8df5a5354ec..7dc99f3da0b 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteCatalogResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteCatalogResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteConnectionResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteConnectionResponse.java index 5bd3b8a3c12..9fdfb991bec 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteConnectionResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteCustomPropertyResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteCustomPropertyResponse.java index b7bcef3d8e8..1048c513ad9 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteCustomPropertyResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteCustomPropertyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteDataAssetResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteDataAssetResponse.java index dcc64b64f88..8874e2d2d0b 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteDataAssetResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteDataAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteDataAssetTagResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteDataAssetTagResponse.java index fc7a15e5f51..e13152e7d7f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteDataAssetTagResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteDataAssetTagResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteEntityResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteEntityResponse.java index af45161e2cf..ed16791648e 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteEntityResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteEntityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteEntityTagResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteEntityTagResponse.java index ffccbf22c7a..c4486c43586 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteEntityTagResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteEntityTagResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteFolderResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteFolderResponse.java index bb563f33faa..07775e04e54 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteFolderResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteFolderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteFolderTagResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteFolderTagResponse.java index e3539094509..79af7f2e849 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteFolderTagResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteFolderTagResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteGlossaryResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteGlossaryResponse.java index 1fd7a824b0f..dc807f5a07a 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteGlossaryResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteGlossaryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteJobDefinitionResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteJobDefinitionResponse.java index 9e92ea7d987..c22576be17d 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteJobDefinitionResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteJobDefinitionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteJobResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteJobResponse.java index fe3c247a2fc..c3a15f7f699 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteJobResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteMetastoreResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteMetastoreResponse.java index 068bfca6c78..5119859be40 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteMetastoreResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteMetastoreResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteNamespaceResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteNamespaceResponse.java index b154e4c1ef3..67614a21f28 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteNamespaceResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteNamespaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeletePatternResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeletePatternResponse.java index 3e557684b05..d020da61726 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeletePatternResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeletePatternResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteTermRelationshipResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteTermRelationshipResponse.java index f7d446f643b..7ad7534cdba 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteTermRelationshipResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteTermRelationshipResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteTermResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteTermResponse.java index fd9c1d5ba00..11b36b434ec 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteTermResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DeleteTermResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DetachCatalogPrivateEndpointResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DetachCatalogPrivateEndpointResponse.java index 98d6dbcd6d8..57e9a4e1f28 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DetachCatalogPrivateEndpointResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DetachCatalogPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DisassociateCustomPropertyResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DisassociateCustomPropertyResponse.java index c5974dc188a..7aa3d9df600 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DisassociateCustomPropertyResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/DisassociateCustomPropertyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ExpandTreeForGlossaryResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ExpandTreeForGlossaryResponse.java index a6ca7292779..a3e67c25ad3 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ExpandTreeForGlossaryResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ExpandTreeForGlossaryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ExportGlossaryResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ExportGlossaryResponse.java index c5a149628ec..01951e9068e 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ExportGlossaryResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ExportGlossaryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/FetchEntityLineageResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/FetchEntityLineageResponse.java index 0e72ed7919c..392e782dac9 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/FetchEntityLineageResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/FetchEntityLineageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetAttributeResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetAttributeResponse.java index 9471d675158..aa05f370e8a 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetAttributeResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetAttributeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetAttributeTagResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetAttributeTagResponse.java index 10c147a535c..0c5f8c2b381 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetAttributeTagResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetAttributeTagResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetCatalogPrivateEndpointResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetCatalogPrivateEndpointResponse.java index 77f6b47cc5d..6db5598fbc1 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetCatalogPrivateEndpointResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetCatalogPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetCatalogResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetCatalogResponse.java index a914468fde1..d2639ec5a63 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetCatalogResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetCatalogResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetConnectionResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetConnectionResponse.java index 1558bc019fb..6aa53eab9ef 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetConnectionResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetCustomPropertyResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetCustomPropertyResponse.java index 14ec74a444e..d0db85ccba3 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetCustomPropertyResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetCustomPropertyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetDataAssetResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetDataAssetResponse.java index 14f4a430db8..35097f94fcd 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetDataAssetResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetDataAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetDataAssetTagResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetDataAssetTagResponse.java index ee766558217..ced0bddb174 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetDataAssetTagResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetDataAssetTagResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetEntityResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetEntityResponse.java index 75ea52d144a..34d2c8d4a80 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetEntityResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetEntityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetEntityTagResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetEntityTagResponse.java index 604ab60fa7b..09fec189c41 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetEntityTagResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetEntityTagResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetFolderResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetFolderResponse.java index 6047e774fee..8b3fc51d4f2 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetFolderResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetFolderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetFolderTagResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetFolderTagResponse.java index e0005ff83ee..98887925bc5 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetFolderTagResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetFolderTagResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetGlossaryResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetGlossaryResponse.java index 274729f3fc1..ed3b1d6541b 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetGlossaryResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetGlossaryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetJobDefinitionResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetJobDefinitionResponse.java index b3e609dd98b..77854478e68 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetJobDefinitionResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetJobDefinitionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetJobExecutionResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetJobExecutionResponse.java index a01f1dcf4ff..60194ca4aa2 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetJobExecutionResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetJobExecutionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetJobLogResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetJobLogResponse.java index 473e086d1ee..c2a28c4da35 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetJobLogResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetJobLogResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetJobMetricsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetJobMetricsResponse.java index 35a9e1de261..4b983d5a94c 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetJobMetricsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetJobMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetJobResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetJobResponse.java index 4fc7a23b900..b6173e26087 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetJobResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetMetastoreResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetMetastoreResponse.java index 6b6974bac29..32566f6d46e 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetMetastoreResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetMetastoreResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetNamespaceResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetNamespaceResponse.java index a0a515879e8..882899df3c6 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetNamespaceResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetNamespaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetPatternResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetPatternResponse.java index 0f05105773f..9285afcd59a 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetPatternResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetPatternResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetTermRelationshipResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetTermRelationshipResponse.java index 1cc342d1a5c..23b089b60a8 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetTermRelationshipResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetTermRelationshipResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetTermResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetTermResponse.java index 479851533c6..1cdb9a0fc09 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetTermResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetTermResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetTypeResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetTypeResponse.java index fc5122bf2c0..a41378c0068 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetTypeResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetTypeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetWorkRequestResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetWorkRequestResponse.java index 33a3d4d5f23..7ee15172bde 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetWorkRequestResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ImportConnectionResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ImportConnectionResponse.java index c0548ebf502..887164d9eb3 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ImportConnectionResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ImportConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ImportDataAssetResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ImportDataAssetResponse.java index 3175119a3c4..5e700497d61 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ImportDataAssetResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ImportDataAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ImportGlossaryResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ImportGlossaryResponse.java index 9e8de3243ce..164c9c7be43 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ImportGlossaryResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ImportGlossaryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ImportLineageResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ImportLineageResponse.java index 2222109c10f..cca69ca25ab 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ImportLineageResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ImportLineageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListAggregatedPhysicalEntitiesResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListAggregatedPhysicalEntitiesResponse.java index 712b70d94ab..52fea876097 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListAggregatedPhysicalEntitiesResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListAggregatedPhysicalEntitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListAttributeTagsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListAttributeTagsResponse.java index ee7cb12bb27..7b12a135adc 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListAttributeTagsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListAttributeTagsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListAttributesResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListAttributesResponse.java index acc7c19087f..7c524de2460 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListAttributesResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListAttributesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListCatalogPrivateEndpointsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListCatalogPrivateEndpointsResponse.java index 8f883646b49..f79dbc6d72f 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListCatalogPrivateEndpointsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListCatalogPrivateEndpointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListCatalogsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListCatalogsResponse.java index ea29ed61ca7..5090d0d8662 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListCatalogsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListCatalogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListConnectionsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListConnectionsResponse.java index b60b0b7b657..7ba5fc40054 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListConnectionsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListConnectionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListCustomPropertiesResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListCustomPropertiesResponse.java index 04480076ed6..b0c873e3321 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListCustomPropertiesResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListCustomPropertiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListDataAssetTagsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListDataAssetTagsResponse.java index e9051008e2e..4436ef69b5b 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListDataAssetTagsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListDataAssetTagsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListDataAssetsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListDataAssetsResponse.java index 1c3499d65ff..d472fc7a3d8 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListDataAssetsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListDataAssetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListDerivedLogicalEntitiesResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListDerivedLogicalEntitiesResponse.java index d3f7f74c4ea..92f0f62144e 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListDerivedLogicalEntitiesResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListDerivedLogicalEntitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListEntitiesResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListEntitiesResponse.java index 4866253702d..145b70f41f7 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListEntitiesResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListEntitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListEntityTagsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListEntityTagsResponse.java index 2294c84a995..29e0f8490b0 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListEntityTagsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListEntityTagsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListFolderTagsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListFolderTagsResponse.java index f319e529c20..0d176c2a8ab 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListFolderTagsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListFolderTagsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListFoldersResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListFoldersResponse.java index e139828b40d..4aaff8ee8ad 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListFoldersResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListFoldersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListGlossariesResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListGlossariesResponse.java index 90d43104ffd..4a2e2581196 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListGlossariesResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListGlossariesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListJobDefinitionsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListJobDefinitionsResponse.java index d39b387451e..53d4b3cc3c6 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListJobDefinitionsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListJobDefinitionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListJobExecutionsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListJobExecutionsResponse.java index 62a8b5355d5..dfcc51f6e64 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListJobExecutionsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListJobExecutionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListJobLogsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListJobLogsResponse.java index 5e1bd0f878a..e5856a5e5ac 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListJobLogsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListJobLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListJobMetricsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListJobMetricsResponse.java index 02673aa063f..6bbae84f549 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListJobMetricsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListJobMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListJobsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListJobsResponse.java index 6e473d65b15..2a7d34f8977 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListJobsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListJobsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListMetastoresResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListMetastoresResponse.java index 57e54f393bc..eeba1f4ac70 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListMetastoresResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListMetastoresResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListNamespacesResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListNamespacesResponse.java index 511ea55728d..dce4043289c 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListNamespacesResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListNamespacesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListPatternsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListPatternsResponse.java index 2c1d49f5462..2020d4f3956 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListPatternsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListPatternsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListRulesResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListRulesResponse.java index d8a279bb717..d9dfcfe9be0 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListRulesResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListTagsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListTagsResponse.java index 25a382ff3b9..90b5433df2a 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListTagsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListTagsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListTermRelationshipsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListTermRelationshipsResponse.java index 340420e2f9b..fdcd84db0eb 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListTermRelationshipsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListTermRelationshipsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListTermsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListTermsResponse.java index dc628a9f9cb..01ee3789eee 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListTermsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListTermsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListTypesResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListTypesResponse.java index 19fb5f0aba8..4490507942e 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListTypesResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListWorkRequestErrorsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListWorkRequestErrorsResponse.java index 052c79df017..3d720d7a1ed 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListWorkRequestLogsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListWorkRequestLogsResponse.java index f9a9df11ae8..2d92fd0bad7 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListWorkRequestLogsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListWorkRequestsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListWorkRequestsResponse.java index a148a4d2c90..9a029e7c5db 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListWorkRequestsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ObjectStatsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ObjectStatsResponse.java index fa15bbe34aa..735d99c99e5 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ObjectStatsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ObjectStatsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ParseConnectionResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ParseConnectionResponse.java index 32e48b56f74..418ab575436 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ParseConnectionResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ParseConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ProcessRecommendationResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ProcessRecommendationResponse.java index 6bcff342520..5324c456b2e 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ProcessRecommendationResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ProcessRecommendationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/RecommendationsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/RecommendationsResponse.java index ba762c59d90..8ba60486117 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/RecommendationsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/RecommendationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/RemoveCatalogLockResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/RemoveCatalogLockResponse.java index 3ac0e4a9626..4ffb53bd8f9 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/RemoveCatalogLockResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/RemoveCatalogLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/RemoveCatalogPrivateEndpointLockResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/RemoveCatalogPrivateEndpointLockResponse.java index 6c6add72756..e38064ff642 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/RemoveCatalogPrivateEndpointLockResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/RemoveCatalogPrivateEndpointLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/RemoveDataSelectorPatternsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/RemoveDataSelectorPatternsResponse.java index 5a3e3823542..ec24c7275e3 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/RemoveDataSelectorPatternsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/RemoveDataSelectorPatternsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/RemoveMetastoreLockResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/RemoveMetastoreLockResponse.java index 408c534d39f..8921bf135ce 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/RemoveMetastoreLockResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/RemoveMetastoreLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/SearchCriteriaResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/SearchCriteriaResponse.java index 3eb43f2500e..45567875078 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/SearchCriteriaResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/SearchCriteriaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/SuggestMatchesResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/SuggestMatchesResponse.java index da0dbded0fc..2834345631e 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/SuggestMatchesResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/SuggestMatchesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/SynchronousExportDataAssetResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/SynchronousExportDataAssetResponse.java index 5605c327e45..73eea8f3c7e 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/SynchronousExportDataAssetResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/SynchronousExportDataAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/TestConnectionResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/TestConnectionResponse.java index 065c4852c6a..49e7ccddb9a 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/TestConnectionResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/TestConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateAttributeResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateAttributeResponse.java index 8538c102193..97358ced298 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateAttributeResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateAttributeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateCatalogPrivateEndpointResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateCatalogPrivateEndpointResponse.java index 502586b0650..d04e4c72ebd 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateCatalogPrivateEndpointResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateCatalogPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateCatalogResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateCatalogResponse.java index 4d1019b76ab..8fb3127a55b 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateCatalogResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateCatalogResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateConnectionResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateConnectionResponse.java index da3f1887cb6..7e3cd597afd 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateConnectionResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateCustomPropertyResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateCustomPropertyResponse.java index fa97333b199..c4119792581 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateCustomPropertyResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateCustomPropertyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateDataAssetResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateDataAssetResponse.java index 5d61220d08f..7ecfc24ccd7 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateDataAssetResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateDataAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateEntityResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateEntityResponse.java index 82c4117caa0..4d8030b2102 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateEntityResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateEntityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateFolderResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateFolderResponse.java index 904994a6beb..e76c3100b60 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateFolderResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateFolderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateGlossaryResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateGlossaryResponse.java index 827e29ac186..23f7164f2ab 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateGlossaryResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateGlossaryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateJobDefinitionResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateJobDefinitionResponse.java index ec6754074f9..9d8e0d674d7 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateJobDefinitionResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateJobDefinitionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateJobResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateJobResponse.java index 03883421b22..b3088f17294 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateJobResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateMetastoreResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateMetastoreResponse.java index 75e4109188b..00251f94e16 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateMetastoreResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateMetastoreResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateNamespaceResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateNamespaceResponse.java index df33c480ae9..f9772d9f818 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateNamespaceResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateNamespaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdatePatternResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdatePatternResponse.java index cc2503be4ca..1198379ba70 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdatePatternResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdatePatternResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateTermRelationshipResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateTermRelationshipResponse.java index e4c9bfd0abb..b040cdd8723 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateTermRelationshipResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateTermRelationshipResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateTermResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateTermResponse.java index 5a340df25c9..ca5c997af3a 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateTermResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UpdateTermResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UploadCredentialsResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UploadCredentialsResponse.java index 3034019b8e8..84335dfc236 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UploadCredentialsResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UploadCredentialsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UsersResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UsersResponse.java index 0aba4ea6d30..81affce6b15 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UsersResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/UsersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ValidateConnectionResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ValidateConnectionResponse.java index 8831bdad743..5e1703f7c1d 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ValidateConnectionResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ValidateConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ValidatePatternResponse.java b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ValidatePatternResponse.java index a057e2b8594..813b3bb5606 100644 --- a/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ValidatePatternResponse.java +++ b/bmc-datacatalog/src/main/java/com/oracle/bmc/datacatalog/responses/ValidatePatternResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datacatalog.responses; diff --git a/bmc-datacatalog/src/main/resources/com/oracle/bmc/datacatalog/client.properties b/bmc-datacatalog/src/main/resources/com/oracle/bmc/datacatalog/client.properties index ddafe279f79..02d51ecf95c 100644 --- a/bmc-datacatalog/src/main/resources/com/oracle/bmc/datacatalog/client.properties +++ b/bmc-datacatalog/src/main/resources/com/oracle/bmc/datacatalog/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-dataflow/pom.xml b/bmc-dataflow/pom.xml index a9b9bde57fa..4d04756485f 100644 --- a/bmc-dataflow/pom.xml +++ b/bmc-dataflow/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-dataflow @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlow.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlow.java index fa41570623d..bc32558874e 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlow.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlow.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlowAsync.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlowAsync.java index 79b02ed8633..fb8aaad311b 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlowAsync.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlowAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlowAsyncClient.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlowAsyncClient.java index 41c6660755f..dd5c34aa4d2 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlowAsyncClient.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlowAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlowClient.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlowClient.java index 8fc168d5783..e4e97d139d0 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlowClient.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlowClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlowPaginators.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlowPaginators.java index 8b28434bcf3..d2dfb1b673a 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlowPaginators.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlowPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlowWaiters.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlowWaiters.java index 81d2e16d6f8..58f0fa37b5d 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlowWaiters.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/DataFlowWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/Application.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/Application.java index b419c6823b8..016e3a50ba1 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/Application.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/Application.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationLanguage.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationLanguage.java index 49552b29beb..2c66986447e 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationLanguage.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationLanguage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationLifecycleState.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationLifecycleState.java index 941013732a1..b0736a89617 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationLifecycleState.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationLogConfig.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationLogConfig.java index 49b17d9bf23..8df354443b8 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationLogConfig.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationLogConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationParameter.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationParameter.java index fa7ca48d5ee..b493b794a83 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationParameter.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationParameter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationSummary.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationSummary.java index af4a072284d..4e8d05a36c5 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationSummary.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationType.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationType.java index 0e2af854b89..b83026e9e64 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationType.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ApplicationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ChangeApplicationCompartmentDetails.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ChangeApplicationCompartmentDetails.java index 66dd1f270c2..e723adf2f38 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ChangeApplicationCompartmentDetails.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ChangeApplicationCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ChangePoolCompartmentDetails.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ChangePoolCompartmentDetails.java index 794996547f8..1d795d3400a 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ChangePoolCompartmentDetails.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ChangePoolCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ChangePrivateEndpointCompartmentDetails.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ChangePrivateEndpointCompartmentDetails.java index 925033d4455..7a246403270 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ChangePrivateEndpointCompartmentDetails.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ChangePrivateEndpointCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ChangeRunCompartmentDetails.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ChangeRunCompartmentDetails.java index 17b2253f307..62147d8b221 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ChangeRunCompartmentDetails.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ChangeRunCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ChangeSqlEndpointCompartmentDetails.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ChangeSqlEndpointCompartmentDetails.java index 87249e8ca5d..5725076fa80 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ChangeSqlEndpointCompartmentDetails.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ChangeSqlEndpointCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreateApplicationDetails.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreateApplicationDetails.java index c640d0297e4..69bf9abe4e8 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreateApplicationDetails.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreateApplicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreatePoolDetails.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreatePoolDetails.java index 55e58c06c7c..2205cef797c 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreatePoolDetails.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreatePoolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreatePrivateEndpointDetails.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreatePrivateEndpointDetails.java index 00d77d91ac8..84635897311 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreatePrivateEndpointDetails.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreatePrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreateRunDetails.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreateRunDetails.java index 1ff7ef836fd..ccea834cf40 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreateRunDetails.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreateRunDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreateSqlEndpointDetails.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreateSqlEndpointDetails.java index 23c3847e024..3b028f64b95 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreateSqlEndpointDetails.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreateSqlEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreateStatementDetails.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreateStatementDetails.java index 3dfa1fc5455..f9c7259006e 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreateStatementDetails.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/CreateStatementDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/DayOfWeek.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/DayOfWeek.java index 7ff227e0d86..89883d8ace7 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/DayOfWeek.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/DayOfWeek.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ImagePngStatementOutputData.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ImagePngStatementOutputData.java index a0d69154a4e..9bec9ebd351 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ImagePngStatementOutputData.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ImagePngStatementOutputData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/IpNotationType.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/IpNotationType.java index d82b6463633..a806932ec5e 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/IpNotationType.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/IpNotationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/NetworkType.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/NetworkType.java index b06c8c2fbb1..6ad3f0b472f 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/NetworkType.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/NetworkType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/NodeCount.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/NodeCount.java index 3a437decddb..24db0970559 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/NodeCount.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/NodeCount.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/Pool.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/Pool.java index a423985cc3c..65879043322 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/Pool.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/Pool.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolCollection.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolCollection.java index 6d71ffd3929..311389b3729 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolCollection.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolConfig.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolConfig.java index a13e093a40d..e45df0821a0 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolConfig.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolLifecycleState.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolLifecycleState.java index af83cf26f85..228c9360c4e 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolLifecycleState.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolMetrics.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolMetrics.java index af2293fb39d..f03f2d4737e 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolMetrics.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolSchedule.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolSchedule.java index 4697e32bfc8..36447d4dfbe 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolSchedule.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolSchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolSummary.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolSummary.java index a613c09b0a5..12d00b51aac 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolSummary.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PoolSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PrivateEndpoint.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PrivateEndpoint.java index 77a232195a4..ca462be2321 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PrivateEndpoint.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PrivateEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PrivateEndpointCollection.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PrivateEndpointCollection.java index 6a75ae77fc1..69a9f0da24c 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PrivateEndpointCollection.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PrivateEndpointCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PrivateEndpointLifecycleState.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PrivateEndpointLifecycleState.java index 2aab2d7f5e8..f0182bc8e2c 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PrivateEndpointLifecycleState.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PrivateEndpointLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PrivateEndpointSummary.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PrivateEndpointSummary.java index b085e69d22d..e5cc7c6df2a 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PrivateEndpointSummary.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/PrivateEndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/Run.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/Run.java index 2e55d735dd9..b6a004bf683 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/Run.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/Run.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/RunLifecycleState.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/RunLifecycleState.java index d284f7b5871..d25ee43d958 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/RunLifecycleState.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/RunLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/RunLogSummary.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/RunLogSummary.java index ae334eb21bf..22f95c16d50 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/RunLogSummary.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/RunLogSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/RunSummary.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/RunSummary.java index 8a4bf9e2003..85abcc7b422 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/RunSummary.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/RunSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/Scan.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/Scan.java index d83366569f8..c6f988b5e75 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/Scan.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/Scan.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SecureAccessControlRule.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SecureAccessControlRule.java index f0725531fbe..4dd761734d4 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SecureAccessControlRule.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SecureAccessControlRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ShapeConfig.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ShapeConfig.java index 7923212ed62..c2d2f2672a9 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ShapeConfig.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/ShapeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpoint.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpoint.java index c2ba8f77bd6..764b6631327 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpoint.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointCollection.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointCollection.java index fb9c13bf64d..dd3ae70e179 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointCollection.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointLifecycleState.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointLifecycleState.java index 68695740237..91a208a351f 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointLifecycleState.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointNetworkConfiguration.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointNetworkConfiguration.java index 4c340915176..ac1ad23c1c6 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointNetworkConfiguration.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointNetworkConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointSecureAccessConfig.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointSecureAccessConfig.java index ee94887c04e..555274d0725 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointSecureAccessConfig.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointSecureAccessConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointSummary.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointSummary.java index f4cb8d75f79..31389290e57 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointSummary.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointVcnConfig.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointVcnConfig.java index 30680926c34..99101d0f38c 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointVcnConfig.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/SqlEndpointVcnConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/Statement.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/Statement.java index ccc1fd5d9da..cbb5cd04a4e 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/Statement.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/Statement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/StatementCollection.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/StatementCollection.java index 7828f83822e..fdf3dad99e5 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/StatementCollection.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/StatementCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/StatementLifecycleState.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/StatementLifecycleState.java index 23d5fcffce1..58bcadf0baf 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/StatementLifecycleState.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/StatementLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/StatementOutput.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/StatementOutput.java index 54e77c22597..bdc0de44ef9 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/StatementOutput.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/StatementOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/StatementOutputData.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/StatementOutputData.java index 57b6cede22a..0d5b62d2c2d 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/StatementOutputData.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/StatementOutputData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/StatementSummary.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/StatementSummary.java index e8d1f368a6a..7d50d854a15 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/StatementSummary.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/StatementSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/TextHtmlStatementOutputData.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/TextHtmlStatementOutputData.java index 8e912b7efe1..65b002801e3 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/TextHtmlStatementOutputData.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/TextHtmlStatementOutputData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/TextPlainStatementOutputData.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/TextPlainStatementOutputData.java index 489cd36b2c5..daaff7c1dbb 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/TextPlainStatementOutputData.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/TextPlainStatementOutputData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/UpdateApplicationDetails.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/UpdateApplicationDetails.java index 50cdce47959..ea2fcfda09d 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/UpdateApplicationDetails.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/UpdateApplicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/UpdatePoolDetails.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/UpdatePoolDetails.java index 432aaa83749..ee5a5624d0b 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/UpdatePoolDetails.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/UpdatePoolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/UpdatePrivateEndpointDetails.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/UpdatePrivateEndpointDetails.java index 7a2601968dd..abece079f3a 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/UpdatePrivateEndpointDetails.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/UpdatePrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/UpdateRunDetails.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/UpdateRunDetails.java index 6aa3d751a31..916068ed8cd 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/UpdateRunDetails.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/UpdateRunDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/UpdateSqlEndpointDetails.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/UpdateSqlEndpointDetails.java index 7a03b18a85d..26f50877fdb 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/UpdateSqlEndpointDetails.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/UpdateSqlEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequest.java index 03b0a2f6930..761736338cc 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestCollection.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestCollection.java index 67ae696d5e0..80a87b58892 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestCollection.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestError.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestError.java index fc92e096c76..efe59dde30f 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestError.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestErrorCollection.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestErrorCollection.java index 1ebb16cdf54..b8bfa70d8c0 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestErrorCollection.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestLog.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestLog.java index b6165207a67..0aeae306aec 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestLog.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestLog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestLogCollection.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestLogCollection.java index 6b67e99100f..1179c3d7b57 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestLogCollection.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestLogCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestOperation.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestOperation.java index 8316caff462..8a44092e973 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestOperation.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestOperation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestResource.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestResource.java index 1bbdb5a46d2..ba34aa95fe0 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestResource.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestStatus.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestStatus.java index d9f0a6539fb..5e34464a15d 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestStatus.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestSummary.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestSummary.java index f875b2f864c..f917d4f03a6 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestSummary.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.model; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CascadingDeleteApplicationRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CascadingDeleteApplicationRequest.java index bad473a448c..a9d9906affc 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CascadingDeleteApplicationRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CascadingDeleteApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ChangeApplicationCompartmentRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ChangeApplicationCompartmentRequest.java index e12308d6be1..8874177ef3e 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ChangeApplicationCompartmentRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ChangeApplicationCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ChangePoolCompartmentRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ChangePoolCompartmentRequest.java index 53bcc4cb738..d6ef0961969 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ChangePoolCompartmentRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ChangePoolCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ChangePrivateEndpointCompartmentRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ChangePrivateEndpointCompartmentRequest.java index 0c7f367118a..328ac4a7294 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ChangePrivateEndpointCompartmentRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ChangePrivateEndpointCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ChangeRunCompartmentRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ChangeRunCompartmentRequest.java index acbafdcaf4b..10260d74e6c 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ChangeRunCompartmentRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ChangeRunCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ChangeSqlEndpointCompartmentRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ChangeSqlEndpointCompartmentRequest.java index e6087ff053a..ecdabaac364 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ChangeSqlEndpointCompartmentRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ChangeSqlEndpointCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreateApplicationRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreateApplicationRequest.java index 107682b8671..d847d92dcc9 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreateApplicationRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreateApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreatePoolRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreatePoolRequest.java index 95f6c94616a..8e51aef95f1 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreatePoolRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreatePoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreatePrivateEndpointRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreatePrivateEndpointRequest.java index 23df9280c98..53a5a497a3a 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreatePrivateEndpointRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreatePrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreateRunRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreateRunRequest.java index 3bffa1e7342..fc8d10573ee 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreateRunRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreateRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreateSqlEndpointRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreateSqlEndpointRequest.java index 1166fea3013..eb38fa5b48c 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreateSqlEndpointRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreateSqlEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreateStatementRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreateStatementRequest.java index 5b47f40772b..1670a48ba4d 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreateStatementRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/CreateStatementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeleteApplicationRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeleteApplicationRequest.java index 83108e27443..cef4d7e5448 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeleteApplicationRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeleteApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeletePoolRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeletePoolRequest.java index 2f05c758769..251f2d0accb 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeletePoolRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeletePoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeletePrivateEndpointRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeletePrivateEndpointRequest.java index 533be3d0894..825c6d12e0c 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeletePrivateEndpointRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeletePrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeleteRunRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeleteRunRequest.java index 8483f5d6793..6b0efd9a647 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeleteRunRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeleteRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeleteSqlEndpointRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeleteSqlEndpointRequest.java index a6e36bd5f9b..9e7dff5dfb3 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeleteSqlEndpointRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeleteSqlEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeleteStatementRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeleteStatementRequest.java index 9d24f286bf0..1b02309d928 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeleteStatementRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/DeleteStatementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetApplicationRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetApplicationRequest.java index ab8e5ce02b0..50963532ef0 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetApplicationRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetPoolRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetPoolRequest.java index d5a04ff9069..2f5479d1aa1 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetPoolRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetPrivateEndpointRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetPrivateEndpointRequest.java index 5425abb206c..f4196b92d91 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetPrivateEndpointRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetRunLogRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetRunLogRequest.java index f535786b84d..290203eeeae 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetRunLogRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetRunLogRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetRunRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetRunRequest.java index 709dc03db38..33992071349 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetRunRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetSqlEndpointRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetSqlEndpointRequest.java index 1ae0b3e6b39..aea3d39d1cf 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetSqlEndpointRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetSqlEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetStatementRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetStatementRequest.java index dbbb6cf733d..d2286ba50ed 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetStatementRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetStatementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetWorkRequestRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetWorkRequestRequest.java index 0d74234b411..fe44c89bdee 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetWorkRequestRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListApplicationsRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListApplicationsRequest.java index e8bfb212c3d..81403a3abea 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListApplicationsRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListApplicationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListPoolsRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListPoolsRequest.java index afb36a8624f..2cc4fef30e8 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListPoolsRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListPoolsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListPrivateEndpointsRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListPrivateEndpointsRequest.java index 43bafcc727c..c5ff2546a70 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListPrivateEndpointsRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListPrivateEndpointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListRunLogsRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListRunLogsRequest.java index fce1c03f866..d637ef17f40 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListRunLogsRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListRunLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListRunsRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListRunsRequest.java index 7f04ae0efbe..8ad16aec162 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListRunsRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListRunsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListSqlEndpointsRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListSqlEndpointsRequest.java index 9de30f84d08..1d90e7a61fa 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListSqlEndpointsRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListSqlEndpointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListStatementsRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListStatementsRequest.java index d6afb69be92..41e3ad8926d 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListStatementsRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListStatementsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListWorkRequestErrorsRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListWorkRequestErrorsRequest.java index 36b22d7602b..ba9223ed33f 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListWorkRequestLogsRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListWorkRequestLogsRequest.java index ca5991b79cc..0402b781399 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListWorkRequestLogsRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListWorkRequestsRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListWorkRequestsRequest.java index 766f2d5c074..940cb7a9d18 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListWorkRequestsRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/StartPoolRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/StartPoolRequest.java index a3d8bf78cd2..cf0af1c69be 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/StartPoolRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/StartPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/StartSqlEndpointRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/StartSqlEndpointRequest.java index 2888253ddb2..b93c8c9b62b 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/StartSqlEndpointRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/StartSqlEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/StopPoolRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/StopPoolRequest.java index 6cbdd323b1f..19969af0297 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/StopPoolRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/StopPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/StopSqlEndpointRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/StopSqlEndpointRequest.java index bb5e9384c4c..1524ae12709 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/StopSqlEndpointRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/StopSqlEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/UpdateApplicationRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/UpdateApplicationRequest.java index fdcb0873e4e..2b924eb19ab 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/UpdateApplicationRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/UpdateApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/UpdatePoolRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/UpdatePoolRequest.java index 86bfcd98eb6..fe2fffa4e7f 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/UpdatePoolRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/UpdatePoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/UpdatePrivateEndpointRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/UpdatePrivateEndpointRequest.java index f096fb1fce1..806bd9f40ab 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/UpdatePrivateEndpointRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/UpdatePrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/UpdateRunRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/UpdateRunRequest.java index 7344e7ab7c2..383fe9bfc45 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/UpdateRunRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/UpdateRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/UpdateSqlEndpointRequest.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/UpdateSqlEndpointRequest.java index 244d795a787..bcda72a74c1 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/UpdateSqlEndpointRequest.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/requests/UpdateSqlEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.requests; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CascadingDeleteApplicationResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CascadingDeleteApplicationResponse.java index 4889050a5e8..23c3892f478 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CascadingDeleteApplicationResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CascadingDeleteApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ChangeApplicationCompartmentResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ChangeApplicationCompartmentResponse.java index 85ca277c461..0635a031983 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ChangeApplicationCompartmentResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ChangeApplicationCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ChangePoolCompartmentResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ChangePoolCompartmentResponse.java index e8913b65686..3d407a3054d 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ChangePoolCompartmentResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ChangePoolCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ChangePrivateEndpointCompartmentResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ChangePrivateEndpointCompartmentResponse.java index a000b97fd70..930640354a9 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ChangePrivateEndpointCompartmentResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ChangePrivateEndpointCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ChangeRunCompartmentResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ChangeRunCompartmentResponse.java index 237a7a2ceed..eca50857d89 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ChangeRunCompartmentResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ChangeRunCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ChangeSqlEndpointCompartmentResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ChangeSqlEndpointCompartmentResponse.java index 81276408d7b..7a8ebcb8c61 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ChangeSqlEndpointCompartmentResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ChangeSqlEndpointCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreateApplicationResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreateApplicationResponse.java index 4907cb49a02..55797e6e5b5 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreateApplicationResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreateApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreatePoolResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreatePoolResponse.java index e29ece75f03..c30252bae8d 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreatePoolResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreatePoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreatePrivateEndpointResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreatePrivateEndpointResponse.java index e700a78e020..c94a54c38ac 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreatePrivateEndpointResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreatePrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreateRunResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreateRunResponse.java index ad3c846d190..6f57f757d09 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreateRunResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreateRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreateSqlEndpointResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreateSqlEndpointResponse.java index 8e8b54f318a..3fddda07e02 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreateSqlEndpointResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreateSqlEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreateStatementResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreateStatementResponse.java index 4790e6d4884..46c6b21874d 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreateStatementResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/CreateStatementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeleteApplicationResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeleteApplicationResponse.java index 1c413eac8d3..eb6bb5990d9 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeleteApplicationResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeleteApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeletePoolResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeletePoolResponse.java index 56acaa5fe2a..9102b989561 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeletePoolResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeletePoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeletePrivateEndpointResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeletePrivateEndpointResponse.java index 9c3f2b74822..289d406cca0 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeletePrivateEndpointResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeletePrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeleteRunResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeleteRunResponse.java index d7b9b6519ca..49a0dffa308 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeleteRunResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeleteRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeleteSqlEndpointResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeleteSqlEndpointResponse.java index bc1a6ec198f..94919102375 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeleteSqlEndpointResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeleteSqlEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeleteStatementResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeleteStatementResponse.java index 20a5a4ba907..a9d3499c9c3 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeleteStatementResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/DeleteStatementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetApplicationResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetApplicationResponse.java index 37159609226..4658ad0ff5b 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetApplicationResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetPoolResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetPoolResponse.java index 836952d10d8..c72ac9bdcf2 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetPoolResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetPrivateEndpointResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetPrivateEndpointResponse.java index 667c1aa83a9..c4a884cb3b9 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetPrivateEndpointResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetRunLogResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetRunLogResponse.java index 265695a3d1a..2ecb35f08c4 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetRunLogResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetRunLogResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetRunResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetRunResponse.java index d543901c8e1..db5fd26b360 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetRunResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetSqlEndpointResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetSqlEndpointResponse.java index e0a6c923ab5..fd5705c0898 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetSqlEndpointResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetSqlEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetStatementResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetStatementResponse.java index 9b01b0117d6..04d713ac56a 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetStatementResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetStatementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetWorkRequestResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetWorkRequestResponse.java index bcabf02f785..6587b9d2703 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetWorkRequestResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListApplicationsResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListApplicationsResponse.java index 2355f9802fc..816ae63a99d 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListApplicationsResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListApplicationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListPoolsResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListPoolsResponse.java index dd74cfe83aa..2816eac15fb 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListPoolsResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListPoolsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListPrivateEndpointsResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListPrivateEndpointsResponse.java index b1840a2e24b..6c91ff613b4 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListPrivateEndpointsResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListPrivateEndpointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListRunLogsResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListRunLogsResponse.java index aa3b20ebc9d..43bfe0db0d8 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListRunLogsResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListRunLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListRunsResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListRunsResponse.java index f790fae016a..66cac9205fd 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListRunsResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListRunsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListSqlEndpointsResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListSqlEndpointsResponse.java index 140c51a1334..de6a4b599d3 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListSqlEndpointsResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListSqlEndpointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListStatementsResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListStatementsResponse.java index 261a8f50989..72f80d05576 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListStatementsResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListStatementsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListWorkRequestErrorsResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListWorkRequestErrorsResponse.java index 449b99b94f4..a09718e02df 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListWorkRequestLogsResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListWorkRequestLogsResponse.java index 8fd28ea1596..30227273fc1 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListWorkRequestLogsResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListWorkRequestsResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListWorkRequestsResponse.java index a647d479129..fe611644e1d 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListWorkRequestsResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/StartPoolResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/StartPoolResponse.java index dd18e2c2142..7910cdefb7a 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/StartPoolResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/StartPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/StartSqlEndpointResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/StartSqlEndpointResponse.java index 662e0bad4ab..0a72824d427 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/StartSqlEndpointResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/StartSqlEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/StopPoolResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/StopPoolResponse.java index fbba3cf86f3..de78e7474ac 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/StopPoolResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/StopPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/StopSqlEndpointResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/StopSqlEndpointResponse.java index 67c379501af..815265577db 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/StopSqlEndpointResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/StopSqlEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/UpdateApplicationResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/UpdateApplicationResponse.java index d27c1ef4ec7..a24c9cb2422 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/UpdateApplicationResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/UpdateApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/UpdatePoolResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/UpdatePoolResponse.java index 5fbd2b13418..59e159a186e 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/UpdatePoolResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/UpdatePoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/UpdatePrivateEndpointResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/UpdatePrivateEndpointResponse.java index f31d32ee407..0fc50c94517 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/UpdatePrivateEndpointResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/UpdatePrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/UpdateRunResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/UpdateRunResponse.java index adb94a8c2e1..e5995dd180f 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/UpdateRunResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/UpdateRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/UpdateSqlEndpointResponse.java b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/UpdateSqlEndpointResponse.java index 403dcc8ca9b..b5019d4adde 100644 --- a/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/UpdateSqlEndpointResponse.java +++ b/bmc-dataflow/src/main/java/com/oracle/bmc/dataflow/responses/UpdateSqlEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataflow.responses; diff --git a/bmc-dataflow/src/main/resources/com/oracle/bmc/dataflow/client.properties b/bmc-dataflow/src/main/resources/com/oracle/bmc/dataflow/client.properties index 367f7d8f104..db3ae8542d3 100644 --- a/bmc-dataflow/src/main/resources/com/oracle/bmc/dataflow/client.properties +++ b/bmc-dataflow/src/main/resources/com/oracle/bmc/dataflow/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-dataintegration/pom.xml b/bmc-dataintegration/pom.xml index b705dd149ee..cf836db6d36 100644 --- a/bmc-dataintegration/pom.xml +++ b/bmc-dataintegration/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-dataintegration @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegration.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegration.java index 8a6c48f9c95..91374572472 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegration.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegrationAsync.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegrationAsync.java index 4f5e067c3e7..8c452e08dcf 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegrationAsync.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegrationAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegrationAsyncClient.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegrationAsyncClient.java index 6c9665fa39f..62d463aaf24 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegrationAsyncClient.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegrationAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegrationClient.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegrationClient.java index 22ca4e9b44a..747964c1069 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegrationClient.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegrationClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegrationPaginators.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegrationPaginators.java index a9aa894c714..92f56ae3b56 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegrationPaginators.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegrationPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegrationWaiters.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegrationWaiters.java index 978c3a0bf2d..22913e11bc7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegrationWaiters.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/DataIntegrationWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractCallAttribute.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractCallAttribute.java index 4634ede33e8..4959696d437 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractCallAttribute.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractCallAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractDataOperationConfig.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractDataOperationConfig.java index 512d3fb134d..9504f11c7fb 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractDataOperationConfig.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractDataOperationConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractField.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractField.java index 8971eac0585..c5a9b2b352b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractField.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractFormatAttribute.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractFormatAttribute.java index eee7dc5bccf..e0fc0f19178 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractFormatAttribute.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractFormatAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractFormattedText.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractFormattedText.java index d136a4c6734..c123ec15041 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractFormattedText.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractFormattedText.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractFrequencyDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractFrequencyDetails.java index 617e2c2d979..6e79a44ad15 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractFrequencyDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractFrequencyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractReadAttribute.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractReadAttribute.java index e05ebd689ef..204e5659c64 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractReadAttribute.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractReadAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractWriteAttribute.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractWriteAttribute.java index 6dc8918b5e8..04322eecf4a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractWriteAttribute.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AbstractWriteAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Aggregator.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Aggregator.java index e007af9b6a5..9e751c2ad1d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Aggregator.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Aggregator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AggregatorSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AggregatorSummary.java index 3ff7a35d228..4e69f3102bc 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AggregatorSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AggregatorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Application.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Application.java index d230458d896..1b0fcd6d5ef 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Application.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Application.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ApplicationDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ApplicationDetails.java index 3a0cfe09d0c..8a5c16b7cc4 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ApplicationDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ApplicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ApplicationSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ApplicationSummary.java index 9b921491e45..7d2611fd775 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ApplicationSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ApplicationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ApplicationSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ApplicationSummaryCollection.java index f35429338fd..40dcb5229e8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ApplicationSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ApplicationSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ArrayType.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ArrayType.java index 89c3e192a6d..c763a7f15e5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ArrayType.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ArrayType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AuthConfig.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AuthConfig.java index 2e57979af62..b05d4f89694 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AuthConfig.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AuthConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AuthDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AuthDetails.java index 4fb1b5984bc..d22d9fe7ff5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AuthDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AuthDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AvroFormatAttribute.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AvroFormatAttribute.java index ac2f774b1b1..a7be076696c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AvroFormatAttribute.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/AvroFormatAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/BaseType.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/BaseType.java index 3d82110f7f1..19f8eb58f43 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/BaseType.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/BaseType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/BiccReadAttributes.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/BiccReadAttributes.java index 13db5908d83..a911cef1e5f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/BiccReadAttributes.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/BiccReadAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/BipCallAttribute.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/BipCallAttribute.java index d6c631955d8..e6920d650e4 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/BipCallAttribute.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/BipCallAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/BipReadAttributes.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/BipReadAttributes.java index b81b5528b49..a47d71b4d97 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/BipReadAttributes.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/BipReadAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/BipReportParameterValue.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/BipReportParameterValue.java index ea31397c428..b180a8af67d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/BipReportParameterValue.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/BipReportParameterValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CancelRestCallConfig.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CancelRestCallConfig.java index a52829a59f5..02beb68f8b2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CancelRestCallConfig.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CancelRestCallConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ChangeCompartmentDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ChangeCompartmentDetails.java index f518622cc2d..13c43518478 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ChangeCompartmentDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ChangeCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ChangeDisApplicationCompartmentDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ChangeDisApplicationCompartmentDetails.java index 68159deacbd..fe2d9ec34f3 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ChangeDisApplicationCompartmentDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ChangeDisApplicationCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ChildReference.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ChildReference.java index 9552b9c2eae..97720051eff 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ChildReference.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ChildReference.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ChildReferenceDetail.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ChildReferenceDetail.java index a32682db1c0..fdd0f9aecf0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ChildReferenceDetail.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ChildReferenceDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CompositeFieldMap.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CompositeFieldMap.java index 600ffdfe058..f88e1fbe2c4 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CompositeFieldMap.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CompositeFieldMap.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CompositeState.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CompositeState.java index 42a6c17b203..e842ba65d71 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CompositeState.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CompositeState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CompositeType.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CompositeType.java index f83dd127116..70d78643ddf 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CompositeType.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CompositeType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Compression.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Compression.java index f9dc20ce193..91fde775cfb 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Compression.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Compression.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConditionalCompositeFieldMap.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConditionalCompositeFieldMap.java index 7a75236739e..7f6c1bf1c86 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConditionalCompositeFieldMap.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConditionalCompositeFieldMap.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConditionalInputLink.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConditionalInputLink.java index 11a2724f2cc..413b2ac81df 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConditionalInputLink.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConditionalInputLink.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConditionalOutputPort.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConditionalOutputPort.java index 7d814ec322e..54632160452 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConditionalOutputPort.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConditionalOutputPort.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigDefinition.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigDefinition.java index 000c81e7707..362dfd11e3a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigDefinition.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigParameterDefinition.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigParameterDefinition.java index 4f8cce7bd1f..c3617cbfc5e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigParameterDefinition.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigParameterDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigParameterValue.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigParameterValue.java index 7ebedc66131..83ce07bcc4e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigParameterValue.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigParameterValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigProvider.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigProvider.java index 8fc4dc06ab7..fa0521f2cff 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigProvider.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigValues.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigValues.java index 4812a283f91..ad7715752d8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigValues.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigValues.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigurationDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigurationDetails.java index e2562f02c78..2c6582cf39a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigurationDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfiguredType.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfiguredType.java index fea475d1a14..e9af63465b8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfiguredType.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConfiguredType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Connection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Connection.java index 992880687f0..2f86ec1031d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Connection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Connection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionDetails.java index 19256851d5b..76f2188611c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAdwc.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAdwc.java index a782bc4aa3e..c63c8007588 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAdwc.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAdwc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAdwcDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAdwcDetails.java index 306f2f72a26..f47372e5430 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAdwcDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAdwcDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAmazonS3.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAmazonS3.java index 14b5f4bbc2b..14b22941b6a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAmazonS3.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAmazonS3.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAmazonS3Details.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAmazonS3Details.java index 3c0b6d2e1d9..63f4a7b6e48 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAmazonS3Details.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAmazonS3Details.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAtp.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAtp.java index 37d578b2077..e4a2d99fe57 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAtp.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAtp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAtpDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAtpDetails.java index bc8ae541425..91b12867a15 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAtpDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromAtpDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromBICC.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromBICC.java index 77574907fcc..9d8a8b8e2b6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromBICC.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromBICC.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromBICCDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromBICCDetails.java index a002a9ad3cb..259af769f99 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromBICCDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromBICCDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromBIP.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromBIP.java index 1649d7aeb29..49648ad1651 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromBIP.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromBIP.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromBipDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromBipDetails.java index 63acff9484e..55ad186dc49 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromBipDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromBipDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromHdfs.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromHdfs.java index 333ab3866d9..f3ac7f4ecf5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromHdfs.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromHdfs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromHdfsDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromHdfsDetails.java index d1979e305d0..c216244e0d0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromHdfsDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromHdfsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromJdbc.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromJdbc.java index db154ae355f..dfd897ab16e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromJdbc.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromJdbc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromJdbcDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromJdbcDetails.java index 0a3c95725e4..bcaf4c2b9c1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromJdbcDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromJdbcDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromLake.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromLake.java index 9a433194631..2599fd60baa 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromLake.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromLake.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromLakeDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromLakeDetails.java index 76d3541f393..8aa45ba9b9c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromLakeDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromLakeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromMySQL.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromMySQL.java index a2c442193f6..2b3ad2d50e8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromMySQL.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromMySQL.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromMySQLDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromMySQLDetails.java index 470f96b49d5..dfd2159602c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromMySQLDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromMySQLDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromMySqlHeatWave.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromMySqlHeatWave.java index af329f7b883..b9afd53b987 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromMySqlHeatWave.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromMySqlHeatWave.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromMySqlHeatWaveDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromMySqlHeatWaveDetails.java index 8bdccca294e..c8e1a954b4b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromMySqlHeatWaveDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromMySqlHeatWaveDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOAuth2.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOAuth2.java index 82ad0dc02b4..ef3a55001d8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOAuth2.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOAuth2.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOAuth2Details.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOAuth2Details.java index 94f3531899f..3529c2b033c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOAuth2Details.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOAuth2Details.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromObjectStorage.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromObjectStorage.java index ef0c0836b76..aae494226b6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromObjectStorage.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromObjectStorage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromObjectStorageDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromObjectStorageDetails.java index 8884d5a8786..cb6b8ebfba1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromObjectStorageDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromObjectStorageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracle.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracle.java index c2d8a304895..81e0a0d194f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracle.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracleDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracleDetails.java index 8f3a5aa5dc7..de28289cc22 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracleDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracleEbs.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracleEbs.java index 6ea6cf07e77..6e6026020f2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracleEbs.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracleEbs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracleEbsDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracleEbsDetails.java index 9809b5845da..31368cb5f1e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracleEbsDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracleEbsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOraclePeopleSoft.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOraclePeopleSoft.java index 15d9064d107..37bf29f2dee 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOraclePeopleSoft.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOraclePeopleSoft.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOraclePeopleSoftDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOraclePeopleSoftDetails.java index 8770c9aee25..0064479eac9 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOraclePeopleSoftDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOraclePeopleSoftDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracleSiebel.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracleSiebel.java index 7638a47d681..3949cb82e0f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracleSiebel.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracleSiebel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracleSiebelDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracleSiebelDetails.java index e04036c6eae..6fadce62af6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracleSiebelDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromOracleSiebelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromRestBasicAuth.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromRestBasicAuth.java index c6ac09d2cd3..533b3f5d9a7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromRestBasicAuth.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromRestBasicAuth.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromRestBasicAuthDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromRestBasicAuthDetails.java index 39b8634742f..a2e528d0d62 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromRestBasicAuthDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromRestBasicAuthDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromRestNoAuth.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromRestNoAuth.java index 7b3b7dce8e7..f9ea473a7af 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromRestNoAuth.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromRestNoAuth.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromRestNoAuthDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromRestNoAuthDetails.java index 9a82d798ef2..b1986bc1ae5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromRestNoAuthDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionFromRestNoAuthDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionProperty.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionProperty.java index 4b68ecc52a9..8fe8c2a86c1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionProperty.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionProperty.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummary.java index 716b14650fb..a2235d1110e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryCollection.java index 3d3cd3bb21d..fde87a20ad7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromAdwc.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromAdwc.java index f8f2a251195..ab36ac8b561 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromAdwc.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromAdwc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromAmazonS3.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromAmazonS3.java index 2771e7e3f2d..eb562f44716 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromAmazonS3.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromAmazonS3.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromAtp.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromAtp.java index 13b78a3fa4b..f550ed93919 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromAtp.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromAtp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromBICC.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromBICC.java index b87e8ac4dfa..93d4b26dee9 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromBICC.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromBICC.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromBIP.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromBIP.java index a1bb5542205..34e5c8d4739 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromBIP.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromBIP.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromHdfs.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromHdfs.java index 5f7ed203aab..c09356b23d5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromHdfs.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromHdfs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromJdbc.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromJdbc.java index ba584b2fd7d..4adc923ac4a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromJdbc.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromJdbc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromLake.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromLake.java index f5d92e3f87d..cd0ca797b2b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromLake.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromLake.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromMySQL.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromMySQL.java index b0b0daf91f9..524520c41b1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromMySQL.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromMySQL.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromMySqlHeatWave.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromMySqlHeatWave.java index b2c5d464239..4878cd013a7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromMySqlHeatWave.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromMySqlHeatWave.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromOAuth2.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromOAuth2.java index 5cab047b4e8..1bc4f83c131 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromOAuth2.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromOAuth2.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromObjectStorage.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromObjectStorage.java index d561e80b51e..5fe0ca06b70 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromObjectStorage.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromObjectStorage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromOracle.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromOracle.java index 4a8b9e6d25d..5d2ad62cce4 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromOracle.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromOracle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromOracleEbs.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromOracleEbs.java index af91f65305b..ec5a1980e75 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromOracleEbs.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromOracleEbs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromOraclePeopleSoft.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromOraclePeopleSoft.java index 9fae0b5cde7..a55d697d73a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromOraclePeopleSoft.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromOraclePeopleSoft.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromOracleSiebel.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromOracleSiebel.java index 4c2f13c593f..1ca2cad27b2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromOracleSiebel.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromOracleSiebel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromRestBasicAuth.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromRestBasicAuth.java index 5054f7d20cf..5fc8e487034 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromRestBasicAuth.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromRestBasicAuth.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromRestNoAuth.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromRestNoAuth.java index f40f4f0bd95..9f5981acd68 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromRestNoAuth.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionSummaryFromRestNoAuth.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionValidation.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionValidation.java index 98274fb5913..69009c55a38 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionValidation.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionValidation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionValidationSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionValidationSummary.java index a54252acef8..5f39693d6bb 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionValidationSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionValidationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionValidationSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionValidationSummaryCollection.java index 421d88bffa1..0f4c2d7c3fe 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionValidationSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectionValidationSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectorAttribute.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectorAttribute.java index 91951acdb87..d3d4dcbe955 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectorAttribute.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ConnectorAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CopyConflictResolution.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CopyConflictResolution.java index 2a8d062e611..120ab235e14 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CopyConflictResolution.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CopyConflictResolution.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CopyObjectMetadataSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CopyObjectMetadataSummary.java index b809d79f59e..7ee076da4f1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CopyObjectMetadataSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CopyObjectMetadataSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CopyObjectRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CopyObjectRequest.java index 289d4a75b6a..be931e0e815 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CopyObjectRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CopyObjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CopyObjectRequestSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CopyObjectRequestSummary.java index 028353157ef..94578741c57 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CopyObjectRequestSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CopyObjectRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CopyObjectRequestSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CopyObjectRequestSummaryCollection.java index cd1089487ff..f10f617669d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CopyObjectRequestSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CopyObjectRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CountStatistic.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CountStatistic.java index 6d6346e5236..15d95b852b5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CountStatistic.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CountStatistic.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CountStatisticSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CountStatisticSummary.java index 5ecc2d2b01a..b25cce141a2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CountStatisticSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CountStatisticSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateApplicationDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateApplicationDetails.java index 9655a80e129..ae303df6696 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateApplicationDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateApplicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConfigProvider.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConfigProvider.java index fb4735086e5..c09b2b24e26 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConfigProvider.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConfigProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionDetails.java index a2022de2174..9b4c7c31e13 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromAdwc.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromAdwc.java index 83f7346b208..48902ab31f0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromAdwc.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromAdwc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromAmazonS3.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromAmazonS3.java index d5f76541255..a3d2890480f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromAmazonS3.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromAmazonS3.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromAtp.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromAtp.java index 9bdd83c5dcb..8d9ca1f5e9a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromAtp.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromAtp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromBICC.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromBICC.java index 5ff49ea2fc9..4fd5856a649 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromBICC.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromBICC.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromBIP.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromBIP.java index 56769f90b91..1de07917820 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromBIP.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromBIP.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromHdfs.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromHdfs.java index d25d803d591..963e296f7f8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromHdfs.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromHdfs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromJdbc.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromJdbc.java index 4126dc0b3cb..979a3ddcc89 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromJdbc.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromJdbc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromLake.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromLake.java index 3efbcafa224..61d12cf3a77 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromLake.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromLake.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromMySQL.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromMySQL.java index 5c44d0f4f89..7aae4978f86 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromMySQL.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromMySQL.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromMySqlHeatWave.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromMySqlHeatWave.java index 09992c7c155..97b6ee1d0d3 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromMySqlHeatWave.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromMySqlHeatWave.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromOAuth2.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromOAuth2.java index 2bb51e292a9..86bdf133341 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromOAuth2.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromOAuth2.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromObjectStorage.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromObjectStorage.java index b16b559ac52..e3d6ccf5419 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromObjectStorage.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromObjectStorage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromOracle.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromOracle.java index f09efb0cc22..9559af8c19b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromOracle.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromOracle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromOracleEbs.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromOracleEbs.java index 66e90e28cee..781c3bb79c2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromOracleEbs.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromOracleEbs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromOraclePeopleSoft.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromOraclePeopleSoft.java index 149400c5e6e..1f42826e371 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromOraclePeopleSoft.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromOraclePeopleSoft.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromOracleSiebel.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromOracleSiebel.java index edddb1e2333..ee642a8ea87 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromOracleSiebel.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromOracleSiebel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromRestBasicAuth.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromRestBasicAuth.java index c318c0555db..8cf266a52eb 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromRestBasicAuth.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromRestBasicAuth.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromRestNoAuth.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromRestNoAuth.java index fc8a250cec5..80e0e61606f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromRestNoAuth.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionFromRestNoAuth.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionValidationDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionValidationDetails.java index 300900eee49..6bf653543a1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionValidationDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateConnectionValidationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateCopyObjectRequestDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateCopyObjectRequestDetails.java index 6e826879f58..dab42a2bfc2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateCopyObjectRequestDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateCopyObjectRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetDetails.java index 3c3300faa1a..6b6943c3b36 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromAdwc.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromAdwc.java index 1529f362e3a..aa8092648a5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromAdwc.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromAdwc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromAmazonS3.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromAmazonS3.java index 5adeedbd17d..240da30aa60 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromAmazonS3.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromAmazonS3.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromAtp.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromAtp.java index 5a2a60c38be..33db2fb8ff9 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromAtp.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromAtp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromFusionApp.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromFusionApp.java index dab709888fa..fcdba78a3aa 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromFusionApp.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromFusionApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromHdfs.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromHdfs.java index 4b6755ff769..5e59ecb6a50 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromHdfs.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromHdfs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromJdbc.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromJdbc.java index 110faff900e..e90cff267c8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromJdbc.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromJdbc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromLake.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromLake.java index 771a09450c0..e65a7ec4918 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromLake.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromLake.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromMySQL.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromMySQL.java index 56c58ec7c3f..7946770c0b3 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromMySQL.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromMySQL.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromMySqlHeatWave.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromMySqlHeatWave.java index 8b64497ffcb..496e976f5f0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromMySqlHeatWave.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromMySqlHeatWave.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromObjectStorage.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromObjectStorage.java index a829720ad53..62f2746084a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromObjectStorage.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromObjectStorage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromOracle.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromOracle.java index d01779ff884..34a6a510e3d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromOracle.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromOracle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromOracleEbs.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromOracleEbs.java index 3629a156c14..79ca5dfd76c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromOracleEbs.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromOracleEbs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromOraclePeopleSoft.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromOraclePeopleSoft.java index 30d3bdcb1c9..2faa180e8ae 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromOraclePeopleSoft.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromOraclePeopleSoft.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromOracleSiebel.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromOracleSiebel.java index 1c78fc1ef1d..bccedeb72f2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromOracleSiebel.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromOracleSiebel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromRest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromRest.java index dae22040075..82417025c07 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromRest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataAssetFromRest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataFlowDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataFlowDetails.java index 8b0bf5c041d..79ac6759a99 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataFlowDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataFlowDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataFlowValidationDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataFlowValidationDetails.java index 3f47b4e8040..dc081357e2c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataFlowValidationDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDataFlowValidationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDetailedDescriptionDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDetailedDescriptionDetails.java index 430c4107315..76a53e0e57c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDetailedDescriptionDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDetailedDescriptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDisApplicationDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDisApplicationDetails.java index 130f878413a..1a84cfbbb8b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDisApplicationDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateDisApplicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateEntityShapeDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateEntityShapeDetails.java index 937c222b0ec..4510b8a7b8c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateEntityShapeDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateEntityShapeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateEntityShapeFromFile.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateEntityShapeFromFile.java index 908296dacf0..61ce188a374 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateEntityShapeFromFile.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateEntityShapeFromFile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateEntityShapeFromObject.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateEntityShapeFromObject.java index 935dc874c85..030a6f121d6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateEntityShapeFromObject.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateEntityShapeFromObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateEntityShapeFromSQL.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateEntityShapeFromSQL.java index c22d0d2a218..f8750481e97 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateEntityShapeFromSQL.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateEntityShapeFromSQL.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateExportRequestDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateExportRequestDetails.java index 65cfa268b00..9c6716181ef 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateExportRequestDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateExportRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateExternalPublicationDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateExternalPublicationDetails.java index f524a564c9d..9bea5c3fb81 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateExternalPublicationDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateExternalPublicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateExternalPublicationValidationDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateExternalPublicationValidationDetails.java index 1481b8c20da..efed425d59f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateExternalPublicationValidationDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateExternalPublicationValidationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateFolderDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateFolderDetails.java index 1c05e7ca310..65c97eefe7b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateFolderDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateFolderDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateFunctionLibraryDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateFunctionLibraryDetails.java index 7b458ff1d47..5557a9e1575 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateFunctionLibraryDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateFunctionLibraryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateImportRequestDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateImportRequestDetails.java index 44ca6c6ad68..f3277755692 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateImportRequestDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateImportRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreatePatchDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreatePatchDetails.java index 9a72a852915..340fe869b0c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreatePatchDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreatePatchDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreatePipelineDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreatePipelineDetails.java index 36d51d63a11..94b3063fce2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreatePipelineDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreatePipelineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreatePipelineValidationDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreatePipelineValidationDetails.java index 89a96f53aed..e14da64456d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreatePipelineValidationDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreatePipelineValidationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateProjectDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateProjectDetails.java index 4b1e5d6e7f7..616de5b57a8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateProjectDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateProjectDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateScheduleDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateScheduleDetails.java index e22ea1562b6..2fb986ba754 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateScheduleDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateSourceApplicationInfo.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateSourceApplicationInfo.java index e1065e7adc8..7e5f520de4c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateSourceApplicationInfo.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateSourceApplicationInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskDetails.java index 27b252d8274..67ee4d42e91 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromDataLoaderTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromDataLoaderTask.java index 56b83e0cb58..149e0855e19 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromDataLoaderTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromDataLoaderTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromIntegrationTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromIntegrationTask.java index f0200892a55..3e11d718a56 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromIntegrationTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromIntegrationTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromOCIDataflowTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromOCIDataflowTask.java index 7e89d7a8f6d..76e03ec405e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromOCIDataflowTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromOCIDataflowTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromPipelineTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromPipelineTask.java index f35a69c8a56..09435fb149a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromPipelineTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromPipelineTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromRestTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromRestTask.java index b7658e06c32..5cd26305343 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromRestTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromRestTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromSQLTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromSQLTask.java index c42df294e60..1c59d3330c3 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromSQLTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskFromSQLTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskRunDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskRunDetails.java index 9504186335d..965b8dc8371 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskRunDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskRunDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskScheduleDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskScheduleDetails.java index 54f5f40dc7b..4104b4ffc0c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskScheduleDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskValidationDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskValidationDetails.java index b4067613ad3..b882a0bfbfa 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskValidationDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskValidationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskValidationFromDataLoaderTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskValidationFromDataLoaderTask.java index 1620441539b..3982056be14 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskValidationFromDataLoaderTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskValidationFromDataLoaderTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskValidationFromIntegrationTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskValidationFromIntegrationTask.java index 10bc455a57f..70c90b04b83 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskValidationFromIntegrationTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskValidationFromIntegrationTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskValidationFromPipelineTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskValidationFromPipelineTask.java index 8e9d389a26c..d74c36bc748 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskValidationFromPipelineTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateTaskValidationFromPipelineTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateUserDefinedFunctionDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateUserDefinedFunctionDetails.java index 8e348d2fce7..9bae5901158 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateUserDefinedFunctionDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateUserDefinedFunctionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateUserDefinedFunctionValidationDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateUserDefinedFunctionValidationDetails.java index ce4499ef828..373f8f02af1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateUserDefinedFunctionValidationDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateUserDefinedFunctionValidationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateWorkspaceDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateWorkspaceDetails.java index b9cad719c2c..6d1167de65e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateWorkspaceDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CreateWorkspaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CsvFormatAttribute.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CsvFormatAttribute.java index 5ec515f80f3..9b46ceec78b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CsvFormatAttribute.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CsvFormatAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CustomFrequencyDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CustomFrequencyDetails.java index 1956f1e5044..96407d250fe 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CustomFrequencyDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/CustomFrequencyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DailyFrequencyDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DailyFrequencyDetails.java index fc9f1d6dd57..43361db7cf5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DailyFrequencyDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DailyFrequencyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAsset.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAsset.java index d18b4184a86..ade43ac87eb 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAsset.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAsset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromAdwcDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromAdwcDetails.java index d9c3877b045..18b107676e6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromAdwcDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromAdwcDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromAmazonS3.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromAmazonS3.java index ba15a2e75d2..aadd3def65a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromAmazonS3.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromAmazonS3.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromAtpDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromAtpDetails.java index 46b6d1e12a6..3880572981f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromAtpDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromAtpDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromFusionApp.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromFusionApp.java index c05d945017a..a7d49320dac 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromFusionApp.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromFusionApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromHdfsDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromHdfsDetails.java index d9b5bb52cd9..587218496e0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromHdfsDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromHdfsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromJdbc.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromJdbc.java index 090d1d763b2..2f97410d0db 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromJdbc.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromJdbc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromLakeDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromLakeDetails.java index 46aea5a52c2..fc8dca21b81 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromLakeDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromLakeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromMySQL.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromMySQL.java index 813c7c69ec5..132320c0284 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromMySQL.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromMySQL.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromMySqlHeatWave.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromMySqlHeatWave.java index af3e7810544..07a48e62303 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromMySqlHeatWave.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromMySqlHeatWave.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromObjectStorageDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromObjectStorageDetails.java index c06a3b93205..394637e4a48 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromObjectStorageDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromObjectStorageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromOracleDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromOracleDetails.java index 2e303180e62..12695c1f531 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromOracleDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromOracleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromOracleEbsDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromOracleEbsDetails.java index 193c97a783c..1ccec66526b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromOracleEbsDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromOracleEbsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromOraclePeopleSoftDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromOraclePeopleSoftDetails.java index c4af205f341..e14d98655b6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromOraclePeopleSoftDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromOraclePeopleSoftDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromOracleSiebelDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromOracleSiebelDetails.java index f8fd850079e..d3c7f1f7e12 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromOracleSiebelDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromOracleSiebelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromRestDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromRestDetails.java index a79225b63b7..88b2d3345f4 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromRestDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetFromRestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummary.java index 2a811436b07..dcb07c72d3e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryCollection.java index 8fa3e3608ea..93e3e004683 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromAdwc.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromAdwc.java index 3cdf5e04b11..4caa3e2e22d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromAdwc.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromAdwc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromAmazonS3.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromAmazonS3.java index d30cecd12a0..430f8dae3b5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromAmazonS3.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromAmazonS3.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromAtp.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromAtp.java index 6ef9736cba9..abcc63a81b7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromAtp.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromAtp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromFusionApp.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromFusionApp.java index 8e87d320c17..c520cd0fcff 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromFusionApp.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromFusionApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromHdfs.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromHdfs.java index 7ff60547588..e9fc6737f0e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromHdfs.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromHdfs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromJdbc.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromJdbc.java index 79d1726b2d0..b044622e47f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromJdbc.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromJdbc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromLake.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromLake.java index efe76511a15..f94dde87b64 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromLake.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromLake.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromMySQL.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromMySQL.java index b98caf702c0..855db9638e1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromMySQL.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromMySQL.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromMySqlHeatWave.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromMySqlHeatWave.java index b32cd510506..3820ac7c9c3 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromMySqlHeatWave.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromMySqlHeatWave.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromObjectStorage.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromObjectStorage.java index c9556411fb9..d2b708b7c52 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromObjectStorage.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromObjectStorage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromOracle.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromOracle.java index 12db27b033b..4b9c721cb98 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromOracle.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromOracle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromOracleEbs.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromOracleEbs.java index 2fe8d655917..f5c674cfb79 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromOracleEbs.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromOracleEbs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromOraclePeopleSoft.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromOraclePeopleSoft.java index 70f755bbee5..e81c02f4543 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromOraclePeopleSoft.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromOraclePeopleSoft.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromOracleSiebel.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromOracleSiebel.java index 681aeedf45b..c44d4ad865c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromOracleSiebel.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromOracleSiebel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromRest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromRest.java index 3e80c459242..1f9c4f5029c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromRest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataAssetSummaryFromRest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntity.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntity.java index 3c0a3b8b8d5..85ec4adb9cb 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntity.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityDetails.java index 3357c959986..0f6b4c5ddc8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromDataStore.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromDataStore.java index dc34f1e84e1..e41adff5673 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromDataStore.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromDataStore.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromDataStoreEntityDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromDataStoreEntityDetails.java index dcc7d3af20f..37e508ba3a9 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromDataStoreEntityDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromDataStoreEntityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromFile.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromFile.java index fb503df86e6..f11819b9f39 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromFile.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromFile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromFileEntityDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromFileEntityDetails.java index 7133e05a333..b30c02693aa 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromFileEntityDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromFileEntityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromObject.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromObject.java index b4f64d5f327..fdb67197302 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromObject.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromObjectEntityDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromObjectEntityDetails.java index dbb3d95d3d7..450c79d93b8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromObjectEntityDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromObjectEntityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromSql.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromSql.java index 215b23479a0..ecdb89f1825 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromSql.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromSql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromSqlEntityDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromSqlEntityDetails.java index f0d677a8fce..531e112eb4e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromSqlEntityDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromSqlEntityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromTable.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromTable.java index c5c642caa48..eb75eedc538 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromTable.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromTable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromTableEntityDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromTableEntityDetails.java index 3616929cafc..ff54a01427e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromTableEntityDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromTableEntityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromView.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromView.java index 93de2af3b40..3831dfc5fc1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromView.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromView.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromViewEntityDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromViewEntityDetails.java index aa5725c665f..6236b1a230a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromViewEntityDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntityFromViewEntityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummary.java index 57d4de6fdbe..853a4188776 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryCollection.java index e3f6fc910aa..5433b6d342c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromDataStore.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromDataStore.java index f5fa8b52e12..30b45e5cb93 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromDataStore.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromDataStore.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromFile.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromFile.java index c5e3e0bf8e6..66c442ea15b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromFile.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromFile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromObject.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromObject.java index 1efd1872400..6a23e61ed4e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromObject.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromSql.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromSql.java index d3d5bf15c29..8446e07e43c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromSql.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromSql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromTable.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromTable.java index 09cd6c25bcd..ec8140665db 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromTable.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromTable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromView.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromView.java index 89fa147073e..99836bc8268 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromView.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataEntitySummaryFromView.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlow.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlow.java index 88d652d9ec4..285c22a6361 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlow.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlow.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowDetails.java index 582a0538807..4094e1e4efe 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowSummary.java index 34f0d687064..4bba0f98c2e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowSummaryCollection.java index d3d71234674..063c59707b5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowValidation.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowValidation.java index ecdd78da6ff..31ef3d06baf 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowValidation.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowValidation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowValidationSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowValidationSummary.java index 8a57a7e4797..cbd719d8c26 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowValidationSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowValidationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowValidationSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowValidationSummaryCollection.java index c32b06291b8..2ceb726da55 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowValidationSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFlowValidationSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFormat.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFormat.java index f58a1487fe5..818d3093c67 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFormat.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataFormat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataType.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataType.java index 4d3fa81faa6..0256eb58533 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataType.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataflowApplication.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataflowApplication.java index 34ecade135e..19da4aa67a9 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataflowApplication.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DataflowApplication.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DecisionOperator.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DecisionOperator.java index 8c5646fc0e5..74fc9afa256 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DecisionOperator.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DecisionOperator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DecisionOutputPort.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DecisionOutputPort.java index 0cd25b6c004..4d4a168a18b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DecisionOutputPort.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DecisionOutputPort.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DependentObject.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DependentObject.java index d51080292c1..e2f04bac497 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DependentObject.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DependentObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DependentObjectSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DependentObjectSummary.java index 17f59b59de2..36fa3f40fa9 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DependentObjectSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DependentObjectSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DependentObjectSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DependentObjectSummaryCollection.java index 28d519041bc..a2021e7fc0c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DependentObjectSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DependentObjectSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DerivedEntity.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DerivedEntity.java index c6b72009cc5..0251b3452ad 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DerivedEntity.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DerivedEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DerivedField.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DerivedField.java index b421613df96..2b1f36f7ea8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DerivedField.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DerivedField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DerivedType.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DerivedType.java index 0f0e0492ab3..b248af84405 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DerivedType.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DerivedType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DetailedDescription.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DetailedDescription.java index c29cc8ad6fe..c507089bdaf 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DetailedDescription.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DetailedDescription.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DirectFieldMap.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DirectFieldMap.java index 937c97d93ae..403056b60a7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DirectFieldMap.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DirectFieldMap.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DirectNamedFieldMap.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DirectNamedFieldMap.java index 509be5bb7ad..8e5503632bc 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DirectNamedFieldMap.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DirectNamedFieldMap.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DisApplication.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DisApplication.java index d659f487f9b..a92c715738d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DisApplication.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DisApplication.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DisApplicationSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DisApplicationSummary.java index 28f5dca9696..3cf5f062a41 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DisApplicationSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DisApplicationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DisApplicationSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DisApplicationSummaryCollection.java index 9080caa8b62..8c9d94ba7c7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DisApplicationSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DisApplicationSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Distinct.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Distinct.java index ef123fd3b97..9549f7103a4 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Distinct.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Distinct.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DynamicInputField.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DynamicInputField.java index 69aa9e965b8..352e4dbfe13 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DynamicInputField.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DynamicInputField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DynamicProxyField.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DynamicProxyField.java index a917a0cb17e..e11c49a6587 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DynamicProxyField.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DynamicProxyField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DynamicType.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DynamicType.java index 4b327da08df..a63485b671a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DynamicType.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DynamicType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DynamicTypeHandler.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DynamicTypeHandler.java index 863dd36c7a8..43b24374887 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DynamicTypeHandler.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/DynamicTypeHandler.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EndOperator.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EndOperator.java index 104913639ee..041f230c468 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EndOperator.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EndOperator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EnrichedEntity.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EnrichedEntity.java index 770c2ec0695..895df512dff 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EnrichedEntity.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EnrichedEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EntityShape.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EntityShape.java index 4dfff40b6b2..b8f3cf11a1e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EntityShape.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EntityShape.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EntityShapeFromFile.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EntityShapeFromFile.java index f22012cce77..e3bb8501f87 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EntityShapeFromFile.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EntityShapeFromFile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EntityShapeFromObject.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EntityShapeFromObject.java index da58528b1e7..3c75aa40d45 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EntityShapeFromObject.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EntityShapeFromObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EntityShapeFromSQL.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EntityShapeFromSQL.java index 15e20d9b643..b50cb2dc90c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EntityShapeFromSQL.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/EntityShapeFromSQL.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ErrorDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ErrorDetails.java index 94ad872da37..a5b68824c92 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ErrorDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ErrorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExecuteRestCallConfig.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExecuteRestCallConfig.java index 167baf67bbf..12bc5d7539d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExecuteRestCallConfig.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExecuteRestCallConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExportObjectMetadataSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExportObjectMetadataSummary.java index f797521a76e..b1d6695e66b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExportObjectMetadataSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExportObjectMetadataSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExportRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExportRequest.java index d8480cf0e19..ac064bdf701 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExportRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExportRequestSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExportRequestSummary.java index 5a8dc692852..471c6b727b5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExportRequestSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExportRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExportRequestSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExportRequestSummaryCollection.java index daf78e57db0..c7cb1c3cdc1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExportRequestSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExportRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Expression.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Expression.java index 2976c9fe132..edff3a44575 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Expression.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Expression.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExpressionOperator.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExpressionOperator.java index 39c54fe620f..653d4809159 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExpressionOperator.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExpressionOperator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublication.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublication.java index 13b3a58201f..29727371091 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublication.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublication.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublicationSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublicationSummary.java index e730a9ddaf1..41853abed57 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublicationSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublicationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublicationSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublicationSummaryCollection.java index e19f9498162..bd2f5523c7a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublicationSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublicationSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublicationValidation.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublicationValidation.java index 209eb8b62c5..af0e67f5ebd 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublicationValidation.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublicationValidation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublicationValidationSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublicationValidationSummary.java index 398f6970b0a..9a839fe7554 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublicationValidationSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublicationValidationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublicationValidationSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublicationValidationSummaryCollection.java index d6dc3da2693..46e2d2e976d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublicationValidationSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalPublicationValidationSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalStorage.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalStorage.java index 7ea3db025b7..ca1b6b3c63c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalStorage.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ExternalStorage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FieldMap.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FieldMap.java index d6b90ed0ccd..c04faa0b573 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FieldMap.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FieldMap.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FieldMapWrapper.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FieldMapWrapper.java index c1c1420f6c0..1c136cda969 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FieldMapWrapper.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FieldMapWrapper.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Filter.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Filter.java index 4e1cd6824fe..a86c4ee489e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Filter.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Filter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FilterPush.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FilterPush.java index 78baa127619..07a63d0fcc1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FilterPush.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FilterPush.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Flatten.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Flatten.java index 008dd33259d..6526f17b747 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Flatten.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Flatten.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlattenDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlattenDetails.java index 46597d3cfd6..6692dd76dbc 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlattenDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlattenDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlattenProjectionPreferences.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlattenProjectionPreferences.java index fa402139024..ffb0f985351 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlattenProjectionPreferences.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlattenProjectionPreferences.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlattenTypeHandler.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlattenTypeHandler.java index 976a58ca3eb..0666e2e811c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlattenTypeHandler.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlattenTypeHandler.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlowNode.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlowNode.java index bba43e120a2..bb680a231ab 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlowNode.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlowNode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlowPort.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlowPort.java index d33a97b33bd..694ad7d993d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlowPort.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlowPort.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlowPortLink.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlowPortLink.java index 63740fe7a67..a0d0f6434b5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlowPortLink.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FlowPortLink.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Folder.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Folder.java index a54cefd294a..d94b134b3fc 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Folder.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Folder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FolderDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FolderDetails.java index de1a6650c0a..afbd1e89be3 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FolderDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FolderDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FolderSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FolderSummary.java index b84950b544e..fd3f2f6bf33 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FolderSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FolderSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FolderSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FolderSummaryCollection.java index b9728fbc836..12196bd8238 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FolderSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FolderSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ForeignKey.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ForeignKey.java index bca93032a8b..6530c975e63 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ForeignKey.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ForeignKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Function.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Function.java index 1d6b63ddd9c..95b4b8f27b1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Function.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Function.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionConfigurationDefinition.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionConfigurationDefinition.java index 591ad94ff0a..ed7332a43db 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionConfigurationDefinition.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionConfigurationDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionLibrary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionLibrary.java index 31c9a9b9a3e..23be22f9418 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionLibrary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionLibrary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionLibraryDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionLibraryDetails.java index fd9564d858a..f64af7c59cd 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionLibraryDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionLibraryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionLibrarySummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionLibrarySummary.java index 8e610b74f1e..ec0fa6c205b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionLibrarySummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionLibrarySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionLibrarySummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionLibrarySummaryCollection.java index 5bce38ebd13..f05bb0b0c4f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionLibrarySummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionLibrarySummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionSignature.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionSignature.java index b1b5905507f..b3826067f5f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionSignature.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/FunctionSignature.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/GenericRestApiAttributes.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/GenericRestApiAttributes.java index 2d8e77852d4..d396f31df8b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/GenericRestApiAttributes.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/GenericRestApiAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/GenericRestCallAttribute.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/GenericRestCallAttribute.java index 4882681f49e..455735d67fd 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/GenericRestCallAttribute.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/GenericRestCallAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/GroupedNamePatternRule.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/GroupedNamePatternRule.java index afa57286e45..b5829f5c195 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/GroupedNamePatternRule.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/GroupedNamePatternRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/HourlyFrequencyDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/HourlyFrequencyDetails.java index a126cb5f891..85f334504b5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/HourlyFrequencyDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/HourlyFrequencyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ImportConflictResolution.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ImportConflictResolution.java index 2f8d606b2bc..bb6c13120c0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ImportConflictResolution.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ImportConflictResolution.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ImportObjectMetadataSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ImportObjectMetadataSummary.java index 7f5d74cd251..327cb088ac3 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ImportObjectMetadataSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ImportObjectMetadataSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ImportRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ImportRequest.java index 75e801df4d5..fd22ee48126 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ImportRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ImportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ImportRequestSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ImportRequestSummary.java index 4cd2fc683b7..468a76ab1a6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ImportRequestSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ImportRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ImportRequestSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ImportRequestSummaryCollection.java index 41ce9cedcd8..e2486e9cdc5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ImportRequestSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ImportRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/IncrementalDataEntityClause.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/IncrementalDataEntityClause.java index 1b8f9fe2386..217b9f18ac1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/IncrementalDataEntityClause.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/IncrementalDataEntityClause.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/IncrementalFieldClause.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/IncrementalFieldClause.java index acc4e71e21c..41a07989abe 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/IncrementalFieldClause.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/IncrementalFieldClause.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/IncrementalReadConfig.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/IncrementalReadConfig.java index 94da6e67265..335468fede5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/IncrementalReadConfig.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/IncrementalReadConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/InputField.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/InputField.java index 569c26be14b..206b4faa5db 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/InputField.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/InputField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/InputLink.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/InputLink.java index ccc65968138..864088c9dad 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/InputLink.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/InputLink.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/InputPort.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/InputPort.java index e8c600d5262..20c0d8a5992 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/InputPort.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/InputPort.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/InputProxyField.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/InputProxyField.java index b800d8aa02a..03be2078e95 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/InputProxyField.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/InputProxyField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Intersect.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Intersect.java index 11f8676c353..26e48d7f6d8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Intersect.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Intersect.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/JavaType.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/JavaType.java index 4c0e0722c37..f03d643e539 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/JavaType.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/JavaType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Join.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Join.java index b1833940f37..58ea78dd599 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Join.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Join.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Joiner.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Joiner.java index 8362601f258..eb2c98a525f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Joiner.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Joiner.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/JsonFormatAttribute.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/JsonFormatAttribute.java index c421fcfb55a..7f2f2ba4f8a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/JsonFormatAttribute.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/JsonFormatAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/JsonText.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/JsonText.java index eef910e3504..b50e3bccaf9 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/JsonText.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/JsonText.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Key.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Key.java index 7d8fd51a915..1dc3d123d72 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Key.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Key.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/KeyAttribute.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/KeyAttribute.java index 43cd8ab1d18..104d5b9949f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/KeyAttribute.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/KeyAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/KeyRange.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/KeyRange.java index 4b4431347fb..4863a2b6af3 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/KeyRange.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/KeyRange.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/KeyRangePartitionConfig.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/KeyRangePartitionConfig.java index a6760cca0ad..5e6c43aa4a0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/KeyRangePartitionConfig.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/KeyRangePartitionConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/LastRunDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/LastRunDetails.java index 1a21fcdf5e6..fb919ce2445 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/LastRunDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/LastRunDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Lookup.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Lookup.java index bcbd3b26ff2..711413404f3 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Lookup.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Lookup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MacroField.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MacroField.java index a955709e8c2..b797050be45 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MacroField.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MacroField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MacroPivotField.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MacroPivotField.java index c37237e11e6..1a66c1a5c60 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MacroPivotField.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MacroPivotField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MapType.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MapType.java index 60caa770a0c..64bf5fcd2b0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MapType.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MapType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MaterializedCompositeType.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MaterializedCompositeType.java index e4f38d10b92..8cf4228b26f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MaterializedCompositeType.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MaterializedCompositeType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MaterializedDynamicField.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MaterializedDynamicField.java index c35ba3bc1df..6759fa55758 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MaterializedDynamicField.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MaterializedDynamicField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MergeOperator.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MergeOperator.java index 5bdc1615bfa..664e3b51e30 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MergeOperator.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MergeOperator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Message.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Message.java index 57886fff316..a656eddd755 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Message.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Message.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Minus.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Minus.java index d78e53f6f35..75a285bb550 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Minus.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Minus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MonthlyFrequencyDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MonthlyFrequencyDetails.java index 5b70420290f..7be09ef349f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MonthlyFrequencyDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MonthlyFrequencyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MonthlyRuleFrequencyDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MonthlyRuleFrequencyDetails.java index 58efb0834fe..f15bf0da4be 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MonthlyRuleFrequencyDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/MonthlyRuleFrequencyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/NameListRule.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/NameListRule.java index af0021ec106..11e6e53f114 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/NameListRule.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/NameListRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/NamePatternRule.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/NamePatternRule.java index cbbb96cd932..13b647f1120 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/NamePatternRule.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/NamePatternRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/NamedEntityMap.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/NamedEntityMap.java index ac5216b1cce..40ce9b80fc9 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/NamedEntityMap.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/NamedEntityMap.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/NativeShapeField.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/NativeShapeField.java index 6cd575360e6..a286bbbc5ff 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/NativeShapeField.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/NativeShapeField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ObjectMetadata.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ObjectMetadata.java index 3bff18316f4..779d916b1b6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ObjectMetadata.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ObjectMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ObjectStorageWriteAttribute.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ObjectStorageWriteAttribute.java index 856e6acce84..30db3a46d90 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ObjectStorageWriteAttribute.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ObjectStorageWriteAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ObjectStorageWriteAttributes.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ObjectStorageWriteAttributes.java index b4ba083b86f..a42802d38c2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ObjectStorageWriteAttributes.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ObjectStorageWriteAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OciFunction.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OciFunction.java index 3b2b875e128..515d1df426e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OciFunction.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OciFunction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OciVaultSecretConfig.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OciVaultSecretConfig.java index b0b6180eb67..feca1b53751 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OciVaultSecretConfig.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OciVaultSecretConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Operation.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Operation.java index a84aebb8653..b13adbddc19 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Operation.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Operation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OperationFromApi.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OperationFromApi.java index 7976db00b17..801885acbd1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OperationFromApi.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OperationFromApi.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OperationFromProcedure.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OperationFromProcedure.java index 02ce0382b60..89c2d2ed9fc 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OperationFromProcedure.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OperationFromProcedure.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Operator.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Operator.java index ae715a77d18..99ae2f0e5db 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Operator.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Operator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleAdwcWriteAttribute.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleAdwcWriteAttribute.java index 341fac3989d..80ca8783e97 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleAdwcWriteAttribute.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleAdwcWriteAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleAdwcWriteAttributes.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleAdwcWriteAttributes.java index ef6f8f1befb..391f6e1cfed 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleAdwcWriteAttributes.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleAdwcWriteAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleAtpWriteAttribute.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleAtpWriteAttribute.java index 3cb3dd9fecf..06012f47a9d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleAtpWriteAttribute.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleAtpWriteAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleAtpWriteAttributes.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleAtpWriteAttributes.java index 406944acfa6..da66a06446f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleAtpWriteAttributes.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleAtpWriteAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleReadAttribute.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleReadAttribute.java index 7b93b843740..3bfa9962460 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleReadAttribute.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleReadAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleReadAttributes.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleReadAttributes.java index 3009f3016c4..1853e6350c0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleReadAttributes.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleReadAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleWriteAttribute.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleWriteAttribute.java index 519f3f4ccb2..7bc9ce8c8f7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleWriteAttribute.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleWriteAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleWriteAttributes.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleWriteAttributes.java index 29cfe3cdb3c..5a2fc6e8b68 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleWriteAttributes.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OracleWriteAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OutputField.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OutputField.java index 9007f5f08e0..9d298ebf60b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OutputField.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OutputField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OutputLink.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OutputLink.java index b2f800a0523..785d15cbf57 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OutputLink.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OutputLink.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OutputPort.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OutputPort.java index 565503e528d..9504799c363 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OutputPort.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/OutputPort.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Parameter.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Parameter.java index 9fbf6be344b..7e84de6b769 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Parameter.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Parameter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ParameterValue.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ParameterValue.java index 3ea4c318b0e..7ab6506d5bb 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ParameterValue.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ParameterValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ParentReference.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ParentReference.java index 0d7828816d8..357a75ec0ca 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ParentReference.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ParentReference.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ParquetFormatAttribute.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ParquetFormatAttribute.java index adec45f9921..d095819d4b4 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ParquetFormatAttribute.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ParquetFormatAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PartitionConfig.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PartitionConfig.java index 5b7d9af1e54..77758338077 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PartitionConfig.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PartitionConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Patch.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Patch.java index 2ad23e4701c..c88567e3791 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Patch.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Patch.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PatchChangeSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PatchChangeSummary.java index 03f0097d8cc..0db61b223f4 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PatchChangeSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PatchChangeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PatchChangeSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PatchChangeSummaryCollection.java index afd9087dd54..dca82ea2368 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PatchChangeSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PatchChangeSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PatchObjectMetadata.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PatchObjectMetadata.java index 69b63035fdc..46357b8dd26 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PatchObjectMetadata.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PatchObjectMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PatchSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PatchSummary.java index f7cdbd672fb..d2864b503e0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PatchSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PatchSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PatchSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PatchSummaryCollection.java index 481c4ce0c94..033e14dccdf 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PatchSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PatchSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Pipeline.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Pipeline.java index 8f04e630c19..2a308e3d5af 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Pipeline.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Pipeline.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PipelineSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PipelineSummary.java index 18ad512df0f..a67dbaada3e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PipelineSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PipelineSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PipelineSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PipelineSummaryCollection.java index 259a8e08199..5b306310fdf 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PipelineSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PipelineSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PipelineValidation.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PipelineValidation.java index 9c9f9dfec35..11888ad235b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PipelineValidation.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PipelineValidation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PipelineValidationSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PipelineValidationSummary.java index f153b43ab82..587e9e4dae0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PipelineValidationSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PipelineValidationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PipelineValidationSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PipelineValidationSummaryCollection.java index 8ffab0a888a..1e8eb64a5f7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PipelineValidationSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PipelineValidationSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Pivot.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Pivot.java index bb948740504..1192945d534 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Pivot.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Pivot.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PivotField.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PivotField.java index 47693571155..f31d534d58b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PivotField.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PivotField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PivotKeys.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PivotKeys.java index 57cf2506ef9..d1ed28b3ff0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PivotKeys.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PivotKeys.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PollRestCallConfig.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PollRestCallConfig.java index ba7991ead42..3766541c03a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PollRestCallConfig.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PollRestCallConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PrimaryKey.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PrimaryKey.java index ea4836dfa90..a967fc50b43 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PrimaryKey.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PrimaryKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Project.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Project.java index eb6330d872d..23fc04c01b4 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Project.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Project.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ProjectDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ProjectDetails.java index fc4ca9470d1..0ae278068b7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ProjectDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ProjectDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ProjectSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ProjectSummary.java index fc8e05e0d8e..0c5371e5096 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ProjectSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ProjectSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ProjectSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ProjectSummaryCollection.java index b1f5f1545b3..725a1ea2b70 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ProjectSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ProjectSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Projection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Projection.java index 9638205fec7..d61b38d7f33 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Projection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Projection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ProjectionRule.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ProjectionRule.java index b502ba67461..7c33cd4570c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ProjectionRule.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ProjectionRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ProxyField.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ProxyField.java index 9e4dc8c3af3..6321b14f2e7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ProxyField.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ProxyField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObject.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObject.java index 2ccf8cf127e..45c7338c751 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObject.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectFromDataLoaderTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectFromDataLoaderTask.java index 3bd5607ac55..ad95f73d9d0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectFromDataLoaderTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectFromDataLoaderTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectFromIntegrationTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectFromIntegrationTask.java index f1da1f51e88..7b71e8f2e38 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectFromIntegrationTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectFromIntegrationTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectFromPipelineTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectFromPipelineTask.java index 126be99713a..f19b854625e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectFromPipelineTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectFromPipelineTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectFromPipelineTaskSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectFromPipelineTaskSummary.java index f7001fa1743..bb3d3b13fcb 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectFromPipelineTaskSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectFromPipelineTaskSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectSummary.java index bd85e74018a..dbd4ec02828 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectSummaryCollection.java index ef30ac17808..d6c03fe9e38 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectSummaryFromDataLoaderTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectSummaryFromDataLoaderTask.java index 127e72f9da0..a3cb44ecbd7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectSummaryFromDataLoaderTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectSummaryFromDataLoaderTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectSummaryFromIntegrationTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectSummaryFromIntegrationTask.java index 1225c370220..ac70cecd30b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectSummaryFromIntegrationTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PublishedObjectSummaryFromIntegrationTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PushDownOperation.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PushDownOperation.java index 0e4b244d03c..5b2a206ed5e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PushDownOperation.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/PushDownOperation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Query.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Query.java index 9ba2bd88258..4b5d7eb8e78 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Query.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Query.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReadOperationConfig.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReadOperationConfig.java index 3fbd929770a..253fc1eb6d0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReadOperationConfig.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReadOperationConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Reference.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Reference.java index 82e28765406..dd55fd2b977 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Reference.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Reference.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferenceSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferenceSummary.java index 2d91d4bfd89..cdd08de33fe 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferenceSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferenceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferenceSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferenceSummaryCollection.java index 06b70f87804..80a28443d6f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferenceSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferenceSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferenceUsedBy.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferenceUsedBy.java index f9d0a8c0025..cfa611b6673 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferenceUsedBy.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferenceUsedBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferencedDataObject.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferencedDataObject.java index 7ec8337736f..6a403771e55 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferencedDataObject.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferencedDataObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferencedDataObjectFromAPI.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferencedDataObjectFromAPI.java index 656c065f3e8..4d242a72dde 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferencedDataObjectFromAPI.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferencedDataObjectFromAPI.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferencedDataObjectFromProcedure.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferencedDataObjectFromProcedure.java index e1858898ce5..8c5f71992c4 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferencedDataObjectFromProcedure.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ReferencedDataObjectFromProcedure.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RegistryMetadata.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RegistryMetadata.java index d0beb8b0699..c8097f7261d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RegistryMetadata.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RegistryMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RenameRule.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RenameRule.java index 5fe3e565c61..6db4404d99e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RenameRule.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RenameRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ResourceConfiguration.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ResourceConfiguration.java index f2a189a0b10..c2837b027e3 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ResourceConfiguration.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ResourceConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ResourcePrincipalAuthConfig.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ResourcePrincipalAuthConfig.java index 16d9db516f7..f36b8014b42 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ResourcePrincipalAuthConfig.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ResourcePrincipalAuthConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RestCallConfig.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RestCallConfig.java index ef30d386cf9..59e237c88af 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RestCallConfig.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RestCallConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RootObject.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RootObject.java index cac5cbc1b6f..0c3ae860175 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RootObject.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RootObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuleBasedEntityMap.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuleBasedEntityMap.java index 08765ac92a8..d01b78637f0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuleBasedEntityMap.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuleBasedEntityMap.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuleBasedFieldMap.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuleBasedFieldMap.java index e654f8943c4..c9861f4fca1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuleBasedFieldMap.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuleBasedFieldMap.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuleTypeConfig.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuleTypeConfig.java index 38f9cd460af..924c4c1f4f9 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuleTypeConfig.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuleTypeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimeOperator.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimeOperator.java index 661d0aab4ee..263058e951a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimeOperator.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimeOperator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimeOperatorSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimeOperatorSummary.java index 25561bd9d34..0f93b17f214 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimeOperatorSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimeOperatorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimeOperatorSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimeOperatorSummaryCollection.java index 4c7c81bd02b..7b391d9c749 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimeOperatorSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimeOperatorSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimePipeline.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimePipeline.java index a828d8efc5a..6baa571e766 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimePipeline.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimePipeline.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimePipelineSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimePipelineSummary.java index 605e788d9f9..e4222f905cf 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimePipelineSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimePipelineSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimePipelineSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimePipelineSummaryCollection.java index e14f5628ee3..a1bf0144fb0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimePipelineSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/RuntimePipelineSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Schedule.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Schedule.java index a6b7e04e09d..16f2269355b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Schedule.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Schedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ScheduleSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ScheduleSummary.java index fd41dd4f515..c44eace8d1c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ScheduleSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ScheduleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ScheduleSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ScheduleSummaryCollection.java index 1997545ee3b..ed012cb996b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ScheduleSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ScheduleSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Schema.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Schema.java index 1bd6ec6c27e..47ca10a9b1e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Schema.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Schema.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SchemaDriftConfig.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SchemaDriftConfig.java index 6b07dcdf73b..b64e10bf802 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SchemaDriftConfig.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SchemaDriftConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SchemaSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SchemaSummary.java index 47fc23b762c..747c13ec999 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SchemaSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SchemaSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SchemaSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SchemaSummaryCollection.java index 84800c28eb5..cd9f1033340 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SchemaSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SchemaSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ScopeReference.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ScopeReference.java index ffed891bf7d..8a8d77dd1b7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ScopeReference.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ScopeReference.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Script.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Script.java index b9512e93acb..89cb6dd002c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Script.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Script.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SecretConfig.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SecretConfig.java index beae049c4a3..bea4c822a5c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SecretConfig.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SecretConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Select.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Select.java index 3faaf58d531..f69d9237908 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Select.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Select.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SensitiveAttribute.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SensitiveAttribute.java index 748c1939f8d..cea8b326267 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SensitiveAttribute.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SensitiveAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Shape.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Shape.java index ff278da3046..ad0dd17f9a9 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Shape.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Shape.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ShapeDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ShapeDetails.java index 3508ce4fb0f..90e385ce2d6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ShapeDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ShapeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ShapeField.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ShapeField.java index 04f785d3582..7af0a0f5acc 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ShapeField.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ShapeField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Sort.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Sort.java index 3562876c77e..798b41d52db 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Sort.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Sort.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SortClause.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SortClause.java index 6a7579bcbcf..195a338be28 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SortClause.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SortClause.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SortKey.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SortKey.java index 05f3362df17..667b14e8432 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SortKey.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SortKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SortKeyRule.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SortKeyRule.java index 707cffc9d3c..113e6a0942b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SortKeyRule.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SortKeyRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SortOper.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SortOper.java index c15a6b581e4..a4ae706395d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SortOper.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SortOper.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Source.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Source.java index 9fc0117cf00..f82530ee905 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Source.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Source.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SourceApplicationInfo.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SourceApplicationInfo.java index caa6a101f97..737f61badee 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SourceApplicationInfo.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/SourceApplicationInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Split.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Split.java index 9040788708b..a9d4fb371fb 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Split.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Split.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/StartOperator.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/StartOperator.java index 1a26a3c1fb4..a846e218a6d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/StartOperator.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/StartOperator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/State.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/State.java index 4fdfc081e04..23d1d59d7f8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/State.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/State.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/StructuredType.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/StructuredType.java index a67385460c3..48150af93f4 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/StructuredType.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/StructuredType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Target.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Target.java index 6e5c7471430..86370abc58f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Target.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Target.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Task.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Task.java index 2876eab5a43..a300486d954 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Task.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Task.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromDataLoaderTaskDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromDataLoaderTaskDetails.java index 71a12dcf442..3f8bf0fae51 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromDataLoaderTaskDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromDataLoaderTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromIntegrationTaskDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromIntegrationTaskDetails.java index b2e1af818db..12c9fd2dd3b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromIntegrationTaskDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromIntegrationTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromOCIDataflowTaskDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromOCIDataflowTaskDetails.java index 31b0de8f2c4..5e365d3fd12 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromOCIDataflowTaskDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromOCIDataflowTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromPipelineTaskDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromPipelineTaskDetails.java index 4b4c77ef763..ea01af3da68 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromPipelineTaskDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromPipelineTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromRestTaskDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromRestTaskDetails.java index 173c6487dcb..c442d4657f2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromRestTaskDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromRestTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromSQLTaskDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromSQLTaskDetails.java index 51253dc5b98..fbc5c200dfc 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromSQLTaskDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskFromSQLTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskOperator.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskOperator.java index b6ca9075336..661e73f16be 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskOperator.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskOperator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRun.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRun.java index 18580285800..3f3f7c1418f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRun.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRun.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunDetails.java index b307868f635..9d9115df982 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunLineageDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunLineageDetails.java index 5c29798ca5a..b947a2996b0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunLineageDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunLineageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunLineageSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunLineageSummary.java index 361e34d6ce5..bea6a4c3369 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunLineageSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunLineageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunLineageSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunLineageSummaryCollection.java index d60b5844898..2e1638ffe03 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunLineageSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunLineageSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunLogSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunLogSummary.java index 0138fc3ab2c..a7aa95a016d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunLogSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunLogSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunSummary.java index b4c058203f5..8aba6fe439e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunSummaryCollection.java index 3d8fbe67173..412c17c2e4d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskRunSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSchedule.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSchedule.java index 2fc7e96bee9..477bd765fd6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSchedule.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskScheduleSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskScheduleSummary.java index cc6f1440445..da30062c882 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskScheduleSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskScheduleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskScheduleSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskScheduleSummaryCollection.java index 8d2c18a2901..d252ae5b238 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskScheduleSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskScheduleSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummary.java index f5a2f6e46f3..6c8f9269ff5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryCollection.java index 5b705321cfe..c7b6095e70b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromDataLoaderTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromDataLoaderTask.java index d84c9fa5c57..80fb2670779 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromDataLoaderTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromDataLoaderTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromIntegrationTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromIntegrationTask.java index f5033c1b0b3..2f4a3e927a5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromIntegrationTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromIntegrationTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromOCIDataflowTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromOCIDataflowTask.java index 233ac32bc7b..fbdcbacc1d7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromOCIDataflowTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromOCIDataflowTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromPipelineTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromPipelineTask.java index f5f7df38ed1..7fff1f91c9c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromPipelineTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromPipelineTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromRestTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromRestTask.java index d303d8bd9e3..945856ec5da 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromRestTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromRestTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromSQLTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromSQLTask.java index 0130e3be083..bafed08cb9b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromSQLTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskSummaryFromSQLTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskValidation.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskValidation.java index b6b453e6b66..d39913ab2c8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskValidation.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskValidation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskValidationSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskValidationSummary.java index e973f26a9a5..38c9f942aaf 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskValidationSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskValidationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskValidationSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskValidationSummaryCollection.java index c43677c5033..a288493a427 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskValidationSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TaskValidationSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Template.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Template.java index 5a77c677e9d..6cb624f1d7c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Template.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Template.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TemplateSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TemplateSummary.java index 446a27a5219..c612afa1cf1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TemplateSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TemplateSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TemplateSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TemplateSummaryCollection.java index 6a86454175b..7078446f22d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TemplateSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TemplateSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Time.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Time.java index f53ea02f832..f1a2dfa4130 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Time.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Time.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypeLibrary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypeLibrary.java index 1a03ad4ad7f..1f390b20213 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypeLibrary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypeLibrary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypeListRule.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypeListRule.java index 9b7fcb4a347..e4e0ceea475 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypeListRule.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypeListRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypeSystem.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypeSystem.java index b6fdf4bd9ef..65e4c5489fb 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypeSystem.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypeSystem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypedExpression.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypedExpression.java index db9a0487655..df27245db3a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypedExpression.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypedExpression.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypedNamePatternRule.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypedNamePatternRule.java index d938e5df2f9..918d2143bfe 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypedNamePatternRule.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypedNamePatternRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypedObject.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypedObject.java index c3e3a1dedfe..e7fcfcb79a3 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypedObject.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypedObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypedObjectWrapper.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypedObjectWrapper.java index ff67876fabd..df1e63db6c2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypedObjectWrapper.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/TypedObjectWrapper.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UIProperties.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UIProperties.java index 545aae9a480..32350e74ea5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UIProperties.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UIProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Union.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Union.java index ccf3c961cb5..3cc41fe8598 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Union.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Union.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UniqueDataKey.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UniqueDataKey.java index 83ac5df0abe..b8e0e0b9a7b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UniqueDataKey.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UniqueDataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UniqueKey.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UniqueKey.java index 16652224f1e..9d20a268158 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UniqueKey.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UniqueKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateApplicationDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateApplicationDetails.java index 3026ccb7e7a..a8616505ee9 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateApplicationDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateApplicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionDetails.java index 1ceb96d80dd..5022b44e90b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromAdwc.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromAdwc.java index a4a39114719..702ffc62ff7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromAdwc.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromAdwc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromAmazonS3.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromAmazonS3.java index 0a7c635d1c4..ffef006b561 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromAmazonS3.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromAmazonS3.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromAtp.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromAtp.java index 9848d2c61d6..7aad3d2669c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromAtp.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromAtp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromBICC.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromBICC.java index 51a357ba294..f957e54d11b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromBICC.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromBICC.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromBIP.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromBIP.java index aa60d273557..045ba17669d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromBIP.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromBIP.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromHdfs.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromHdfs.java index 82487355356..6a9e669e935 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromHdfs.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromHdfs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromJdbc.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromJdbc.java index 6268ab9f692..ae6d8ae242e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromJdbc.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromJdbc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromLake.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromLake.java index a301140c29b..4616b3e57c1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromLake.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromLake.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromMySQL.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromMySQL.java index 0d1f5d0414d..0deea28e329 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromMySQL.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromMySQL.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromMySqlHeatWave.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromMySqlHeatWave.java index d40856e8396..4c72959cece 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromMySqlHeatWave.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromMySqlHeatWave.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromOAuth2.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromOAuth2.java index 9826f4d0325..59615ebe9fa 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromOAuth2.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromOAuth2.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromObjectStorage.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromObjectStorage.java index 632c713ee90..e35f8fc608f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromObjectStorage.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromObjectStorage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromOracle.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromOracle.java index 7f7c352554d..2d1af1e34fc 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromOracle.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromOracle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromOracleEbs.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromOracleEbs.java index 69adbec6750..1b5319e192a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromOracleEbs.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromOracleEbs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromOraclePeopleSoft.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromOraclePeopleSoft.java index ec1e6bd6cf5..0e8f2cf4853 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromOraclePeopleSoft.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromOraclePeopleSoft.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromOracleSiebel.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromOracleSiebel.java index de1bb874ad3..03a4abe2e94 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromOracleSiebel.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromOracleSiebel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromRestBasicAuth.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromRestBasicAuth.java index a6c2d718013..0e438323a7c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromRestBasicAuth.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromRestBasicAuth.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromRestNoAuth.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromRestNoAuth.java index fa5f5c3ddb1..5a5fcd04cef 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromRestNoAuth.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateConnectionFromRestNoAuth.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateCopyObjectRequestDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateCopyObjectRequestDetails.java index 3811ea791b5..99fe1947fb0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateCopyObjectRequestDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateCopyObjectRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetDetails.java index b53551c3060..3dcfe4539d8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromAdwc.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromAdwc.java index 493b2692fd2..bfeb12afb69 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromAdwc.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromAdwc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromAmazonS3.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromAmazonS3.java index b1a7054dc75..56f5723a785 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromAmazonS3.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromAmazonS3.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromAtp.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromAtp.java index 672f57e0779..ffb7f4f84e6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromAtp.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromAtp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromFusionApp.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromFusionApp.java index c34b75cc531..415915bbac9 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromFusionApp.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromFusionApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromHdfs.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromHdfs.java index 82d532c89a2..daa855631a5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromHdfs.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromHdfs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromJdbc.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromJdbc.java index 60dc4c702a9..723e089a40a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromJdbc.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromJdbc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromLake.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromLake.java index e7a91642b0b..c09a5de2c4e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromLake.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromLake.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromMySQL.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromMySQL.java index abb8967ae06..6ed1e3b147d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromMySQL.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromMySQL.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromMySqlHeatWave.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromMySqlHeatWave.java index 5273cdba70e..54ea68ca744 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromMySqlHeatWave.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromMySqlHeatWave.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromObjectStorage.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromObjectStorage.java index 2d8b80830ea..4cbc6288499 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromObjectStorage.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromObjectStorage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromOracle.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromOracle.java index ed9cfd8ae63..48f026d4e81 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromOracle.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromOracle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromOracleEbs.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromOracleEbs.java index 8547a3ebfcf..7c6d0dc55c1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromOracleEbs.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromOracleEbs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromOraclePeopleSoft.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromOraclePeopleSoft.java index 690d5afc75b..58cd7e53e91 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromOraclePeopleSoft.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromOraclePeopleSoft.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromOracleSiebel.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromOracleSiebel.java index e4e6a35b1ea..1218959b99b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromOracleSiebel.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromOracleSiebel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromRest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromRest.java index ff8392ecca6..8d3c5800337 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromRest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataAssetFromRest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataFlowDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataFlowDetails.java index 915ef7425e2..1c8b270e3b7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataFlowDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDataFlowDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDetailedDescriptionDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDetailedDescriptionDetails.java index d55a310dc78..fbb3f093622 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDetailedDescriptionDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDetailedDescriptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDisApplicationDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDisApplicationDetails.java index 0691f4bbf5e..2b1e1fc65c6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDisApplicationDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateDisApplicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateExportRequestDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateExportRequestDetails.java index 51defe8eea2..8030edb747b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateExportRequestDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateExportRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateExternalPublicationDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateExternalPublicationDetails.java index 02f0793f681..7f96775cd8e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateExternalPublicationDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateExternalPublicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateFolderDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateFolderDetails.java index 83775465cca..1166998ad70 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateFolderDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateFolderDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateFunctionLibraryDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateFunctionLibraryDetails.java index c79b9f979a6..e4280bbd21a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateFunctionLibraryDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateFunctionLibraryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateImportRequestDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateImportRequestDetails.java index 25380836f31..fda5832180e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateImportRequestDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateImportRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdatePipelineDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdatePipelineDetails.java index e4d713e18f9..898f3b9488a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdatePipelineDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdatePipelineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateProjectDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateProjectDetails.java index 0cc2e1b06af..24808eafb81 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateProjectDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateProjectDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateReferenceDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateReferenceDetails.java index e78c77031d4..1550764ee9d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateReferenceDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateReferenceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateScheduleDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateScheduleDetails.java index b00f2d09b77..9ee7dcf7e62 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateScheduleDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskDetails.java index 67346c0c637..83a4ec665ed 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromDataLoaderTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromDataLoaderTask.java index ac8b75f112b..b1078684ba5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromDataLoaderTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromDataLoaderTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromIntegrationTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromIntegrationTask.java index cf006b6bec0..36a8865656e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromIntegrationTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromIntegrationTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromOCIDataflowTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromOCIDataflowTask.java index b7f3425f630..5d720090bf1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromOCIDataflowTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromOCIDataflowTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromPipelineTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromPipelineTask.java index ae0653306c2..c142cb17788 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromPipelineTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromPipelineTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromRestTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromRestTask.java index 8a03a577635..b609470b8f9 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromRestTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromRestTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromSQLTask.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromSQLTask.java index 74edadd6a43..e007d9e2b5e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromSQLTask.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskFromSQLTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskRunDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskRunDetails.java index 49d25aae347..e5ffa3d8c92 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskRunDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskRunDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskScheduleDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskScheduleDetails.java index 4bfe5bba3d9..e1ed4f3eeec 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskScheduleDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateTaskScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateUserDefinedFunctionDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateUserDefinedFunctionDetails.java index 40eb194adca..36a8536b49e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateUserDefinedFunctionDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateUserDefinedFunctionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateWorkspaceDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateWorkspaceDetails.java index 073662b1d1e..35d2c0fc41a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateWorkspaceDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UpdateWorkspaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunction.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunction.java index 6ada0969cb0..5da35d45e10 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunction.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionDetails.java index 9e69684daa4..1b0478e0c73 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionSummary.java index 3ec2fd1d583..c2244b5ba9b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionSummaryCollection.java index 718cebf7ad5..b577171a866 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionValidation.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionValidation.java index bf5e89880c6..72699a0d3ea 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionValidation.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionValidation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionValidationSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionValidationSummary.java index fdc8498d641..37b4a5b7604 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionValidationSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionValidationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionValidationSummaryCollection.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionValidationSummaryCollection.java index c4ddf4ad2a0..4cd8bd1be01 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionValidationSummaryCollection.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/UserDefinedFunctionValidationSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ValidationMessage.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ValidationMessage.java index 61b54ee2299..eb2bbaf4758 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ValidationMessage.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/ValidationMessage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Variable.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Variable.java index 7840ff7bcbb..d86d553c848 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Variable.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Variable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WeeklyFrequencyDetails.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WeeklyFrequencyDetails.java index 514c173109d..d86525012d6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WeeklyFrequencyDetails.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WeeklyFrequencyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkRequest.java index 31bee6476ab..da29a297d1e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkRequestError.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkRequestError.java index 78c500c1052..3efeaf2e882 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkRequestError.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkRequestLogEntry.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkRequestLogEntry.java index cb59de24a11..c5233c5bb0a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkRequestLogEntry.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkRequestResource.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkRequestResource.java index dc5b914ad91..6daa978adaf 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkRequestResource.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkRequestSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkRequestSummary.java index be6d5922118..8cbdf007fa9 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkRequestSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Workspace.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Workspace.java index 7a15a6aca30..74d316d7f72 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Workspace.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/Workspace.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkspaceSummary.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkspaceSummary.java index af02fd67dd3..870a26c12d9 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkspaceSummary.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WorkspaceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WriteOperationConfig.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WriteOperationConfig.java index b12094ded1e..e628729c236 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WriteOperationConfig.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/model/WriteOperationConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.model; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ChangeCompartmentRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ChangeCompartmentRequest.java index ad733edf29c..ec67ccff555 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ChangeCompartmentRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ChangeCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ChangeDisApplicationCompartmentRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ChangeDisApplicationCompartmentRequest.java index 2d4d0542e20..d5411f86d70 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ChangeDisApplicationCompartmentRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ChangeDisApplicationCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateApplicationDetailedDescriptionRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateApplicationDetailedDescriptionRequest.java index 623decde53e..b71650318b5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateApplicationDetailedDescriptionRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateApplicationDetailedDescriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateApplicationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateApplicationRequest.java index e6e4d3c93a3..4c3c1d3907f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateApplicationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateConnectionRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateConnectionRequest.java index 45e2e24e80b..3bf9cb2c2f8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateConnectionRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateConnectionValidationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateConnectionValidationRequest.java index fe5d2f48911..1e27eb8c81b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateConnectionValidationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateConnectionValidationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateCopyObjectRequestRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateCopyObjectRequestRequest.java index 5fd4db97b0d..bc2979cf9de 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateCopyObjectRequestRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateCopyObjectRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateDataAssetRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateDataAssetRequest.java index 18e71b8992f..4618fa32ac2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateDataAssetRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateDataAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateDataFlowRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateDataFlowRequest.java index 662c5777955..86a6cfae291 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateDataFlowRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateDataFlowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateDataFlowValidationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateDataFlowValidationRequest.java index 7365bc3ae03..8113c7cbff2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateDataFlowValidationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateDataFlowValidationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateDisApplicationDetailedDescriptionRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateDisApplicationDetailedDescriptionRequest.java index 3e652400db2..e2680cf8c53 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateDisApplicationDetailedDescriptionRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateDisApplicationDetailedDescriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateDisApplicationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateDisApplicationRequest.java index b6e1dc832f8..49fc7ec97fd 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateDisApplicationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateDisApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateEntityShapeRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateEntityShapeRequest.java index 08a06659e3f..1d95b71fd8b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateEntityShapeRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateEntityShapeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateExportRequestRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateExportRequestRequest.java index c33bd96bf3d..66e94d70052 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateExportRequestRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateExportRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateExternalPublicationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateExternalPublicationRequest.java index 4117182c5b2..83b74b54605 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateExternalPublicationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateExternalPublicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateExternalPublicationValidationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateExternalPublicationValidationRequest.java index de1c2dbf7a8..565636de8e5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateExternalPublicationValidationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateExternalPublicationValidationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateFolderRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateFolderRequest.java index a951ab9a3a9..23163ef891c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateFolderRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateFolderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateFunctionLibraryRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateFunctionLibraryRequest.java index c5dc7d2b942..7b4c8d381c7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateFunctionLibraryRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateFunctionLibraryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateImportRequestRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateImportRequestRequest.java index c7e2520af9e..20470366bb3 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateImportRequestRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateImportRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreatePatchRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreatePatchRequest.java index f273322d3b5..ab777956c91 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreatePatchRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreatePatchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreatePipelineRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreatePipelineRequest.java index bb7fd7c1ae8..7f02e5af210 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreatePipelineRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreatePipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreatePipelineValidationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreatePipelineValidationRequest.java index a35e2655eb0..2fce0431f9c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreatePipelineValidationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreatePipelineValidationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateProjectRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateProjectRequest.java index 90f81b6141f..8d7c0261006 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateProjectRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateScheduleRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateScheduleRequest.java index 59c4dd05dfc..e18c2280dde 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateScheduleRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateTaskRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateTaskRequest.java index d0f73ecff75..a9d392dcf40 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateTaskRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateTaskRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateTaskRunRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateTaskRunRequest.java index ecfc89ba71b..0bc165f41ac 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateTaskRunRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateTaskRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateTaskScheduleRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateTaskScheduleRequest.java index c7af8fba6b0..955a662bd49 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateTaskScheduleRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateTaskScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateTaskValidationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateTaskValidationRequest.java index 606e15c7f37..b0bdbb3f794 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateTaskValidationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateTaskValidationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateUserDefinedFunctionRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateUserDefinedFunctionRequest.java index 5cc5e192d90..fe96a55dc7c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateUserDefinedFunctionRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateUserDefinedFunctionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateUserDefinedFunctionValidationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateUserDefinedFunctionValidationRequest.java index 2786463fa88..ba3ea84726d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateUserDefinedFunctionValidationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateUserDefinedFunctionValidationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateWorkspaceRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateWorkspaceRequest.java index bfb791858e0..46aa7d6557d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateWorkspaceRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/CreateWorkspaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteApplicationDetailedDescriptionRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteApplicationDetailedDescriptionRequest.java index 9761512abaa..61833ba218a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteApplicationDetailedDescriptionRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteApplicationDetailedDescriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteApplicationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteApplicationRequest.java index 42fa5fe5a51..a8b94fdd53a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteApplicationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteConnectionRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteConnectionRequest.java index 0d235b7a5d9..6435aa26eb2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteConnectionRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteConnectionValidationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteConnectionValidationRequest.java index 39a0239b678..4aeea8a1a5e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteConnectionValidationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteConnectionValidationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteCopyObjectRequestRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteCopyObjectRequestRequest.java index b853c81bfe1..31af4f56f8f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteCopyObjectRequestRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteCopyObjectRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteDataAssetRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteDataAssetRequest.java index ab03027df10..efb04bee3cf 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteDataAssetRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteDataAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteDataFlowRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteDataFlowRequest.java index 8586f238206..9853871fae4 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteDataFlowRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteDataFlowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteDataFlowValidationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteDataFlowValidationRequest.java index ffb7d0f2b72..e575d54b1c4 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteDataFlowValidationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteDataFlowValidationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteDisApplicationDetailedDescriptionRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteDisApplicationDetailedDescriptionRequest.java index 54c5f82d33b..14780718048 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteDisApplicationDetailedDescriptionRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteDisApplicationDetailedDescriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteDisApplicationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteDisApplicationRequest.java index e4953e6d09f..7084454e7a7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteDisApplicationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteDisApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteExportRequestRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteExportRequestRequest.java index fd167888965..8812cfb9819 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteExportRequestRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteExportRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteExternalPublicationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteExternalPublicationRequest.java index bc0c4e078b4..b5bc5a126e5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteExternalPublicationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteExternalPublicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteExternalPublicationValidationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteExternalPublicationValidationRequest.java index bf4c92e60bb..81a1d80ef48 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteExternalPublicationValidationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteExternalPublicationValidationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteFolderRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteFolderRequest.java index a2597b1f92b..d21a019a6b2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteFolderRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteFolderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteFunctionLibraryRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteFunctionLibraryRequest.java index 03ece16d492..7b7a7d537ac 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteFunctionLibraryRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteFunctionLibraryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteImportRequestRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteImportRequestRequest.java index 96bf7f9c4d9..a983800fcba 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteImportRequestRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteImportRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeletePatchRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeletePatchRequest.java index caeab72be7a..cd8edd3f704 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeletePatchRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeletePatchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeletePipelineRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeletePipelineRequest.java index 700ecce4b33..0cd826a4d7d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeletePipelineRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeletePipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeletePipelineValidationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeletePipelineValidationRequest.java index 346687fd295..56598db9a23 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeletePipelineValidationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeletePipelineValidationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteProjectRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteProjectRequest.java index ff43e40ec62..3746ef3a38b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteProjectRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteScheduleRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteScheduleRequest.java index 3b61067e958..ebc229737b7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteScheduleRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteTaskRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteTaskRequest.java index 65f02695957..81f9c2e84d2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteTaskRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteTaskRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteTaskRunRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteTaskRunRequest.java index 7ca365143c0..9cd510f664b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteTaskRunRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteTaskRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteTaskScheduleRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteTaskScheduleRequest.java index 1f239aa5e26..613bbe97fe6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteTaskScheduleRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteTaskScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteTaskValidationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteTaskValidationRequest.java index db0720939d1..a3c18041041 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteTaskValidationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteTaskValidationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteUserDefinedFunctionRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteUserDefinedFunctionRequest.java index 54624f26bce..0d5aac7a0e1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteUserDefinedFunctionRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteUserDefinedFunctionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteUserDefinedFunctionValidationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteUserDefinedFunctionValidationRequest.java index ad68d22761b..556cd26acbc 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteUserDefinedFunctionValidationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteUserDefinedFunctionValidationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteWorkspaceRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteWorkspaceRequest.java index 1af6d93c26c..9415337863b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteWorkspaceRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/DeleteWorkspaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetApplicationDetailedDescriptionRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetApplicationDetailedDescriptionRequest.java index 7d3ce58abe3..83928485f8b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetApplicationDetailedDescriptionRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetApplicationDetailedDescriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetApplicationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetApplicationRequest.java index dc77e7c7bff..535b04feb0e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetApplicationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetCompositeStateRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetCompositeStateRequest.java index 5cdf077091a..7b2b21acd5a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetCompositeStateRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetCompositeStateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetConnectionRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetConnectionRequest.java index 2ec6dcbc0b9..ca0a5933951 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetConnectionRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetConnectionValidationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetConnectionValidationRequest.java index 30c5253b204..1d434919e5d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetConnectionValidationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetConnectionValidationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetCopyObjectRequestRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetCopyObjectRequestRequest.java index 69c374bd21f..08e8a0fb3a2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetCopyObjectRequestRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetCopyObjectRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetCountStatisticRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetCountStatisticRequest.java index 514fc20c5da..51b591e2a1a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetCountStatisticRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetCountStatisticRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDataAssetRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDataAssetRequest.java index 6377cab15a0..868634358e5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDataAssetRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDataAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDataEntityRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDataEntityRequest.java index f39531b2b2d..83afb9dc0c7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDataEntityRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDataEntityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDataFlowRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDataFlowRequest.java index bc217d8a215..9d450320950 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDataFlowRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDataFlowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDataFlowValidationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDataFlowValidationRequest.java index 6459863f692..453ecf7d792 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDataFlowValidationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDataFlowValidationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDependentObjectRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDependentObjectRequest.java index 856c2987a93..a406f9a7252 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDependentObjectRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDependentObjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDisApplicationDetailedDescriptionRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDisApplicationDetailedDescriptionRequest.java index ca671718c05..f2bda2950f6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDisApplicationDetailedDescriptionRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDisApplicationDetailedDescriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDisApplicationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDisApplicationRequest.java index 8cb947ade50..15db718e8c8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDisApplicationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetDisApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetExportRequestRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetExportRequestRequest.java index d1bbbe33649..77eb52ec730 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetExportRequestRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetExportRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetExternalPublicationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetExternalPublicationRequest.java index 2519d49595b..29c0fcfc870 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetExternalPublicationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetExternalPublicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetExternalPublicationValidationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetExternalPublicationValidationRequest.java index 4659dc62ba3..45cbcbb17d6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetExternalPublicationValidationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetExternalPublicationValidationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetFolderRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetFolderRequest.java index 3cba034d03b..a1f70045e1f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetFolderRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetFolderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetFunctionLibraryRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetFunctionLibraryRequest.java index 87f93785480..9370762c3d6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetFunctionLibraryRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetFunctionLibraryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetImportRequestRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetImportRequestRequest.java index b80a2e15b9c..ef0099b0beb 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetImportRequestRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetImportRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetPatchRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetPatchRequest.java index a8901b4d069..3b071ceabd0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetPatchRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetPatchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetPipelineRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetPipelineRequest.java index 41cc2174464..81032bff197 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetPipelineRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetPipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetPipelineValidationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetPipelineValidationRequest.java index d69350ca8ae..96812f80a37 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetPipelineValidationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetPipelineValidationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetProjectRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetProjectRequest.java index 9c17282e70d..afc61a8c9c4 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetProjectRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetPublishedObjectRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetPublishedObjectRequest.java index ceb73ede8b4..07dcdb72c52 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetPublishedObjectRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetPublishedObjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetReferenceRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetReferenceRequest.java index 99106a36e0f..6d1b54553c7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetReferenceRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetReferenceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetRuntimeOperatorRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetRuntimeOperatorRequest.java index 46ed028451c..dcfa9bbf8ee 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetRuntimeOperatorRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetRuntimeOperatorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetRuntimePipelineRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetRuntimePipelineRequest.java index 80194e20d85..c3e48116b53 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetRuntimePipelineRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetRuntimePipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetScheduleRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetScheduleRequest.java index 57d7fd54370..febad937731 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetScheduleRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetSchemaRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetSchemaRequest.java index 222970f77b6..b3c43acab0e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetSchemaRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetSchemaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetTaskRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetTaskRequest.java index 48b24c01d02..90b7f4f0d2a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetTaskRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetTaskRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetTaskRunRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetTaskRunRequest.java index 6888998443c..b11d98b7fa7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetTaskRunRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetTaskRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetTaskScheduleRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetTaskScheduleRequest.java index bd5c93151f0..df74635d3f6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetTaskScheduleRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetTaskScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetTaskValidationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetTaskValidationRequest.java index a7678923bce..eacd2bd0c5a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetTaskValidationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetTaskValidationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetTemplateRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetTemplateRequest.java index d70b8c852a6..33de5dbce19 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetTemplateRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetTemplateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetUserDefinedFunctionRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetUserDefinedFunctionRequest.java index 78bbf1cbf55..25fc6f03427 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetUserDefinedFunctionRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetUserDefinedFunctionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetUserDefinedFunctionValidationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetUserDefinedFunctionValidationRequest.java index 5cc76701e5c..4b1e45558d1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetUserDefinedFunctionValidationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetUserDefinedFunctionValidationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetWorkRequestRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetWorkRequestRequest.java index 1c53680c5ff..ee568594cc5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetWorkRequestRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetWorkspaceRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetWorkspaceRequest.java index fdd8fd30402..a8074a7ed6c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetWorkspaceRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/GetWorkspaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListApplicationsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListApplicationsRequest.java index 88707ba02eb..a8645b62303 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListApplicationsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListApplicationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListConnectionValidationsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListConnectionValidationsRequest.java index 59949f37b54..be9a22312e1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListConnectionValidationsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListConnectionValidationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListConnectionsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListConnectionsRequest.java index 0e8834ae3ce..23c0f23d327 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListConnectionsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListConnectionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListCopyObjectRequestsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListCopyObjectRequestsRequest.java index b4fefc78e57..1438f135072 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListCopyObjectRequestsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListCopyObjectRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDataAssetsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDataAssetsRequest.java index 7fd291a1741..cb759901e6e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDataAssetsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDataAssetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDataEntitiesRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDataEntitiesRequest.java index 93950b6bc8b..98120b8007e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDataEntitiesRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDataEntitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDataFlowValidationsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDataFlowValidationsRequest.java index 69e6d63aae3..5940771e770 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDataFlowValidationsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDataFlowValidationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDataFlowsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDataFlowsRequest.java index 766e1052ecc..b11a880a54a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDataFlowsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDataFlowsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDependentObjectsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDependentObjectsRequest.java index 0094f447874..c227383dc5c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDependentObjectsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDependentObjectsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDisApplicationTaskRunLineagesRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDisApplicationTaskRunLineagesRequest.java index aee6e04a5ce..00bf857a3ee 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDisApplicationTaskRunLineagesRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDisApplicationTaskRunLineagesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDisApplicationsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDisApplicationsRequest.java index 58c5dbdc81a..8c78ed99ad6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDisApplicationsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListDisApplicationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListExportRequestsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListExportRequestsRequest.java index a4a4c9e2846..b1c705bf79f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListExportRequestsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListExportRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListExternalPublicationValidationsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListExternalPublicationValidationsRequest.java index b8a3a79ee0f..f6d7315a1df 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListExternalPublicationValidationsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListExternalPublicationValidationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListExternalPublicationsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListExternalPublicationsRequest.java index 330918cdf3a..9287659c621 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListExternalPublicationsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListExternalPublicationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListFoldersRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListFoldersRequest.java index 06047741850..b33fb760ecc 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListFoldersRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListFoldersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListFunctionLibrariesRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListFunctionLibrariesRequest.java index f3aba85a9e9..8d59b6f08c3 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListFunctionLibrariesRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListFunctionLibrariesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListImportRequestsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListImportRequestsRequest.java index a7ff5fdb4fd..4188c01143d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListImportRequestsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListImportRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListPatchChangesRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListPatchChangesRequest.java index a1f300ff250..5590d12c44b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListPatchChangesRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListPatchChangesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListPatchesRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListPatchesRequest.java index 744c7d2abc2..ae3ed4a260b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListPatchesRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListPatchesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListPipelineValidationsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListPipelineValidationsRequest.java index d82924a81b4..0f37f7cc253 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListPipelineValidationsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListPipelineValidationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListPipelinesRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListPipelinesRequest.java index 20f08df1976..5b7239b55b7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListPipelinesRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListPipelinesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListProjectsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListProjectsRequest.java index 6a480093b4d..5327bb235ed 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListProjectsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListProjectsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListPublishedObjectsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListPublishedObjectsRequest.java index a4dd70e69da..3734f474693 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListPublishedObjectsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListPublishedObjectsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListReferencesRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListReferencesRequest.java index f5d6d466fb7..7f7440014fa 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListReferencesRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListReferencesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListRuntimeOperatorsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListRuntimeOperatorsRequest.java index 77cbe9333f0..5524cf7d4f7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListRuntimeOperatorsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListRuntimeOperatorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListRuntimePipelinesRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListRuntimePipelinesRequest.java index 4aa1e999341..885beac84df 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListRuntimePipelinesRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListRuntimePipelinesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListSchedulesRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListSchedulesRequest.java index 59f3484e38e..5ff225072b9 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListSchedulesRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListSchedulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListSchemasRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListSchemasRequest.java index 692adc0ec20..852b9fa9358 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListSchemasRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListSchemasRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTaskRunLineagesRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTaskRunLineagesRequest.java index ca6298a0547..e37a16a6c67 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTaskRunLineagesRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTaskRunLineagesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTaskRunLogsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTaskRunLogsRequest.java index d609b67418c..c3ee66647bc 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTaskRunLogsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTaskRunLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTaskRunsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTaskRunsRequest.java index 51271a1c580..1849c240fb3 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTaskRunsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTaskRunsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTaskSchedulesRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTaskSchedulesRequest.java index 00c687e40e5..c900598703c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTaskSchedulesRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTaskSchedulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTaskValidationsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTaskValidationsRequest.java index 2795aabb860..1ae13cbf087 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTaskValidationsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTaskValidationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTasksRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTasksRequest.java index 41c2d433404..bf7386986eb 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTasksRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTasksRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTemplatesRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTemplatesRequest.java index 1d1804f1883..f882d4be374 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTemplatesRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListTemplatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListUserDefinedFunctionValidationsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListUserDefinedFunctionValidationsRequest.java index 82641d2e3c9..a13dfd59b66 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListUserDefinedFunctionValidationsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListUserDefinedFunctionValidationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListUserDefinedFunctionsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListUserDefinedFunctionsRequest.java index 61d10d36810..1ce5d004086 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListUserDefinedFunctionsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListUserDefinedFunctionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListWorkRequestErrorsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListWorkRequestErrorsRequest.java index f93c258b85f..4522805ed13 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListWorkRequestLogsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListWorkRequestLogsRequest.java index 832a186a3de..0a6f5b3a1c7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListWorkRequestLogsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListWorkRequestsRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListWorkRequestsRequest.java index 389a53e0983..f273937ccb7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListWorkRequestsRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListWorkspacesRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListWorkspacesRequest.java index 004d981083f..30526dcd996 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListWorkspacesRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/ListWorkspacesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/StartWorkspaceRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/StartWorkspaceRequest.java index d38220fb5ef..683f7e526b1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/StartWorkspaceRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/StartWorkspaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/StopWorkspaceRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/StopWorkspaceRequest.java index c97ef7896ed..e6ff5430680 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/StopWorkspaceRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/StopWorkspaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateApplicationDetailedDescriptionRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateApplicationDetailedDescriptionRequest.java index cbdd6c4f328..9bc5cb0b7fb 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateApplicationDetailedDescriptionRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateApplicationDetailedDescriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateApplicationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateApplicationRequest.java index 77d822b9d63..63f824ae015 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateApplicationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateConnectionRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateConnectionRequest.java index 98685db0c54..6f89733a0b9 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateConnectionRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateCopyObjectRequestRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateCopyObjectRequestRequest.java index 38e4316a80a..7cb6c75f9fa 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateCopyObjectRequestRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateCopyObjectRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateDataAssetRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateDataAssetRequest.java index a8d1a014d9d..7e5c416b0f4 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateDataAssetRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateDataAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateDataFlowRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateDataFlowRequest.java index 56e6124ec81..30ae68dc126 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateDataFlowRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateDataFlowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateDisApplicationDetailedDescriptionRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateDisApplicationDetailedDescriptionRequest.java index 12f1e6d7c21..743e8bea503 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateDisApplicationDetailedDescriptionRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateDisApplicationDetailedDescriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateDisApplicationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateDisApplicationRequest.java index 1bd49231917..16836cf5f86 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateDisApplicationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateDisApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateExportRequestRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateExportRequestRequest.java index 8feae72f301..86396129c2d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateExportRequestRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateExportRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateExternalPublicationRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateExternalPublicationRequest.java index c26011a97ca..7e19033095f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateExternalPublicationRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateExternalPublicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateFolderRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateFolderRequest.java index bda78e4d430..099bed717b7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateFolderRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateFolderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateFunctionLibraryRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateFunctionLibraryRequest.java index b255cf7de79..92614f177f9 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateFunctionLibraryRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateFunctionLibraryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateImportRequestRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateImportRequestRequest.java index d3a5fe6937c..80c08f0eb32 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateImportRequestRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateImportRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdatePipelineRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdatePipelineRequest.java index 3c9345ecf6a..0b829b9dc44 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdatePipelineRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdatePipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateProjectRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateProjectRequest.java index 313a6338439..95867aaab40 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateProjectRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateReferenceRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateReferenceRequest.java index 10fd841e164..b388bd76a5b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateReferenceRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateReferenceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateScheduleRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateScheduleRequest.java index 04d2f50faa4..246cb94d3ff 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateScheduleRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateTaskRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateTaskRequest.java index d778dcd0a57..1f3e1fe5027 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateTaskRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateTaskRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateTaskRunRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateTaskRunRequest.java index 44022a15503..2350cb78789 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateTaskRunRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateTaskRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateTaskScheduleRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateTaskScheduleRequest.java index 065884246ab..ee1e60e34dd 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateTaskScheduleRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateTaskScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateUserDefinedFunctionRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateUserDefinedFunctionRequest.java index eb66b95c174..33af6a7e84b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateUserDefinedFunctionRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateUserDefinedFunctionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateWorkspaceRequest.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateWorkspaceRequest.java index 9f1fdc7b8f4..7f336182189 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateWorkspaceRequest.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/requests/UpdateWorkspaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.requests; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ChangeCompartmentResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ChangeCompartmentResponse.java index 4f277c1a421..d7507edd780 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ChangeCompartmentResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ChangeCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ChangeDisApplicationCompartmentResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ChangeDisApplicationCompartmentResponse.java index 25a83627377..1ce30eef530 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ChangeDisApplicationCompartmentResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ChangeDisApplicationCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateApplicationDetailedDescriptionResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateApplicationDetailedDescriptionResponse.java index 7d4f67a081d..7f28584516b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateApplicationDetailedDescriptionResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateApplicationDetailedDescriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateApplicationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateApplicationResponse.java index 9642767b552..5a261970c20 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateApplicationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateConnectionResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateConnectionResponse.java index ceee899748c..ca264beb059 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateConnectionResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateConnectionValidationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateConnectionValidationResponse.java index 2a1d5d96cd1..7b041ed9c4d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateConnectionValidationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateConnectionValidationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateCopyObjectRequestResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateCopyObjectRequestResponse.java index 3f88091698b..26c2fc2021b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateCopyObjectRequestResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateCopyObjectRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateDataAssetResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateDataAssetResponse.java index 8d25c770965..116a2a71ae6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateDataAssetResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateDataAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateDataFlowResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateDataFlowResponse.java index a2bfe2a0f25..8ef2b27cc01 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateDataFlowResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateDataFlowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateDataFlowValidationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateDataFlowValidationResponse.java index f217dccdf46..7b726e9b0b9 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateDataFlowValidationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateDataFlowValidationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateDisApplicationDetailedDescriptionResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateDisApplicationDetailedDescriptionResponse.java index 010f223be2d..1ea0528fa43 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateDisApplicationDetailedDescriptionResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateDisApplicationDetailedDescriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateDisApplicationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateDisApplicationResponse.java index 59ff68ab830..5fac82728e3 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateDisApplicationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateDisApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateEntityShapeResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateEntityShapeResponse.java index 8ff1c562b7d..85b28c77f06 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateEntityShapeResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateEntityShapeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateExportRequestResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateExportRequestResponse.java index 0dd8b3dba87..a77bee46cd7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateExportRequestResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateExportRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateExternalPublicationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateExternalPublicationResponse.java index 50ddcc07519..7035e432f83 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateExternalPublicationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateExternalPublicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateExternalPublicationValidationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateExternalPublicationValidationResponse.java index 72f81af71e6..6fc0736d0f6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateExternalPublicationValidationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateExternalPublicationValidationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateFolderResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateFolderResponse.java index ee96a039e37..5506781679e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateFolderResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateFolderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateFunctionLibraryResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateFunctionLibraryResponse.java index 94fc93e216e..e332b506bd8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateFunctionLibraryResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateFunctionLibraryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateImportRequestResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateImportRequestResponse.java index 13c6c64cf72..156b6e37480 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateImportRequestResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateImportRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreatePatchResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreatePatchResponse.java index 9154f151e63..ea0a9122016 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreatePatchResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreatePatchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreatePipelineResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreatePipelineResponse.java index c2f4003e30e..363921dc4f8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreatePipelineResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreatePipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreatePipelineValidationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreatePipelineValidationResponse.java index a1c1ec89ce5..61f47d873a8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreatePipelineValidationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreatePipelineValidationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateProjectResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateProjectResponse.java index a24eb25a1b2..288e1f8d443 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateProjectResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateScheduleResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateScheduleResponse.java index 6a0eb0d87e2..1cdd0613019 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateScheduleResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateTaskResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateTaskResponse.java index b55238e41e6..ebcd4982b5d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateTaskResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateTaskResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateTaskRunResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateTaskRunResponse.java index 069f9ae89d0..5e285805ac3 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateTaskRunResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateTaskRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateTaskScheduleResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateTaskScheduleResponse.java index c3e1c33021f..d9da65cd6a2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateTaskScheduleResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateTaskScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateTaskValidationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateTaskValidationResponse.java index cd6d98d55b1..f49325d8006 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateTaskValidationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateTaskValidationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateUserDefinedFunctionResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateUserDefinedFunctionResponse.java index 7cd78b2683e..1d210c72f66 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateUserDefinedFunctionResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateUserDefinedFunctionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateUserDefinedFunctionValidationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateUserDefinedFunctionValidationResponse.java index 8829118fb5e..f7c165bd032 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateUserDefinedFunctionValidationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateUserDefinedFunctionValidationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateWorkspaceResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateWorkspaceResponse.java index 40c6f573228..3a9e3d758fc 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateWorkspaceResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/CreateWorkspaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteApplicationDetailedDescriptionResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteApplicationDetailedDescriptionResponse.java index f4ec0edea48..44f3c54428a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteApplicationDetailedDescriptionResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteApplicationDetailedDescriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteApplicationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteApplicationResponse.java index b2178673536..725b3129d4e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteApplicationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteConnectionResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteConnectionResponse.java index 34b0c112144..2a9b901ad54 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteConnectionResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteConnectionValidationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteConnectionValidationResponse.java index 0848b3f7de0..679de66d5fb 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteConnectionValidationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteConnectionValidationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteCopyObjectRequestResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteCopyObjectRequestResponse.java index 791f359ae08..b6a6a26f62c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteCopyObjectRequestResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteCopyObjectRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteDataAssetResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteDataAssetResponse.java index 0ba10b3ad7d..ad7f6151f75 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteDataAssetResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteDataAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteDataFlowResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteDataFlowResponse.java index cd479b52705..b23dd1e9a35 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteDataFlowResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteDataFlowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteDataFlowValidationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteDataFlowValidationResponse.java index 220501e969c..0392986b21c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteDataFlowValidationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteDataFlowValidationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteDisApplicationDetailedDescriptionResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteDisApplicationDetailedDescriptionResponse.java index 729277369ca..c56639855e8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteDisApplicationDetailedDescriptionResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteDisApplicationDetailedDescriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteDisApplicationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteDisApplicationResponse.java index ee098ee1e40..198a5587dbc 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteDisApplicationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteDisApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteExportRequestResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteExportRequestResponse.java index 5fd91967dab..a986083d121 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteExportRequestResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteExportRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteExternalPublicationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteExternalPublicationResponse.java index 96346425ad7..4dd1a6448ed 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteExternalPublicationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteExternalPublicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteExternalPublicationValidationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteExternalPublicationValidationResponse.java index 9cc1d41f479..a3208ecc6bc 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteExternalPublicationValidationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteExternalPublicationValidationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteFolderResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteFolderResponse.java index 54c62c87e03..ea3544b0e7f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteFolderResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteFolderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteFunctionLibraryResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteFunctionLibraryResponse.java index b9c17a04952..e6d081579c8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteFunctionLibraryResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteFunctionLibraryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteImportRequestResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteImportRequestResponse.java index e28d252247f..bc2fb7581d0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteImportRequestResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteImportRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeletePatchResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeletePatchResponse.java index a77fdd99115..078f3494f9b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeletePatchResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeletePatchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeletePipelineResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeletePipelineResponse.java index 9fde819824d..fdc2e750ecb 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeletePipelineResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeletePipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeletePipelineValidationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeletePipelineValidationResponse.java index 53a1c2e91ec..6c8cee5292c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeletePipelineValidationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeletePipelineValidationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteProjectResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteProjectResponse.java index ae022708b70..21fc1fdf67c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteProjectResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteScheduleResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteScheduleResponse.java index 091ed82f525..afc3fb4c91a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteScheduleResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteTaskResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteTaskResponse.java index adffde880d2..27f0bb33b94 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteTaskResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteTaskResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteTaskRunResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteTaskRunResponse.java index 9bee1161897..2e6f814ea7b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteTaskRunResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteTaskRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteTaskScheduleResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteTaskScheduleResponse.java index 03d2afcd7ca..af1ca415ac2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteTaskScheduleResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteTaskScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteTaskValidationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteTaskValidationResponse.java index aaecaa64769..39fff3719bd 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteTaskValidationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteTaskValidationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteUserDefinedFunctionResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteUserDefinedFunctionResponse.java index 27e42910de0..152b5210a0c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteUserDefinedFunctionResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteUserDefinedFunctionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteUserDefinedFunctionValidationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteUserDefinedFunctionValidationResponse.java index add2d0c437c..017515acdcb 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteUserDefinedFunctionValidationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteUserDefinedFunctionValidationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteWorkspaceResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteWorkspaceResponse.java index 39c8e1c5286..2d2c8a8b381 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteWorkspaceResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/DeleteWorkspaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetApplicationDetailedDescriptionResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetApplicationDetailedDescriptionResponse.java index be91c499309..355d1576e5f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetApplicationDetailedDescriptionResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetApplicationDetailedDescriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetApplicationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetApplicationResponse.java index 7d1395f92e0..64a5ae759e6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetApplicationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetCompositeStateResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetCompositeStateResponse.java index c45affadd19..bd5e28a9e62 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetCompositeStateResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetCompositeStateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetConnectionResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetConnectionResponse.java index 6b561106c9d..bebc03d2fe1 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetConnectionResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetConnectionValidationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetConnectionValidationResponse.java index 63a65b6ad44..b6e2578439b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetConnectionValidationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetConnectionValidationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetCopyObjectRequestResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetCopyObjectRequestResponse.java index 96f4f699b1a..5e1e4986927 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetCopyObjectRequestResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetCopyObjectRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetCountStatisticResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetCountStatisticResponse.java index 4f0f6da5d2b..a10afa48f6f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetCountStatisticResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetCountStatisticResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDataAssetResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDataAssetResponse.java index 0f6d9da3636..92ba1ca703c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDataAssetResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDataAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDataEntityResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDataEntityResponse.java index c8023947f3e..c74c6aa33dd 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDataEntityResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDataEntityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDataFlowResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDataFlowResponse.java index d51c06ff389..a3216297211 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDataFlowResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDataFlowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDataFlowValidationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDataFlowValidationResponse.java index a9049fd8c4c..86af3314ee4 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDataFlowValidationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDataFlowValidationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDependentObjectResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDependentObjectResponse.java index f81766223e2..08c0685da44 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDependentObjectResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDependentObjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDisApplicationDetailedDescriptionResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDisApplicationDetailedDescriptionResponse.java index b9d2b42a781..5da37614bd6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDisApplicationDetailedDescriptionResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDisApplicationDetailedDescriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDisApplicationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDisApplicationResponse.java index 5e08fd5a3fb..8a4b145b20f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDisApplicationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetDisApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetExportRequestResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetExportRequestResponse.java index 49e9eaf9ccc..83e6c706e00 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetExportRequestResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetExportRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetExternalPublicationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetExternalPublicationResponse.java index cb782f8bef0..8a8787ab0d8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetExternalPublicationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetExternalPublicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetExternalPublicationValidationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetExternalPublicationValidationResponse.java index 927f4f2b8d4..f1fe88a07c5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetExternalPublicationValidationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetExternalPublicationValidationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetFolderResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetFolderResponse.java index f1e155a906a..18b1960cf2c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetFolderResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetFolderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetFunctionLibraryResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetFunctionLibraryResponse.java index 4db22a0af42..585ab6c82c3 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetFunctionLibraryResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetFunctionLibraryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetImportRequestResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetImportRequestResponse.java index 04c85e86d82..08fa0cf7bd0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetImportRequestResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetImportRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetPatchResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetPatchResponse.java index c616b5beb01..77b8eb00372 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetPatchResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetPatchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetPipelineResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetPipelineResponse.java index d1d1253d670..ff9242d27a0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetPipelineResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetPipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetPipelineValidationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetPipelineValidationResponse.java index 82e9604f94b..5706e1428f8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetPipelineValidationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetPipelineValidationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetProjectResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetProjectResponse.java index b1b6eb505ae..f19c05168a5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetProjectResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetPublishedObjectResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetPublishedObjectResponse.java index 89f959fb4f6..b647fb98feb 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetPublishedObjectResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetPublishedObjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetReferenceResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetReferenceResponse.java index 2ee2a4678f9..97df1a68aef 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetReferenceResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetReferenceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetRuntimeOperatorResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetRuntimeOperatorResponse.java index 52eb627ed03..b01cb0094af 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetRuntimeOperatorResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetRuntimeOperatorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetRuntimePipelineResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetRuntimePipelineResponse.java index abb1a5be7f4..77dbe636144 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetRuntimePipelineResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetRuntimePipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetScheduleResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetScheduleResponse.java index 56bfd028202..09cc57cce13 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetScheduleResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetSchemaResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetSchemaResponse.java index 63d241a4705..08b6898f80b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetSchemaResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetSchemaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetTaskResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetTaskResponse.java index 1819560ea49..b0bd86248d5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetTaskResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetTaskResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetTaskRunResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetTaskRunResponse.java index 6e01c1dab0e..db2bb198005 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetTaskRunResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetTaskRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetTaskScheduleResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetTaskScheduleResponse.java index 508df1aa672..c902d04d5c3 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetTaskScheduleResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetTaskScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetTaskValidationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetTaskValidationResponse.java index 9fd1060b4a9..fa91dd07b59 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetTaskValidationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetTaskValidationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetTemplateResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetTemplateResponse.java index 6c85a657728..d3cc30dc489 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetTemplateResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetTemplateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetUserDefinedFunctionResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetUserDefinedFunctionResponse.java index d13b6dfb9f2..4e12ad07d82 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetUserDefinedFunctionResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetUserDefinedFunctionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetUserDefinedFunctionValidationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetUserDefinedFunctionValidationResponse.java index 85d0e4d7bf8..d7f908f9573 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetUserDefinedFunctionValidationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetUserDefinedFunctionValidationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetWorkRequestResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetWorkRequestResponse.java index 3eb0cd0fe39..0371ca7bbba 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetWorkRequestResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetWorkspaceResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetWorkspaceResponse.java index fd559eece32..62fa874d244 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetWorkspaceResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/GetWorkspaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListApplicationsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListApplicationsResponse.java index f184a0aa09e..acfc6690052 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListApplicationsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListApplicationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListConnectionValidationsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListConnectionValidationsResponse.java index ccce6f20d53..f28bec54947 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListConnectionValidationsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListConnectionValidationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListConnectionsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListConnectionsResponse.java index ef97eb226f0..b323a5fb883 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListConnectionsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListConnectionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListCopyObjectRequestsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListCopyObjectRequestsResponse.java index 1ba6f61317d..54e49dea951 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListCopyObjectRequestsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListCopyObjectRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDataAssetsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDataAssetsResponse.java index 5de4928b6b9..0e39a9a1c10 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDataAssetsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDataAssetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDataEntitiesResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDataEntitiesResponse.java index 538189aa58e..e07cef834a8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDataEntitiesResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDataEntitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDataFlowValidationsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDataFlowValidationsResponse.java index 17ade79caee..3610ed4fadf 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDataFlowValidationsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDataFlowValidationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDataFlowsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDataFlowsResponse.java index 7e0a7d441b9..1ac64a8440b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDataFlowsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDataFlowsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDependentObjectsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDependentObjectsResponse.java index 5c7cac45768..06dcdc226c7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDependentObjectsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDependentObjectsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDisApplicationTaskRunLineagesResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDisApplicationTaskRunLineagesResponse.java index 0f64c60e5f2..16be65dc75a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDisApplicationTaskRunLineagesResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDisApplicationTaskRunLineagesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDisApplicationsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDisApplicationsResponse.java index 9d4923f4cee..4908a3098c3 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDisApplicationsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListDisApplicationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListExportRequestsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListExportRequestsResponse.java index 2f1bfae16cf..e001052d947 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListExportRequestsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListExportRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListExternalPublicationValidationsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListExternalPublicationValidationsResponse.java index 7d581c376b9..38bbb9e367a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListExternalPublicationValidationsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListExternalPublicationValidationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListExternalPublicationsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListExternalPublicationsResponse.java index 4fb2a674344..815b040092d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListExternalPublicationsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListExternalPublicationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListFoldersResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListFoldersResponse.java index fa886dc5367..a865a511f0a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListFoldersResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListFoldersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListFunctionLibrariesResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListFunctionLibrariesResponse.java index febf7ee91f1..32d987000ba 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListFunctionLibrariesResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListFunctionLibrariesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListImportRequestsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListImportRequestsResponse.java index 7f1e0ab82f1..c3ade504f58 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListImportRequestsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListImportRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListPatchChangesResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListPatchChangesResponse.java index 1d356838244..0aa26fa01be 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListPatchChangesResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListPatchChangesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListPatchesResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListPatchesResponse.java index f47606e5f73..5f994e54b5e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListPatchesResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListPatchesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListPipelineValidationsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListPipelineValidationsResponse.java index 6da8bfb5a7b..2ff67a05b57 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListPipelineValidationsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListPipelineValidationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListPipelinesResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListPipelinesResponse.java index 0cdaea5cda5..9211ef53209 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListPipelinesResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListPipelinesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListProjectsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListProjectsResponse.java index 76ea17efe98..fc6d108a764 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListProjectsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListProjectsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListPublishedObjectsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListPublishedObjectsResponse.java index fad8956fa58..6281008627b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListPublishedObjectsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListPublishedObjectsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListReferencesResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListReferencesResponse.java index 2b459dd30f1..0f9123b75c2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListReferencesResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListReferencesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListRuntimeOperatorsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListRuntimeOperatorsResponse.java index 5e3632088fa..26de3df0825 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListRuntimeOperatorsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListRuntimeOperatorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListRuntimePipelinesResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListRuntimePipelinesResponse.java index bf505180fd2..99808022ed6 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListRuntimePipelinesResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListRuntimePipelinesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListSchedulesResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListSchedulesResponse.java index 25d7373e9a4..a2a226a30ca 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListSchedulesResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListSchedulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListSchemasResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListSchemasResponse.java index 89cf8c50a30..387ebc6271b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListSchemasResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListSchemasResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTaskRunLineagesResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTaskRunLineagesResponse.java index aa206e40cc1..117484f80cb 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTaskRunLineagesResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTaskRunLineagesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTaskRunLogsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTaskRunLogsResponse.java index d622293044e..1fc80fbf66e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTaskRunLogsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTaskRunLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTaskRunsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTaskRunsResponse.java index 58116bcc7a6..588f1eae94c 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTaskRunsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTaskRunsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTaskSchedulesResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTaskSchedulesResponse.java index 79c85c85d80..9c4d98a883e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTaskSchedulesResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTaskSchedulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTaskValidationsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTaskValidationsResponse.java index 4824ddf0d32..e9cc57df77d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTaskValidationsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTaskValidationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTasksResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTasksResponse.java index 04c7b1d9331..864676cf852 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTasksResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTasksResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTemplatesResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTemplatesResponse.java index 9aed579df43..844728c848f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTemplatesResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListTemplatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListUserDefinedFunctionValidationsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListUserDefinedFunctionValidationsResponse.java index 74407e02e88..478472a3158 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListUserDefinedFunctionValidationsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListUserDefinedFunctionValidationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListUserDefinedFunctionsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListUserDefinedFunctionsResponse.java index 503c1c7d3a3..db4b8bd7bae 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListUserDefinedFunctionsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListUserDefinedFunctionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListWorkRequestErrorsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListWorkRequestErrorsResponse.java index 13aec9ed31f..d2dd19422ae 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListWorkRequestLogsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListWorkRequestLogsResponse.java index d11fb21c9bd..e2eb21804ab 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListWorkRequestLogsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListWorkRequestsResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListWorkRequestsResponse.java index 1479c273f4a..72f0e04242a 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListWorkRequestsResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListWorkspacesResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListWorkspacesResponse.java index ea19660e6f1..76ab3b9775f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListWorkspacesResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/ListWorkspacesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/StartWorkspaceResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/StartWorkspaceResponse.java index 6e10fe393e8..2783dfd9cc5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/StartWorkspaceResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/StartWorkspaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/StopWorkspaceResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/StopWorkspaceResponse.java index a2f9b085412..030ed66a2f5 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/StopWorkspaceResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/StopWorkspaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateApplicationDetailedDescriptionResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateApplicationDetailedDescriptionResponse.java index 49349c2f339..33ae1e01e15 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateApplicationDetailedDescriptionResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateApplicationDetailedDescriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateApplicationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateApplicationResponse.java index c5d865612b8..2aed6a13344 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateApplicationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateConnectionResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateConnectionResponse.java index 09daf45f4eb..6423cb4fc29 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateConnectionResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateCopyObjectRequestResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateCopyObjectRequestResponse.java index f4b93322e9f..49ffad269c0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateCopyObjectRequestResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateCopyObjectRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateDataAssetResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateDataAssetResponse.java index d0d2c91c61c..ef39666b1a0 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateDataAssetResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateDataAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateDataFlowResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateDataFlowResponse.java index 675b0592132..1923f3d6eb2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateDataFlowResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateDataFlowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateDisApplicationDetailedDescriptionResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateDisApplicationDetailedDescriptionResponse.java index 79413f3c95b..bf688fbc18d 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateDisApplicationDetailedDescriptionResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateDisApplicationDetailedDescriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateDisApplicationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateDisApplicationResponse.java index c5c25837bef..dfbf995b829 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateDisApplicationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateDisApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateExportRequestResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateExportRequestResponse.java index b4c085603a8..0db7b8e5ab2 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateExportRequestResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateExportRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateExternalPublicationResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateExternalPublicationResponse.java index a1ce11a5429..305b06e09cc 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateExternalPublicationResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateExternalPublicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateFolderResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateFolderResponse.java index 045140ef60d..532278adf50 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateFolderResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateFolderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateFunctionLibraryResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateFunctionLibraryResponse.java index 3ca5fad2b03..0a5f516e008 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateFunctionLibraryResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateFunctionLibraryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateImportRequestResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateImportRequestResponse.java index 2515a0eb1ac..b043c480e52 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateImportRequestResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateImportRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdatePipelineResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdatePipelineResponse.java index 547888bea9a..c2aba0ec82f 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdatePipelineResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdatePipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateProjectResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateProjectResponse.java index e566f48ed51..78b22d095a7 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateProjectResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateReferenceResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateReferenceResponse.java index dc889f0ca99..9427a9e746e 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateReferenceResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateReferenceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateScheduleResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateScheduleResponse.java index 2053c1b290c..78c1ed76f43 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateScheduleResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateTaskResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateTaskResponse.java index 97a263c3ac9..6d310370aba 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateTaskResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateTaskResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateTaskRunResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateTaskRunResponse.java index 11a46a3b61c..76579b01c10 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateTaskRunResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateTaskRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateTaskScheduleResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateTaskScheduleResponse.java index 40e382a9325..0baea24fcc8 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateTaskScheduleResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateTaskScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateUserDefinedFunctionResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateUserDefinedFunctionResponse.java index 74a94e77730..8fb1e36371b 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateUserDefinedFunctionResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateUserDefinedFunctionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateWorkspaceResponse.java b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateWorkspaceResponse.java index 6bd7109a4e1..36f08ad4fbb 100644 --- a/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateWorkspaceResponse.java +++ b/bmc-dataintegration/src/main/java/com/oracle/bmc/dataintegration/responses/UpdateWorkspaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dataintegration.responses; diff --git a/bmc-dataintegration/src/main/resources/com/oracle/bmc/dataintegration/client.properties b/bmc-dataintegration/src/main/resources/com/oracle/bmc/dataintegration/client.properties index d394727cb3d..debfb7fb6e8 100644 --- a/bmc-dataintegration/src/main/resources/com/oracle/bmc/dataintegration/client.properties +++ b/bmc-dataintegration/src/main/resources/com/oracle/bmc/dataintegration/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-datalabelingservice/pom.xml b/bmc-datalabelingservice/pom.xml index 17143393daa..1806e5d6e88 100644 --- a/bmc-datalabelingservice/pom.xml +++ b/bmc-datalabelingservice/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-datalabelingservice @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagement.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagement.java index a586f1a719d..0a53dc5fb1e 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagement.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagementAsync.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagementAsync.java index 26d9166d029..7ab69aa4707 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagementAsync.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagementAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagementAsyncClient.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagementAsyncClient.java index e9d9f7ed435..6e06dcd17f9 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagementAsyncClient.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagementAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagementClient.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagementClient.java index 1325623af6d..2b22682afbf 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagementClient.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagementClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagementPaginators.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagementPaginators.java index 0f8b1838b61..d7f9a364e42 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagementPaginators.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagementPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagementWaiters.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagementWaiters.java index 8bada96cfb3..35877189158 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagementWaiters.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/DataLabelingManagementWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ActionType.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ActionType.java index ca7e2a3b0e9..248ba877547 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ActionType.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/AddDatasetLabelsDetails.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/AddDatasetLabelsDetails.java index c882734c055..a654e3bb091 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/AddDatasetLabelsDetails.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/AddDatasetLabelsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/AnnotationFormat.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/AnnotationFormat.java index e0daede88ff..07fc4d15a78 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/AnnotationFormat.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/AnnotationFormat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/AnnotationFormatCollection.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/AnnotationFormatCollection.java index 67538cf47d9..679cd432894 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/AnnotationFormatCollection.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/AnnotationFormatCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/AnnotationFormatSummary.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/AnnotationFormatSummary.java index 9bd617130dd..e1dad57a2a8 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/AnnotationFormatSummary.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/AnnotationFormatSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ChangeDatasetCompartmentDetails.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ChangeDatasetCompartmentDetails.java index 4254f505a06..c6a1751664c 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ChangeDatasetCompartmentDetails.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ChangeDatasetCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/CreateDatasetDetails.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/CreateDatasetDetails.java index 7b2ff77334d..ea1236fdaad 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/CreateDatasetDetails.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/CreateDatasetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/Dataset.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/Dataset.java index d4e537a8855..a0f38eea4e5 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/Dataset.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/Dataset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DatasetCollection.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DatasetCollection.java index ced1003bee7..150d2d0fa78 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DatasetCollection.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DatasetCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DatasetFormatDetails.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DatasetFormatDetails.java index 9bc9d742107..d2eea1eae62 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DatasetFormatDetails.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DatasetFormatDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DatasetSourceDetails.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DatasetSourceDetails.java index 266b62786fd..81d105b1e4d 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DatasetSourceDetails.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DatasetSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DatasetSummary.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DatasetSummary.java index d7c4f6f219f..69fdf5f03c6 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DatasetSummary.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DatasetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DelimitedFileTypeMetadata.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DelimitedFileTypeMetadata.java index 95de3750f9a..d6151922e25 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DelimitedFileTypeMetadata.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DelimitedFileTypeMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DocumentDatasetFormatDetails.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DocumentDatasetFormatDetails.java index 2652820e4b3..a13ebb25115 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DocumentDatasetFormatDetails.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/DocumentDatasetFormatDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ExportFormat.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ExportFormat.java index 29b91e2143a..6637df7d605 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ExportFormat.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ExportFormat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/GenerateDatasetRecordsDetails.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/GenerateDatasetRecordsDetails.java index 5eead851a75..daf6c27ca25 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/GenerateDatasetRecordsDetails.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/GenerateDatasetRecordsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ImageDatasetFormatDetails.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ImageDatasetFormatDetails.java index 69b81f0d922..be22a210fcd 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ImageDatasetFormatDetails.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ImageDatasetFormatDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ImportFormat.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ImportFormat.java index 2bf732b42a2..729a5113e9d 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ImportFormat.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ImportFormat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ImportMetadataPath.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ImportMetadataPath.java index 399e7b01b8a..c87fee3da68 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ImportMetadataPath.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ImportMetadataPath.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ImportPreAnnotatedDataDetails.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ImportPreAnnotatedDataDetails.java index 0a4f02fb3a8..c5a2c0e0190 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ImportPreAnnotatedDataDetails.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ImportPreAnnotatedDataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/InitialImportDatasetConfiguration.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/InitialImportDatasetConfiguration.java index 60648e49020..73ad8cdf438 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/InitialImportDatasetConfiguration.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/InitialImportDatasetConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/InitialRecordGenerationConfiguration.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/InitialRecordGenerationConfiguration.java index 4bc503e8de1..8850adf4562 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/InitialRecordGenerationConfiguration.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/InitialRecordGenerationConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/Label.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/Label.java index 73842886158..b628d117926 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/Label.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/Label.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/LabelSet.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/LabelSet.java index c048c0ee114..853d75ec1cf 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/LabelSet.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/LabelSet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ObjectStorageImportMetadataPath.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ObjectStorageImportMetadataPath.java index 07dc912d2f8..49b71538e50 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ObjectStorageImportMetadataPath.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ObjectStorageImportMetadataPath.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ObjectStorageSnapshotExportDetails.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ObjectStorageSnapshotExportDetails.java index 4197eb2c07c..db52a184833 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ObjectStorageSnapshotExportDetails.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ObjectStorageSnapshotExportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ObjectStorageSourceDetails.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ObjectStorageSourceDetails.java index 70e8fecb0bc..2c0e9748e6e 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ObjectStorageSourceDetails.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/ObjectStorageSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/OperationStatus.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/OperationStatus.java index 3cbd70d3a51..4f30db4f273 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/OperationStatus.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/OperationType.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/OperationType.java index def3491eab8..e5034d1089e 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/OperationType.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/RemoveDatasetLabelsDetails.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/RemoveDatasetLabelsDetails.java index 613a85381b3..c00c3dc0ceb 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/RemoveDatasetLabelsDetails.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/RemoveDatasetLabelsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/RenameDatasetLabelsDetails.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/RenameDatasetLabelsDetails.java index 8d648512eaf..8355a603934 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/RenameDatasetLabelsDetails.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/RenameDatasetLabelsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/SnapshotDatasetDetails.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/SnapshotDatasetDetails.java index f1f54327fb2..4f620cc3e32 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/SnapshotDatasetDetails.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/SnapshotDatasetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/SnapshotExportDetails.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/SnapshotExportDetails.java index 3dbca30f790..98e8ceb3af2 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/SnapshotExportDetails.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/SnapshotExportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/SortOrder.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/SortOrder.java index 539c238f041..ae756baca23 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/SortOrder.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/TextDatasetFormatDetails.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/TextDatasetFormatDetails.java index d33f107b241..8278084c354 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/TextDatasetFormatDetails.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/TextDatasetFormatDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/TextFileTypeMetadata.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/TextFileTypeMetadata.java index 0039dadfe96..36b5868192e 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/TextFileTypeMetadata.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/TextFileTypeMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/UpdateDatasetDetails.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/UpdateDatasetDetails.java index 887817e95ec..f522a9ac2a2 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/UpdateDatasetDetails.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/UpdateDatasetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequest.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequest.java index 07f66c0a711..1c3786b9101 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequest.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestError.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestError.java index 5c35ea0bc4d..0b6d7bdbbf9 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestError.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestErrorCollection.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestErrorCollection.java index 07e04945058..dcc9a9674a0 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestErrorCollection.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestLogEntry.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestLogEntry.java index 41b150ab40a..fc98e7fbdcc 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestLogEntry.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestLogEntryCollection.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestLogEntryCollection.java index ede8af0ef55..86ccbc00557 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestLogEntryCollection.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestResource.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestResource.java index afb156960ec..c2d1d3bb79a 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestResource.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestResourceMetadataKey.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestResourceMetadataKey.java index 020176ec60f..83325c57047 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestResourceMetadataKey.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestSummary.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestSummary.java index 779ff36c99b..82cef39c89c 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestSummary.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestSummaryCollection.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestSummaryCollection.java index 1e2cfa9634f..3165d7f4eb9 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestSummaryCollection.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.model; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/AddDatasetLabelsRequest.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/AddDatasetLabelsRequest.java index 4dfb26ab94e..2b7919bc820 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/AddDatasetLabelsRequest.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/AddDatasetLabelsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.requests; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ChangeDatasetCompartmentRequest.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ChangeDatasetCompartmentRequest.java index 9ebeef9643c..3fda7a4c745 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ChangeDatasetCompartmentRequest.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ChangeDatasetCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.requests; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/CreateDatasetRequest.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/CreateDatasetRequest.java index 33f8058d391..949cc7fd865 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/CreateDatasetRequest.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/CreateDatasetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.requests; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/DeleteDatasetRequest.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/DeleteDatasetRequest.java index cbc09cc36dc..ac770f74c23 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/DeleteDatasetRequest.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/DeleteDatasetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.requests; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/GenerateDatasetRecordsRequest.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/GenerateDatasetRecordsRequest.java index f45881376a7..a73290ce74a 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/GenerateDatasetRecordsRequest.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/GenerateDatasetRecordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.requests; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/GetDatasetRequest.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/GetDatasetRequest.java index f0c7a7a7fbb..bcba520067f 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/GetDatasetRequest.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/GetDatasetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.requests; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/GetWorkRequestRequest.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/GetWorkRequestRequest.java index ca431466073..f232acb3f0c 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/GetWorkRequestRequest.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.requests; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ImportPreAnnotatedDataRequest.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ImportPreAnnotatedDataRequest.java index a1324c3a67d..36ef340633c 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ImportPreAnnotatedDataRequest.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ImportPreAnnotatedDataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.requests; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ListAnnotationFormatsRequest.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ListAnnotationFormatsRequest.java index 977e7ba1830..7dc0f894f13 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ListAnnotationFormatsRequest.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ListAnnotationFormatsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.requests; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ListDatasetsRequest.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ListDatasetsRequest.java index 461bd74d02f..dc7dab1bf17 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ListDatasetsRequest.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ListDatasetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.requests; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ListWorkRequestErrorsRequest.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ListWorkRequestErrorsRequest.java index 7abdb53b994..48b735f5026 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.requests; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ListWorkRequestLogsRequest.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ListWorkRequestLogsRequest.java index 5078d1cb1d3..9fce921668a 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ListWorkRequestLogsRequest.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.requests; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ListWorkRequestsRequest.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ListWorkRequestsRequest.java index 796ddb008ab..fced164c0a0 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ListWorkRequestsRequest.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.requests; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/RemoveDatasetLabelsRequest.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/RemoveDatasetLabelsRequest.java index de50f686737..b0581a69879 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/RemoveDatasetLabelsRequest.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/RemoveDatasetLabelsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.requests; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/RenameDatasetLabelsRequest.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/RenameDatasetLabelsRequest.java index bbc1f9bd965..de4e07205ee 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/RenameDatasetLabelsRequest.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/RenameDatasetLabelsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.requests; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/SnapshotDatasetRequest.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/SnapshotDatasetRequest.java index 37a44198811..69e7217fb95 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/SnapshotDatasetRequest.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/SnapshotDatasetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.requests; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/UpdateDatasetRequest.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/UpdateDatasetRequest.java index 864285e1df5..0928537656c 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/UpdateDatasetRequest.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/requests/UpdateDatasetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.requests; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/AddDatasetLabelsResponse.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/AddDatasetLabelsResponse.java index 7a78e2bb6a3..a97f0d22c09 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/AddDatasetLabelsResponse.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/AddDatasetLabelsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.responses; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ChangeDatasetCompartmentResponse.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ChangeDatasetCompartmentResponse.java index fba92572b1c..3c770067c84 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ChangeDatasetCompartmentResponse.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ChangeDatasetCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.responses; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/CreateDatasetResponse.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/CreateDatasetResponse.java index 0c4ba99f217..5bfd809eb1f 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/CreateDatasetResponse.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/CreateDatasetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.responses; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/DeleteDatasetResponse.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/DeleteDatasetResponse.java index a86144992ad..88e0e502ef4 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/DeleteDatasetResponse.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/DeleteDatasetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.responses; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/GenerateDatasetRecordsResponse.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/GenerateDatasetRecordsResponse.java index 9b111b5131f..235dbf25596 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/GenerateDatasetRecordsResponse.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/GenerateDatasetRecordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.responses; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/GetDatasetResponse.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/GetDatasetResponse.java index 04816c2abc6..4d0bb960a14 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/GetDatasetResponse.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/GetDatasetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.responses; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/GetWorkRequestResponse.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/GetWorkRequestResponse.java index a13e963831c..48f63cc67af 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/GetWorkRequestResponse.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.responses; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ImportPreAnnotatedDataResponse.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ImportPreAnnotatedDataResponse.java index bb76cf2d2e3..d3560f428ed 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ImportPreAnnotatedDataResponse.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ImportPreAnnotatedDataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.responses; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ListAnnotationFormatsResponse.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ListAnnotationFormatsResponse.java index 4e6e0d4bdca..784814e77a5 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ListAnnotationFormatsResponse.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ListAnnotationFormatsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.responses; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ListDatasetsResponse.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ListDatasetsResponse.java index 3bd9d646cd0..e4dd8cb9d65 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ListDatasetsResponse.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ListDatasetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.responses; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ListWorkRequestErrorsResponse.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ListWorkRequestErrorsResponse.java index f2d4e65d292..11103d01dd4 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.responses; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ListWorkRequestLogsResponse.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ListWorkRequestLogsResponse.java index 246c0440a73..1483befec73 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ListWorkRequestLogsResponse.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.responses; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ListWorkRequestsResponse.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ListWorkRequestsResponse.java index f349836cf0e..e0200bb7bfc 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ListWorkRequestsResponse.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.responses; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/RemoveDatasetLabelsResponse.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/RemoveDatasetLabelsResponse.java index f14c07a8f81..08530c31900 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/RemoveDatasetLabelsResponse.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/RemoveDatasetLabelsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.responses; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/RenameDatasetLabelsResponse.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/RenameDatasetLabelsResponse.java index 3363a779db7..d0fa200c4ec 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/RenameDatasetLabelsResponse.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/RenameDatasetLabelsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.responses; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/SnapshotDatasetResponse.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/SnapshotDatasetResponse.java index 4f85e52d828..ddf9301ae37 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/SnapshotDatasetResponse.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/SnapshotDatasetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.responses; diff --git a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/UpdateDatasetResponse.java b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/UpdateDatasetResponse.java index ace24e10215..d4214e37ef6 100644 --- a/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/UpdateDatasetResponse.java +++ b/bmc-datalabelingservice/src/main/java/com/oracle/bmc/datalabelingservice/responses/UpdateDatasetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservice.responses; diff --git a/bmc-datalabelingservice/src/main/resources/com/oracle/bmc/datalabelingservice/client.properties b/bmc-datalabelingservice/src/main/resources/com/oracle/bmc/datalabelingservice/client.properties index 1cd04cd4fd0..c04594dcf04 100644 --- a/bmc-datalabelingservice/src/main/resources/com/oracle/bmc/datalabelingservice/client.properties +++ b/bmc-datalabelingservice/src/main/resources/com/oracle/bmc/datalabelingservice/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-datalabelingservicedataplane/pom.xml b/bmc-datalabelingservicedataplane/pom.xml index 74fa8122b1b..100e33e4704 100644 --- a/bmc-datalabelingservicedataplane/pom.xml +++ b/bmc-datalabelingservicedataplane/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-datalabelingservicedataplane @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabeling.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabeling.java index 437cda9f5eb..18eaa894989 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabeling.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabeling.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabelingAsync.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabelingAsync.java index f6c441d52d2..afcfaee5b4c 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabelingAsync.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabelingAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabelingAsyncClient.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabelingAsyncClient.java index 101e35c6dfd..e5ca824fa1e 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabelingAsyncClient.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabelingAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabelingClient.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabelingClient.java index b7cbff5e943..f80422334e7 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabelingClient.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabelingClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabelingPaginators.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabelingPaginators.java index 5fdb5b2ac87..d31e46cc7ea 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabelingPaginators.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabelingPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabelingWaiters.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabelingWaiters.java index 4057b4a1e6c..99cf89fc925 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabelingWaiters.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/DataLabelingWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/Annotation.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/Annotation.java index 512cfe541ff..f90988ed66c 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/Annotation.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/Annotation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/AnnotationAggregationDimensions.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/AnnotationAggregationDimensions.java index 0e523ab3f36..3c955fb26b3 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/AnnotationAggregationDimensions.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/AnnotationAggregationDimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/AnnotationAnalyticsAggregation.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/AnnotationAnalyticsAggregation.java index c26221b4f90..a64cdb06959 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/AnnotationAnalyticsAggregation.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/AnnotationAnalyticsAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/AnnotationAnalyticsAggregationCollection.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/AnnotationAnalyticsAggregationCollection.java index f0cb345d5f5..712cedcb4fd 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/AnnotationAnalyticsAggregationCollection.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/AnnotationAnalyticsAggregationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/AnnotationCollection.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/AnnotationCollection.java index 70b10132bce..6da3330422e 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/AnnotationCollection.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/AnnotationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/AnnotationSummary.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/AnnotationSummary.java index 126aabd9e43..b10fae62f1c 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/AnnotationSummary.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/AnnotationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/BoundingPolygon.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/BoundingPolygon.java index f979f2a162c..607b9bc45b6 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/BoundingPolygon.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/BoundingPolygon.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/CreateAnnotationDetails.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/CreateAnnotationDetails.java index ef13297e4ea..c39ba52b4ad 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/CreateAnnotationDetails.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/CreateAnnotationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/CreateObjectStorageSourceDetails.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/CreateObjectStorageSourceDetails.java index f416fd8f292..74f40be5510 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/CreateObjectStorageSourceDetails.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/CreateObjectStorageSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/CreateRecordDetails.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/CreateRecordDetails.java index 3813c4da31b..f654dd60e20 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/CreateRecordDetails.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/CreateRecordDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/CreateSourceDetails.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/CreateSourceDetails.java index 0ee93b24350..f31c7b33e51 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/CreateSourceDetails.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/CreateSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/Dataset.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/Dataset.java index 85ae709ff75..9df2c356c78 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/Dataset.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/Dataset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DatasetFormatDetails.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DatasetFormatDetails.java index 5291a6729a0..128aaf2fa18 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DatasetFormatDetails.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DatasetFormatDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DatasetSourceDetails.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DatasetSourceDetails.java index 06bfdbb4158..e5559080db5 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DatasetSourceDetails.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DatasetSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DelimitedFileTypeMetadata.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DelimitedFileTypeMetadata.java index 9e349ebc010..ce4dd74da62 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DelimitedFileTypeMetadata.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DelimitedFileTypeMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DocumentDatasetFormatDetails.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DocumentDatasetFormatDetails.java index 70794cb1c67..393fac114af 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DocumentDatasetFormatDetails.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DocumentDatasetFormatDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DocumentEntityMetadata.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DocumentEntityMetadata.java index e0cfa8d7f54..0194a2d79f7 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DocumentEntityMetadata.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DocumentEntityMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DocumentMetadata.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DocumentMetadata.java index 0cbb5785636..fae04baf7f5 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DocumentMetadata.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/DocumentMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/Entity.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/Entity.java index bc184260dce..20fbe80f872 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/Entity.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/Entity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/GenericEntity.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/GenericEntity.java index afa0226f573..f0c22b0f882 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/GenericEntity.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/GenericEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ImageDatasetFormatDetails.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ImageDatasetFormatDetails.java index 1f77eefba5a..35f42d400b8 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ImageDatasetFormatDetails.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ImageDatasetFormatDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ImageMetadata.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ImageMetadata.java index f1cbdd3f407..dd150ddb829 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ImageMetadata.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ImageMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ImageObjectSelectionEntity.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ImageObjectSelectionEntity.java index 1b2ab9c3947..2fb65e22e15 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ImageObjectSelectionEntity.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ImageObjectSelectionEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ImportFormat.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ImportFormat.java index 98ab74215db..4db0d322dd3 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ImportFormat.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ImportFormat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ImportMetadataPath.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ImportMetadataPath.java index ee86d6a9983..08674a30d13 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ImportMetadataPath.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ImportMetadataPath.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/InitialImportDatasetConfiguration.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/InitialImportDatasetConfiguration.java index 4d4d6468f43..ee3321016f7 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/InitialImportDatasetConfiguration.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/InitialImportDatasetConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/InitialRecordGenerationConfiguration.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/InitialRecordGenerationConfiguration.java index 4f6f8425e2b..eee2918e649 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/InitialRecordGenerationConfiguration.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/InitialRecordGenerationConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/KeyValueSelectionEntity.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/KeyValueSelectionEntity.java index 39991f91357..b7284999086 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/KeyValueSelectionEntity.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/KeyValueSelectionEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/Label.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/Label.java index 136e6a462e2..a8ec09004dd 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/Label.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/Label.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/LabelName.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/LabelName.java index a2eddbf1eb8..a0b38b67237 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/LabelName.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/LabelName.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/LabelSet.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/LabelSet.java index f9d5d399c33..aaa8a9580cf 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/LabelSet.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/LabelSet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/NormalizedVertex.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/NormalizedVertex.java index f7131e63562..1218d00da51 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/NormalizedVertex.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/NormalizedVertex.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ObjectStorageDatasetSourceDetails.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ObjectStorageDatasetSourceDetails.java index 6f0d58873f0..7d29951ca81 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ObjectStorageDatasetSourceDetails.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ObjectStorageDatasetSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ObjectStorageImportMetadataPath.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ObjectStorageImportMetadataPath.java index f8b2cfcf163..c6846ab35eb 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ObjectStorageImportMetadataPath.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ObjectStorageImportMetadataPath.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ObjectStorageSourceDetails.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ObjectStorageSourceDetails.java index 0648c6f18a6..7ca523c1f4b 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ObjectStorageSourceDetails.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/ObjectStorageSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/Record.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/Record.java index ce7f01a7530..52dc171644a 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/Record.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/Record.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordAggregationDimensions.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordAggregationDimensions.java index d11a9aa7491..c09518953a9 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordAggregationDimensions.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordAggregationDimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordAnalyticsAggregation.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordAnalyticsAggregation.java index 74a33993e75..bd3cd63c947 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordAnalyticsAggregation.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordAnalyticsAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordAnalyticsAggregationCollection.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordAnalyticsAggregationCollection.java index 83903084625..840ea7b2f83 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordAnalyticsAggregationCollection.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordAnalyticsAggregationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordCollection.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordCollection.java index 67b15c325cb..0d876d4c8e8 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordCollection.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordMetadata.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordMetadata.java index f3fcf8bf509..57363e21b23 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordMetadata.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordSummary.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordSummary.java index abc48ff03a2..e17ab3d0ecc 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordSummary.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/RecordSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/SortOrders.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/SortOrders.java index 8e8fc6f0307..b720c13fd82 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/SortOrders.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/SortOrders.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/SourceDetails.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/SourceDetails.java index c8af65645de..2583d6dec95 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/SourceDetails.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/SourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/TextDatasetFormatDetails.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/TextDatasetFormatDetails.java index 3aed4d4798f..e6fbdc6784a 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/TextDatasetFormatDetails.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/TextDatasetFormatDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/TextFileTypeMetadata.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/TextFileTypeMetadata.java index c81c62fd304..f0263936640 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/TextFileTypeMetadata.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/TextFileTypeMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/TextMetadata.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/TextMetadata.java index 0d0525da2a9..e2c21a5c1a5 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/TextMetadata.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/TextMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/TextSelectionEntity.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/TextSelectionEntity.java index 79dd1e247bc..31fb58f6ad2 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/TextSelectionEntity.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/TextSelectionEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/TextSpan.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/TextSpan.java index ee0b818930e..082bed966f7 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/TextSpan.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/TextSpan.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/UpdateAnnotationDetails.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/UpdateAnnotationDetails.java index e0e92075748..153a59548b1 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/UpdateAnnotationDetails.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/UpdateAnnotationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/UpdateRecordDetails.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/UpdateRecordDetails.java index 61a618ff23b..141608f170b 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/UpdateRecordDetails.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/model/UpdateRecordDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.model; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/CreateAnnotationRequest.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/CreateAnnotationRequest.java index a6e5ee424de..f338c707524 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/CreateAnnotationRequest.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/CreateAnnotationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.requests; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/CreateRecordRequest.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/CreateRecordRequest.java index b944fd86ec9..dba7ffc0741 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/CreateRecordRequest.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/CreateRecordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.requests; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/DeleteAnnotationRequest.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/DeleteAnnotationRequest.java index ae3dd8c4ef2..10bc75242ee 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/DeleteAnnotationRequest.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/DeleteAnnotationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.requests; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/DeleteRecordRequest.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/DeleteRecordRequest.java index 36e66b2d68b..2fc91a1b562 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/DeleteRecordRequest.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/DeleteRecordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.requests; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/GetAnnotationRequest.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/GetAnnotationRequest.java index c05b6e5d1ff..73520afd72d 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/GetAnnotationRequest.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/GetAnnotationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.requests; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/GetDatasetRequest.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/GetDatasetRequest.java index 8f6ef11d010..e0b041568fa 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/GetDatasetRequest.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/GetDatasetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.requests; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/GetRecordContentRequest.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/GetRecordContentRequest.java index bba8f3f430c..a21c834c326 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/GetRecordContentRequest.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/GetRecordContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.requests; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/GetRecordPreviewContentRequest.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/GetRecordPreviewContentRequest.java index dedf847dc41..f6d448eb461 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/GetRecordPreviewContentRequest.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/GetRecordPreviewContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.requests; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/GetRecordRequest.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/GetRecordRequest.java index 224e1a6627f..d4fb598705d 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/GetRecordRequest.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/GetRecordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.requests; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/ListAnnotationsRequest.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/ListAnnotationsRequest.java index 5cecd94abe3..c85ed897bf8 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/ListAnnotationsRequest.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/ListAnnotationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.requests; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/ListRecordsRequest.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/ListRecordsRequest.java index 967714a9379..01468cb3afe 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/ListRecordsRequest.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/ListRecordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.requests; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/SummarizeAnnotationAnalyticsRequest.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/SummarizeAnnotationAnalyticsRequest.java index 5ec9fe96f8c..7e4dd945461 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/SummarizeAnnotationAnalyticsRequest.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/SummarizeAnnotationAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.requests; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/SummarizeRecordAnalyticsRequest.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/SummarizeRecordAnalyticsRequest.java index d436919bb4e..d0915a52d22 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/SummarizeRecordAnalyticsRequest.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/SummarizeRecordAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.requests; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/UpdateAnnotationRequest.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/UpdateAnnotationRequest.java index 2b7d78137d2..a6fd69a9290 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/UpdateAnnotationRequest.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/UpdateAnnotationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.requests; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/UpdateRecordRequest.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/UpdateRecordRequest.java index 3026c823ac6..31d051d4771 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/UpdateRecordRequest.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/requests/UpdateRecordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.requests; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/CreateAnnotationResponse.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/CreateAnnotationResponse.java index b6a0021a4cf..5103707135a 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/CreateAnnotationResponse.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/CreateAnnotationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.responses; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/CreateRecordResponse.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/CreateRecordResponse.java index a2d95a1c731..64b3db6cd54 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/CreateRecordResponse.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/CreateRecordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.responses; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/DeleteAnnotationResponse.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/DeleteAnnotationResponse.java index 759e55a8d61..416ec99ec1a 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/DeleteAnnotationResponse.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/DeleteAnnotationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.responses; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/DeleteRecordResponse.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/DeleteRecordResponse.java index e252bb45902..b8245b5e76c 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/DeleteRecordResponse.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/DeleteRecordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.responses; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/GetAnnotationResponse.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/GetAnnotationResponse.java index ea8b2a8b958..04b9cbdbec8 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/GetAnnotationResponse.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/GetAnnotationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.responses; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/GetDatasetResponse.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/GetDatasetResponse.java index b1c8261120e..0b23668bb45 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/GetDatasetResponse.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/GetDatasetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.responses; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/GetRecordContentResponse.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/GetRecordContentResponse.java index ca5eefe6761..de432e16d2e 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/GetRecordContentResponse.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/GetRecordContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.responses; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/GetRecordPreviewContentResponse.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/GetRecordPreviewContentResponse.java index 6557d0a9fe9..20f3be7c0f4 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/GetRecordPreviewContentResponse.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/GetRecordPreviewContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.responses; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/GetRecordResponse.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/GetRecordResponse.java index 54d6b2f81b7..f8f61712e44 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/GetRecordResponse.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/GetRecordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.responses; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/ListAnnotationsResponse.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/ListAnnotationsResponse.java index e92f77be821..c4934d47001 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/ListAnnotationsResponse.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/ListAnnotationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.responses; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/ListRecordsResponse.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/ListRecordsResponse.java index c42c6f07297..d8c2476b5bb 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/ListRecordsResponse.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/ListRecordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.responses; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/SummarizeAnnotationAnalyticsResponse.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/SummarizeAnnotationAnalyticsResponse.java index 8d9df25d8f8..dabced1575f 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/SummarizeAnnotationAnalyticsResponse.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/SummarizeAnnotationAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.responses; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/SummarizeRecordAnalyticsResponse.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/SummarizeRecordAnalyticsResponse.java index 4c87754f58e..a2a76338f62 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/SummarizeRecordAnalyticsResponse.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/SummarizeRecordAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.responses; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/UpdateAnnotationResponse.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/UpdateAnnotationResponse.java index 44a45b327ae..b6be213c6fb 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/UpdateAnnotationResponse.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/UpdateAnnotationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.responses; diff --git a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/UpdateRecordResponse.java b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/UpdateRecordResponse.java index d8b05b73a73..1da90919167 100644 --- a/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/UpdateRecordResponse.java +++ b/bmc-datalabelingservicedataplane/src/main/java/com/oracle/bmc/datalabelingservicedataplane/responses/UpdateRecordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datalabelingservicedataplane.responses; diff --git a/bmc-datalabelingservicedataplane/src/main/resources/com/oracle/bmc/datalabelingservicedataplane/client.properties b/bmc-datalabelingservicedataplane/src/main/resources/com/oracle/bmc/datalabelingservicedataplane/client.properties index 1cd04cd4fd0..c04594dcf04 100644 --- a/bmc-datalabelingservicedataplane/src/main/resources/com/oracle/bmc/datalabelingservicedataplane/client.properties +++ b/bmc-datalabelingservicedataplane/src/main/resources/com/oracle/bmc/datalabelingservicedataplane/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-datasafe/pom.xml b/bmc-datasafe/pom.xml index bb35421c739..b78d4716134 100644 --- a/bmc-datasafe/pom.xml +++ b/bmc-datasafe/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-datasafe @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafe.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafe.java index 09ffb186466..7c63a92ca95 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafe.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafe.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafeAsync.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafeAsync.java index ccd3429703f..ca87a055a7d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafeAsync.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafeAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafeAsyncClient.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafeAsyncClient.java index 02e174248ca..906998367da 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafeAsyncClient.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafeAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafeClient.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafeClient.java index 57a0d66ae3b..1e51b420b62 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafeClient.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafeClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafePaginators.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafePaginators.java index e8f2a74a52f..e0edc103310 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafePaginators.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafeWaiters.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafeWaiters.java index 0d75af306c1..ff7025aad74 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafeWaiters.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/DataSafeWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AccessType.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AccessType.java index 15801794c73..81aa39e8760 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AccessType.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AccessType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ActivateTargetDatabaseDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ActivateTargetDatabaseDetails.java index 03a8e8edb32..399dce106f8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ActivateTargetDatabaseDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ActivateTargetDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Alert.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Alert.java index 50eeae72ec6..623e9a1716c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Alert.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Alert.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertAggregationItems.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertAggregationItems.java index 473bd068702..e67e7893e05 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertAggregationItems.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertAggregationItems.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertAnalyticsCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertAnalyticsCollection.java index f3a7494e202..5f864266d7e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertAnalyticsCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertAnalyticsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertCollection.java index 4a514d4d002..8a347de3c08 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertLifecycleState.java index 98f2393112e..09c5b8959ea 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicy.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicy.java index 8262159d964..2fc8bceeb6b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicy.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyCollection.java index c01a88c36e8..54e86e135a7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyLifecycleState.java index 02203dd8c04..e95390ec30d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyRule.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyRule.java index 2e992e87feb..fd7bce40ab9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyRule.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyRuleCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyRuleCollection.java index bef940c75d4..8b93a003219 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyRuleCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyRuleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyRuleLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyRuleLifecycleState.java index 42872f05775..4373d300531 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyRuleLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyRuleLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyRuleSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyRuleSummary.java index 5b2e712685c..04c839ef4ea 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyRuleSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicySummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicySummary.java index 00793904157..0089884eba3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicySummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyType.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyType.java index e8288a843bf..bc5a3b1e0ec 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyType.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertPolicyType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertSeverity.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertSeverity.java index 582c382e0e9..7c0aefbc91c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertSeverity.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertSeverity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertStatus.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertStatus.java index 9e6e5aa0d83..0ee8e0ec21e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertStatus.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertSummary.java index 2af1a6d345b..538083c9b4d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertType.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertType.java index 9661bc22aa6..2b44dcdf464 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertType.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertsAggregationDimension.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertsAggregationDimension.java index 113dcf25104..a845f2d7a92 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertsAggregationDimension.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertsAggregationDimension.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertsUpdateDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertsUpdateDetails.java index 81d1a81cb6a..c5a574cbc8c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertsUpdateDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AlertsUpdateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AllUserCondition.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AllUserCondition.java index 610b5e140c3..f6405a0783d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AllUserCondition.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AllUserCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ApplyDiscoveryJobResultsDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ApplyDiscoveryJobResultsDetails.java index 6c3323f05cf..54aa75f255a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ApplyDiscoveryJobResultsDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ApplyDiscoveryJobResultsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ApplySdmMaskingPolicyDifferenceDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ApplySdmMaskingPolicyDifferenceDetails.java index c64cc9149eb..12d54d7fc34 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ApplySdmMaskingPolicyDifferenceDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ApplySdmMaskingPolicyDifferenceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AssociatedResourceCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AssociatedResourceCollection.java index 9ed0ae83ef7..d276766b1f2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AssociatedResourceCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AssociatedResourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AssociatedResourceSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AssociatedResourceSummary.java index 342693e8fe3..78e168c0068 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AssociatedResourceSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AssociatedResourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AttributeSet.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AttributeSet.java index 7f95aa43e13..7fd5ff60f5e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AttributeSet.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AttributeSet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AttributeSetCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AttributeSetCollection.java index 350ba75bc4b..b46ce590bc6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AttributeSetCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AttributeSetCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AttributeSetCondition.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AttributeSetCondition.java index d1f384b5b8e..9fd9fdf253d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AttributeSetCondition.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AttributeSetCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AttributeSetSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AttributeSetSummary.java index d596397e97d..2ff886716d6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AttributeSetSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AttributeSetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditArchiveRetrieval.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditArchiveRetrieval.java index 74da68d3be8..1540afadaeb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditArchiveRetrieval.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditArchiveRetrieval.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditArchiveRetrievalCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditArchiveRetrievalCollection.java index 861fa9b5cf9..4f0ae43c7ba 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditArchiveRetrievalCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditArchiveRetrievalCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditArchiveRetrievalLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditArchiveRetrievalLifecycleState.java index 1fdd26917ae..fe415656110 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditArchiveRetrievalLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditArchiveRetrievalLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditArchiveRetrievalSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditArchiveRetrievalSummary.java index f82ebbbef72..a91e89440f1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditArchiveRetrievalSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditArchiveRetrievalSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditConditions.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditConditions.java index e8e6b76c82f..6a8e173b6ad 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditConditions.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditConditions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditEventAggregationDimensions.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditEventAggregationDimensions.java index 0c803956b62..fcc670d9c65 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditEventAggregationDimensions.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditEventAggregationDimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditEventAggregationItems.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditEventAggregationItems.java index c2c3235a82e..fc63c4e45a7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditEventAggregationItems.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditEventAggregationItems.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditEventAnalyticsCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditEventAnalyticsCollection.java index f4640bd90f1..426d532433d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditEventAnalyticsCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditEventAnalyticsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditEventCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditEventCollection.java index d6032662878..34dfbc00b1a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditEventCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditEventCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditEventSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditEventSummary.java index 446163262e0..a8fb6ad497a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditEventSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditEventSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicy.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicy.java index e07af4ea604..7b98bc1b212 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicy.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyAggregationItems.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyAggregationItems.java index 8df04225d82..a53f81aa579 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyAggregationItems.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyAggregationItems.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyAnalyticCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyAnalyticCollection.java index fff8eea7ae9..3f3ba0ca15b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyAnalyticCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyAnalyticCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyCategory.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyCategory.java index d0814432e8c..e67c23f41ae 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyCategory.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyCategory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyCollection.java index 1cea07b5696..1a99d66808a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyDimensions.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyDimensions.java index d689dec50a7..6ff7bf31e66 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyDimensions.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyDimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyEntryDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyEntryDetails.java index c42d4375fd5..b8a9ebf32c1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyEntryDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyEntryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyLifecycleState.java index 3465a879ba6..784bed007b1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicyLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicySummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicySummary.java index 869989e5cf2..092d0880ab2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicySummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditPolicySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfile.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfile.java index 5f094d8fc99..ddb925bc286 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfile.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileAggregationItems.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileAggregationItems.java index 208826c1f37..ca65a63f551 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileAggregationItems.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileAggregationItems.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileAnalyticCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileAnalyticCollection.java index 11a6e561085..e32ad9bb4a5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileAnalyticCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileAnalyticCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileCollection.java index aa523ea21e5..e0f08f785cf 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileDimensions.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileDimensions.java index 32575a532e6..a0758c8629d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileDimensions.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileDimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileLifecycleState.java index e37b213b469..92b8d47c435 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileSummary.java index d73f4a22c03..e51f3349c6b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileTargetType.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileTargetType.java index b2c91edff2b..b294723a335 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileTargetType.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditProfileTargetType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditSpecification.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditSpecification.java index bfc38c88760..a4d98b93757 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditSpecification.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditSpecification.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrail.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrail.java index 3c4a5cef949..91751688f7e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrail.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailAggregationItems.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailAggregationItems.java index c9ebbfab2af..604cf8e6672 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailAggregationItems.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailAggregationItems.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailAnalyticCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailAnalyticCollection.java index cb06010df62..3fcd813e0a4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailAnalyticCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailAnalyticCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailCollection.java index 45dd33e3b5c..b1affb9f3d0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailDimensions.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailDimensions.java index fee05d02b9d..4f7ba132086 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailDimensions.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailDimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailLifecycleState.java index 712e317f7e9..ce64ad16ea9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailSource.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailSource.java index cbc3f30ecaf..85fd802c72f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailSource.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailStatus.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailStatus.java index 40097277025..47240328e62 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailStatus.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailSummary.java index f4bd2cf5767..39311ca138d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AuditTrailSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AutonomousDatabaseDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AutonomousDatabaseDetails.java index 4b5a3828e50..0c867896497 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AutonomousDatabaseDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AutonomousDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AvailableAuditVolumeCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AvailableAuditVolumeCollection.java index caaee8326cc..66e2f3e1b69 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AvailableAuditVolumeCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AvailableAuditVolumeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AvailableAuditVolumeSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AvailableAuditVolumeSummary.java index 3e0ee1be78c..4da141b4fee 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AvailableAuditVolumeSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/AvailableAuditVolumeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/BulkCreateSqlFirewallAllowedSqlsDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/BulkCreateSqlFirewallAllowedSqlsDetails.java index 3bb34b641f2..a9ed67f9153 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/BulkCreateSqlFirewallAllowedSqlsDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/BulkCreateSqlFirewallAllowedSqlsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/BulkCreateUnifiedAuditPolicyDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/BulkCreateUnifiedAuditPolicyDetails.java index 73fc97933d4..abb5572d128 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/BulkCreateUnifiedAuditPolicyDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/BulkCreateUnifiedAuditPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/BulkDeleteSqlFirewallAllowedSqlsDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/BulkDeleteSqlFirewallAllowedSqlsDetails.java index 0375d6bbc64..7feb8e0e699 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/BulkDeleteSqlFirewallAllowedSqlsDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/BulkDeleteSqlFirewallAllowedSqlsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CalculateAuditVolumeAvailableDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CalculateAuditVolumeAvailableDetails.java index 62075242248..f7ee5ae9e83 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CalculateAuditVolumeAvailableDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CalculateAuditVolumeAvailableDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CalculateAuditVolumeCollectedDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CalculateAuditVolumeCollectedDetails.java index de04474e552..714e97b1c2b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CalculateAuditVolumeCollectedDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CalculateAuditVolumeCollectedDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAlertCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAlertCompartmentDetails.java index 24be171778d..6ffab817c01 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAlertCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAlertCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAlertPolicyCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAlertPolicyCompartmentDetails.java index 39e041a5984..43626ebf647 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAlertPolicyCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAlertPolicyCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAttributeSetCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAttributeSetCompartmentDetails.java index c7a29e5aebf..3377b551ab9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAttributeSetCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAttributeSetCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAuditArchiveRetrievalCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAuditArchiveRetrievalCompartmentDetails.java index 15432f8385f..8b79338090c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAuditArchiveRetrievalCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAuditArchiveRetrievalCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAuditPolicyCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAuditPolicyCompartmentDetails.java index 9b33b761915..56bd89e3412 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAuditPolicyCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAuditPolicyCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAuditProfileCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAuditProfileCompartmentDetails.java index 0230c5a1706..b90328245fa 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAuditProfileCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeAuditProfileCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeDataSafePrivateEndpointCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeDataSafePrivateEndpointCompartmentDetails.java index 630b9379b39..1a9fd07f604 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeDataSafePrivateEndpointCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeDataSafePrivateEndpointCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeDatabaseSecurityConfigCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeDatabaseSecurityConfigCompartmentDetails.java index 164e2308906..f5f14ba0fce 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeDatabaseSecurityConfigCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeDatabaseSecurityConfigCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeDiscoveryJobCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeDiscoveryJobCompartmentDetails.java index b8dd02419f5..dfded838bd5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeDiscoveryJobCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeDiscoveryJobCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeLibraryMaskingFormatCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeLibraryMaskingFormatCompartmentDetails.java index 061e4b215c6..1e9f25bbbdc 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeLibraryMaskingFormatCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeLibraryMaskingFormatCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeMaskingPolicyCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeMaskingPolicyCompartmentDetails.java index e4ba59a2d54..794b58cf79f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeMaskingPolicyCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeMaskingPolicyCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeMaskingPolicyHealthReportCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeMaskingPolicyHealthReportCompartmentDetails.java index 5e070520260..2fb69ec66c3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeMaskingPolicyHealthReportCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeMaskingPolicyHealthReportCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeOnPremConnectorCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeOnPremConnectorCompartmentDetails.java index cdf9b87120c..0d2924bc637 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeOnPremConnectorCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeOnPremConnectorCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeReportCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeReportCompartmentDetails.java index 7dd7f889a0c..a0b3f981ca8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeReportCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeReportCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeReportDefinitionCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeReportDefinitionCompartmentDetails.java index ef6f4d194d4..b72bf084ae5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeReportDefinitionCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeReportDefinitionCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeRetentionDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeRetentionDetails.java index 66a5b76bd3c..ba3df71fa69 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeRetentionDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeRetentionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSdmMaskingPolicyDifferenceCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSdmMaskingPolicyDifferenceCompartmentDetails.java index 4c495938f87..cf1a2d4523f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSdmMaskingPolicyDifferenceCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSdmMaskingPolicyDifferenceCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSecurityAssessmentCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSecurityAssessmentCompartmentDetails.java index b7f0e9a5c1d..a3b0a8e2238 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSecurityAssessmentCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSecurityAssessmentCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSecurityPolicyCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSecurityPolicyCompartmentDetails.java index d1c9dcb4049..9c951a7c7b1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSecurityPolicyCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSecurityPolicyCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSecurityPolicyConfigCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSecurityPolicyConfigCompartmentDetails.java index fa6b7ee407b..eff85b1fc1b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSecurityPolicyConfigCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSecurityPolicyConfigCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSecurityPolicyDeploymentCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSecurityPolicyDeploymentCompartmentDetails.java index aa6c2421e7e..5ca8d7f2e60 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSecurityPolicyDeploymentCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSecurityPolicyDeploymentCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSensitiveDataModelCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSensitiveDataModelCompartmentDetails.java index d85ec7fdc99..f46f4e5015c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSensitiveDataModelCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSensitiveDataModelCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSensitiveTypeCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSensitiveTypeCompartmentDetails.java index ee4ff7bd305..2c2343b327a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSensitiveTypeCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSensitiveTypeCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSensitiveTypeGroupCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSensitiveTypeGroupCompartmentDetails.java index de110e5a876..d6e8938e8cc 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSensitiveTypeGroupCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSensitiveTypeGroupCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSensitiveTypesExportCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSensitiveTypesExportCompartmentDetails.java index 76699e8def0..97d0d71b25b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSensitiveTypesExportCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSensitiveTypesExportCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSqlCollectionCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSqlCollectionCompartmentDetails.java index 7ddafef42b0..161c8757192 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSqlCollectionCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSqlCollectionCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSqlFirewallPolicyCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSqlFirewallPolicyCompartmentDetails.java index fca6ad0ae99..6bdf171fc2c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSqlFirewallPolicyCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeSqlFirewallPolicyCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeTargetAlertPolicyAssociationCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeTargetAlertPolicyAssociationCompartmentDetails.java index 304745d9400..fc943c72596 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeTargetAlertPolicyAssociationCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeTargetAlertPolicyAssociationCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeTargetDatabaseCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeTargetDatabaseCompartmentDetails.java index ae40e94259c..4deeae7d49f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeTargetDatabaseCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeTargetDatabaseCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeTargetDatabaseGroupCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeTargetDatabaseGroupCompartmentDetails.java index 51abb462c3b..be5d43abef6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeTargetDatabaseGroupCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeTargetDatabaseGroupCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeUnifiedAuditPolicyCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeUnifiedAuditPolicyCompartmentDetails.java index f871cfc2d24..839258731b9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeUnifiedAuditPolicyCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeUnifiedAuditPolicyCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeUnifiedAuditPolicyDefinitionCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeUnifiedAuditPolicyDefinitionCompartmentDetails.java index 50f620b36d4..930c3b20840 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeUnifiedAuditPolicyDefinitionCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeUnifiedAuditPolicyDefinitionCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeUserAssessmentCompartmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeUserAssessmentCompartmentDetails.java index 9fca85c1a57..55e79f5e007 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeUserAssessmentCompartmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ChangeUserAssessmentCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Check.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Check.java index 8678b76e7cc..9330f7d809e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Check.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Check.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CheckSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CheckSummary.java index 6f80ed8706d..23ce04d595f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CheckSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CheckSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CollectedAuditVolumeCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CollectedAuditVolumeCollection.java index 2f7dc76b34e..d73ba2ebb91 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CollectedAuditVolumeCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CollectedAuditVolumeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CollectedAuditVolumeSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CollectedAuditVolumeSummary.java index 5b6cc7f9ce0..ab40c9f8908 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CollectedAuditVolumeSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CollectedAuditVolumeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Column.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Column.java index 74a104e9a14..a5addf6ca10 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Column.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Column.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnFilter.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnFilter.java index 3edde33aec1..6bb7b56c84d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnFilter.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnSorting.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnSorting.java index 318052018ee..66ddb536d92 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnSorting.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnSorting.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnSourceDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnSourceDetails.java index b16e6f262ad..4775a3a5c96 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnSourceDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnSourceFromSdmDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnSourceFromSdmDetails.java index 2634c47d499..ca4ea453c66 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnSourceFromSdmDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnSourceFromSdmDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnSourceFromTargetDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnSourceFromTargetDetails.java index 8ef7a3a5418..bd320de55a7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnSourceFromTargetDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnSourceFromTargetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnSummary.java index 203329b28ec..dc4afc3cd9c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnsInfo.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnsInfo.java index 0bcd7717ada..123b253c12c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnsInfo.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ColumnsInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CompareSecurityAssessmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CompareSecurityAssessmentDetails.java index cf08bab35bf..f4af5158803 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CompareSecurityAssessmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CompareSecurityAssessmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CompareToTemplateBaselineDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CompareToTemplateBaselineDetails.java index be8f264bbb0..d14df25893c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CompareToTemplateBaselineDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CompareToTemplateBaselineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CompareUserAssessmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CompareUserAssessmentDetails.java index 6b19c0bea25..08d4128f2a7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CompareUserAssessmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CompareUserAssessmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Compartments.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Compartments.java index c6a9bd2fae0..bb8d9b5455e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Compartments.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Compartments.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CompatibleFormatsForDataTypes.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CompatibleFormatsForDataTypes.java index 1c40c9ffccb..45849983075 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CompatibleFormatsForDataTypes.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CompatibleFormatsForDataTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CompatibleFormatsForSensitiveTypes.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CompatibleFormatsForSensitiveTypes.java index 7d3e3ae86ac..f9bc7007faf 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CompatibleFormatsForSensitiveTypes.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CompatibleFormatsForSensitiveTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ConfidenceLevelEnum.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ConfidenceLevelEnum.java index c5d20cee9b5..a47669fdf94 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ConfidenceLevelEnum.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ConfidenceLevelEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ConnectionOption.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ConnectionOption.java index 7d18b42eabd..7d4d8c931f3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ConnectionOption.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ConnectionOption.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateAlertPolicyDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateAlertPolicyDetails.java index 5d43d14f984..4ab0d5c7d9b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateAlertPolicyDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateAlertPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateAlertPolicyRuleDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateAlertPolicyRuleDetails.java index a32be1cb455..b5192d9b82e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateAlertPolicyRuleDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateAlertPolicyRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateAttributeSetDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateAttributeSetDetails.java index 419442431d9..904d3d04ee2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateAttributeSetDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateAttributeSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateAuditArchiveRetrievalDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateAuditArchiveRetrievalDetails.java index 479f4335071..7336a407f51 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateAuditArchiveRetrievalDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateAuditArchiveRetrievalDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateAuditProfileDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateAuditProfileDetails.java index 1a81dd295dd..12c057ccc2b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateAuditProfileDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateAuditProfileDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateColumnSourceDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateColumnSourceDetails.java index 7baa276cda8..1d635034231 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateColumnSourceDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateColumnSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateColumnSourceFromSdmDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateColumnSourceFromSdmDetails.java index a4b4942895b..bfecaa242f4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateColumnSourceFromSdmDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateColumnSourceFromSdmDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateColumnSourceFromTargetDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateColumnSourceFromTargetDetails.java index 4916abf977e..34c5b72d3ce 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateColumnSourceFromTargetDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateColumnSourceFromTargetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateDataSafePrivateEndpointDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateDataSafePrivateEndpointDetails.java index b5eb9d80894..b06c4910a78 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateDataSafePrivateEndpointDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateDataSafePrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateDiscoveryJobDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateDiscoveryJobDetails.java index 11169959765..88ac369aa1f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateDiscoveryJobDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateDiscoveryJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateLibraryMaskingFormatDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateLibraryMaskingFormatDetails.java index 8420a105e59..ae5fbf67e4a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateLibraryMaskingFormatDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateLibraryMaskingFormatDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateMaskingColumnDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateMaskingColumnDetails.java index fba97f1a400..2c4bf42fdd7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateMaskingColumnDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateMaskingColumnDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateMaskingPolicyDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateMaskingPolicyDetails.java index 57aaa177e5b..ce55d478ebf 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateMaskingPolicyDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateMaskingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateOnPremConnectorDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateOnPremConnectorDetails.java index 6626a091b9c..3ff782978b7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateOnPremConnectorDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateOnPremConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreatePeerTargetDatabaseDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreatePeerTargetDatabaseDetails.java index ac022ff9ec6..ea3b2e8dae3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreatePeerTargetDatabaseDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreatePeerTargetDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateReferentialRelationDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateReferentialRelationDetails.java index 8b0ff67fc19..04d0d184df4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateReferentialRelationDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateReferentialRelationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateReportDefinitionDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateReportDefinitionDetails.java index 5012d32175f..09ba7f4793e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateReportDefinitionDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateReportDefinitionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSdmMaskingPolicyDifferenceDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSdmMaskingPolicyDifferenceDetails.java index 977cd661784..7e71c619bbc 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSdmMaskingPolicyDifferenceDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSdmMaskingPolicyDifferenceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSecurityAssessmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSecurityAssessmentDetails.java index eae3080e6c5..db4d731a004 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSecurityAssessmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSecurityAssessmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSecurityPolicyConfigDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSecurityPolicyConfigDetails.java index 6e04495d40e..f32c38d2ee0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSecurityPolicyConfigDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSecurityPolicyConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSecurityPolicyDeploymentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSecurityPolicyDeploymentDetails.java index 3b3f01da1cf..d5b0d7de9b3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSecurityPolicyDeploymentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSecurityPolicyDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSecurityPolicyDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSecurityPolicyDetails.java index 39086882bcc..4f7bcbc909a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSecurityPolicyDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSecurityPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveCategoryDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveCategoryDetails.java index 1dd64b18901..6885f712399 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveCategoryDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveCategoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveColumnDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveColumnDetails.java index edc80cadb83..23f2bf1c556 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveColumnDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveColumnDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveDataModelDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveDataModelDetails.java index ba3a9886f24..4d7d15f83f5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveDataModelDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveDataModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveTypeDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveTypeDetails.java index 546ebe46e5f..63496352588 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveTypeDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveTypeGroupDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveTypeGroupDetails.java index f7f3342b98e..3503bcc6dc4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveTypeGroupDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveTypeGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveTypePatternDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveTypePatternDetails.java index db51f84aff4..d372d470c25 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveTypePatternDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveTypePatternDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveTypesExportDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveTypesExportDetails.java index 589c49b9c23..d2ff9571625 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveTypesExportDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSensitiveTypesExportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSqlCollectionDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSqlCollectionDetails.java index 4019f11f53f..21b72040af8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSqlCollectionDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateSqlCollectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateTargetAlertPolicyAssociationDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateTargetAlertPolicyAssociationDetails.java index 1ec5738520a..9b95653545c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateTargetAlertPolicyAssociationDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateTargetAlertPolicyAssociationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateTargetDatabaseDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateTargetDatabaseDetails.java index 5688f6f3988..cdc8e453da0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateTargetDatabaseDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateTargetDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateTargetDatabaseGroupDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateTargetDatabaseGroupDetails.java index 6f87251b48a..93b367f4d2c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateTargetDatabaseGroupDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateTargetDatabaseGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateUnifiedAuditPolicyDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateUnifiedAuditPolicyDetails.java index 20ff8d5159e..e983a8bd225 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateUnifiedAuditPolicyDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateUnifiedAuditPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateUserAssessmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateUserAssessmentDetails.java index 2474595de6f..57a7914347e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateUserAssessmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/CreateUserAssessmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Credentials.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Credentials.java index 026fb0e914a..c98545d6c42 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Credentials.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Credentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DataModelFormat.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DataModelFormat.java index 6802c90c647..d38663f99eb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DataModelFormat.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DataModelFormat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DataSafeConfiguration.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DataSafeConfiguration.java index b61c2775cdb..5117fe64f3e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DataSafeConfiguration.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DataSafeConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DataSafePrivateEndpoint.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DataSafePrivateEndpoint.java index 62162bc7288..43c4f5a7f18 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DataSafePrivateEndpoint.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DataSafePrivateEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DataSafePrivateEndpointSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DataSafePrivateEndpointSummary.java index 53dadb9c2f1..431a729e1c2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DataSafePrivateEndpointSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DataSafePrivateEndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseCloudServiceDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseCloudServiceDetails.java index 6fe5a111254..62dbc3aac5e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseCloudServiceDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseCloudServiceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseDetails.java index 6d6304b416f..5cc4d4be5bc 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseSecurityConfig.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseSecurityConfig.java index c9a59be0863..5b2038655d9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseSecurityConfig.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseSecurityConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseSecurityConfigCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseSecurityConfigCollection.java index 215904feaef..31779b1b31a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseSecurityConfigCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseSecurityConfigCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseSecurityConfigLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseSecurityConfigLifecycleState.java index 5ab9abd676b..2d60fedd05f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseSecurityConfigLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseSecurityConfigLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseSecurityConfigSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseSecurityConfigSummary.java index 80832315ec2..bff087e4768 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseSecurityConfigSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseSecurityConfigSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseTableAccessEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseTableAccessEntry.java index c4df18891bc..5468bbaeea9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseTableAccessEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseTableAccessEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseTableAccessEntryCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseTableAccessEntryCollection.java index a923c0f6d45..87a077b3f27 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseTableAccessEntryCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseTableAccessEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseTableAccessEntrySummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseTableAccessEntrySummary.java index 0d07d6da8da..cd50dba581a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseTableAccessEntrySummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseTableAccessEntrySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseType.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseType.java index 49fc4c6c318..6801f3dc572 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseType.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseViewAccessEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseViewAccessEntry.java index f9c76bb0723..02db597149a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseViewAccessEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseViewAccessEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseViewAccessEntryCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseViewAccessEntryCollection.java index 45404724eb8..79badbda3b1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseViewAccessEntryCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseViewAccessEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseViewAccessEntrySummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseViewAccessEntrySummary.java index 51264ec3e4c..4984d4ae174 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseViewAccessEntrySummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DatabaseViewAccessEntrySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DeleteRowsFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DeleteRowsFormatEntry.java index 2c4df209cdf..1161f18b474 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DeleteRowsFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DeleteRowsFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DeterministicEncryptionDateFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DeterministicEncryptionDateFormatEntry.java index 30790a5e1c3..97cc65771c9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DeterministicEncryptionDateFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DeterministicEncryptionDateFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DeterministicEncryptionFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DeterministicEncryptionFormatEntry.java index 8e0f31ca881..2ca5df402e8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DeterministicEncryptionFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DeterministicEncryptionFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DeterministicSubstitutionFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DeterministicSubstitutionFormatEntry.java index 393c881ba78..4969e5222e6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DeterministicSubstitutionFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DeterministicSubstitutionFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DifferenceColumn.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DifferenceColumn.java index 728f629db88..7cef5c071c5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DifferenceColumn.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DifferenceColumn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DifferenceColumnSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DifferenceColumnSummary.java index 943a0bb238b..2876b897d94 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DifferenceColumnSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DifferenceColumnSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Diffs.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Diffs.java index f7a2b5bb02a..88520fa94a6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Diffs.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Diffs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Dimensions.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Dimensions.java index c62478aac2d..a9ef206e719 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Dimensions.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Dimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryAnalyticsCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryAnalyticsCollection.java index 9418038d0cb..439a887d471 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryAnalyticsCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryAnalyticsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryAnalyticsSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryAnalyticsSummary.java index 5ceafd2c987..c6ed45149c7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryAnalyticsSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryAnalyticsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJob.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJob.java index c18c1efc83e..1f4039e78e3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJob.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJobCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJobCollection.java index 91561cb6852..ca406d6c7e6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJobCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJobCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJobResult.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJobResult.java index 70f2ce1c8d6..3b61089cf7b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJobResult.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJobResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJobResultCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJobResultCollection.java index 7ea4a95ec67..0bc7119083c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJobResultCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJobResultCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJobResultSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJobResultSummary.java index 1e5f43d3f91..53a7e0a9474 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJobResultSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJobResultSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJobSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJobSummary.java index c26c91f01f6..950fe6ceae4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJobSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryJobSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryLifecycleState.java index dd8b06fa500..c24a60d0ffd 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DiscoveryLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadDiscoveryReportDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadDiscoveryReportDetails.java index 033101158e8..14e4e923778 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadDiscoveryReportDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadDiscoveryReportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadMaskingLogDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadMaskingLogDetails.java index 0caf38df3f0..1d70825002c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadMaskingLogDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadMaskingLogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadMaskingPolicyDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadMaskingPolicyDetails.java index 655af6499dd..43eb65c2cb8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadMaskingPolicyDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadMaskingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadMaskingReportDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadMaskingReportDetails.java index 6f31192b529..c0ce0648819 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadMaskingReportDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadMaskingReportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadSecurityAssessmentReportDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadSecurityAssessmentReportDetails.java index 9dc991fdf8b..89c4faf2b1f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadSecurityAssessmentReportDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadSecurityAssessmentReportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadSensitiveDataModelDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadSensitiveDataModelDetails.java index c6abf46e7a5..3c98bf1aeac 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadSensitiveDataModelDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadSensitiveDataModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadSensitiveTypesExportDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadSensitiveTypesExportDetails.java index e08f8e6d7df..f0db920c70a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadSensitiveTypesExportDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadSensitiveTypesExportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadUserAssessmentReportDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadUserAssessmentReportDetails.java index e9c6f5bf217..29d158526c1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadUserAssessmentReportDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/DownloadUserAssessmentReportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/EnableConditions.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/EnableConditions.java index c6cf8a519b1..c16cae34d36 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/EnableConditions.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/EnableConditions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/EnableDataSafeConfigurationDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/EnableDataSafeConfigurationDetails.java index 9b4701c959f..c4b825e0d56 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/EnableDataSafeConfigurationDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/EnableDataSafeConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/EntryDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/EntryDetails.java index 4f55c426b17..e4e087264a8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/EntryDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/EntryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Exclude.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Exclude.java index c9670c5ee68..717e9085f8a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Exclude.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Exclude.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Finding.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Finding.java index 118d4668c6f..b57a7d39f6e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Finding.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Finding.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingAnalyticsCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingAnalyticsCollection.java index 84427bf8065..1c1b01f754b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingAnalyticsCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingAnalyticsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingAnalyticsDimensions.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingAnalyticsDimensions.java index 1646cf61bcc..cb01f9c6f52 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingAnalyticsDimensions.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingAnalyticsDimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingAnalyticsSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingAnalyticsSummary.java index 9845c76ca62..7f2fd15d818 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingAnalyticsSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingAnalyticsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingLifecycleState.java index c753b1b570a..d8b04455d70 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingSummary.java index df559e540bd..db438e22d56 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingsChangeAuditLogCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingsChangeAuditLogCollection.java index ae22ddd082a..64879fd9253 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingsChangeAuditLogCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingsChangeAuditLogCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingsChangeAuditLogSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingsChangeAuditLogSummary.java index 484d43da7bc..1b3cfb152bc 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingsChangeAuditLogSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FindingsChangeAuditLogSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FirewallConfig.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FirewallConfig.java index f48c200e7f5..d3acb9a9f2f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FirewallConfig.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FirewallConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FirewallConfigDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FirewallConfigDetails.java index 2c8e6a2a2a4..dc8448f60b3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FirewallConfigDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FirewallConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FirewallPolicyEntryDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FirewallPolicyEntryDetails.java index 9a2e2a17647..aa1139e19e8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FirewallPolicyEntryDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FirewallPolicyEntryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FixedNumberFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FixedNumberFormatEntry.java index 0adc6349965..4b9514d19bc 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FixedNumberFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FixedNumberFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FixedStringFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FixedStringFormatEntry.java index 020b4e27b1c..0e09842ef6b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FixedStringFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FixedStringFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FormatEntry.java index 56598087868..6614b7b24c4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FormatEntryType.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FormatEntryType.java index 345204ef6a4..331dc053e51 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FormatEntryType.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FormatEntryType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FormatSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FormatSummary.java index e8ea6fab06f..2422f1d87a2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FormatSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FormatSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FormatsForDataType.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FormatsForDataType.java index 81b2d0922e9..f4a1665debe 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FormatsForDataType.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FormatsForDataType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FormatsForSensitiveType.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FormatsForSensitiveType.java index 4b9334cd2ba..68a51783230 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FormatsForSensitiveType.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/FormatsForSensitiveType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateDiscoveryReportForDownloadDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateDiscoveryReportForDownloadDetails.java index 4b4c3b99334..ab74235175a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateDiscoveryReportForDownloadDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateDiscoveryReportForDownloadDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateHealthReportDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateHealthReportDetails.java index 4dfb39b8d17..6136f3acbcb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateHealthReportDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateHealthReportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateMaskingPolicyForDownloadDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateMaskingPolicyForDownloadDetails.java index efe407619c4..8f0ca765a43 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateMaskingPolicyForDownloadDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateMaskingPolicyForDownloadDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateMaskingReportForDownloadDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateMaskingReportForDownloadDetails.java index 9784b8fa2a4..096812a778c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateMaskingReportForDownloadDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateMaskingReportForDownloadDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateOnPremConnectorConfigurationDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateOnPremConnectorConfigurationDetails.java index 2037a44ce75..eb36237c878 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateOnPremConnectorConfigurationDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateOnPremConnectorConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateReportDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateReportDetails.java index 18e3c742891..b682482df71 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateReportDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateReportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateSecurityAssessmentReportDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateSecurityAssessmentReportDetails.java index ece6e1c615c..6391e2a9c90 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateSecurityAssessmentReportDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateSecurityAssessmentReportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateSensitiveDataModelForDownloadDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateSensitiveDataModelForDownloadDetails.java index 8f37047f97f..ef464e8e78c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateSensitiveDataModelForDownloadDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateSensitiveDataModelForDownloadDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateUserAssessmentReportDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateUserAssessmentReportDetails.java index 1fc6fd88424..6525d65a2e4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateUserAssessmentReportDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GenerateUserAssessmentReportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GlobalSettings.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GlobalSettings.java index 75ae99452d5..41c2f98b0a5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GlobalSettings.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GlobalSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GrantSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GrantSummary.java index 9b9eb7e599d..c2e5eae21c4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GrantSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GrantSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GroupMembersCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GroupMembersCollection.java index e4a6e4fb09a..642ffd2debf 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GroupMembersCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GroupMembersCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GroupedSensitiveTypeCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GroupedSensitiveTypeCollection.java index d38ac317b89..ed90e14e1cf 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GroupedSensitiveTypeCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GroupedSensitiveTypeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GroupedSensitiveTypeSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GroupedSensitiveTypeSummary.java index bd98bd7735d..3d1d824c205 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GroupedSensitiveTypeSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/GroupedSensitiveTypeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Include.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Include.java index e252d18c8df..9980bd9a375 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Include.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Include.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/InfrastructureType.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/InfrastructureType.java index d1c779c8a17..bd69f984fe4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/InfrastructureType.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/InfrastructureType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/InitializationParameter.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/InitializationParameter.java index c16b3aed90e..84ed122ff51 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/InitializationParameter.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/InitializationParameter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/InstalledDatabaseDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/InstalledDatabaseDetails.java index ba686c597ad..44368ae837c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/InstalledDatabaseDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/InstalledDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LibraryMaskingFormat.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LibraryMaskingFormat.java index 5820b565b33..241c8a50105 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LibraryMaskingFormat.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LibraryMaskingFormat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LibraryMaskingFormatCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LibraryMaskingFormatCollection.java index 4bdeb7ad5c9..893bf1da8bd 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LibraryMaskingFormatCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LibraryMaskingFormatCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LibraryMaskingFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LibraryMaskingFormatEntry.java index 15dbedfea88..eaa7dfe1fe8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LibraryMaskingFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LibraryMaskingFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LibraryMaskingFormatSource.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LibraryMaskingFormatSource.java index 9b3c8d4f258..aeb895f66b2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LibraryMaskingFormatSource.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LibraryMaskingFormatSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LibraryMaskingFormatSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LibraryMaskingFormatSummary.java index a7aa4c0fc22..ee5232442da 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LibraryMaskingFormatSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LibraryMaskingFormatSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LifecycleState.java index 458f66854ee..562f9f57a99 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ListSelectionMode.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ListSelectionMode.java index 384db22234d..efb2eb14b48 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ListSelectionMode.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ListSelectionMode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LogType.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LogType.java index 043b39d2641..7ebd8c9d9c8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LogType.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/LogType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskDataDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskDataDetails.java index d1367ca1466..66195b87942 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskDataDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskDataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskedColumnCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskedColumnCollection.java index 2d34227509a..0c34077c3c9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskedColumnCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskedColumnCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskedColumnSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskedColumnSummary.java index 15e402c7329..957b6e48509 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskedColumnSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskedColumnSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingAnalyticsCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingAnalyticsCollection.java index 1c77ca2f22c..16b9aeaebbf 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingAnalyticsCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingAnalyticsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingAnalyticsDimensions.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingAnalyticsDimensions.java index 80d4ab49818..e623e59de1c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingAnalyticsDimensions.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingAnalyticsDimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingAnalyticsSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingAnalyticsSummary.java index e4e46f568c7..bf720b519ca 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingAnalyticsSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingAnalyticsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingColumn.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingColumn.java index 61e9c72cb6d..4ed97899605 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingColumn.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingColumn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingColumnCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingColumnCollection.java index 3461ca6b725..933ace967a3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingColumnCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingColumnCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingColumnLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingColumnLifecycleState.java index adf2f073548..8f29a093618 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingColumnLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingColumnLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingColumnSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingColumnSummary.java index 538c891fcb2..8f8b4c3481a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingColumnSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingColumnSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingErrorCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingErrorCollection.java index 0565df98a19..949a11083c1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingErrorCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingErrorSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingErrorSummary.java index e3c812cce5a..0c8b7ed9bea 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingErrorSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingErrorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingFormat.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingFormat.java index 58bc2f1f184..7b950184d9c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingFormat.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingFormat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingLifecycleState.java index 9c696b9f678..b955b728698 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingObjectCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingObjectCollection.java index dcd0051ada9..3d60878072c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingObjectCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingObjectCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingObjectSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingObjectSummary.java index bc0e36b0500..71a70fdb20c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingObjectSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingObjectSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicy.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicy.java index 149e58e6fb2..ebf3cc67ef8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicy.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyCollection.java index 0c1eb322c10..4073b9b0759 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyColumnsInfo.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyColumnsInfo.java index 65a25b5c383..1d201ac4f69 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyColumnsInfo.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyColumnsInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyHealthReport.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyHealthReport.java index 16ecfc52dbb..6c160850194 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyHealthReport.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyHealthReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyHealthReportCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyHealthReportCollection.java index c1dd5203eeb..fa3b818543e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyHealthReportCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyHealthReportCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyHealthReportLogCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyHealthReportLogCollection.java index 588c6bb2707..3eb6d3511f7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyHealthReportLogCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyHealthReportLogCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyHealthReportLogSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyHealthReportLogSummary.java index 12900e8dfae..c163986cba7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyHealthReportLogSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyHealthReportLogSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyHealthReportSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyHealthReportSummary.java index 182f092e4c8..d8221d58ce9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyHealthReportSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyHealthReportSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyReferentialRelationCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyReferentialRelationCollection.java index 132945d2474..16d5fca5751 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyReferentialRelationCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyReferentialRelationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyReferentialRelationSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyReferentialRelationSummary.java index 11fcb6f4b01..03865e4389e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyReferentialRelationSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicyReferentialRelationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicySummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicySummary.java index 23681e4ec28..9c3c64b79e2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicySummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingPolicySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingReport.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingReport.java index 12d9b20117b..f31c3aaee5e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingReport.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingReportCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingReportCollection.java index b36c93634f7..82a86b7f5b1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingReportCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingReportCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingReportSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingReportSummary.java index 61deb5d1486..79af1e92806 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingReportSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingReportSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingSchemaCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingSchemaCollection.java index 34588ae861b..d38b9814e12 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingSchemaCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingSchemaCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingSchemaSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingSchemaSummary.java index 6a5b854c7c0..70d77de64dd 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingSchemaSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MaskingSchemaSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MatchingCriteria.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MatchingCriteria.java index d0e497ffe52..06862c28dec 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MatchingCriteria.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/MatchingCriteria.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ModifiedAttributes.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ModifiedAttributes.java index 7f77bca8a45..771196ac20c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ModifiedAttributes.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ModifiedAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ModifyGlobalSettingsDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ModifyGlobalSettingsDetails.java index adba01745ee..bef2cc56122 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ModifyGlobalSettingsDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ModifyGlobalSettingsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/NullValueFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/NullValueFormatEntry.java index 8dd59bd7692..bb03e179456 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/NullValueFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/NullValueFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ObjectType.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ObjectType.java index 07cefc3b469..9870ea583b3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ObjectType.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ObjectType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/OnPremConnector.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/OnPremConnector.java index 3f97dbbbae1..3e9b5ca8f4b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/OnPremConnector.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/OnPremConnector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/OnPremConnectorLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/OnPremConnectorLifecycleState.java index b70e35d2f9b..0461aa3f3c8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/OnPremConnectorLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/OnPremConnectorLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/OnPremConnectorSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/OnPremConnectorSummary.java index 31ef7c49b9e..48a0aa4dd2f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/OnPremConnectorSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/OnPremConnectorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/OnPremiseConnector.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/OnPremiseConnector.java index 6c0e89cf3f1..74d3238b0bb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/OnPremiseConnector.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/OnPremiseConnector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PPFFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PPFFormatEntry.java index 586dbe9021c..4c2868e65e3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PPFFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PPFFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchAlertPolicyRuleDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchAlertPolicyRuleDetails.java index dbe4fe9c122..f5865c5593a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchAlertPolicyRuleDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchAlertPolicyRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchAlertsDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchAlertsDetails.java index 9982ff8fbb2..017df3b3fbd 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchAlertsDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchAlertsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchChecksDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchChecksDetails.java index 7c65ef32482..ce7b55a19dc 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchChecksDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchChecksDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchDiscoveryJobResultDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchDiscoveryJobResultDetails.java index aaccca34a2a..73d06e9abed 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchDiscoveryJobResultDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchDiscoveryJobResultDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchFindingsDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchFindingsDetails.java index 4c26f1440ba..fadcd6b9b41 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchFindingsDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchFindingsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchGroupedSensitiveTypesDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchGroupedSensitiveTypesDetails.java index 3570fa7ae4e..2df2a00f898 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchGroupedSensitiveTypesDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchGroupedSensitiveTypesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchInsertInstruction.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchInsertInstruction.java index 71ebf55eaeb..1595aa694f1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchInsertInstruction.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchInsertInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchInstruction.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchInstruction.java index 3d631569521..07a4d1ae97c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchInstruction.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchMaskingColumnsDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchMaskingColumnsDetails.java index 9e06d2ac1a0..1b452ba0e29 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchMaskingColumnsDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchMaskingColumnsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchMergeInstruction.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchMergeInstruction.java index ea82402c419..1dd678b1309 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchMergeInstruction.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchMergeInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchRemoveInstruction.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchRemoveInstruction.java index 601b956bf3e..6b5a4af1b73 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchRemoveInstruction.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchRemoveInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchSdmMaskingPolicyDifferenceColumnsDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchSdmMaskingPolicyDifferenceColumnsDetails.java index dd84ca856a2..195dcc7bbfd 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchSdmMaskingPolicyDifferenceColumnsDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchSdmMaskingPolicyDifferenceColumnsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchSensitiveColumnDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchSensitiveColumnDetails.java index daf04123790..e784d4a69c7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchSensitiveColumnDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchSensitiveColumnDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchSqlFirewallAllowedSqlDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchSqlFirewallAllowedSqlDetails.java index a50f2b13497..7ee702ea54b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchSqlFirewallAllowedSqlDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchSqlFirewallAllowedSqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchTargetAlertPolicyAssociationDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchTargetAlertPolicyAssociationDetails.java index d188a1ea4e6..3a4720656fe 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchTargetAlertPolicyAssociationDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatchTargetAlertPolicyAssociationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatternFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatternFormatEntry.java index 3ab47dddfef..d37c424d74a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatternFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PatternFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PeerTargetDatabase.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PeerTargetDatabase.java index ea006292209..7e68434cbd9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PeerTargetDatabase.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PeerTargetDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PeerTargetDatabaseCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PeerTargetDatabaseCollection.java index 4473ceb7b0a..57d133e8e0d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PeerTargetDatabaseCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PeerTargetDatabaseCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PeerTargetDatabaseSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PeerTargetDatabaseSummary.java index f16852bc36f..770b939c4a0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PeerTargetDatabaseSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PeerTargetDatabaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PolicyCondition.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PolicyCondition.java index cd1d504d43b..5618aa110d7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PolicyCondition.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PolicyCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PolicyFormat.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PolicyFormat.java index f1f9242b195..a7c5fe17e55 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PolicyFormat.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PolicyFormat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PreserveOriginalDataFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PreserveOriginalDataFormatEntry.java index 8f828bf46c5..dddd040d13b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PreserveOriginalDataFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PreserveOriginalDataFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PrivateEndpoint.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PrivateEndpoint.java index 2d56d7be7fc..b7e8018668b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PrivateEndpoint.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PrivateEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PrivilegeGrantableOption.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PrivilegeGrantableOption.java index da7bfc89bf4..5e7c8e54f8d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PrivilegeGrantableOption.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PrivilegeGrantableOption.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PrivilegeName.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PrivilegeName.java index ea6fb4ac283..692c2f5cf75 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PrivilegeName.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/PrivilegeName.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Profile.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Profile.java index 26da60a1aa9..4049a55bfae 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Profile.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Profile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ProfileAggregation.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ProfileAggregation.java index 1adc31bc271..144437e1ef8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ProfileAggregation.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ProfileAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ProfileDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ProfileDetails.java index 8885dca9361..d747d26b22e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ProfileDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ProfileDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ProfileSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ProfileSummary.java index a602362dcae..50426c55d24 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ProfileSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ProfileSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ProvisionAuditConditions.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ProvisionAuditConditions.java index 6a9778a19ad..dff9258eab5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ProvisionAuditConditions.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ProvisionAuditConditions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ProvisionAuditPolicyDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ProvisionAuditPolicyDetails.java index 2a1391d75c6..c9dc1e6cdf3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ProvisionAuditPolicyDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ProvisionAuditPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomDateFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomDateFormatEntry.java index 232d800a795..5a1b78228e1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomDateFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomDateFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomDecimalNumberFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomDecimalNumberFormatEntry.java index 4ad9bb24623..5d6e1bf5dd6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomDecimalNumberFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomDecimalNumberFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomDigitsFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomDigitsFormatEntry.java index 935a6aa4ebc..13201f56533 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomDigitsFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomDigitsFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomListFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomListFormatEntry.java index bdb1f3a90cb..410f455ab70 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomListFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomListFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomNumberFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomNumberFormatEntry.java index 40d9c6e094f..ae5858be83e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomNumberFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomNumberFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomStringFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomStringFormatEntry.java index f819b1d0a4d..ed64ec63172 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomStringFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomStringFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomSubstitutionFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomSubstitutionFormatEntry.java index 8f82ffdd698..2b7528023cf 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomSubstitutionFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RandomSubstitutionFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/References.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/References.java index a0960089b1a..e2f7bdb5b93 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/References.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/References.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReferentialRelation.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReferentialRelation.java index 182b7183f65..b2a5c76b2b0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReferentialRelation.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReferentialRelation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReferentialRelationCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReferentialRelationCollection.java index ee9bdc98ba6..32d0154ef09 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReferentialRelationCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReferentialRelationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReferentialRelationLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReferentialRelationLifecycleState.java index 8e9df5fd177..c52ee81e743 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReferentialRelationLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReferentialRelationLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReferentialRelationSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReferentialRelationSummary.java index db67b79f19b..1a58e2bf7eb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReferentialRelationSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReferentialRelationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RegularExpressionFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RegularExpressionFormatEntry.java index 33c929417e2..4d11326eee2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RegularExpressionFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RegularExpressionFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Report.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Report.java index e5433175949..500a7c4ce08 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Report.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Report.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportCollection.java index 3ef05ffe61f..041deb892ef 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDefinition.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDefinition.java index 3a340650082..5f41c5db5fe 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDefinition.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDefinitionCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDefinitionCollection.java index 71041e6ebc3..767e4f15640 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDefinitionCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDefinitionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDefinitionDataSource.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDefinitionDataSource.java index 88a6773b785..152b0c074ce 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDefinitionDataSource.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDefinitionDataSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDefinitionLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDefinitionLifecycleState.java index 5f735d32293..14a939a3c77 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDefinitionLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDefinitionLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDefinitionSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDefinitionSummary.java index 0b624a2c7bb..a53151a2f20 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDefinitionSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDefinitionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDetails.java index 08af32b70f6..7667d4186bf 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportLifecycleState.java index 3587bbf4ba9..33897fa087f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportSummary.java index ae11b83d890..0843b6bf3b5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportType.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportType.java index a51e4811d99..2936ba75a97 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportType.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ReportType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RoleCondition.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RoleCondition.java index df5b723f638..7912d19b2d7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RoleCondition.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RoleCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RoleGrantPathCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RoleGrantPathCollection.java index 0b3c97f62a6..71a2476ca55 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RoleGrantPathCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RoleGrantPathCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RoleGrantPathSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RoleGrantPathSummary.java index d769d247208..175efa2206e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RoleGrantPathSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RoleGrantPathSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RoleSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RoleSummary.java index 9a2505f148c..5d89452f217 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RoleSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RoleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RunSecurityAssessmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RunSecurityAssessmentDetails.java index fd58265092c..2e50f435f00 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RunSecurityAssessmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RunSecurityAssessmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RunUserAssessmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RunUserAssessmentDetails.java index 733c32d4b12..9bbc5c96af7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RunUserAssessmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/RunUserAssessmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SQLExpressionFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SQLExpressionFormatEntry.java index 9cce0411d17..ae84df3a4ec 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SQLExpressionFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SQLExpressionFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ScheduleAuditReportDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ScheduleAuditReportDetails.java index 9d6b3ee68a5..20a7173d6d7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ScheduleAuditReportDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ScheduleAuditReportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ScheduleReportDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ScheduleReportDetails.java index 08b94507071..5fc562f5865 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ScheduleReportDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ScheduleReportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SchemaSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SchemaSummary.java index 734a1a259be..8982a5d62b0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SchemaSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SchemaSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ScimQuerySelectionMode.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ScimQuerySelectionMode.java index d1ef3addc1b..5b4c20ddb0a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ScimQuerySelectionMode.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ScimQuerySelectionMode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SdmMaskingPolicyDifference.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SdmMaskingPolicyDifference.java index f7721b2e852..539bdabe4cc 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SdmMaskingPolicyDifference.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SdmMaskingPolicyDifference.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SdmMaskingPolicyDifferenceCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SdmMaskingPolicyDifferenceCollection.java index ed70eca974f..79276893eb9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SdmMaskingPolicyDifferenceCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SdmMaskingPolicyDifferenceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SdmMaskingPolicyDifferenceColumnCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SdmMaskingPolicyDifferenceColumnCollection.java index 06697d3696d..906e21179e6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SdmMaskingPolicyDifferenceColumnCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SdmMaskingPolicyDifferenceColumnCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SdmMaskingPolicyDifferenceSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SdmMaskingPolicyDifferenceSummary.java index 8299859c512..0c6b3a14f0e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SdmMaskingPolicyDifferenceSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SdmMaskingPolicyDifferenceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SectionStatistics.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SectionStatistics.java index cc0e4748d8e..b4c17cd2ecb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SectionStatistics.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SectionStatistics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessment.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessment.java index b3a193b4312..ed3b42facf5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessment.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentBaseLineDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentBaseLineDetails.java index 8450f2b9daf..0b3fc163ff5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentBaseLineDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentBaseLineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentComparison.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentComparison.java index 055d37093c5..4bce110ed03 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentComparison.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentComparison.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentComparisonPerTarget.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentComparisonPerTarget.java index 08610162ada..2f3fd45ae89 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentComparisonPerTarget.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentComparisonPerTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentLifecycleState.java index b32cb92442c..1ee72034d72 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentReferences.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentReferences.java index ab9102c23d3..136b7970680 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentReferences.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentReferences.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentStatistics.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentStatistics.java index cc154bdb797..087c4e4b0ac 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentStatistics.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentStatistics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentSummary.java index 700d3456491..75de337d94f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentTargetType.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentTargetType.java index 2387889a17d..272e7fd21df 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentTargetType.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentTargetType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentTemplateBaselineComparison.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentTemplateBaselineComparison.java index 20b034ae097..162dc09a8cf 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentTemplateBaselineComparison.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentTemplateBaselineComparison.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentTemplateDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentTemplateDetails.java index 2a8589b44ff..2237e5f8209 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentTemplateDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityAssessmentTemplateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityFeatureAnalyticsCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityFeatureAnalyticsCollection.java index 0b4e82bd7ef..0e7cf1f4c83 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityFeatureAnalyticsCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityFeatureAnalyticsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityFeatureAnalyticsDimensions.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityFeatureAnalyticsDimensions.java index 77c11e2e666..16154e04b68 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityFeatureAnalyticsDimensions.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityFeatureAnalyticsDimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityFeatureAnalyticsSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityFeatureAnalyticsSummary.java index 8b5b1517563..766a1234fab 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityFeatureAnalyticsSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityFeatureAnalyticsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityFeatureCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityFeatureCollection.java index bb29443850d..cdcb2bc74cb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityFeatureCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityFeatureCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityFeatureSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityFeatureSummary.java index 6fc4d5dd23c..e68866a4678 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityFeatureSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityFeatureSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicy.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicy.java index 76df41dc6bb..1cf7b12ae06 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicy.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyCollection.java index 4ee18736cc7..2fed8cb9aa8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyConfig.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyConfig.java index 189c46de056..d5534155439 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyConfig.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyConfigCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyConfigCollection.java index 057b9ecff32..6670e9c19aa 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyConfigCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyConfigCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyConfigLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyConfigLifecycleState.java index 163b34651b0..ccd84f0abd6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyConfigLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyConfigLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyConfigSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyConfigSummary.java index 0e6d8ccce56..14831d76409 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyConfigSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyConfigSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyDeployment.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyDeployment.java index 2d2cddde580..3925490bcb5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyDeployment.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyDeployment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyDeploymentCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyDeploymentCollection.java index 5e29835b869..3b228205632 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyDeploymentCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyDeploymentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyDeploymentLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyDeploymentLifecycleState.java index 2428322b81e..80e764dee1a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyDeploymentLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyDeploymentLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyDeploymentSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyDeploymentSummary.java index dc08d8fd7ae..4f2a4f71a9b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyDeploymentSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyDeploymentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyEntryState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyEntryState.java index fae9c003b55..28ec3e1f4b4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyEntryState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyEntryState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyEntryStateCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyEntryStateCollection.java index 84a3d21236b..cd17f9845a2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyEntryStateCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyEntryStateCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyEntryStateDeploymentStatus.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyEntryStateDeploymentStatus.java index dd5a8e44762..57a8f29bc6f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyEntryStateDeploymentStatus.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyEntryStateDeploymentStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyEntryStateSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyEntryStateSummary.java index 2017c5e5e81..2669bc8cc38 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyEntryStateSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyEntryStateSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyLifecycleState.java index 9a5c6b71c8f..fec12f756df 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyReport.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyReport.java index 961cd3431c3..7fa3c341746 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyReport.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyReportCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyReportCollection.java index 8298ea021c5..e34241fd777 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyReportCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyReportCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyReportLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyReportLifecycleState.java index 17a2d786261..ebd028757c4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyReportLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyReportLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyReportSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyReportSummary.java index 05c25a8eb16..2b1f4d2d355 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyReportSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicyReportSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicySummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicySummary.java index d38786ea950..ece9dcda1c3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicySummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SecurityPolicySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SelectionDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SelectionDetails.java index 2ff37dd105c..db0531ab437 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SelectionDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SelectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveCategory.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveCategory.java index 9679e3a7156..4bf28471233 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveCategory.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveCategory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumn.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumn.java index 8dddca7bcdf..e7c5f7dbd2f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumn.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnAnalyticsCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnAnalyticsCollection.java index 813899612b1..04d44dcd52f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnAnalyticsCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnAnalyticsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnAnalyticsDimensions.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnAnalyticsDimensions.java index 9ebf2afe234..a4c019a5fae 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnAnalyticsDimensions.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnAnalyticsDimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnAnalyticsSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnAnalyticsSummary.java index 0d61ff10e58..015f34ec5b2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnAnalyticsSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnAnalyticsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnCollection.java index d6e60893828..4d2f27197e7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnLifecycleState.java index d6ee22081f8..614e70d2885 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnSummary.java index dd462284b95..3a25c247358 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveColumnSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveDataModel.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveDataModel.java index e8c05a09b92..515e2ff8041 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveDataModel.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveDataModel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveDataModelCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveDataModelCollection.java index 5674e168541..8c47e1b7a2d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveDataModelCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveDataModelCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveDataModelSensitiveTypeCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveDataModelSensitiveTypeCollection.java index 3aeabb5a3b2..3385a04bfca 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveDataModelSensitiveTypeCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveDataModelSensitiveTypeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveDataModelSensitiveTypeSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveDataModelSensitiveTypeSummary.java index a2bd6af0876..88a278f511a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveDataModelSensitiveTypeSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveDataModelSensitiveTypeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveDataModelSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveDataModelSummary.java index 1e63daf89a1..b5e82c31269 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveDataModelSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveDataModelSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveObjectCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveObjectCollection.java index 98bb1d3ca8e..117dc6e38e2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveObjectCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveObjectCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveObjectSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveObjectSummary.java index 83be4753ff5..2b8d860096e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveObjectSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveObjectSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveSchemaCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveSchemaCollection.java index b3ec306dd65..f5120761384 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveSchemaCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveSchemaCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveSchemaSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveSchemaSummary.java index dfbdfdb9f0c..326d6e10ce8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveSchemaSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveSchemaSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveType.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveType.java index 5e4f349a06f..7cab1b7a54a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveType.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeCollection.java index 9455e161bf7..7a907df71ac 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeEntity.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeEntity.java index 81c64bfad97..c4269a91ef1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeEntity.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeGroup.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeGroup.java index 3fb27ee56f3..63ce5b14210 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeGroup.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeGroupCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeGroupCollection.java index 51f9a839223..2991950efbe 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeGroupCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeGroupCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeGroupLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeGroupLifecycleState.java index 8ef9541b808..bade9416124 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeGroupLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeGroupLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeGroupSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeGroupSummary.java index 25a8e6d144d..cda69293d96 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeGroupSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeGroupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypePattern.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypePattern.java index efcd9ecfa56..b1920b736a6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypePattern.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypePattern.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeSource.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeSource.java index 2848e390431..1b986e43d5c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeSource.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeSummary.java index 214e428a3e6..95109b715a6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypesExport.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypesExport.java index b2cd48ecadb..e8b8829a6bc 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypesExport.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypesExport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypesExportCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypesExportCollection.java index 50fab05cb17..305a13e0f4c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypesExportCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypesExportCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypesExportLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypesExportLifecycleState.java index 3e237ef9a4f..8e1b8f14b25 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypesExportLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypesExportLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypesExportSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypesExportSummary.java index 8adb5b8b381..ae96bcebc26 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypesExportSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SensitiveTypesExportSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ServiceList.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ServiceList.java index 8ab21f4b8ab..73b5eb2907b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ServiceList.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ServiceList.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ShuffleFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ShuffleFormatEntry.java index c9b0bb31072..52eaca148d4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ShuffleFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/ShuffleFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SortOrders.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SortOrders.java index cd5b584f825..480240709b3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SortOrders.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SortOrders.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollection.java index 5a5df1d0bd9..98b94c4d0dd 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionAggregation.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionAggregation.java index 57fb260890b..2e689b152cd 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionAggregation.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionAnalyticsCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionAnalyticsCollection.java index dec6b9487c1..e65c3dcb41e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionAnalyticsCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionAnalyticsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionCollection.java index a7e3d65ba65..9d3ebc47210 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionDimensions.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionDimensions.java index 3f667f41169..4378267fd1e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionDimensions.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionDimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionLifecycleState.java index f4edde965e7..0652d58a4d7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionLogAggregation.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionLogAggregation.java index 769b1aa4fb7..a1d19360e85 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionLogAggregation.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionLogAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionLogDimensions.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionLogDimensions.java index d87ba88d1aa..36c71aae55c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionLogDimensions.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionLogDimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionLogInsightsCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionLogInsightsCollection.java index d36aa873dd5..7848d3f232f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionLogInsightsCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionLogInsightsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionSummary.java index 145b97c2ef3..cc39c7eb544 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlCollectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSql.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSql.java index 2812153a645..04aa59aa059 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSql.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlAggregation.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlAggregation.java index 116eae10177..5bb5f835bfc 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlAggregation.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlAnalyticsCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlAnalyticsCollection.java index 600e93beeb9..496e72e293b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlAnalyticsCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlAnalyticsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlCollection.java index 9fd5438054c..9edeabe6fa5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlDimensions.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlDimensions.java index b19f4c00e5a..b27befe7ca9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlDimensions.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlDimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlLifecycleState.java index 335d95c0412..096e5547581 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlSummary.java index 59bb89f8703..c47b5878149 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallAllowedSqlSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallConfig.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallConfig.java index fbc8d3f0db0..a41000c2da3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallConfig.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicy.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicy.java index fa69c3c8481..6be1d41018d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicy.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicyAggregation.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicyAggregation.java index 17ae4378ff0..c14a4e31d65 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicyAggregation.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicyAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicyAnalyticsCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicyAnalyticsCollection.java index 26385bac8a9..82c6aea8241 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicyAnalyticsCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicyAnalyticsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicyCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicyCollection.java index 8921f83fb94..6a46447a085 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicyCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicyDimensions.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicyDimensions.java index f2f4b7cee8b..5b1bcc7d025 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicyDimensions.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicyDimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicyLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicyLifecycleState.java index 82348c51151..2ac2e9dd4a0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicyLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicyLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicySummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicySummary.java index c3ac97442bd..734e5f1d670 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicySummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallPolicySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallViolationAggregation.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallViolationAggregation.java index ef353618a67..c512368bbf3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallViolationAggregation.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallViolationAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallViolationAggregationDimensions.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallViolationAggregationDimensions.java index 910e987c13d..c4406601e27 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallViolationAggregationDimensions.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallViolationAggregationDimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallViolationAnalyticsCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallViolationAnalyticsCollection.java index 468884fc37a..465524c1f02 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallViolationAnalyticsCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallViolationAnalyticsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallViolationSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallViolationSummary.java index f6da7211b87..cb191e264ac 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallViolationSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallViolationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallViolationsCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallViolationsCollection.java index f369bae88be..b366f4c47bf 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallViolationsCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SqlFirewallViolationsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/StartAuditTrailDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/StartAuditTrailDetails.java index 68314470e72..f0a0c0368fa 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/StartAuditTrailDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/StartAuditTrailDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SubstringFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SubstringFormatEntry.java index d0b1b8c3d80..77b6a24d86e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SubstringFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/SubstringFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Summary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Summary.java index 92a86b43700..f8bcc484891 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Summary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/Summary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TableSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TableSummary.java index bf1c3e563c9..0e07ec7c742 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TableSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TableSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TablesForDiscovery.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TablesForDiscovery.java index 5b6e95244ab..c20cecc6cd9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TablesForDiscovery.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TablesForDiscovery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetAlertPolicyAssociation.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetAlertPolicyAssociation.java index 63650f3776a..4c668ed9638 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetAlertPolicyAssociation.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetAlertPolicyAssociation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetAlertPolicyAssociationCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetAlertPolicyAssociationCollection.java index 93fbe9013d3..19bad0e028f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetAlertPolicyAssociationCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetAlertPolicyAssociationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetAlertPolicyAssociationSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetAlertPolicyAssociationSummary.java index b114b011b41..16b42e2fa46 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetAlertPolicyAssociationSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetAlertPolicyAssociationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabase.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabase.java index c01d876c595..8f0b1f3b8f0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabase.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseGroup.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseGroup.java index dd51ac7f9b7..db0e5327491 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseGroup.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseGroupCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseGroupCollection.java index f72f4e65ef4..23126fc51c5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseGroupCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseGroupCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseGroupLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseGroupLifecycleState.java index 360bcbddbbc..40f3771c14c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseGroupLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseGroupLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseGroupSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseGroupSummary.java index 16c2d822d16..2a2875f4896 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseGroupSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseGroupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseLifecycleState.java index f032295cf0f..550d683f4a1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseSummary.java index d8d6bcb2af7..75560608dae 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetDatabaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetOverrideCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetOverrideCollection.java index 7b0397e4153..a4544be0d60 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetOverrideCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetOverrideCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetOverrideSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetOverrideSummary.java index 5b3f898ea93..9cb47a8ad9c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetOverrideSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TargetOverrideSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAnalyticsCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAnalyticsCollection.java index f14f96fd824..2520b1bda1a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAnalyticsCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAnalyticsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAnalyticsDimensions.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAnalyticsDimensions.java index 86168bf584a..83251ad99b2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAnalyticsDimensions.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAnalyticsDimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAnalyticsSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAnalyticsSummary.java index cea245fc4e8..8dc414d8474 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAnalyticsSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAnalyticsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAssociationAnalyticsCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAssociationAnalyticsCollection.java index e399080fcdd..b071d09820f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAssociationAnalyticsCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAssociationAnalyticsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAssociationAnalyticsDimensions.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAssociationAnalyticsDimensions.java index b82e3f1d95f..0bddb57078a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAssociationAnalyticsDimensions.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAssociationAnalyticsDimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAssociationAnalyticsSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAssociationAnalyticsSummary.java index 1cc189b9261..392a8ee1ab9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAssociationAnalyticsSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateAssociationAnalyticsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateBaselineDiffs.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateBaselineDiffs.java index dd3fb69cc2d..8e11a5aa53d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateBaselineDiffs.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateBaselineDiffs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateBaselineDiffsPerTarget.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateBaselineDiffsPerTarget.java index 4c64d495207..23da294d9df 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateBaselineDiffsPerTarget.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TemplateBaselineDiffsPerTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TlsConfig.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TlsConfig.java index 3228a09284a..c2ef528502c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TlsConfig.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TlsConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TruncateTableFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TruncateTableFormatEntry.java index 582f8662bad..945fd5075ac 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TruncateTableFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/TruncateTableFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UDFFormatEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UDFFormatEntry.java index c62900d6aa8..8730daefbab 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UDFFormatEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UDFFormatEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicy.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicy.java index 9e27190373a..8c2e749e2e3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicy.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyCollection.java index 518c85bfd65..dd9518ea066 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyConfig.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyConfig.java index cc3d6f126a9..ff3d269a790 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyConfig.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyConfigDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyConfigDetails.java index 6cbfb7f0d48..fc2c565d7cc 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyConfigDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyDefinition.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyDefinition.java index bb6a4880e01..f8afaeb0435 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyDefinition.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyDefinitionCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyDefinitionCollection.java index 257b872da8a..626de80b214 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyDefinitionCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyDefinitionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyDefinitionLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyDefinitionLifecycleState.java index d2bdf4d3f31..cf4511324bf 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyDefinitionLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyDefinitionLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyDefinitionSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyDefinitionSummary.java index c45f8378de5..e7e1e419945 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyDefinitionSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyDefinitionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyLifecycleState.java index 76629ce8653..b9cc441f4ca 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicyLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicySummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicySummary.java index dbd0ea2b644..a4c907d8b0d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicySummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnifiedAuditPolicySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnsetSecurityAssessmentBaselineDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnsetSecurityAssessmentBaselineDetails.java index 4198e785c07..a879bb4a7dd 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnsetSecurityAssessmentBaselineDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnsetSecurityAssessmentBaselineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnsetUserAssessmentBaselineDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnsetUserAssessmentBaselineDetails.java index 24a1ef26a7c..d8f4443a2c5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnsetUserAssessmentBaselineDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UnsetUserAssessmentBaselineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAlertDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAlertDetails.java index df5cdf22765..e6534b04fce 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAlertDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAlertDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAlertPolicyDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAlertPolicyDetails.java index 7099ec7f9b0..95a56d23929 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAlertPolicyDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAlertPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAlertPolicyRuleDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAlertPolicyRuleDetails.java index c6efef61537..ff41a4cc75e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAlertPolicyRuleDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAlertPolicyRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAttributeSetDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAttributeSetDetails.java index 61a94630c1d..da345eea56a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAttributeSetDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAttributeSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAuditArchiveRetrievalDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAuditArchiveRetrievalDetails.java index f695d95904a..ba7bff4d280 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAuditArchiveRetrievalDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAuditArchiveRetrievalDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAuditPolicyDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAuditPolicyDetails.java index a40b03376ee..5bfd1bf6f00 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAuditPolicyDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAuditPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAuditProfileDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAuditProfileDetails.java index c869124089e..2afa0ec4c97 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAuditProfileDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAuditProfileDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAuditTrailDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAuditTrailDetails.java index b2427f46768..82bf3ea500b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAuditTrailDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateAuditTrailDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateColumnSourceDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateColumnSourceDetails.java index 3e834654f5c..398c931b96e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateColumnSourceDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateColumnSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateColumnSourceSdmDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateColumnSourceSdmDetails.java index fce557c4719..c47a8479fde 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateColumnSourceSdmDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateColumnSourceSdmDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateColumnSourceTargetDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateColumnSourceTargetDetails.java index 97f03a4d9ff..09a199f0f97 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateColumnSourceTargetDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateColumnSourceTargetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateDataSafePrivateEndpointDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateDataSafePrivateEndpointDetails.java index 09ad8ce1c38..5e00ecc8cd5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateDataSafePrivateEndpointDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateDataSafePrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateDatabaseSecurityConfigDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateDatabaseSecurityConfigDetails.java index f00171a1354..a7ede113622 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateDatabaseSecurityConfigDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateDatabaseSecurityConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateFindingDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateFindingDetails.java index 0ccec323ebe..29fda57d780 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateFindingDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateFindingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateLibraryMaskingFormatDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateLibraryMaskingFormatDetails.java index 3c881dda11b..369f82b5d21 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateLibraryMaskingFormatDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateLibraryMaskingFormatDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateMaskingColumnDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateMaskingColumnDetails.java index b8c569fc2fb..46dacab2011 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateMaskingColumnDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateMaskingColumnDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateMaskingPolicyDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateMaskingPolicyDetails.java index 6f41c4a5fa9..8845670df08 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateMaskingPolicyDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateMaskingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateOnPremConnectorDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateOnPremConnectorDetails.java index 2f10394b437..3101ad8761e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateOnPremConnectorDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateOnPremConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateOnPremConnectorWalletDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateOnPremConnectorWalletDetails.java index ac87be82388..00e9e4c2f2f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateOnPremConnectorWalletDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateOnPremConnectorWalletDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdatePeerTargetDatabaseDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdatePeerTargetDatabaseDetails.java index cbe0edfa28e..96f342780a4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdatePeerTargetDatabaseDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdatePeerTargetDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateReportDefinitionDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateReportDefinitionDetails.java index 0087ff59f10..75a5d17bb6c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateReportDefinitionDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateReportDefinitionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateReportDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateReportDetails.java index 3458302d5a4..9560e0e5b84 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateReportDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateReportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSdmMaskingPolicyDifferenceDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSdmMaskingPolicyDifferenceDetails.java index a93d24d252f..b6ce2b9bcc4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSdmMaskingPolicyDifferenceDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSdmMaskingPolicyDifferenceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSecurityAssessmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSecurityAssessmentDetails.java index 6c07d47c02c..263d423af3d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSecurityAssessmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSecurityAssessmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSecurityPolicyConfigDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSecurityPolicyConfigDetails.java index e98f1c7a202..f5fc44a6e05 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSecurityPolicyConfigDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSecurityPolicyConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSecurityPolicyDeploymentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSecurityPolicyDeploymentDetails.java index 5ae846b393a..913728b2b5a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSecurityPolicyDeploymentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSecurityPolicyDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSecurityPolicyDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSecurityPolicyDetails.java index a7ef7c080a2..55962cc6ce6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSecurityPolicyDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSecurityPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveCategoryDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveCategoryDetails.java index 356341a2e32..90b7f6d366f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveCategoryDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveCategoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveColumnDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveColumnDetails.java index f34d7b9058e..1f018ed8f6a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveColumnDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveColumnDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveDataModelDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveDataModelDetails.java index 29131afd725..78cc76fc193 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveDataModelDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveDataModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveTypeDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveTypeDetails.java index 6f9bd3c6067..916496f43eb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveTypeDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveTypeGroupDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveTypeGroupDetails.java index 2814d719fa9..6f305e62d8f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveTypeGroupDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveTypeGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveTypePatternDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveTypePatternDetails.java index db4e8407213..b3eff608ea5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveTypePatternDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveTypePatternDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveTypesExportDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveTypesExportDetails.java index 6daae799766..ec28a0cff6c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveTypesExportDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSensitiveTypesExportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSqlCollectionDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSqlCollectionDetails.java index 5352eaeb20c..d6516b2994d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSqlCollectionDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSqlCollectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSqlFirewallConfigDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSqlFirewallConfigDetails.java index 7f878f56797..552fc4bb302 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSqlFirewallConfigDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSqlFirewallConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSqlFirewallPolicyDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSqlFirewallPolicyDetails.java index c4b09e4a602..2ef63993324 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSqlFirewallPolicyDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateSqlFirewallPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateTargetAlertPolicyAssociationDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateTargetAlertPolicyAssociationDetails.java index fd535c16156..823645c3aec 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateTargetAlertPolicyAssociationDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateTargetAlertPolicyAssociationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateTargetDatabaseDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateTargetDatabaseDetails.java index eeba68c6143..3c831938711 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateTargetDatabaseDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateTargetDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateTargetDatabaseGroupDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateTargetDatabaseGroupDetails.java index ea042c0e947..58cd27c819e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateTargetDatabaseGroupDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateTargetDatabaseGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateUnifiedAuditPolicyDefinitionDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateUnifiedAuditPolicyDefinitionDetails.java index 06c7df9ddf4..5b14fb8a66a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateUnifiedAuditPolicyDefinitionDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateUnifiedAuditPolicyDefinitionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateUnifiedAuditPolicyDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateUnifiedAuditPolicyDetails.java index 71eed6c07aa..b509c50ced1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateUnifiedAuditPolicyDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateUnifiedAuditPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateUserAssessmentDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateUserAssessmentDetails.java index 956bcf82eb0..79a233459de 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateUserAssessmentDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UpdateUserAssessmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAccessAnalyticsCollection.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAccessAnalyticsCollection.java index 72ac2e5cdbc..fe4b0693540 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAccessAnalyticsCollection.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAccessAnalyticsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAccessAnalyticsSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAccessAnalyticsSummary.java index 69d925b76f1..e476c5656d1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAccessAnalyticsSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAccessAnalyticsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAggregation.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAggregation.java index 7717c374b95..e0e0eba46df 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAggregation.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessment.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessment.java index 8ade095562a..8ee88821e41 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessment.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessmentBaseLineDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessmentBaseLineDetails.java index 87779f8303e..b3c01934b6e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessmentBaseLineDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessmentBaseLineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessmentComparison.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessmentComparison.java index e794c37fb35..fb99430ddcf 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessmentComparison.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessmentComparison.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessmentLifecycleState.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessmentLifecycleState.java index bccdd549642..8453b535ae6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessmentLifecycleState.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessmentLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessmentSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessmentSummary.java index de7b98760e0..ad24ee05c6c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessmentSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessmentTargetType.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessmentTargetType.java index 27e25c03b7a..66edbeae8a4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessmentTargetType.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserAssessmentTargetType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserCondition.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserCondition.java index a42cdea0306..310311bc7a2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserCondition.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserDetails.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserDetails.java index 62faddc9f46..58648a4c8aa 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserDetails.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserSummary.java index cef49e17b75..a365fee05b8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/UserSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/WorkRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/WorkRequest.java index 57464129235..1fb34d527bf 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/WorkRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/WorkRequestError.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/WorkRequestError.java index d53be834f15..9ede75a073d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/WorkRequestError.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/WorkRequestLogEntry.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/WorkRequestLogEntry.java index fd09a850f2d..d1ca7150405 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/WorkRequestLogEntry.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/WorkRequestResource.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/WorkRequestResource.java index d818481fde3..deb1e2cc95f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/WorkRequestResource.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/WorkRequestSummary.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/WorkRequestSummary.java index 386fbe59ebf..80eae3c9f74 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/WorkRequestSummary.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.model; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ActivateTargetDatabaseRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ActivateTargetDatabaseRequest.java index ce057c24a68..371cdec88bf 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ActivateTargetDatabaseRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ActivateTargetDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/AddMaskingColumnsFromSdmRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/AddMaskingColumnsFromSdmRequest.java index a4d2fb8ee85..ed3b933f3ed 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/AddMaskingColumnsFromSdmRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/AddMaskingColumnsFromSdmRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/AlertsUpdateRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/AlertsUpdateRequest.java index 8203c9953d7..0eecf3bd1c5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/AlertsUpdateRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/AlertsUpdateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ApplyDiscoveryJobResultsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ApplyDiscoveryJobResultsRequest.java index 5a47c26d199..d0e63f439f4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ApplyDiscoveryJobResultsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ApplyDiscoveryJobResultsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ApplySdmMaskingPolicyDifferenceRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ApplySdmMaskingPolicyDifferenceRequest.java index 7c3198b4279..ddbc75b729e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ApplySdmMaskingPolicyDifferenceRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ApplySdmMaskingPolicyDifferenceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ApplySecurityAssessmentTemplateRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ApplySecurityAssessmentTemplateRequest.java index 1f2c39e1528..dbc793d2bfa 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ApplySecurityAssessmentTemplateRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ApplySecurityAssessmentTemplateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/BulkCreateSensitiveTypesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/BulkCreateSensitiveTypesRequest.java index e8f8af5851a..015c854822c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/BulkCreateSensitiveTypesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/BulkCreateSensitiveTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/BulkCreateSqlFirewallAllowedSqlsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/BulkCreateSqlFirewallAllowedSqlsRequest.java index d5b4f0f7ce8..c661a53b4a0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/BulkCreateSqlFirewallAllowedSqlsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/BulkCreateSqlFirewallAllowedSqlsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/BulkCreateUnifiedAuditPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/BulkCreateUnifiedAuditPolicyRequest.java index ddc72c6b5a1..8eb08c5e303 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/BulkCreateUnifiedAuditPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/BulkCreateUnifiedAuditPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/BulkDeleteSqlFirewallAllowedSqlsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/BulkDeleteSqlFirewallAllowedSqlsRequest.java index b5765be07be..da285696bb8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/BulkDeleteSqlFirewallAllowedSqlsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/BulkDeleteSqlFirewallAllowedSqlsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CalculateAuditVolumeAvailableRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CalculateAuditVolumeAvailableRequest.java index dd7ceb3e3fc..41869269648 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CalculateAuditVolumeAvailableRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CalculateAuditVolumeAvailableRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CalculateAuditVolumeCollectedRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CalculateAuditVolumeCollectedRequest.java index 5418689c89c..037f0994bb8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CalculateAuditVolumeCollectedRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CalculateAuditVolumeCollectedRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CancelWorkRequestRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CancelWorkRequestRequest.java index 4e312d3792c..bed1bca5732 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CancelWorkRequestRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAlertCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAlertCompartmentRequest.java index 727e6b8f3f7..70878425ae6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAlertCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAlertCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAlertPolicyCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAlertPolicyCompartmentRequest.java index 458b643de72..cbee1fd9f60 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAlertPolicyCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAlertPolicyCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAttributeSetCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAttributeSetCompartmentRequest.java index f0faf57450c..8b124826435 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAttributeSetCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAttributeSetCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAuditArchiveRetrievalCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAuditArchiveRetrievalCompartmentRequest.java index 58de5b31e64..0490104721a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAuditArchiveRetrievalCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAuditArchiveRetrievalCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAuditPolicyCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAuditPolicyCompartmentRequest.java index 5f6a3969257..0a3a9946e7b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAuditPolicyCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAuditPolicyCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAuditProfileCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAuditProfileCompartmentRequest.java index 2696e4decbb..12ce15ba98f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAuditProfileCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeAuditProfileCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeDataSafePrivateEndpointCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeDataSafePrivateEndpointCompartmentRequest.java index 035b9d59d89..4b4f97ee81f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeDataSafePrivateEndpointCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeDataSafePrivateEndpointCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeDatabaseSecurityConfigCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeDatabaseSecurityConfigCompartmentRequest.java index b769ad8f4fc..21b303038bf 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeDatabaseSecurityConfigCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeDatabaseSecurityConfigCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeDiscoveryJobCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeDiscoveryJobCompartmentRequest.java index 31f79e291cb..1db9797c1fe 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeDiscoveryJobCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeDiscoveryJobCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeLibraryMaskingFormatCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeLibraryMaskingFormatCompartmentRequest.java index 6e31910ca9e..0d3e570ca70 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeLibraryMaskingFormatCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeLibraryMaskingFormatCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeMaskingPolicyCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeMaskingPolicyCompartmentRequest.java index bb80e597af8..5085cbf77f7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeMaskingPolicyCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeMaskingPolicyCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeMaskingPolicyHealthReportCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeMaskingPolicyHealthReportCompartmentRequest.java index 921e4b3b2d8..746b3d796ae 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeMaskingPolicyHealthReportCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeMaskingPolicyHealthReportCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeOnPremConnectorCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeOnPremConnectorCompartmentRequest.java index 0671f0e8cc7..d398345394b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeOnPremConnectorCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeOnPremConnectorCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeReportCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeReportCompartmentRequest.java index a7b2b2870ea..f9318fda805 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeReportCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeReportCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeReportDefinitionCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeReportDefinitionCompartmentRequest.java index 784d8c42696..03a95e855dd 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeReportDefinitionCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeReportDefinitionCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeRetentionRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeRetentionRequest.java index 260360e765d..fd4cc1b2015 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeRetentionRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeRetentionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSdmMaskingPolicyDifferenceCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSdmMaskingPolicyDifferenceCompartmentRequest.java index b342ab24091..7ca2309755e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSdmMaskingPolicyDifferenceCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSdmMaskingPolicyDifferenceCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSecurityAssessmentCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSecurityAssessmentCompartmentRequest.java index 8cd276ff134..8c80366e535 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSecurityAssessmentCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSecurityAssessmentCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSecurityPolicyCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSecurityPolicyCompartmentRequest.java index 74f660e3cdf..ca0ea4deba3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSecurityPolicyCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSecurityPolicyCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSecurityPolicyConfigCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSecurityPolicyConfigCompartmentRequest.java index 82bd2cbd794..5ad56cb6512 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSecurityPolicyConfigCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSecurityPolicyConfigCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSecurityPolicyDeploymentCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSecurityPolicyDeploymentCompartmentRequest.java index b12709c7a1f..2b021d6c25b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSecurityPolicyDeploymentCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSecurityPolicyDeploymentCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSensitiveDataModelCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSensitiveDataModelCompartmentRequest.java index c2dfa86c4cc..cbe7ded910c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSensitiveDataModelCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSensitiveDataModelCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSensitiveTypeCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSensitiveTypeCompartmentRequest.java index c3aab5cbb45..6e883808583 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSensitiveTypeCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSensitiveTypeCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSensitiveTypeGroupCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSensitiveTypeGroupCompartmentRequest.java index bccbdbe423b..13d0674403a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSensitiveTypeGroupCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSensitiveTypeGroupCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSensitiveTypesExportCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSensitiveTypesExportCompartmentRequest.java index 1ee675e6553..d5ce8fa0142 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSensitiveTypesExportCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSensitiveTypesExportCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSqlCollectionCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSqlCollectionCompartmentRequest.java index 1f830d7128d..8c1a90821b6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSqlCollectionCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSqlCollectionCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSqlFirewallPolicyCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSqlFirewallPolicyCompartmentRequest.java index a17498dd47c..c3116e100d7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSqlFirewallPolicyCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeSqlFirewallPolicyCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeTargetAlertPolicyAssociationCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeTargetAlertPolicyAssociationCompartmentRequest.java index 1603581a8de..6e465dc9fb5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeTargetAlertPolicyAssociationCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeTargetAlertPolicyAssociationCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeTargetDatabaseCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeTargetDatabaseCompartmentRequest.java index 339897fd6b9..71534e82630 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeTargetDatabaseCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeTargetDatabaseCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeTargetDatabaseGroupCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeTargetDatabaseGroupCompartmentRequest.java index 3a93dce7163..46d73e3faa6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeTargetDatabaseGroupCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeTargetDatabaseGroupCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeUnifiedAuditPolicyCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeUnifiedAuditPolicyCompartmentRequest.java index c24b5be48bc..e91cbe43b4f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeUnifiedAuditPolicyCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeUnifiedAuditPolicyCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeUnifiedAuditPolicyDefinitionCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeUnifiedAuditPolicyDefinitionCompartmentRequest.java index c0b9336d10b..4502ca247c9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeUnifiedAuditPolicyDefinitionCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeUnifiedAuditPolicyDefinitionCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeUserAssessmentCompartmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeUserAssessmentCompartmentRequest.java index b863739ab18..069b2d5baf1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeUserAssessmentCompartmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ChangeUserAssessmentCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CompareSecurityAssessmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CompareSecurityAssessmentRequest.java index 502409d8501..820b80c54ac 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CompareSecurityAssessmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CompareSecurityAssessmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CompareToTemplateBaselineRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CompareToTemplateBaselineRequest.java index 1bafdfc2515..791056776c4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CompareToTemplateBaselineRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CompareToTemplateBaselineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CompareUserAssessmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CompareUserAssessmentRequest.java index 4ac7826b745..39305c0b574 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CompareUserAssessmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CompareUserAssessmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateAlertPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateAlertPolicyRequest.java index dbc4e2fd83c..0aa159de6f4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateAlertPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateAlertPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateAlertPolicyRuleRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateAlertPolicyRuleRequest.java index 8a81da4d21f..19c0a84577d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateAlertPolicyRuleRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateAlertPolicyRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateAttributeSetRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateAttributeSetRequest.java index deb15cecc2d..75bda112efd 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateAttributeSetRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateAttributeSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateAuditArchiveRetrievalRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateAuditArchiveRetrievalRequest.java index 62872274646..d934bf86208 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateAuditArchiveRetrievalRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateAuditArchiveRetrievalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateAuditProfileRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateAuditProfileRequest.java index 5c62ba071c6..5cd7cdaa74b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateAuditProfileRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateAuditProfileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateDataSafePrivateEndpointRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateDataSafePrivateEndpointRequest.java index 26d8666fbc6..7024288916b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateDataSafePrivateEndpointRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateDataSafePrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateDiscoveryJobRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateDiscoveryJobRequest.java index 6054cf191c6..7c60b4bd2ca 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateDiscoveryJobRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateDiscoveryJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateLibraryMaskingFormatRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateLibraryMaskingFormatRequest.java index b7edb035617..8aaf72a14c8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateLibraryMaskingFormatRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateLibraryMaskingFormatRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateMaskingColumnRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateMaskingColumnRequest.java index 7d3ae7bab61..ebfb9398dd6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateMaskingColumnRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateMaskingColumnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateMaskingPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateMaskingPolicyRequest.java index ef50bf9a08a..ee8ead70e2c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateMaskingPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateMaskingPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateOnPremConnectorRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateOnPremConnectorRequest.java index 156135f9a41..8e9cef0c3f7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateOnPremConnectorRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateOnPremConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreatePeerTargetDatabaseRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreatePeerTargetDatabaseRequest.java index 6d84c8da958..dca430454e9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreatePeerTargetDatabaseRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreatePeerTargetDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateReferentialRelationRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateReferentialRelationRequest.java index 3467be95481..c41c9170acc 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateReferentialRelationRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateReferentialRelationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateReportDefinitionRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateReportDefinitionRequest.java index 241f9751246..b734858cb73 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateReportDefinitionRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateReportDefinitionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSdmMaskingPolicyDifferenceRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSdmMaskingPolicyDifferenceRequest.java index ade56ce92c7..f28e26ac079 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSdmMaskingPolicyDifferenceRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSdmMaskingPolicyDifferenceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSecurityAssessmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSecurityAssessmentRequest.java index 9f88fdf5bf9..3ff736efb44 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSecurityAssessmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSecurityAssessmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSecurityPolicyConfigRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSecurityPolicyConfigRequest.java index 428dbf485c9..36e348290f2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSecurityPolicyConfigRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSecurityPolicyConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSecurityPolicyDeploymentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSecurityPolicyDeploymentRequest.java index c82762ffda0..264f3d701b5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSecurityPolicyDeploymentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSecurityPolicyDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSecurityPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSecurityPolicyRequest.java index ff9638308f3..95c55505ddc 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSecurityPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSecurityPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSensitiveColumnRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSensitiveColumnRequest.java index 92ae03dc368..467ff1a366e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSensitiveColumnRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSensitiveColumnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSensitiveDataModelRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSensitiveDataModelRequest.java index f83dcddd764..92e68293345 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSensitiveDataModelRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSensitiveDataModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSensitiveTypeGroupRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSensitiveTypeGroupRequest.java index de18f70d7e6..e90bd0b6089 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSensitiveTypeGroupRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSensitiveTypeGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSensitiveTypeRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSensitiveTypeRequest.java index e0dcb2aa325..ed7b28946ed 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSensitiveTypeRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSensitiveTypeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSensitiveTypesExportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSensitiveTypesExportRequest.java index dd9602339ee..c01f5735f81 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSensitiveTypesExportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSensitiveTypesExportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSqlCollectionRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSqlCollectionRequest.java index 15d6f0ee924..01085c7b328 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSqlCollectionRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateSqlCollectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateTargetAlertPolicyAssociationRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateTargetAlertPolicyAssociationRequest.java index 6c66269633c..07df81297f9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateTargetAlertPolicyAssociationRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateTargetAlertPolicyAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateTargetDatabaseGroupRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateTargetDatabaseGroupRequest.java index 315f55e7fed..139dca651b1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateTargetDatabaseGroupRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateTargetDatabaseGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateTargetDatabaseRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateTargetDatabaseRequest.java index 9a998e2ba88..316aded2fe2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateTargetDatabaseRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateTargetDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateUnifiedAuditPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateUnifiedAuditPolicyRequest.java index f34a7ec5966..cebdcd75668 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateUnifiedAuditPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateUnifiedAuditPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateUserAssessmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateUserAssessmentRequest.java index a3cfefdad37..c4607232984 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateUserAssessmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/CreateUserAssessmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeactivateTargetDatabaseRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeactivateTargetDatabaseRequest.java index d304050cf17..88387825fa9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeactivateTargetDatabaseRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeactivateTargetDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAlertPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAlertPolicyRequest.java index f3f16058c75..68edf034561 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAlertPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAlertPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAlertPolicyRuleRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAlertPolicyRuleRequest.java index 7203922b2d9..2ddcd62bd14 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAlertPolicyRuleRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAlertPolicyRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAttributeSetRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAttributeSetRequest.java index 7078d321711..ab6ce4d9b3f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAttributeSetRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAttributeSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAuditArchiveRetrievalRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAuditArchiveRetrievalRequest.java index be8707f8ad2..a32cf322a97 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAuditArchiveRetrievalRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAuditArchiveRetrievalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAuditProfileRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAuditProfileRequest.java index d4e6f3286a9..69a98c8d416 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAuditProfileRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAuditProfileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAuditTrailRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAuditTrailRequest.java index 3c653121b07..e9e69a1e2be 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAuditTrailRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteAuditTrailRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteDataSafePrivateEndpointRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteDataSafePrivateEndpointRequest.java index 88a2607d9ef..efe10d31fbb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteDataSafePrivateEndpointRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteDataSafePrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteDiscoveryJobRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteDiscoveryJobRequest.java index 681b4e987c2..155e5f1d604 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteDiscoveryJobRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteDiscoveryJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteDiscoveryJobResultRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteDiscoveryJobResultRequest.java index 7acc9beb294..17022fefd4d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteDiscoveryJobResultRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteDiscoveryJobResultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteLibraryMaskingFormatRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteLibraryMaskingFormatRequest.java index 2f96dbf2186..9c723a80e44 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteLibraryMaskingFormatRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteLibraryMaskingFormatRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteMaskingColumnRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteMaskingColumnRequest.java index 65f0d433aa1..6e9969cf4ba 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteMaskingColumnRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteMaskingColumnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteMaskingPolicyHealthReportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteMaskingPolicyHealthReportRequest.java index cfe9f735f0f..47eb3e0fa0a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteMaskingPolicyHealthReportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteMaskingPolicyHealthReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteMaskingPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteMaskingPolicyRequest.java index 45b57214447..0e57e39f1f0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteMaskingPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteMaskingPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteMaskingReportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteMaskingReportRequest.java index 8f2cf93db2f..fdc25766914 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteMaskingReportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteMaskingReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteOnPremConnectorRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteOnPremConnectorRequest.java index 7522231f66b..d331f769837 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteOnPremConnectorRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteOnPremConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeletePeerTargetDatabaseRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeletePeerTargetDatabaseRequest.java index 41cb7768603..2ede17c5416 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeletePeerTargetDatabaseRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeletePeerTargetDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteReferentialRelationRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteReferentialRelationRequest.java index 3c200766b43..4c375e6079d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteReferentialRelationRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteReferentialRelationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteReportDefinitionRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteReportDefinitionRequest.java index ecc50c4e667..88ee3caa19a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteReportDefinitionRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteReportDefinitionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSdmMaskingPolicyDifferenceRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSdmMaskingPolicyDifferenceRequest.java index 1d160fc72e5..9432957697b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSdmMaskingPolicyDifferenceRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSdmMaskingPolicyDifferenceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSecurityAssessmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSecurityAssessmentRequest.java index 5471e46e07c..e2b74ec1fb9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSecurityAssessmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSecurityAssessmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSecurityPolicyConfigRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSecurityPolicyConfigRequest.java index 37671fb8584..26932283c06 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSecurityPolicyConfigRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSecurityPolicyConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSecurityPolicyDeploymentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSecurityPolicyDeploymentRequest.java index 66e35853d2e..0a17a9ca90a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSecurityPolicyDeploymentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSecurityPolicyDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSecurityPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSecurityPolicyRequest.java index 2fd97889b3b..eba27c635d4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSecurityPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSecurityPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSensitiveColumnRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSensitiveColumnRequest.java index 51c10676c67..17a48a2fa72 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSensitiveColumnRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSensitiveColumnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSensitiveDataModelRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSensitiveDataModelRequest.java index a9c55afc395..ea1afc64d23 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSensitiveDataModelRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSensitiveDataModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSensitiveTypeGroupRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSensitiveTypeGroupRequest.java index 56a3d22aa14..d92edec0cc6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSensitiveTypeGroupRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSensitiveTypeGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSensitiveTypeRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSensitiveTypeRequest.java index e43bcc2bbf7..f4233f8c4a4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSensitiveTypeRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSensitiveTypeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSensitiveTypesExportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSensitiveTypesExportRequest.java index 25bc0093349..6a5384b7b0c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSensitiveTypesExportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSensitiveTypesExportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSqlCollectionRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSqlCollectionRequest.java index f71ef3dcb27..c58b3c151cc 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSqlCollectionRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSqlCollectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSqlFirewallAllowedSqlRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSqlFirewallAllowedSqlRequest.java index 6964eb80ab5..248c7b8749c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSqlFirewallAllowedSqlRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSqlFirewallAllowedSqlRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSqlFirewallPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSqlFirewallPolicyRequest.java index 9ba09772d77..b0dd07cd62b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSqlFirewallPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteSqlFirewallPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteTargetAlertPolicyAssociationRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteTargetAlertPolicyAssociationRequest.java index 41cf13fde7e..3f052330918 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteTargetAlertPolicyAssociationRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteTargetAlertPolicyAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteTargetDatabaseGroupRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteTargetDatabaseGroupRequest.java index f3f87d85659..9d218708ea0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteTargetDatabaseGroupRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteTargetDatabaseGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteTargetDatabaseRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteTargetDatabaseRequest.java index 1ce6b4c86f6..8f20dea517a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteTargetDatabaseRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteTargetDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteUnifiedAuditPolicyDefinitionRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteUnifiedAuditPolicyDefinitionRequest.java index 44df45bd311..2f979f0b198 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteUnifiedAuditPolicyDefinitionRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteUnifiedAuditPolicyDefinitionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteUnifiedAuditPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteUnifiedAuditPolicyRequest.java index 6d5fd3fafeb..3c096e6abca 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteUnifiedAuditPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteUnifiedAuditPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteUserAssessmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteUserAssessmentRequest.java index 8f293ee08be..4e44f006440 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteUserAssessmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeleteUserAssessmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeploySecurityPolicyDeploymentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeploySecurityPolicyDeploymentRequest.java index 08ef0656919..1368ba21d42 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeploySecurityPolicyDeploymentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DeploySecurityPolicyDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DiscoverAuditTrailsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DiscoverAuditTrailsRequest.java index cef5a9374c2..794a4fedd00 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DiscoverAuditTrailsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DiscoverAuditTrailsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadDiscoveryReportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadDiscoveryReportRequest.java index 2999148788d..7c01492fd9f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadDiscoveryReportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadDiscoveryReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadMaskingLogRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadMaskingLogRequest.java index d75ac11c627..e197cacd023 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadMaskingLogRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadMaskingLogRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadMaskingPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadMaskingPolicyRequest.java index d9cb512c0cc..9e8bddccfd4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadMaskingPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadMaskingPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadMaskingReportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadMaskingReportRequest.java index 31aadda3fae..2eba04c1b1b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadMaskingReportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadMaskingReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadPrivilegeScriptRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadPrivilegeScriptRequest.java index 768a8dd94af..51341219f5e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadPrivilegeScriptRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadPrivilegeScriptRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadSecurityAssessmentReportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadSecurityAssessmentReportRequest.java index bd88aad44a5..c65fabe9cdd 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadSecurityAssessmentReportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadSecurityAssessmentReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadSensitiveDataModelRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadSensitiveDataModelRequest.java index a1a3de19a29..1320e8d37a5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadSensitiveDataModelRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadSensitiveDataModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadSensitiveTypesExportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadSensitiveTypesExportRequest.java index 67b082b3319..47c5f7a26c0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadSensitiveTypesExportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadSensitiveTypesExportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadUserAssessmentReportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadUserAssessmentReportRequest.java index e4c21bead9d..945100a6b4e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadUserAssessmentReportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/DownloadUserAssessmentReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/EnableDataSafeConfigurationRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/EnableDataSafeConfigurationRequest.java index ef32bcae2af..1c9d6136649 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/EnableDataSafeConfigurationRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/EnableDataSafeConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateDiscoveryReportForDownloadRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateDiscoveryReportForDownloadRequest.java index 940f5978664..a8299472053 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateDiscoveryReportForDownloadRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateDiscoveryReportForDownloadRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateHealthReportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateHealthReportRequest.java index 89c882cbe36..8e27e0378af 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateHealthReportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateHealthReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateMaskingPolicyForDownloadRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateMaskingPolicyForDownloadRequest.java index 50b95ffe793..a9b1a62515d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateMaskingPolicyForDownloadRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateMaskingPolicyForDownloadRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateMaskingReportForDownloadRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateMaskingReportForDownloadRequest.java index 49f6efc83aa..da737e232f5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateMaskingReportForDownloadRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateMaskingReportForDownloadRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateOnPremConnectorConfigurationRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateOnPremConnectorConfigurationRequest.java index 1e2686e13e5..a3e10075c82 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateOnPremConnectorConfigurationRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateOnPremConnectorConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateReportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateReportRequest.java index e5b96cb12a7..2668a9a475d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateReportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateSecurityAssessmentReportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateSecurityAssessmentReportRequest.java index fb0ea34ed1b..a4eecc70e7a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateSecurityAssessmentReportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateSecurityAssessmentReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateSensitiveDataModelForDownloadRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateSensitiveDataModelForDownloadRequest.java index 92914a0833f..2d0f4d66b0e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateSensitiveDataModelForDownloadRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateSensitiveDataModelForDownloadRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateSqlFirewallPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateSqlFirewallPolicyRequest.java index 8a02c442b00..ed8c3c2b8a1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateSqlFirewallPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateSqlFirewallPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateUserAssessmentReportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateUserAssessmentReportRequest.java index e9e5c9d45c1..ff60f0cd2a5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateUserAssessmentReportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GenerateUserAssessmentReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAlertPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAlertPolicyRequest.java index 266dc1d74c7..27bc73f918b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAlertPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAlertPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAlertPolicyRuleRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAlertPolicyRuleRequest.java index 0d53f9ed2d4..c9068a5ca66 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAlertPolicyRuleRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAlertPolicyRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAlertRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAlertRequest.java index 859a1395c94..fef9bc9555e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAlertRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAlertRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAttributeSetRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAttributeSetRequest.java index a8421f052ae..c509fa7d219 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAttributeSetRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAttributeSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAuditArchiveRetrievalRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAuditArchiveRetrievalRequest.java index 106b3158c23..fe89747f7cb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAuditArchiveRetrievalRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAuditArchiveRetrievalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAuditPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAuditPolicyRequest.java index 9d494bf0402..30bcc560cd5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAuditPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAuditPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAuditProfileRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAuditProfileRequest.java index 482c3447738..ebd123d6623 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAuditProfileRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAuditProfileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAuditTrailRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAuditTrailRequest.java index df3a814933c..30c4bc1de94 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAuditTrailRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetAuditTrailRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetCompatibleFormatsForDataTypesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetCompatibleFormatsForDataTypesRequest.java index 5d832e0da53..560a31a9a56 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetCompatibleFormatsForDataTypesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetCompatibleFormatsForDataTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetCompatibleFormatsForSensitiveTypesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetCompatibleFormatsForSensitiveTypesRequest.java index 419c8d8f408..f3a91778f8e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetCompatibleFormatsForSensitiveTypesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetCompatibleFormatsForSensitiveTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDataSafeConfigurationRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDataSafeConfigurationRequest.java index a9f6e53a4fc..e64033d896d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDataSafeConfigurationRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDataSafeConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDataSafePrivateEndpointRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDataSafePrivateEndpointRequest.java index 6cb73c66547..a21de950b73 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDataSafePrivateEndpointRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDataSafePrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDatabaseSecurityConfigRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDatabaseSecurityConfigRequest.java index ee34a5e79a2..717311e4d2b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDatabaseSecurityConfigRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDatabaseSecurityConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDatabaseTableAccessEntryRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDatabaseTableAccessEntryRequest.java index 815b900ec29..c9d2143b97b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDatabaseTableAccessEntryRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDatabaseTableAccessEntryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDatabaseViewAccessEntryRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDatabaseViewAccessEntryRequest.java index 35d132094ae..5541c7fc12f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDatabaseViewAccessEntryRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDatabaseViewAccessEntryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDifferenceColumnRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDifferenceColumnRequest.java index 79658df0c75..d2187074402 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDifferenceColumnRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDifferenceColumnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDiscoveryJobRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDiscoveryJobRequest.java index 77f2486a6c6..19287f5016a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDiscoveryJobRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDiscoveryJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDiscoveryJobResultRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDiscoveryJobResultRequest.java index cd5fbc79f04..e3b71d3c50d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDiscoveryJobResultRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetDiscoveryJobResultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetGroupMembersRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetGroupMembersRequest.java index 8edc666c251..6e52626031d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetGroupMembersRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetGroupMembersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetLibraryMaskingFormatRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetLibraryMaskingFormatRequest.java index 9be7f70a727..e461c3b8b75 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetLibraryMaskingFormatRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetLibraryMaskingFormatRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetMaskingColumnRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetMaskingColumnRequest.java index e0ceaff00f6..41e9ebbc59b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetMaskingColumnRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetMaskingColumnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetMaskingPolicyHealthReportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetMaskingPolicyHealthReportRequest.java index 2735723858b..c8b456fa678 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetMaskingPolicyHealthReportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetMaskingPolicyHealthReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetMaskingPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetMaskingPolicyRequest.java index 1efd2694275..a226b8d2baa 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetMaskingPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetMaskingPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetMaskingReportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetMaskingReportRequest.java index 6497d74a543..b9a13866042 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetMaskingReportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetMaskingReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetOnPremConnectorRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetOnPremConnectorRequest.java index a9f77e5a4d3..50420690ae2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetOnPremConnectorRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetOnPremConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetPeerTargetDatabaseRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetPeerTargetDatabaseRequest.java index a7698edcd3e..c530a27be18 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetPeerTargetDatabaseRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetPeerTargetDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetProfileRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetProfileRequest.java index 97f521c80d4..18dcf0a0394 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetProfileRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetProfileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetReferentialRelationRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetReferentialRelationRequest.java index be3cfc30f1f..1f325987739 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetReferentialRelationRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetReferentialRelationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetReportContentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetReportContentRequest.java index 08b5c1fdbcc..7920fc4ecef 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetReportContentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetReportContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetReportDefinitionRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetReportDefinitionRequest.java index 0cfbb84b04b..5450120d908 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetReportDefinitionRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetReportDefinitionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetReportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetReportRequest.java index c569760d906..2cdd536fa4c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetReportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSdmMaskingPolicyDifferenceRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSdmMaskingPolicyDifferenceRequest.java index b7d03469daf..b4a54a788da 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSdmMaskingPolicyDifferenceRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSdmMaskingPolicyDifferenceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityAssessmentComparisonRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityAssessmentComparisonRequest.java index 9d1de236691..4c2cd417375 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityAssessmentComparisonRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityAssessmentComparisonRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityAssessmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityAssessmentRequest.java index 3be9743ca9e..0e37d47315b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityAssessmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityAssessmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityPolicyConfigRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityPolicyConfigRequest.java index c5e3841215d..65746d0712d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityPolicyConfigRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityPolicyConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityPolicyDeploymentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityPolicyDeploymentRequest.java index f0ee0cedd0d..0ec08f35723 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityPolicyDeploymentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityPolicyDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityPolicyEntryStateRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityPolicyEntryStateRequest.java index 0abaf1a63bf..9ab2f4f8a23 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityPolicyEntryStateRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityPolicyEntryStateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityPolicyReportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityPolicyReportRequest.java index d8e2c1400a1..869503cd3ae 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityPolicyReportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityPolicyReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityPolicyRequest.java index 0719795d356..560d6752962 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSecurityPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSensitiveColumnRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSensitiveColumnRequest.java index ae91e2cc4a7..aa7717589b6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSensitiveColumnRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSensitiveColumnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSensitiveDataModelRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSensitiveDataModelRequest.java index 937601e27f3..2b8fc130d55 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSensitiveDataModelRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSensitiveDataModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSensitiveTypeGroupRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSensitiveTypeGroupRequest.java index 821a81d0dcd..da8f4e3e717 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSensitiveTypeGroupRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSensitiveTypeGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSensitiveTypeRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSensitiveTypeRequest.java index 569028fba5a..7d43700ba4b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSensitiveTypeRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSensitiveTypeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSensitiveTypesExportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSensitiveTypesExportRequest.java index 0a3059a617b..9dd6d38bef7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSensitiveTypesExportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSensitiveTypesExportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSqlCollectionRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSqlCollectionRequest.java index 1ea43306884..7477cfbc452 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSqlCollectionRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSqlCollectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSqlFirewallAllowedSqlRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSqlFirewallAllowedSqlRequest.java index 9cdd7af11b9..d4ba116fc39 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSqlFirewallAllowedSqlRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSqlFirewallAllowedSqlRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSqlFirewallPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSqlFirewallPolicyRequest.java index eace2f87203..39ea27c5f9d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSqlFirewallPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetSqlFirewallPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetTargetAlertPolicyAssociationRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetTargetAlertPolicyAssociationRequest.java index fe072efc266..6f89599cd72 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetTargetAlertPolicyAssociationRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetTargetAlertPolicyAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetTargetDatabaseGroupRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetTargetDatabaseGroupRequest.java index a844b6a94d6..21becd59ffd 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetTargetDatabaseGroupRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetTargetDatabaseGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetTargetDatabaseRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetTargetDatabaseRequest.java index b41ededf62d..7d105984d20 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetTargetDatabaseRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetTargetDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetTemplateBaselineComparisonRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetTemplateBaselineComparisonRequest.java index 3090c0232cf..864019d2c7f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetTemplateBaselineComparisonRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetTemplateBaselineComparisonRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetUnifiedAuditPolicyDefinitionRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetUnifiedAuditPolicyDefinitionRequest.java index be325e7ae97..ac95313210f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetUnifiedAuditPolicyDefinitionRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetUnifiedAuditPolicyDefinitionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetUnifiedAuditPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetUnifiedAuditPolicyRequest.java index a37c70bc4d9..a6606398a7d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetUnifiedAuditPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetUnifiedAuditPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetUserAssessmentComparisonRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetUserAssessmentComparisonRequest.java index e2aa38ae53e..d77ea0d2c4b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetUserAssessmentComparisonRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetUserAssessmentComparisonRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetUserAssessmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetUserAssessmentRequest.java index 29cf434b310..8beab8879f4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetUserAssessmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetUserAssessmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetWorkRequestRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetWorkRequestRequest.java index abe90b3ee84..aa777ba306d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetWorkRequestRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAlertAnalyticsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAlertAnalyticsRequest.java index dcac5bb5452..6655696180c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAlertAnalyticsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAlertAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAlertPoliciesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAlertPoliciesRequest.java index fb35513af40..200bb1356fa 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAlertPoliciesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAlertPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAlertPolicyRulesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAlertPolicyRulesRequest.java index 63bbb54bd7e..cdac645e4e1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAlertPolicyRulesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAlertPolicyRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAlertsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAlertsRequest.java index c7f70e78e0b..538d268c1b7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAlertsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAlertsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAssociatedResourcesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAssociatedResourcesRequest.java index 26979f99fee..65f3d908f3a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAssociatedResourcesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAssociatedResourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAttributeSetsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAttributeSetsRequest.java index ef116f9a53f..d65c0136ea9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAttributeSetsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAttributeSetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditArchiveRetrievalsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditArchiveRetrievalsRequest.java index 53541f58905..4972a0e4b35 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditArchiveRetrievalsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditArchiveRetrievalsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditEventAnalyticsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditEventAnalyticsRequest.java index 66293f8685d..8ce0888e827 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditEventAnalyticsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditEventAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditEventsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditEventsRequest.java index 30d24dcba82..324e5ce6c34 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditEventsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditEventsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditPoliciesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditPoliciesRequest.java index 9fd69d7a5dd..3453be2c3d8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditPoliciesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditPolicyAnalyticsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditPolicyAnalyticsRequest.java index 0877f661ab6..72371ba108e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditPolicyAnalyticsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditPolicyAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditProfileAnalyticsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditProfileAnalyticsRequest.java index 7bd6c97df6f..50a65a00e89 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditProfileAnalyticsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditProfileAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditProfilesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditProfilesRequest.java index a32b73633ab..fd635679f4a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditProfilesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditProfilesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditTrailAnalyticsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditTrailAnalyticsRequest.java index 80471b7e012..2d9603902b8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditTrailAnalyticsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditTrailAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditTrailsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditTrailsRequest.java index b45631fde79..7d33df6a548 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditTrailsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAuditTrailsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAvailableAuditVolumesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAvailableAuditVolumesRequest.java index 509ba4ffd98..55e9d9a50fc 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAvailableAuditVolumesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListAvailableAuditVolumesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListChecksRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListChecksRequest.java index 628f59fd493..c936151a7c7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListChecksRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListChecksRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListCollectedAuditVolumesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListCollectedAuditVolumesRequest.java index bc173d05fd2..0d7ed24a572 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListCollectedAuditVolumesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListCollectedAuditVolumesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListColumnsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListColumnsRequest.java index d0c74c406e5..8b618c6bfb9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListColumnsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListColumnsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDataSafePrivateEndpointsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDataSafePrivateEndpointsRequest.java index 8682a91cb3f..d36b5e2ea7f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDataSafePrivateEndpointsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDataSafePrivateEndpointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDatabaseSecurityConfigsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDatabaseSecurityConfigsRequest.java index ef054d5681e..5a76ef8952a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDatabaseSecurityConfigsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDatabaseSecurityConfigsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDatabaseTableAccessEntriesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDatabaseTableAccessEntriesRequest.java index aae010447d8..cb4d867adce 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDatabaseTableAccessEntriesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDatabaseTableAccessEntriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDatabaseViewAccessEntriesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDatabaseViewAccessEntriesRequest.java index f382bfefef4..e835df8ed44 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDatabaseViewAccessEntriesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDatabaseViewAccessEntriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDifferenceColumnsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDifferenceColumnsRequest.java index 363cc696906..69ea108f6e0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDifferenceColumnsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDifferenceColumnsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDiscoveryAnalyticsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDiscoveryAnalyticsRequest.java index edb5bea37b8..55a46a34b1e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDiscoveryAnalyticsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDiscoveryAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDiscoveryJobResultsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDiscoveryJobResultsRequest.java index 534ad3c68f7..9560d5570e5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDiscoveryJobResultsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDiscoveryJobResultsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDiscoveryJobsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDiscoveryJobsRequest.java index f619747d549..c94d246e54e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDiscoveryJobsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListDiscoveryJobsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListFindingAnalyticsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListFindingAnalyticsRequest.java index 73e99115364..35f67ec130d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListFindingAnalyticsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListFindingAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListFindingsChangeAuditLogsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListFindingsChangeAuditLogsRequest.java index 9bf060c13be..79d5ee01216 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListFindingsChangeAuditLogsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListFindingsChangeAuditLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListFindingsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListFindingsRequest.java index e66edf6e6cc..ae9b16f2a56 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListFindingsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListFindingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListGrantsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListGrantsRequest.java index f4c16c1bfe2..90f734e3f59 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListGrantsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListGrantsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListGroupedSensitiveTypesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListGroupedSensitiveTypesRequest.java index edcc29b2059..f6d630e6c5b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListGroupedSensitiveTypesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListGroupedSensitiveTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListLibraryMaskingFormatsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListLibraryMaskingFormatsRequest.java index 3daccc0dec1..2bb0b71f4ea 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListLibraryMaskingFormatsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListLibraryMaskingFormatsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskedColumnsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskedColumnsRequest.java index c6034faf14c..d98e2a76eea 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskedColumnsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskedColumnsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingAnalyticsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingAnalyticsRequest.java index 301d9fbf6d8..76a652c5e96 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingAnalyticsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingColumnsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingColumnsRequest.java index 08e20a81922..3b7cd094107 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingColumnsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingColumnsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingErrorsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingErrorsRequest.java index f565e9b2a42..67ee662e0ea 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingErrorsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingObjectsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingObjectsRequest.java index d46326d39c5..8a166ac2138 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingObjectsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingObjectsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingPoliciesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingPoliciesRequest.java index 53a4d1b6066..ed8696678c8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingPoliciesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingPolicyHealthReportLogsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingPolicyHealthReportLogsRequest.java index 9018dc3786b..b33ce80b395 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingPolicyHealthReportLogsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingPolicyHealthReportLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingPolicyHealthReportsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingPolicyHealthReportsRequest.java index 41a93038127..a10138a5407 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingPolicyHealthReportsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingPolicyHealthReportsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingPolicyReferentialRelationsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingPolicyReferentialRelationsRequest.java index ca43eaa51cb..cef1022b4f9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingPolicyReferentialRelationsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingPolicyReferentialRelationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingReportsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingReportsRequest.java index 37b8cb2808b..d242e2935a4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingReportsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingReportsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingSchemasRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingSchemasRequest.java index aad15769514..1a5548c846d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingSchemasRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListMaskingSchemasRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListOnPremConnectorsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListOnPremConnectorsRequest.java index 32f03776228..1b476436d98 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListOnPremConnectorsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListOnPremConnectorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListPasswordExpiryDateAnalyticsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListPasswordExpiryDateAnalyticsRequest.java index 7ca1dbebfdc..c35cfcc70f3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListPasswordExpiryDateAnalyticsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListPasswordExpiryDateAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListPeerTargetDatabasesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListPeerTargetDatabasesRequest.java index c174ccd0f4d..ec425df06b5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListPeerTargetDatabasesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListPeerTargetDatabasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListProfileAnalyticsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListProfileAnalyticsRequest.java index 7bb99c95a74..5aa172f6158 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListProfileAnalyticsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListProfileAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListProfileSummariesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListProfileSummariesRequest.java index ecb40dcb536..1d488fdc67d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListProfileSummariesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListProfileSummariesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListReferentialRelationsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListReferentialRelationsRequest.java index 34b6e4fa678..42d363a96f8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListReferentialRelationsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListReferentialRelationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListReportDefinitionsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListReportDefinitionsRequest.java index b4872868fa2..42aab7de30b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListReportDefinitionsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListReportDefinitionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListReportsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListReportsRequest.java index c3630b0880b..5c578b0afeb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListReportsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListReportsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListRoleGrantPathsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListRoleGrantPathsRequest.java index 2d5c8d8fe1d..53729afb276 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListRoleGrantPathsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListRoleGrantPathsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListRolesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListRolesRequest.java index 60231f273a5..eb6c728a09f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListRolesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListRolesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSchemasRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSchemasRequest.java index ac6373cffa7..c8b9021f273 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSchemasRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSchemasRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSdmMaskingPolicyDifferencesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSdmMaskingPolicyDifferencesRequest.java index fcc8846e7f1..fc341e7c3da 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSdmMaskingPolicyDifferencesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSdmMaskingPolicyDifferencesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityAssessmentsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityAssessmentsRequest.java index e6dc43851d4..745b94393f5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityAssessmentsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityAssessmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityFeatureAnalyticsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityFeatureAnalyticsRequest.java index d0320de442d..18ef306abf9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityFeatureAnalyticsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityFeatureAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityFeaturesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityFeaturesRequest.java index 4de20207f3b..e9e29708376 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityFeaturesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityFeaturesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityPoliciesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityPoliciesRequest.java index 1f100d03d67..2bc00788a98 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityPoliciesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityPolicyConfigsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityPolicyConfigsRequest.java index cc657d569d1..2b07ea98aa7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityPolicyConfigsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityPolicyConfigsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityPolicyDeploymentsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityPolicyDeploymentsRequest.java index f0942d33499..f1122c6c5a4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityPolicyDeploymentsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityPolicyDeploymentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityPolicyEntryStatesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityPolicyEntryStatesRequest.java index 40029d78b5d..56a9d9a88ae 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityPolicyEntryStatesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityPolicyEntryStatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityPolicyReportsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityPolicyReportsRequest.java index a4b0a3b605f..c3eaae01dcb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityPolicyReportsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSecurityPolicyReportsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveColumnAnalyticsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveColumnAnalyticsRequest.java index 269aea815e7..c8f5bd1a51c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveColumnAnalyticsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveColumnAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveColumnsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveColumnsRequest.java index dfef2b204e0..35404e8b5e1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveColumnsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveColumnsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveDataModelSensitiveTypesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveDataModelSensitiveTypesRequest.java index 5409771aa2c..140decd4155 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveDataModelSensitiveTypesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveDataModelSensitiveTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveDataModelsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveDataModelsRequest.java index 8d6d2951e50..0edc81221f1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveDataModelsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveDataModelsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveObjectsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveObjectsRequest.java index 66a27c55164..a6e4728789f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveObjectsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveObjectsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveSchemasRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveSchemasRequest.java index 66ce031cb1d..888f91bb813 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveSchemasRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveSchemasRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveTypeGroupsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveTypeGroupsRequest.java index 6e2dc431e36..8194296a7da 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveTypeGroupsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveTypeGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveTypesExportsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveTypesExportsRequest.java index 5fe165c60a4..34132e35380 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveTypesExportsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveTypesExportsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveTypesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveTypesRequest.java index 5bfaf3a3066..6ddc22b9544 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveTypesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSensitiveTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlCollectionAnalyticsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlCollectionAnalyticsRequest.java index a3e0f78191f..295f876a3b6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlCollectionAnalyticsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlCollectionAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlCollectionLogInsightsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlCollectionLogInsightsRequest.java index e92f0ae8297..b9994473320 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlCollectionLogInsightsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlCollectionLogInsightsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlCollectionsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlCollectionsRequest.java index eccef6b9904..fd0260ca214 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlCollectionsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlCollectionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallAllowedSqlAnalyticsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallAllowedSqlAnalyticsRequest.java index 75a9075144e..b5a71bf326a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallAllowedSqlAnalyticsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallAllowedSqlAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallAllowedSqlsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallAllowedSqlsRequest.java index 26ad59a1126..f5e62f8f378 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallAllowedSqlsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallAllowedSqlsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallPoliciesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallPoliciesRequest.java index 614b9261adb..171f76336fa 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallPoliciesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallPolicyAnalyticsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallPolicyAnalyticsRequest.java index a637c79e2d6..415092ab057 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallPolicyAnalyticsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallPolicyAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallViolationAnalyticsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallViolationAnalyticsRequest.java index 969663b90b4..0396187f601 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallViolationAnalyticsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallViolationAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallViolationsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallViolationsRequest.java index 50d943c62e5..151d6e86e9c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallViolationsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListSqlFirewallViolationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTablesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTablesRequest.java index d1593a9d13e..f2bda9e47b4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTablesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTablesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTargetAlertPolicyAssociationsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTargetAlertPolicyAssociationsRequest.java index 70a886b1f78..72cab4efeb2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTargetAlertPolicyAssociationsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTargetAlertPolicyAssociationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTargetDatabaseGroupsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTargetDatabaseGroupsRequest.java index af523bbb4df..340810b39a6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTargetDatabaseGroupsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTargetDatabaseGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTargetDatabasesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTargetDatabasesRequest.java index cfca782b1bb..8b32837a169 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTargetDatabasesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTargetDatabasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTargetOverridesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTargetOverridesRequest.java index 3d44533995e..5209b7c605b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTargetOverridesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTargetOverridesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTemplateAnalyticsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTemplateAnalyticsRequest.java index cb67878e5f3..8b187e9fc6c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTemplateAnalyticsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTemplateAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTemplateAssociationAnalyticsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTemplateAssociationAnalyticsRequest.java index 748e5c9ee8c..99dd916de57 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTemplateAssociationAnalyticsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListTemplateAssociationAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUnifiedAuditPoliciesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUnifiedAuditPoliciesRequest.java index 8ab9b57d724..2464526bfec 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUnifiedAuditPoliciesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUnifiedAuditPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUnifiedAuditPolicyDefinitionsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUnifiedAuditPolicyDefinitionsRequest.java index 512676a503b..0a4aaf682a3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUnifiedAuditPolicyDefinitionsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUnifiedAuditPolicyDefinitionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUserAccessAnalyticsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUserAccessAnalyticsRequest.java index d43b225ae83..f25858a6def 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUserAccessAnalyticsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUserAccessAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUserAnalyticsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUserAnalyticsRequest.java index 7b273292510..20a56bfa194 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUserAnalyticsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUserAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUserAssessmentsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUserAssessmentsRequest.java index e17d42f4836..38b613d55f5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUserAssessmentsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUserAssessmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUsersRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUsersRequest.java index 654049d39df..c321500761d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUsersRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListUsersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListWorkRequestErrorsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListWorkRequestErrorsRequest.java index d842a54d7cb..b5020567e18 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListWorkRequestLogsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListWorkRequestLogsRequest.java index 37677d61989..9d7590b153c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListWorkRequestLogsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListWorkRequestsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListWorkRequestsRequest.java index 21dcbc3bba9..18521ba92eb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListWorkRequestsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/MaskDataRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/MaskDataRequest.java index 08603709202..3707027ef16 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/MaskDataRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/MaskDataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ModifyGlobalSettingsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ModifyGlobalSettingsRequest.java index 1c928a82014..2441dfeaea0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ModifyGlobalSettingsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ModifyGlobalSettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchAlertsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchAlertsRequest.java index a8addc1653d..6ebc2e0f08d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchAlertsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchAlertsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchChecksRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchChecksRequest.java index 8452e3a5a83..d6e5aacfa5d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchChecksRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchChecksRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchDiscoveryJobResultsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchDiscoveryJobResultsRequest.java index a9156b62b36..decf248fc12 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchDiscoveryJobResultsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchDiscoveryJobResultsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchFindingsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchFindingsRequest.java index bbce898b837..7ebfab14739 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchFindingsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchFindingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchGroupedSensitiveTypesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchGroupedSensitiveTypesRequest.java index d8e34d82b2f..8232fa2a25c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchGroupedSensitiveTypesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchGroupedSensitiveTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchMaskingColumnsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchMaskingColumnsRequest.java index 805da261527..e86693acad1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchMaskingColumnsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchMaskingColumnsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchSdmMaskingPolicyDifferenceColumnsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchSdmMaskingPolicyDifferenceColumnsRequest.java index 7e699fdb5db..430f05ac78d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchSdmMaskingPolicyDifferenceColumnsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchSdmMaskingPolicyDifferenceColumnsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchSensitiveColumnsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchSensitiveColumnsRequest.java index 84904cde365..693dbc570e5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchSensitiveColumnsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchSensitiveColumnsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchSqlFirewallAllowedSqlRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchSqlFirewallAllowedSqlRequest.java index b222e9aa341..3a50f4dde53 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchSqlFirewallAllowedSqlRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchSqlFirewallAllowedSqlRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchTargetAlertPolicyAssociationRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchTargetAlertPolicyAssociationRequest.java index f634bd8e243..a0ab5ea4735 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchTargetAlertPolicyAssociationRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PatchTargetAlertPolicyAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ProvisionAuditPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ProvisionAuditPolicyRequest.java index 21480bffc25..9aa7f7837d3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ProvisionAuditPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ProvisionAuditPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PurgeSqlCollectionLogsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PurgeSqlCollectionLogsRequest.java index c989e86b3a3..e5ea7ddff93 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PurgeSqlCollectionLogsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/PurgeSqlCollectionLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshDatabaseSecurityConfigurationRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshDatabaseSecurityConfigurationRequest.java index 91b64bd86a0..63b8a0cd1be 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshDatabaseSecurityConfigurationRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshDatabaseSecurityConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshSecurityAssessmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshSecurityAssessmentRequest.java index c1fc46190a9..5c92c7e15b0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshSecurityAssessmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshSecurityAssessmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshSecurityPolicyDeploymentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshSecurityPolicyDeploymentRequest.java index a850a8afdb9..77ce950ebda 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshSecurityPolicyDeploymentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshSecurityPolicyDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshSqlCollectionLogInsightsRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshSqlCollectionLogInsightsRequest.java index 0cb70cf6476..3391e67c8ef 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshSqlCollectionLogInsightsRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshSqlCollectionLogInsightsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshTargetDatabaseRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshTargetDatabaseRequest.java index 8cc224b3ecf..e93a8d96699 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshTargetDatabaseRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshTargetDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshUserAssessmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshUserAssessmentRequest.java index c2f3cf3d9da..17812ee823c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshUserAssessmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RefreshUserAssessmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RemoveScheduleReportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RemoveScheduleReportRequest.java index 0a206f4847e..8d5665e8ebe 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RemoveScheduleReportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RemoveScheduleReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RemoveSecurityAssessmentTemplateRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RemoveSecurityAssessmentTemplateRequest.java index a0974c0eb6d..b3f7b137807 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RemoveSecurityAssessmentTemplateRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RemoveSecurityAssessmentTemplateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ResumeAuditTrailRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ResumeAuditTrailRequest.java index a66cfb1e5c6..315979dfd9a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ResumeAuditTrailRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ResumeAuditTrailRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ResumeWorkRequestRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ResumeWorkRequestRequest.java index 265b1c4af8c..89779403184 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ResumeWorkRequestRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ResumeWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RetrieveAuditPoliciesRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RetrieveAuditPoliciesRequest.java index 2829da8f5b4..ccc4898e573 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RetrieveAuditPoliciesRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/RetrieveAuditPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ScheduleReportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ScheduleReportRequest.java index 5578b2cb917..d2c6cc585f7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ScheduleReportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/ScheduleReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/SetSecurityAssessmentBaselineRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/SetSecurityAssessmentBaselineRequest.java index 1c46e393fc6..fe754dbc0b5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/SetSecurityAssessmentBaselineRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/SetSecurityAssessmentBaselineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/SetUserAssessmentBaselineRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/SetUserAssessmentBaselineRequest.java index e717cb091db..59b567e2248 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/SetUserAssessmentBaselineRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/SetUserAssessmentBaselineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/StartAuditTrailRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/StartAuditTrailRequest.java index 420ceb5f640..7975938b10f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/StartAuditTrailRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/StartAuditTrailRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/StartSqlCollectionRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/StartSqlCollectionRequest.java index 00b3115647b..9d1b786f537 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/StartSqlCollectionRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/StartSqlCollectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/StopAuditTrailRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/StopAuditTrailRequest.java index db31b13b4bd..b64c189068f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/StopAuditTrailRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/StopAuditTrailRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/StopSqlCollectionRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/StopSqlCollectionRequest.java index b3ea259e574..013b90d9d7d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/StopSqlCollectionRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/StopSqlCollectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/SuspendWorkRequestRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/SuspendWorkRequestRequest.java index 825c8dd5bdc..4e0059192e1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/SuspendWorkRequestRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/SuspendWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UnsetSecurityAssessmentBaselineRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UnsetSecurityAssessmentBaselineRequest.java index 94d3b699d98..0b214404fd8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UnsetSecurityAssessmentBaselineRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UnsetSecurityAssessmentBaselineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UnsetUserAssessmentBaselineRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UnsetUserAssessmentBaselineRequest.java index 98c4343da32..96a8de1cad0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UnsetUserAssessmentBaselineRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UnsetUserAssessmentBaselineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAlertPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAlertPolicyRequest.java index d21222acdf2..398cda1b75c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAlertPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAlertPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAlertPolicyRuleRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAlertPolicyRuleRequest.java index 9b0c1c2ca68..54a284d079e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAlertPolicyRuleRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAlertPolicyRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAlertRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAlertRequest.java index c817ee10444..67bd06c17c3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAlertRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAlertRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAttributeSetRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAttributeSetRequest.java index a918dd6f5c4..087a50e7b95 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAttributeSetRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAttributeSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAuditArchiveRetrievalRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAuditArchiveRetrievalRequest.java index d53ae3f7a49..699d972cfcc 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAuditArchiveRetrievalRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAuditArchiveRetrievalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAuditPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAuditPolicyRequest.java index 68354be2b25..37940a6cc69 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAuditPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAuditPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAuditProfileRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAuditProfileRequest.java index cf27debb957..b2c21ba9d2a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAuditProfileRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAuditProfileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAuditTrailRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAuditTrailRequest.java index a899ae35ce7..cc06f7b2bc0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAuditTrailRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateAuditTrailRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateDataSafePrivateEndpointRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateDataSafePrivateEndpointRequest.java index ccdb708df71..ecfe81b6bd6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateDataSafePrivateEndpointRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateDataSafePrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateDatabaseSecurityConfigRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateDatabaseSecurityConfigRequest.java index 0495ca75316..9a3dec71191 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateDatabaseSecurityConfigRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateDatabaseSecurityConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateFindingRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateFindingRequest.java index 6fe9c4ebfda..e13a6c808a2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateFindingRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateFindingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateLibraryMaskingFormatRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateLibraryMaskingFormatRequest.java index 8c9effa9a6c..735752c5d62 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateLibraryMaskingFormatRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateLibraryMaskingFormatRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateMaskingColumnRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateMaskingColumnRequest.java index 6e93009b965..5e318d43ed6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateMaskingColumnRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateMaskingColumnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateMaskingPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateMaskingPolicyRequest.java index 339990ae2c2..ad068684fa7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateMaskingPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateMaskingPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateOnPremConnectorRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateOnPremConnectorRequest.java index 29119829761..48d90741e46 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateOnPremConnectorRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateOnPremConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateOnPremConnectorWalletRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateOnPremConnectorWalletRequest.java index 83a722d7d9b..d37060ed763 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateOnPremConnectorWalletRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateOnPremConnectorWalletRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdatePeerTargetDatabaseRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdatePeerTargetDatabaseRequest.java index a65527dfa75..ca51a6cfb53 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdatePeerTargetDatabaseRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdatePeerTargetDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateReportDefinitionRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateReportDefinitionRequest.java index 95f851a0ba1..a002ea4df33 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateReportDefinitionRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateReportDefinitionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateReportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateReportRequest.java index 71c8889bd23..285acfbd049 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateReportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSdmMaskingPolicyDifferenceRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSdmMaskingPolicyDifferenceRequest.java index f6024a2ea6e..4331c001b6f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSdmMaskingPolicyDifferenceRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSdmMaskingPolicyDifferenceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSecurityAssessmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSecurityAssessmentRequest.java index 75e33f2cf84..4e7fc0e67f6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSecurityAssessmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSecurityAssessmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSecurityPolicyConfigRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSecurityPolicyConfigRequest.java index 58a74290242..5a4a616f152 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSecurityPolicyConfigRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSecurityPolicyConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSecurityPolicyDeploymentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSecurityPolicyDeploymentRequest.java index 82ccf6fd632..dabd4699aba 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSecurityPolicyDeploymentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSecurityPolicyDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSecurityPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSecurityPolicyRequest.java index fb17a2ec02c..427181cf69c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSecurityPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSecurityPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSensitiveColumnRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSensitiveColumnRequest.java index fafa5d6d6fb..23f5ee52651 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSensitiveColumnRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSensitiveColumnRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSensitiveDataModelRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSensitiveDataModelRequest.java index ee754673c34..5632bf4a811 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSensitiveDataModelRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSensitiveDataModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSensitiveTypeGroupRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSensitiveTypeGroupRequest.java index 3fa7f15df12..d09c70eed03 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSensitiveTypeGroupRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSensitiveTypeGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSensitiveTypeRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSensitiveTypeRequest.java index 8ef51fea19a..65f87482fdc 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSensitiveTypeRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSensitiveTypeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSensitiveTypesExportRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSensitiveTypesExportRequest.java index 65df4d49eac..8bf03e56051 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSensitiveTypesExportRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSensitiveTypesExportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSqlCollectionRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSqlCollectionRequest.java index 469e58c9673..9c560adff77 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSqlCollectionRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSqlCollectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSqlFirewallPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSqlFirewallPolicyRequest.java index 0fc3d3937ab..effa9f49e21 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSqlFirewallPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateSqlFirewallPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateTargetAlertPolicyAssociationRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateTargetAlertPolicyAssociationRequest.java index 50fe4d6bb70..74d71c68840 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateTargetAlertPolicyAssociationRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateTargetAlertPolicyAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateTargetDatabaseGroupRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateTargetDatabaseGroupRequest.java index 11769fd925f..9c00787c813 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateTargetDatabaseGroupRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateTargetDatabaseGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateTargetDatabaseRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateTargetDatabaseRequest.java index 74f3f0fea7f..2dcc8a2c6cd 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateTargetDatabaseRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateTargetDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateUnifiedAuditPolicyDefinitionRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateUnifiedAuditPolicyDefinitionRequest.java index 4edf3efb1d4..ee04fdf7210 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateUnifiedAuditPolicyDefinitionRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateUnifiedAuditPolicyDefinitionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateUnifiedAuditPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateUnifiedAuditPolicyRequest.java index 9c20b6e39ed..952ebdc1584 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateUnifiedAuditPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateUnifiedAuditPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateUserAssessmentRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateUserAssessmentRequest.java index 3b3369b617c..1d48d64d03d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateUserAssessmentRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UpdateUserAssessmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UploadMaskingPolicyRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UploadMaskingPolicyRequest.java index cb13df1b2bc..06a651b4f4f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UploadMaskingPolicyRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UploadMaskingPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UploadSensitiveDataModelRequest.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UploadSensitiveDataModelRequest.java index 25216cb0be6..a3c7aa06ad6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UploadSensitiveDataModelRequest.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/requests/UploadSensitiveDataModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.requests; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ActivateTargetDatabaseResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ActivateTargetDatabaseResponse.java index 3168bf591a6..0afa4e48104 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ActivateTargetDatabaseResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ActivateTargetDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/AddMaskingColumnsFromSdmResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/AddMaskingColumnsFromSdmResponse.java index 00df2161556..6d3be08c931 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/AddMaskingColumnsFromSdmResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/AddMaskingColumnsFromSdmResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/AlertsUpdateResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/AlertsUpdateResponse.java index c57acef4b0f..8b51260f9c4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/AlertsUpdateResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/AlertsUpdateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ApplyDiscoveryJobResultsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ApplyDiscoveryJobResultsResponse.java index eb25ca9a918..c259c026249 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ApplyDiscoveryJobResultsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ApplyDiscoveryJobResultsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ApplySdmMaskingPolicyDifferenceResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ApplySdmMaskingPolicyDifferenceResponse.java index a230985ce25..a10285f526d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ApplySdmMaskingPolicyDifferenceResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ApplySdmMaskingPolicyDifferenceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ApplySecurityAssessmentTemplateResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ApplySecurityAssessmentTemplateResponse.java index 815d3cb2197..13c420b8399 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ApplySecurityAssessmentTemplateResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ApplySecurityAssessmentTemplateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/BulkCreateSensitiveTypesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/BulkCreateSensitiveTypesResponse.java index e76e545af60..22ae160f718 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/BulkCreateSensitiveTypesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/BulkCreateSensitiveTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/BulkCreateSqlFirewallAllowedSqlsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/BulkCreateSqlFirewallAllowedSqlsResponse.java index 074f89b5827..b5c2139dfa8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/BulkCreateSqlFirewallAllowedSqlsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/BulkCreateSqlFirewallAllowedSqlsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/BulkCreateUnifiedAuditPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/BulkCreateUnifiedAuditPolicyResponse.java index b8fd4d1afba..a0cf433852e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/BulkCreateUnifiedAuditPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/BulkCreateUnifiedAuditPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/BulkDeleteSqlFirewallAllowedSqlsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/BulkDeleteSqlFirewallAllowedSqlsResponse.java index 3af7e18c19f..7711e9df3b7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/BulkDeleteSqlFirewallAllowedSqlsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/BulkDeleteSqlFirewallAllowedSqlsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CalculateAuditVolumeAvailableResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CalculateAuditVolumeAvailableResponse.java index 1acad462d21..60776e293cb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CalculateAuditVolumeAvailableResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CalculateAuditVolumeAvailableResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CalculateAuditVolumeCollectedResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CalculateAuditVolumeCollectedResponse.java index c7fb1bf5245..42b6338fee9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CalculateAuditVolumeCollectedResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CalculateAuditVolumeCollectedResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CancelWorkRequestResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CancelWorkRequestResponse.java index ad883d3d9e8..5ac94191967 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CancelWorkRequestResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAlertCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAlertCompartmentResponse.java index fd10217735e..454235f7e7d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAlertCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAlertCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAlertPolicyCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAlertPolicyCompartmentResponse.java index 59d049b5d4e..3864bd207a7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAlertPolicyCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAlertPolicyCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAttributeSetCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAttributeSetCompartmentResponse.java index 6966d140bc4..718031ea54b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAttributeSetCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAttributeSetCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAuditArchiveRetrievalCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAuditArchiveRetrievalCompartmentResponse.java index 5eb2bf9b98a..61342d37982 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAuditArchiveRetrievalCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAuditArchiveRetrievalCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAuditPolicyCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAuditPolicyCompartmentResponse.java index 810b6d2da76..d426048fac6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAuditPolicyCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAuditPolicyCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAuditProfileCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAuditProfileCompartmentResponse.java index aaed13a0d25..eb90154d193 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAuditProfileCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeAuditProfileCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeDataSafePrivateEndpointCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeDataSafePrivateEndpointCompartmentResponse.java index 51a8584f340..f1e8d176c52 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeDataSafePrivateEndpointCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeDataSafePrivateEndpointCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeDatabaseSecurityConfigCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeDatabaseSecurityConfigCompartmentResponse.java index 8f0b4082cf0..1cc5b5a26eb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeDatabaseSecurityConfigCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeDatabaseSecurityConfigCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeDiscoveryJobCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeDiscoveryJobCompartmentResponse.java index 64197ce3374..1fb5e77842f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeDiscoveryJobCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeDiscoveryJobCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeLibraryMaskingFormatCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeLibraryMaskingFormatCompartmentResponse.java index c3ac9d152ac..e41913ec725 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeLibraryMaskingFormatCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeLibraryMaskingFormatCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeMaskingPolicyCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeMaskingPolicyCompartmentResponse.java index 17a3c072b2e..392a90ddf9f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeMaskingPolicyCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeMaskingPolicyCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeMaskingPolicyHealthReportCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeMaskingPolicyHealthReportCompartmentResponse.java index cf2a6a0853e..3888e7f3a90 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeMaskingPolicyHealthReportCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeMaskingPolicyHealthReportCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeOnPremConnectorCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeOnPremConnectorCompartmentResponse.java index cbbc9cae769..80736a98590 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeOnPremConnectorCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeOnPremConnectorCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeReportCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeReportCompartmentResponse.java index a7405b37a8b..fd2533d7de2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeReportCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeReportCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeReportDefinitionCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeReportDefinitionCompartmentResponse.java index e0359947674..84d34a4a2eb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeReportDefinitionCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeReportDefinitionCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeRetentionResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeRetentionResponse.java index 8d6cb53d431..e82645fc2bf 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeRetentionResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeRetentionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSdmMaskingPolicyDifferenceCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSdmMaskingPolicyDifferenceCompartmentResponse.java index 02a3408c26d..cf955e21dbb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSdmMaskingPolicyDifferenceCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSdmMaskingPolicyDifferenceCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSecurityAssessmentCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSecurityAssessmentCompartmentResponse.java index abce92b4d2b..1f7c4a908ef 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSecurityAssessmentCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSecurityAssessmentCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSecurityPolicyCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSecurityPolicyCompartmentResponse.java index 302e229479f..4b118d7f23d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSecurityPolicyCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSecurityPolicyCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSecurityPolicyConfigCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSecurityPolicyConfigCompartmentResponse.java index 468baf03be5..a804b8cf0b6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSecurityPolicyConfigCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSecurityPolicyConfigCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSecurityPolicyDeploymentCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSecurityPolicyDeploymentCompartmentResponse.java index 432caf9e2fe..992f5f76992 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSecurityPolicyDeploymentCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSecurityPolicyDeploymentCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSensitiveDataModelCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSensitiveDataModelCompartmentResponse.java index 2cbc2dadfc0..c73ad45953a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSensitiveDataModelCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSensitiveDataModelCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSensitiveTypeCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSensitiveTypeCompartmentResponse.java index 88ac2a8fcfd..4a9e487812f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSensitiveTypeCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSensitiveTypeCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSensitiveTypeGroupCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSensitiveTypeGroupCompartmentResponse.java index 344148a20a6..baf5cb09eb9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSensitiveTypeGroupCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSensitiveTypeGroupCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSensitiveTypesExportCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSensitiveTypesExportCompartmentResponse.java index f654790501a..24b134187ae 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSensitiveTypesExportCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSensitiveTypesExportCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSqlCollectionCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSqlCollectionCompartmentResponse.java index 8d346c162b3..6a964a441f1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSqlCollectionCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSqlCollectionCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSqlFirewallPolicyCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSqlFirewallPolicyCompartmentResponse.java index 4b51f6ce924..752063f34d5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSqlFirewallPolicyCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeSqlFirewallPolicyCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeTargetAlertPolicyAssociationCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeTargetAlertPolicyAssociationCompartmentResponse.java index 8ddc7fb3772..90a95fc082a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeTargetAlertPolicyAssociationCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeTargetAlertPolicyAssociationCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeTargetDatabaseCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeTargetDatabaseCompartmentResponse.java index 61c3e5e9d76..b1a2ea1a875 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeTargetDatabaseCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeTargetDatabaseCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeTargetDatabaseGroupCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeTargetDatabaseGroupCompartmentResponse.java index c1505baec3a..5bf71a8159a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeTargetDatabaseGroupCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeTargetDatabaseGroupCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeUnifiedAuditPolicyCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeUnifiedAuditPolicyCompartmentResponse.java index 2ce7640a2c8..5f1e3fb1538 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeUnifiedAuditPolicyCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeUnifiedAuditPolicyCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeUnifiedAuditPolicyDefinitionCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeUnifiedAuditPolicyDefinitionCompartmentResponse.java index 189359cf366..91c0b954890 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeUnifiedAuditPolicyDefinitionCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeUnifiedAuditPolicyDefinitionCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeUserAssessmentCompartmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeUserAssessmentCompartmentResponse.java index 01e4cc669d6..b7f2b64fb22 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeUserAssessmentCompartmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ChangeUserAssessmentCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CompareSecurityAssessmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CompareSecurityAssessmentResponse.java index 661e2ff996a..ecbce39abd4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CompareSecurityAssessmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CompareSecurityAssessmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CompareToTemplateBaselineResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CompareToTemplateBaselineResponse.java index 66e248e1b16..806f6737d98 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CompareToTemplateBaselineResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CompareToTemplateBaselineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CompareUserAssessmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CompareUserAssessmentResponse.java index 6d06040b4a9..2e1efe60e95 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CompareUserAssessmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CompareUserAssessmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateAlertPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateAlertPolicyResponse.java index 7a4700375ed..b7b658f081b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateAlertPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateAlertPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateAlertPolicyRuleResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateAlertPolicyRuleResponse.java index 736f17bba22..4e6c5244e28 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateAlertPolicyRuleResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateAlertPolicyRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateAttributeSetResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateAttributeSetResponse.java index 93d6e4b0fb7..fcdd0a260db 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateAttributeSetResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateAttributeSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateAuditArchiveRetrievalResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateAuditArchiveRetrievalResponse.java index 6c6a42b840e..1f39c026010 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateAuditArchiveRetrievalResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateAuditArchiveRetrievalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateAuditProfileResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateAuditProfileResponse.java index c9b2996c6fe..d250b40a0a7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateAuditProfileResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateAuditProfileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateDataSafePrivateEndpointResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateDataSafePrivateEndpointResponse.java index 6fa4d936aee..c9f06611ad8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateDataSafePrivateEndpointResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateDataSafePrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateDiscoveryJobResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateDiscoveryJobResponse.java index dfd057a7a81..4f4a8637a18 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateDiscoveryJobResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateDiscoveryJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateLibraryMaskingFormatResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateLibraryMaskingFormatResponse.java index a47b56aa0e0..b3e19d167c0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateLibraryMaskingFormatResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateLibraryMaskingFormatResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateMaskingColumnResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateMaskingColumnResponse.java index 3e574aebfef..c5e1b438986 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateMaskingColumnResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateMaskingColumnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateMaskingPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateMaskingPolicyResponse.java index f2c79b85b10..91ac3c10334 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateMaskingPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateMaskingPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateOnPremConnectorResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateOnPremConnectorResponse.java index 2b961f73af4..8870daf13b6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateOnPremConnectorResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateOnPremConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreatePeerTargetDatabaseResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreatePeerTargetDatabaseResponse.java index ba382cdb087..74be7a2e997 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreatePeerTargetDatabaseResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreatePeerTargetDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateReferentialRelationResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateReferentialRelationResponse.java index 14a94454574..f250cd3a787 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateReferentialRelationResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateReferentialRelationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateReportDefinitionResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateReportDefinitionResponse.java index 4cb83353727..5ad09d1ecc3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateReportDefinitionResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateReportDefinitionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSdmMaskingPolicyDifferenceResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSdmMaskingPolicyDifferenceResponse.java index 2b6fd1ed890..4c4954fe4df 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSdmMaskingPolicyDifferenceResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSdmMaskingPolicyDifferenceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSecurityAssessmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSecurityAssessmentResponse.java index 65b3a0e3cec..ef9bc85ec3b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSecurityAssessmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSecurityAssessmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSecurityPolicyConfigResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSecurityPolicyConfigResponse.java index 1b2e1bc7cc4..e09fbe6b495 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSecurityPolicyConfigResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSecurityPolicyConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSecurityPolicyDeploymentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSecurityPolicyDeploymentResponse.java index d77416a72be..84b070fb01f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSecurityPolicyDeploymentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSecurityPolicyDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSecurityPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSecurityPolicyResponse.java index 63ad6681741..04638ce0d8f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSecurityPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSecurityPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSensitiveColumnResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSensitiveColumnResponse.java index 7534bd62aee..695c6375c76 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSensitiveColumnResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSensitiveColumnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSensitiveDataModelResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSensitiveDataModelResponse.java index 185a52ee007..657505d5624 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSensitiveDataModelResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSensitiveDataModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSensitiveTypeGroupResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSensitiveTypeGroupResponse.java index 8b954a60337..1616c829e3c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSensitiveTypeGroupResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSensitiveTypeGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSensitiveTypeResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSensitiveTypeResponse.java index 10d1eac9d1b..a9996396543 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSensitiveTypeResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSensitiveTypeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSensitiveTypesExportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSensitiveTypesExportResponse.java index 4884684fc65..e3c413840a4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSensitiveTypesExportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSensitiveTypesExportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSqlCollectionResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSqlCollectionResponse.java index 7dcfe092c00..6ac21c5d6b6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSqlCollectionResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateSqlCollectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateTargetAlertPolicyAssociationResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateTargetAlertPolicyAssociationResponse.java index 3bc684f5839..bbf4ce2d57e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateTargetAlertPolicyAssociationResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateTargetAlertPolicyAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateTargetDatabaseGroupResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateTargetDatabaseGroupResponse.java index 8631c0742df..d5a91343d1f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateTargetDatabaseGroupResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateTargetDatabaseGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateTargetDatabaseResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateTargetDatabaseResponse.java index 232d8ff3882..9bd6df8b42f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateTargetDatabaseResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateTargetDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateUnifiedAuditPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateUnifiedAuditPolicyResponse.java index 3271615c35b..05045404aa6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateUnifiedAuditPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateUnifiedAuditPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateUserAssessmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateUserAssessmentResponse.java index c0a4c8aa6ea..b5479b741ad 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateUserAssessmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/CreateUserAssessmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeactivateTargetDatabaseResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeactivateTargetDatabaseResponse.java index 531f3026cfc..0bbf17afc76 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeactivateTargetDatabaseResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeactivateTargetDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAlertPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAlertPolicyResponse.java index f452815de3f..fe108191d26 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAlertPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAlertPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAlertPolicyRuleResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAlertPolicyRuleResponse.java index 8b2fce459c9..6a6125e2fb5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAlertPolicyRuleResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAlertPolicyRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAttributeSetResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAttributeSetResponse.java index c141fecbab1..3cfc97a0214 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAttributeSetResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAttributeSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAuditArchiveRetrievalResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAuditArchiveRetrievalResponse.java index 87f54f93687..04ab5e89585 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAuditArchiveRetrievalResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAuditArchiveRetrievalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAuditProfileResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAuditProfileResponse.java index 7954fd32b89..779a6ebfed9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAuditProfileResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAuditProfileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAuditTrailResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAuditTrailResponse.java index 1322159139f..7cbc5e339a8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAuditTrailResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteAuditTrailResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteDataSafePrivateEndpointResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteDataSafePrivateEndpointResponse.java index 71b54cd000b..03bee241a37 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteDataSafePrivateEndpointResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteDataSafePrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteDiscoveryJobResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteDiscoveryJobResponse.java index 959322c4aa7..d7d97aed430 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteDiscoveryJobResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteDiscoveryJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteDiscoveryJobResultResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteDiscoveryJobResultResponse.java index 8ad24cb95c3..8eeddf7e317 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteDiscoveryJobResultResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteDiscoveryJobResultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteLibraryMaskingFormatResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteLibraryMaskingFormatResponse.java index bf38bdb3b45..f8d6c7b55a4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteLibraryMaskingFormatResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteLibraryMaskingFormatResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteMaskingColumnResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteMaskingColumnResponse.java index f7cf5ff27f1..7c3c781dab9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteMaskingColumnResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteMaskingColumnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteMaskingPolicyHealthReportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteMaskingPolicyHealthReportResponse.java index a16994e85ce..cf50c58f9f4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteMaskingPolicyHealthReportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteMaskingPolicyHealthReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteMaskingPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteMaskingPolicyResponse.java index 0075c2baf89..77408d120a5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteMaskingPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteMaskingPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteMaskingReportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteMaskingReportResponse.java index b9972748390..a34468b10aa 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteMaskingReportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteMaskingReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteOnPremConnectorResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteOnPremConnectorResponse.java index a5deffca13a..daadefc654b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteOnPremConnectorResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteOnPremConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeletePeerTargetDatabaseResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeletePeerTargetDatabaseResponse.java index 4be5f39f440..4d6a83b4cfe 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeletePeerTargetDatabaseResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeletePeerTargetDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteReferentialRelationResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteReferentialRelationResponse.java index 9f49baa26f1..2bbf40672a6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteReferentialRelationResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteReferentialRelationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteReportDefinitionResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteReportDefinitionResponse.java index ec83c3ca830..4cb21adb054 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteReportDefinitionResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteReportDefinitionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSdmMaskingPolicyDifferenceResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSdmMaskingPolicyDifferenceResponse.java index 9967a6455c3..f7ceb9f6620 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSdmMaskingPolicyDifferenceResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSdmMaskingPolicyDifferenceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSecurityAssessmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSecurityAssessmentResponse.java index 19aae3f3c87..ed8fd67981b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSecurityAssessmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSecurityAssessmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSecurityPolicyConfigResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSecurityPolicyConfigResponse.java index 5b83f0ef5e9..bf4f635f6f8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSecurityPolicyConfigResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSecurityPolicyConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSecurityPolicyDeploymentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSecurityPolicyDeploymentResponse.java index 7390fca06ba..a2703f715c6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSecurityPolicyDeploymentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSecurityPolicyDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSecurityPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSecurityPolicyResponse.java index 967cb1762bd..a8ef253361f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSecurityPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSecurityPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSensitiveColumnResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSensitiveColumnResponse.java index 5ac02bdbb5c..ed84927d883 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSensitiveColumnResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSensitiveColumnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSensitiveDataModelResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSensitiveDataModelResponse.java index 4ac461f8737..a5ed2c1c0a0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSensitiveDataModelResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSensitiveDataModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSensitiveTypeGroupResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSensitiveTypeGroupResponse.java index dcbb4359b49..3cee6730b1d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSensitiveTypeGroupResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSensitiveTypeGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSensitiveTypeResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSensitiveTypeResponse.java index 252ef494bf6..b1198733c05 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSensitiveTypeResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSensitiveTypeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSensitiveTypesExportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSensitiveTypesExportResponse.java index 499bfddceb9..940cc2b330b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSensitiveTypesExportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSensitiveTypesExportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSqlCollectionResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSqlCollectionResponse.java index 7ccea972d59..d64791af2d8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSqlCollectionResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSqlCollectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSqlFirewallAllowedSqlResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSqlFirewallAllowedSqlResponse.java index 2b417580ad8..203503b7e78 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSqlFirewallAllowedSqlResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSqlFirewallAllowedSqlResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSqlFirewallPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSqlFirewallPolicyResponse.java index ee482c0f6d3..6248e96f3ea 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSqlFirewallPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteSqlFirewallPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteTargetAlertPolicyAssociationResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteTargetAlertPolicyAssociationResponse.java index 70657c6b89e..e28c1424982 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteTargetAlertPolicyAssociationResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteTargetAlertPolicyAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteTargetDatabaseGroupResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteTargetDatabaseGroupResponse.java index 5c634dea103..16c3f0ad558 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteTargetDatabaseGroupResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteTargetDatabaseGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteTargetDatabaseResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteTargetDatabaseResponse.java index 38bf5da725f..61c60be4731 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteTargetDatabaseResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteTargetDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteUnifiedAuditPolicyDefinitionResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteUnifiedAuditPolicyDefinitionResponse.java index 753806799ed..2261ed6a30e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteUnifiedAuditPolicyDefinitionResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteUnifiedAuditPolicyDefinitionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteUnifiedAuditPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteUnifiedAuditPolicyResponse.java index 3dea013451f..6cb7f310d31 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteUnifiedAuditPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteUnifiedAuditPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteUserAssessmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteUserAssessmentResponse.java index 5b320839a25..5ccf9829f64 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteUserAssessmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeleteUserAssessmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeploySecurityPolicyDeploymentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeploySecurityPolicyDeploymentResponse.java index 84415cfc1e5..456ce5cfdc5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeploySecurityPolicyDeploymentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DeploySecurityPolicyDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DiscoverAuditTrailsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DiscoverAuditTrailsResponse.java index 36e3c948f58..1f2cdf6a968 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DiscoverAuditTrailsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DiscoverAuditTrailsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadDiscoveryReportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadDiscoveryReportResponse.java index 637442093d5..c8f17e9ee9c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadDiscoveryReportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadDiscoveryReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadMaskingLogResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadMaskingLogResponse.java index f460399d7f2..5948adf7da0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadMaskingLogResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadMaskingLogResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadMaskingPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadMaskingPolicyResponse.java index 66a964faa88..bc10754ee41 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadMaskingPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadMaskingPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadMaskingReportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadMaskingReportResponse.java index 546bcbc798e..34bd79434b8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadMaskingReportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadMaskingReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadPrivilegeScriptResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadPrivilegeScriptResponse.java index 14b638e7d76..cb34f702bc8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadPrivilegeScriptResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadPrivilegeScriptResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadSecurityAssessmentReportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadSecurityAssessmentReportResponse.java index d57061e88d8..be2188ab536 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadSecurityAssessmentReportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadSecurityAssessmentReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadSensitiveDataModelResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadSensitiveDataModelResponse.java index a0726ca5525..ae5f4575881 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadSensitiveDataModelResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadSensitiveDataModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadSensitiveTypesExportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadSensitiveTypesExportResponse.java index 53b90587909..07128a9a942 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadSensitiveTypesExportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadSensitiveTypesExportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadUserAssessmentReportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadUserAssessmentReportResponse.java index 09c2d1f0cfd..8d388fd4853 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadUserAssessmentReportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/DownloadUserAssessmentReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/EnableDataSafeConfigurationResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/EnableDataSafeConfigurationResponse.java index 71addc0941c..1b2e51614c2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/EnableDataSafeConfigurationResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/EnableDataSafeConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateDiscoveryReportForDownloadResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateDiscoveryReportForDownloadResponse.java index 7da5e571d4d..a753a006f48 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateDiscoveryReportForDownloadResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateDiscoveryReportForDownloadResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateHealthReportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateHealthReportResponse.java index f08f92c37d1..a270b904623 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateHealthReportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateHealthReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateMaskingPolicyForDownloadResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateMaskingPolicyForDownloadResponse.java index 00619315ee9..8abe0249a87 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateMaskingPolicyForDownloadResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateMaskingPolicyForDownloadResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateMaskingReportForDownloadResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateMaskingReportForDownloadResponse.java index 9743d882733..df08e0c9d4b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateMaskingReportForDownloadResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateMaskingReportForDownloadResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateOnPremConnectorConfigurationResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateOnPremConnectorConfigurationResponse.java index 0f9d10ee0f6..2a4dba1a0eb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateOnPremConnectorConfigurationResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateOnPremConnectorConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateReportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateReportResponse.java index 4dbe5f3a74f..b3b7b3519ef 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateReportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateSecurityAssessmentReportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateSecurityAssessmentReportResponse.java index 18d496ef012..23e155b4e19 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateSecurityAssessmentReportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateSecurityAssessmentReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateSensitiveDataModelForDownloadResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateSensitiveDataModelForDownloadResponse.java index d49de81c000..4b8398a3b53 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateSensitiveDataModelForDownloadResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateSensitiveDataModelForDownloadResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateSqlFirewallPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateSqlFirewallPolicyResponse.java index c21da749c25..015055cd69a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateSqlFirewallPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateSqlFirewallPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateUserAssessmentReportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateUserAssessmentReportResponse.java index 6a685623881..4f35696534d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateUserAssessmentReportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GenerateUserAssessmentReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAlertPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAlertPolicyResponse.java index d7bcfee0e15..a7d7e29b7eb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAlertPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAlertPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAlertPolicyRuleResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAlertPolicyRuleResponse.java index 4b18b8c8704..5fc0d79528b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAlertPolicyRuleResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAlertPolicyRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAlertResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAlertResponse.java index 569f9167cea..c1c53d02572 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAlertResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAlertResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAttributeSetResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAttributeSetResponse.java index c8fe0d01e8d..ad64bb1ddda 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAttributeSetResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAttributeSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAuditArchiveRetrievalResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAuditArchiveRetrievalResponse.java index 022d1b70ecc..2e2d995bf55 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAuditArchiveRetrievalResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAuditArchiveRetrievalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAuditPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAuditPolicyResponse.java index 5c6e3626721..860dbb3379e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAuditPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAuditPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAuditProfileResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAuditProfileResponse.java index 9efacc741e8..a9874861b87 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAuditProfileResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAuditProfileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAuditTrailResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAuditTrailResponse.java index 93f31edf80d..1f9b9c54025 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAuditTrailResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetAuditTrailResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetCompatibleFormatsForDataTypesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetCompatibleFormatsForDataTypesResponse.java index 15db031fa4b..b3fc9ec7d0e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetCompatibleFormatsForDataTypesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetCompatibleFormatsForDataTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetCompatibleFormatsForSensitiveTypesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetCompatibleFormatsForSensitiveTypesResponse.java index 20877b0d80f..d616f9e13c7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetCompatibleFormatsForSensitiveTypesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetCompatibleFormatsForSensitiveTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDataSafeConfigurationResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDataSafeConfigurationResponse.java index 882b4a733f2..e29f696634b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDataSafeConfigurationResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDataSafeConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDataSafePrivateEndpointResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDataSafePrivateEndpointResponse.java index 659fe69129a..a5ce5193cd3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDataSafePrivateEndpointResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDataSafePrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDatabaseSecurityConfigResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDatabaseSecurityConfigResponse.java index f62214681e8..e121ec274b6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDatabaseSecurityConfigResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDatabaseSecurityConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDatabaseTableAccessEntryResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDatabaseTableAccessEntryResponse.java index 4557d5b4a66..7650519bb5e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDatabaseTableAccessEntryResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDatabaseTableAccessEntryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDatabaseViewAccessEntryResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDatabaseViewAccessEntryResponse.java index 6dcfe4d9808..e24d8d243e2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDatabaseViewAccessEntryResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDatabaseViewAccessEntryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDifferenceColumnResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDifferenceColumnResponse.java index b186a862cd3..a4c59dd206e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDifferenceColumnResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDifferenceColumnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDiscoveryJobResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDiscoveryJobResponse.java index 696778742f9..7478f07b75a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDiscoveryJobResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDiscoveryJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDiscoveryJobResultResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDiscoveryJobResultResponse.java index e42729a6a25..d6639b6ab37 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDiscoveryJobResultResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetDiscoveryJobResultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetGroupMembersResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetGroupMembersResponse.java index 2615fb92f25..f7b224881e3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetGroupMembersResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetGroupMembersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetLibraryMaskingFormatResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetLibraryMaskingFormatResponse.java index aab95e14496..bc713803003 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetLibraryMaskingFormatResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetLibraryMaskingFormatResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetMaskingColumnResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetMaskingColumnResponse.java index e8241bda37c..4b2c6000640 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetMaskingColumnResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetMaskingColumnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetMaskingPolicyHealthReportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetMaskingPolicyHealthReportResponse.java index 5f6c5c45d7d..386a78ea2c0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetMaskingPolicyHealthReportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetMaskingPolicyHealthReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetMaskingPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetMaskingPolicyResponse.java index 9a3a6440e22..e1bf042578e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetMaskingPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetMaskingPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetMaskingReportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetMaskingReportResponse.java index 0b7fd999b4f..c3fb4d80967 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetMaskingReportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetMaskingReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetOnPremConnectorResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetOnPremConnectorResponse.java index c3b42c8880c..f75cf825f44 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetOnPremConnectorResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetOnPremConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetPeerTargetDatabaseResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetPeerTargetDatabaseResponse.java index 6235749eb09..f82d1b8b036 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetPeerTargetDatabaseResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetPeerTargetDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetProfileResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetProfileResponse.java index b49504cbd47..3c080f23101 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetProfileResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetProfileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetReferentialRelationResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetReferentialRelationResponse.java index dba938d36c6..b902b8eeb67 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetReferentialRelationResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetReferentialRelationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetReportContentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetReportContentResponse.java index aea856747a2..be39b03d53f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetReportContentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetReportContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetReportDefinitionResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetReportDefinitionResponse.java index a8dbc8de474..b8ee6e8b47c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetReportDefinitionResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetReportDefinitionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetReportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetReportResponse.java index 1e36b72aa85..704339ba124 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetReportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSdmMaskingPolicyDifferenceResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSdmMaskingPolicyDifferenceResponse.java index e09c1f83ccd..30e97b3818e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSdmMaskingPolicyDifferenceResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSdmMaskingPolicyDifferenceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityAssessmentComparisonResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityAssessmentComparisonResponse.java index 839833b3eeb..7a87ed3adc4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityAssessmentComparisonResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityAssessmentComparisonResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityAssessmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityAssessmentResponse.java index 30291e2f12a..cd242bc0105 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityAssessmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityAssessmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityPolicyConfigResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityPolicyConfigResponse.java index 0e5fb1bbc40..52b56693524 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityPolicyConfigResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityPolicyConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityPolicyDeploymentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityPolicyDeploymentResponse.java index 7bad2a68362..59eb2053521 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityPolicyDeploymentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityPolicyDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityPolicyEntryStateResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityPolicyEntryStateResponse.java index 86dd3cbb890..d9f72458730 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityPolicyEntryStateResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityPolicyEntryStateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityPolicyReportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityPolicyReportResponse.java index 152742f4e26..61c0f4f1b31 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityPolicyReportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityPolicyReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityPolicyResponse.java index 2f4aabf67c7..79b6c660281 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSecurityPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSensitiveColumnResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSensitiveColumnResponse.java index c21a0c79a6f..518ef773356 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSensitiveColumnResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSensitiveColumnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSensitiveDataModelResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSensitiveDataModelResponse.java index f7217d97e05..84d1b0b288a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSensitiveDataModelResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSensitiveDataModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSensitiveTypeGroupResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSensitiveTypeGroupResponse.java index 0e4a47e2e9d..0f1f8bcd6c2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSensitiveTypeGroupResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSensitiveTypeGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSensitiveTypeResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSensitiveTypeResponse.java index 1898849d003..f6361cef4c6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSensitiveTypeResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSensitiveTypeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSensitiveTypesExportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSensitiveTypesExportResponse.java index 3afb1780ee7..37ae319f613 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSensitiveTypesExportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSensitiveTypesExportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSqlCollectionResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSqlCollectionResponse.java index 8f904810c1f..faa5c82f6a2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSqlCollectionResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSqlCollectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSqlFirewallAllowedSqlResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSqlFirewallAllowedSqlResponse.java index 7df28d72055..025420e8455 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSqlFirewallAllowedSqlResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSqlFirewallAllowedSqlResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSqlFirewallPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSqlFirewallPolicyResponse.java index 1de8c61c959..cbeea27884a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSqlFirewallPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetSqlFirewallPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetTargetAlertPolicyAssociationResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetTargetAlertPolicyAssociationResponse.java index 0b1316bcacc..aca1afd3a9d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetTargetAlertPolicyAssociationResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetTargetAlertPolicyAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetTargetDatabaseGroupResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetTargetDatabaseGroupResponse.java index 71198c2962f..2f525b8d9b8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetTargetDatabaseGroupResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetTargetDatabaseGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetTargetDatabaseResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetTargetDatabaseResponse.java index 4baa8ec3c1c..e736f195d62 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetTargetDatabaseResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetTargetDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetTemplateBaselineComparisonResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetTemplateBaselineComparisonResponse.java index 456ddcb3792..833ece85827 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetTemplateBaselineComparisonResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetTemplateBaselineComparisonResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetUnifiedAuditPolicyDefinitionResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetUnifiedAuditPolicyDefinitionResponse.java index 9039a9beee5..a80c596755b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetUnifiedAuditPolicyDefinitionResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetUnifiedAuditPolicyDefinitionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetUnifiedAuditPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetUnifiedAuditPolicyResponse.java index d90921cd469..52e73fdf344 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetUnifiedAuditPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetUnifiedAuditPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetUserAssessmentComparisonResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetUserAssessmentComparisonResponse.java index a863c84cdca..e9274734566 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetUserAssessmentComparisonResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetUserAssessmentComparisonResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetUserAssessmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetUserAssessmentResponse.java index 68081bac302..dac0ba129f1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetUserAssessmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetUserAssessmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetWorkRequestResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetWorkRequestResponse.java index 1e3735c03e1..78ccffc2cd0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetWorkRequestResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAlertAnalyticsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAlertAnalyticsResponse.java index 331acd98120..37be2f9352a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAlertAnalyticsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAlertAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAlertPoliciesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAlertPoliciesResponse.java index 2ffc2ffdc57..82aa51dbad9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAlertPoliciesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAlertPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAlertPolicyRulesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAlertPolicyRulesResponse.java index 81a462c8423..075fe2fecac 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAlertPolicyRulesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAlertPolicyRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAlertsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAlertsResponse.java index 00a7cf6ee64..5981c48d1cb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAlertsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAlertsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAssociatedResourcesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAssociatedResourcesResponse.java index 277c487f228..d13af1b5d22 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAssociatedResourcesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAssociatedResourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAttributeSetsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAttributeSetsResponse.java index 0695b3625df..0304152a988 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAttributeSetsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAttributeSetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditArchiveRetrievalsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditArchiveRetrievalsResponse.java index 3d1b4c086c7..40edb2a9d3d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditArchiveRetrievalsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditArchiveRetrievalsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditEventAnalyticsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditEventAnalyticsResponse.java index f550396e87f..42eeca160a4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditEventAnalyticsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditEventAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditEventsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditEventsResponse.java index b4b4ed03d25..c3ac498f7c9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditEventsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditEventsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditPoliciesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditPoliciesResponse.java index 1d042d13b1d..f3d044301f4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditPoliciesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditPolicyAnalyticsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditPolicyAnalyticsResponse.java index e34bc426aa7..790b77f9c37 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditPolicyAnalyticsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditPolicyAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditProfileAnalyticsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditProfileAnalyticsResponse.java index 302f1ca1503..a572fec0f0e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditProfileAnalyticsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditProfileAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditProfilesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditProfilesResponse.java index 92ef0b08581..75271ec3338 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditProfilesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditProfilesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditTrailAnalyticsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditTrailAnalyticsResponse.java index 8073d680755..54c1e6241a2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditTrailAnalyticsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditTrailAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditTrailsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditTrailsResponse.java index dcd27a82a7b..5494b94f12d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditTrailsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAuditTrailsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAvailableAuditVolumesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAvailableAuditVolumesResponse.java index 884ff004042..3d8d5e4e55e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAvailableAuditVolumesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListAvailableAuditVolumesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListChecksResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListChecksResponse.java index 3bfbad4d285..71884ff2ed5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListChecksResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListChecksResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListCollectedAuditVolumesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListCollectedAuditVolumesResponse.java index 8529e94c1af..ed083192b76 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListCollectedAuditVolumesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListCollectedAuditVolumesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListColumnsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListColumnsResponse.java index 54e0ab305fa..fbc4611c228 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListColumnsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListColumnsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDataSafePrivateEndpointsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDataSafePrivateEndpointsResponse.java index 333b3ffde27..b1113b746c2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDataSafePrivateEndpointsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDataSafePrivateEndpointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDatabaseSecurityConfigsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDatabaseSecurityConfigsResponse.java index ff0b13e9241..ad99f7a3712 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDatabaseSecurityConfigsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDatabaseSecurityConfigsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDatabaseTableAccessEntriesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDatabaseTableAccessEntriesResponse.java index d6caab15d8b..ed7932f3089 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDatabaseTableAccessEntriesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDatabaseTableAccessEntriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDatabaseViewAccessEntriesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDatabaseViewAccessEntriesResponse.java index 50c1e554a2b..31d756c4e21 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDatabaseViewAccessEntriesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDatabaseViewAccessEntriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDifferenceColumnsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDifferenceColumnsResponse.java index e2c2c2ed13b..3d821b15d12 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDifferenceColumnsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDifferenceColumnsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDiscoveryAnalyticsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDiscoveryAnalyticsResponse.java index 434ddbd8631..4ea5ef0451e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDiscoveryAnalyticsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDiscoveryAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDiscoveryJobResultsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDiscoveryJobResultsResponse.java index 129b3e2d211..6cc1689cc1c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDiscoveryJobResultsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDiscoveryJobResultsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDiscoveryJobsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDiscoveryJobsResponse.java index c251eedc6a3..ccdf147b05b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDiscoveryJobsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListDiscoveryJobsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListFindingAnalyticsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListFindingAnalyticsResponse.java index 728105b01a9..6bb26d4cdbb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListFindingAnalyticsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListFindingAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListFindingsChangeAuditLogsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListFindingsChangeAuditLogsResponse.java index 07d6a3f6ed0..fe576fc806b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListFindingsChangeAuditLogsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListFindingsChangeAuditLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListFindingsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListFindingsResponse.java index 5503837b014..ea4f5359378 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListFindingsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListFindingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListGrantsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListGrantsResponse.java index 7c719dfc0ce..bfee74e3202 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListGrantsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListGrantsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListGroupedSensitiveTypesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListGroupedSensitiveTypesResponse.java index 09e9bf5b7d0..70617e4ff69 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListGroupedSensitiveTypesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListGroupedSensitiveTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListLibraryMaskingFormatsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListLibraryMaskingFormatsResponse.java index 533b5fbebf9..e74aba2b266 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListLibraryMaskingFormatsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListLibraryMaskingFormatsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskedColumnsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskedColumnsResponse.java index 2f11bd6af25..361cdc0c52f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskedColumnsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskedColumnsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingAnalyticsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingAnalyticsResponse.java index 5fd2396308c..604006fcd15 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingAnalyticsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingColumnsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingColumnsResponse.java index 32567257b88..6ad97816e1b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingColumnsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingColumnsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingErrorsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingErrorsResponse.java index d68194dc619..b099115e1a4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingErrorsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingObjectsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingObjectsResponse.java index cc6c2bb3a13..c8bcf5d971c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingObjectsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingObjectsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingPoliciesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingPoliciesResponse.java index 69999ab8459..86b3d9446a4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingPoliciesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingPolicyHealthReportLogsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingPolicyHealthReportLogsResponse.java index adee939024f..1696106c7e5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingPolicyHealthReportLogsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingPolicyHealthReportLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingPolicyHealthReportsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingPolicyHealthReportsResponse.java index c92155f6b04..f6442f00993 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingPolicyHealthReportsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingPolicyHealthReportsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingPolicyReferentialRelationsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingPolicyReferentialRelationsResponse.java index 67fa730f7f0..3ef9ed928a9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingPolicyReferentialRelationsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingPolicyReferentialRelationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingReportsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingReportsResponse.java index ad9304b40cf..11cba712ffe 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingReportsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingReportsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingSchemasResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingSchemasResponse.java index b3df0fb9281..7ce92a2e129 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingSchemasResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListMaskingSchemasResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListOnPremConnectorsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListOnPremConnectorsResponse.java index 60513a6ab19..101da9b6575 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListOnPremConnectorsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListOnPremConnectorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListPasswordExpiryDateAnalyticsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListPasswordExpiryDateAnalyticsResponse.java index 34fba2f3e03..d04f9f2cac0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListPasswordExpiryDateAnalyticsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListPasswordExpiryDateAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListPeerTargetDatabasesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListPeerTargetDatabasesResponse.java index 2e045383ec3..1efb21eb448 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListPeerTargetDatabasesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListPeerTargetDatabasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListProfileAnalyticsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListProfileAnalyticsResponse.java index 7850eb3d747..5d4a8fa4ab6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListProfileAnalyticsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListProfileAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListProfileSummariesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListProfileSummariesResponse.java index 4adcddfdfde..4158c3a4cc9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListProfileSummariesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListProfileSummariesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListReferentialRelationsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListReferentialRelationsResponse.java index 2a23a67634b..d33d577b464 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListReferentialRelationsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListReferentialRelationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListReportDefinitionsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListReportDefinitionsResponse.java index 880d673dd59..7501ab8efd3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListReportDefinitionsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListReportDefinitionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListReportsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListReportsResponse.java index dd1599352fb..f949818cdb6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListReportsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListReportsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListRoleGrantPathsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListRoleGrantPathsResponse.java index 3ee4b79d4f6..90ca9646e46 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListRoleGrantPathsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListRoleGrantPathsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListRolesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListRolesResponse.java index 4e78e471c05..1657442e0b7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListRolesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListRolesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSchemasResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSchemasResponse.java index 89d6db1f10d..d3fd6dce36f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSchemasResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSchemasResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSdmMaskingPolicyDifferencesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSdmMaskingPolicyDifferencesResponse.java index 986bc004dc1..a260515c83e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSdmMaskingPolicyDifferencesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSdmMaskingPolicyDifferencesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityAssessmentsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityAssessmentsResponse.java index e13224469bb..45af6978624 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityAssessmentsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityAssessmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityFeatureAnalyticsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityFeatureAnalyticsResponse.java index d0930fc5cbe..51bee3ea535 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityFeatureAnalyticsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityFeatureAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityFeaturesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityFeaturesResponse.java index 1677ef616dc..52024370293 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityFeaturesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityFeaturesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityPoliciesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityPoliciesResponse.java index 677bd2db510..3adcb3fd859 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityPoliciesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityPolicyConfigsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityPolicyConfigsResponse.java index 05d0853ea2b..a22f5e3cd3f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityPolicyConfigsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityPolicyConfigsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityPolicyDeploymentsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityPolicyDeploymentsResponse.java index 2d1c704f84f..89699206e6b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityPolicyDeploymentsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityPolicyDeploymentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityPolicyEntryStatesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityPolicyEntryStatesResponse.java index 0020ba6bb14..686d8099de6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityPolicyEntryStatesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityPolicyEntryStatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityPolicyReportsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityPolicyReportsResponse.java index 1866f1cff9e..6ae9c70cfaf 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityPolicyReportsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSecurityPolicyReportsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveColumnAnalyticsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveColumnAnalyticsResponse.java index 92186ec2ca0..bf658430eda 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveColumnAnalyticsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveColumnAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveColumnsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveColumnsResponse.java index c4b6b464371..5454a11470d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveColumnsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveColumnsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveDataModelSensitiveTypesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveDataModelSensitiveTypesResponse.java index 684d8173c13..29d99a2e601 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveDataModelSensitiveTypesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveDataModelSensitiveTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveDataModelsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveDataModelsResponse.java index a9a6884fc65..137b2b8906b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveDataModelsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveDataModelsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveObjectsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveObjectsResponse.java index 19305ae1bb8..84ef3862b17 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveObjectsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveObjectsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveSchemasResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveSchemasResponse.java index a39700639e2..f993ac60219 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveSchemasResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveSchemasResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveTypeGroupsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveTypeGroupsResponse.java index 18b2c3b7267..da1fc948843 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveTypeGroupsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveTypeGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveTypesExportsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveTypesExportsResponse.java index 5224151eba0..ad6c391a91a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveTypesExportsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveTypesExportsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveTypesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveTypesResponse.java index 7d7748a9b3d..aeac512d8ac 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveTypesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSensitiveTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlCollectionAnalyticsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlCollectionAnalyticsResponse.java index 9926ab41dc4..ada412a065a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlCollectionAnalyticsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlCollectionAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlCollectionLogInsightsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlCollectionLogInsightsResponse.java index 7ae0accd0aa..b128cd9399a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlCollectionLogInsightsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlCollectionLogInsightsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlCollectionsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlCollectionsResponse.java index c27445e0c2b..c55daf3a413 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlCollectionsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlCollectionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallAllowedSqlAnalyticsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallAllowedSqlAnalyticsResponse.java index 49c7c6beaeb..a8773ba18d2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallAllowedSqlAnalyticsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallAllowedSqlAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallAllowedSqlsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallAllowedSqlsResponse.java index 0c49df00bae..0b96edcfc1c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallAllowedSqlsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallAllowedSqlsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallPoliciesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallPoliciesResponse.java index ca26287e978..4efbe0a70c3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallPoliciesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallPolicyAnalyticsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallPolicyAnalyticsResponse.java index 407cc7613e5..d93ca57b48c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallPolicyAnalyticsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallPolicyAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallViolationAnalyticsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallViolationAnalyticsResponse.java index 0e171041ff6..0e0a5c90d8a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallViolationAnalyticsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallViolationAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallViolationsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallViolationsResponse.java index 7b06d2576bd..44f8964b3d3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallViolationsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListSqlFirewallViolationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTablesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTablesResponse.java index f8d0c7c7426..2b630a1b22b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTablesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTablesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTargetAlertPolicyAssociationsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTargetAlertPolicyAssociationsResponse.java index 1aebab88eb6..1c8e519d5df 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTargetAlertPolicyAssociationsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTargetAlertPolicyAssociationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTargetDatabaseGroupsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTargetDatabaseGroupsResponse.java index 3485be72e52..c7351ddea45 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTargetDatabaseGroupsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTargetDatabaseGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTargetDatabasesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTargetDatabasesResponse.java index b3655af0744..ca8dc0bc4d9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTargetDatabasesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTargetDatabasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTargetOverridesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTargetOverridesResponse.java index 6fc402c9041..7b4d3a3e678 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTargetOverridesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTargetOverridesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTemplateAnalyticsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTemplateAnalyticsResponse.java index a4fc4c51210..c7b9ddea00d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTemplateAnalyticsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTemplateAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTemplateAssociationAnalyticsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTemplateAssociationAnalyticsResponse.java index 2ce57396c30..5e9fcc3ecd1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTemplateAssociationAnalyticsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListTemplateAssociationAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUnifiedAuditPoliciesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUnifiedAuditPoliciesResponse.java index e22aa1b5d3a..12633cd837d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUnifiedAuditPoliciesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUnifiedAuditPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUnifiedAuditPolicyDefinitionsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUnifiedAuditPolicyDefinitionsResponse.java index 52fc1f65612..1df42c098cd 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUnifiedAuditPolicyDefinitionsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUnifiedAuditPolicyDefinitionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUserAccessAnalyticsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUserAccessAnalyticsResponse.java index d9d4dd7d9ec..9d8cc8c68d6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUserAccessAnalyticsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUserAccessAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUserAnalyticsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUserAnalyticsResponse.java index 024c38fab1c..b216a24a19a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUserAnalyticsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUserAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUserAssessmentsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUserAssessmentsResponse.java index 9a0ae56ae0a..fa538b982df 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUserAssessmentsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUserAssessmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUsersResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUsersResponse.java index 4e1e3b15d85..a1b7a344e38 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUsersResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListUsersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListWorkRequestErrorsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListWorkRequestErrorsResponse.java index 7a1fc67cb6f..edc700d58d1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListWorkRequestLogsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListWorkRequestLogsResponse.java index 43c40a0a9e3..8ab5d69643f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListWorkRequestLogsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListWorkRequestsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListWorkRequestsResponse.java index 96ee591c64e..c8243b29398 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListWorkRequestsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/MaskDataResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/MaskDataResponse.java index 13731e98dc1..7072db8c76c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/MaskDataResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/MaskDataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ModifyGlobalSettingsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ModifyGlobalSettingsResponse.java index fe79cab1d6c..f36ba8fe206 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ModifyGlobalSettingsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ModifyGlobalSettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchAlertsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchAlertsResponse.java index 5d75e9e47b2..4f193812a07 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchAlertsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchAlertsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchChecksResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchChecksResponse.java index ca656575fcf..b2a8c14b185 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchChecksResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchChecksResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchDiscoveryJobResultsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchDiscoveryJobResultsResponse.java index 61ce4229455..912066d30b6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchDiscoveryJobResultsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchDiscoveryJobResultsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchFindingsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchFindingsResponse.java index 6005047a18d..17980cba106 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchFindingsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchFindingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchGroupedSensitiveTypesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchGroupedSensitiveTypesResponse.java index 1321a81425a..0da47b5a241 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchGroupedSensitiveTypesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchGroupedSensitiveTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchMaskingColumnsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchMaskingColumnsResponse.java index cd3cfeb25b4..a751be8dc80 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchMaskingColumnsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchMaskingColumnsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchSdmMaskingPolicyDifferenceColumnsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchSdmMaskingPolicyDifferenceColumnsResponse.java index ffe1453642a..7cdaebf2372 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchSdmMaskingPolicyDifferenceColumnsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchSdmMaskingPolicyDifferenceColumnsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchSensitiveColumnsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchSensitiveColumnsResponse.java index 1f8c2f610a5..5fa19046255 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchSensitiveColumnsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchSensitiveColumnsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchSqlFirewallAllowedSqlResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchSqlFirewallAllowedSqlResponse.java index 10f537303c2..94ba747938f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchSqlFirewallAllowedSqlResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchSqlFirewallAllowedSqlResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchTargetAlertPolicyAssociationResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchTargetAlertPolicyAssociationResponse.java index e1733fac785..252e3cb061a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchTargetAlertPolicyAssociationResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PatchTargetAlertPolicyAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ProvisionAuditPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ProvisionAuditPolicyResponse.java index 67388ee2aae..fbfe21fe4d9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ProvisionAuditPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ProvisionAuditPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PurgeSqlCollectionLogsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PurgeSqlCollectionLogsResponse.java index 1be6dc30937..4fee64c8d5a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PurgeSqlCollectionLogsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/PurgeSqlCollectionLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshDatabaseSecurityConfigurationResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshDatabaseSecurityConfigurationResponse.java index 961011a82d2..a9c86ff53b5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshDatabaseSecurityConfigurationResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshDatabaseSecurityConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshSecurityAssessmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshSecurityAssessmentResponse.java index ecf55bbbfcf..100b1169d23 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshSecurityAssessmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshSecurityAssessmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshSecurityPolicyDeploymentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshSecurityPolicyDeploymentResponse.java index 23b283c1480..ef2c6614048 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshSecurityPolicyDeploymentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshSecurityPolicyDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshSqlCollectionLogInsightsResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshSqlCollectionLogInsightsResponse.java index 89ab87cce69..71c4494d4a0 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshSqlCollectionLogInsightsResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshSqlCollectionLogInsightsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshTargetDatabaseResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshTargetDatabaseResponse.java index 8cb4bb74ec0..2e8ffafe17c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshTargetDatabaseResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshTargetDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshUserAssessmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshUserAssessmentResponse.java index f721522692c..b5befe1d576 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshUserAssessmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RefreshUserAssessmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RemoveScheduleReportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RemoveScheduleReportResponse.java index 39eecd84147..407a1dcacdf 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RemoveScheduleReportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RemoveScheduleReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RemoveSecurityAssessmentTemplateResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RemoveSecurityAssessmentTemplateResponse.java index 7afd8479ccd..5446c74b966 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RemoveSecurityAssessmentTemplateResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RemoveSecurityAssessmentTemplateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ResumeAuditTrailResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ResumeAuditTrailResponse.java index fae8fa71356..5b25b02d015 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ResumeAuditTrailResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ResumeAuditTrailResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ResumeWorkRequestResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ResumeWorkRequestResponse.java index dfdc1ac1680..24b48f4309e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ResumeWorkRequestResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ResumeWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RetrieveAuditPoliciesResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RetrieveAuditPoliciesResponse.java index cf47eb93e14..8b5202846cf 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RetrieveAuditPoliciesResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/RetrieveAuditPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ScheduleReportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ScheduleReportResponse.java index 477c6087396..da001cc37c8 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ScheduleReportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/ScheduleReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/SetSecurityAssessmentBaselineResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/SetSecurityAssessmentBaselineResponse.java index 3111f8dee14..4263b2a04af 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/SetSecurityAssessmentBaselineResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/SetSecurityAssessmentBaselineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/SetUserAssessmentBaselineResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/SetUserAssessmentBaselineResponse.java index 1a6bfaaba9b..54cfcaa1588 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/SetUserAssessmentBaselineResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/SetUserAssessmentBaselineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/StartAuditTrailResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/StartAuditTrailResponse.java index 21a4c450196..610b1470865 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/StartAuditTrailResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/StartAuditTrailResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/StartSqlCollectionResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/StartSqlCollectionResponse.java index 14af66a442a..cd838e632a4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/StartSqlCollectionResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/StartSqlCollectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/StopAuditTrailResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/StopAuditTrailResponse.java index 60d7886e7b1..18e4b94b5ee 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/StopAuditTrailResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/StopAuditTrailResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/StopSqlCollectionResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/StopSqlCollectionResponse.java index 5940d79372a..b8a388ad3e2 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/StopSqlCollectionResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/StopSqlCollectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/SuspendWorkRequestResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/SuspendWorkRequestResponse.java index 801c3a87275..a46c8240229 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/SuspendWorkRequestResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/SuspendWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UnsetSecurityAssessmentBaselineResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UnsetSecurityAssessmentBaselineResponse.java index fc4436b6e0b..2042c9593cb 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UnsetSecurityAssessmentBaselineResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UnsetSecurityAssessmentBaselineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UnsetUserAssessmentBaselineResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UnsetUserAssessmentBaselineResponse.java index ea57a5992fd..c95f6515e10 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UnsetUserAssessmentBaselineResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UnsetUserAssessmentBaselineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAlertPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAlertPolicyResponse.java index c21fafcab3e..7035e386293 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAlertPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAlertPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAlertPolicyRuleResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAlertPolicyRuleResponse.java index 2a4952f42b2..9707aa70797 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAlertPolicyRuleResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAlertPolicyRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAlertResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAlertResponse.java index 3bcbd750f63..356bd9dcb50 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAlertResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAlertResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAttributeSetResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAttributeSetResponse.java index 88de605d636..2dd2b3789a9 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAttributeSetResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAttributeSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAuditArchiveRetrievalResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAuditArchiveRetrievalResponse.java index bf7606f7ddf..ac3c1bd252d 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAuditArchiveRetrievalResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAuditArchiveRetrievalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAuditPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAuditPolicyResponse.java index d448a1159bc..ad8ed172994 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAuditPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAuditPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAuditProfileResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAuditProfileResponse.java index 42fa18e4ffa..afc3637e9af 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAuditProfileResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAuditProfileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAuditTrailResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAuditTrailResponse.java index 92a1fb66651..1fab43f9445 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAuditTrailResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateAuditTrailResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateDataSafePrivateEndpointResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateDataSafePrivateEndpointResponse.java index e8818ed35e7..c2b4003b367 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateDataSafePrivateEndpointResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateDataSafePrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateDatabaseSecurityConfigResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateDatabaseSecurityConfigResponse.java index ce8bddd7773..862c79b08c1 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateDatabaseSecurityConfigResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateDatabaseSecurityConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateFindingResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateFindingResponse.java index 293f27d5a8d..8e43ff98c89 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateFindingResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateFindingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateLibraryMaskingFormatResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateLibraryMaskingFormatResponse.java index 254209876d6..a055f2da4b3 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateLibraryMaskingFormatResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateLibraryMaskingFormatResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateMaskingColumnResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateMaskingColumnResponse.java index 5c9bd56b9dc..e4ceb2e758e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateMaskingColumnResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateMaskingColumnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateMaskingPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateMaskingPolicyResponse.java index 40259559c12..0bce0880294 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateMaskingPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateMaskingPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateOnPremConnectorResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateOnPremConnectorResponse.java index 3d96455e9b7..e9b3cdf6348 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateOnPremConnectorResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateOnPremConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateOnPremConnectorWalletResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateOnPremConnectorWalletResponse.java index ef436f6377f..99dd22401f6 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateOnPremConnectorWalletResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateOnPremConnectorWalletResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdatePeerTargetDatabaseResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdatePeerTargetDatabaseResponse.java index ddc8637cab7..15e332bfad7 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdatePeerTargetDatabaseResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdatePeerTargetDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateReportDefinitionResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateReportDefinitionResponse.java index 0d7cf8dccb2..9342f921dad 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateReportDefinitionResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateReportDefinitionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateReportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateReportResponse.java index 4694a32ca4a..ac5d572497f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateReportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSdmMaskingPolicyDifferenceResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSdmMaskingPolicyDifferenceResponse.java index 61bf5b65438..85c9a155b42 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSdmMaskingPolicyDifferenceResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSdmMaskingPolicyDifferenceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSecurityAssessmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSecurityAssessmentResponse.java index 33c1c5153ef..3d8f9ba542b 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSecurityAssessmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSecurityAssessmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSecurityPolicyConfigResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSecurityPolicyConfigResponse.java index ac5e17c30a9..86e9ac09546 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSecurityPolicyConfigResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSecurityPolicyConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSecurityPolicyDeploymentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSecurityPolicyDeploymentResponse.java index 180e54c281f..6ca7eab7a95 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSecurityPolicyDeploymentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSecurityPolicyDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSecurityPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSecurityPolicyResponse.java index 7ef0ef8929f..163917192ac 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSecurityPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSecurityPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSensitiveColumnResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSensitiveColumnResponse.java index 4b2a88c3367..26e225099ac 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSensitiveColumnResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSensitiveColumnResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSensitiveDataModelResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSensitiveDataModelResponse.java index 8458652589c..a6855d6f4b4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSensitiveDataModelResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSensitiveDataModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSensitiveTypeGroupResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSensitiveTypeGroupResponse.java index 53f7c481c21..9062748b4bf 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSensitiveTypeGroupResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSensitiveTypeGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSensitiveTypeResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSensitiveTypeResponse.java index d39340d1a57..8e30807f539 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSensitiveTypeResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSensitiveTypeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSensitiveTypesExportResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSensitiveTypesExportResponse.java index fe87882bd77..98c1c8ff0ff 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSensitiveTypesExportResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSensitiveTypesExportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSqlCollectionResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSqlCollectionResponse.java index 7c598f8e17b..12a29b8a99a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSqlCollectionResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSqlCollectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSqlFirewallPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSqlFirewallPolicyResponse.java index f43b00525a4..83eb09964e4 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSqlFirewallPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateSqlFirewallPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateTargetAlertPolicyAssociationResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateTargetAlertPolicyAssociationResponse.java index 87b1e756ea9..dd2d58b514e 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateTargetAlertPolicyAssociationResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateTargetAlertPolicyAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateTargetDatabaseGroupResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateTargetDatabaseGroupResponse.java index ca690a3f404..f56d57b946f 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateTargetDatabaseGroupResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateTargetDatabaseGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateTargetDatabaseResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateTargetDatabaseResponse.java index fd732c75a22..7605c8254fa 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateTargetDatabaseResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateTargetDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateUnifiedAuditPolicyDefinitionResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateUnifiedAuditPolicyDefinitionResponse.java index fbae82baa49..00a9cb01f4c 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateUnifiedAuditPolicyDefinitionResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateUnifiedAuditPolicyDefinitionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateUnifiedAuditPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateUnifiedAuditPolicyResponse.java index 1dea88c5095..8bd4ffac81a 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateUnifiedAuditPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateUnifiedAuditPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateUserAssessmentResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateUserAssessmentResponse.java index 37283c30b2b..0284ea8d533 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateUserAssessmentResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UpdateUserAssessmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UploadMaskingPolicyResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UploadMaskingPolicyResponse.java index 39a82711434..b84f31062f5 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UploadMaskingPolicyResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UploadMaskingPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UploadSensitiveDataModelResponse.java b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UploadSensitiveDataModelResponse.java index fda83d45b07..702c1e70286 100644 --- a/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UploadSensitiveDataModelResponse.java +++ b/bmc-datasafe/src/main/java/com/oracle/bmc/datasafe/responses/UploadSensitiveDataModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datasafe.responses; diff --git a/bmc-datasafe/src/main/resources/com/oracle/bmc/datasafe/client.properties b/bmc-datasafe/src/main/resources/com/oracle/bmc/datasafe/client.properties index 41b95040562..28c0827995b 100644 --- a/bmc-datasafe/src/main/resources/com/oracle/bmc/datasafe/client.properties +++ b/bmc-datasafe/src/main/resources/com/oracle/bmc/datasafe/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-datascience/pom.xml b/bmc-datascience/pom.xml index b4edc04acdb..16e092830b4 100644 --- a/bmc-datascience/pom.xml +++ b/bmc-datascience/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-datascience @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataScience.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataScience.java index 9e0ea7ead27..c1782e11b4c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataScience.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataScience.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataScienceAsync.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataScienceAsync.java index 3121854a94f..2ecf6b2f7d1 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataScienceAsync.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataScienceAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataScienceAsyncClient.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataScienceAsyncClient.java index d95a66ba7bb..9b6096ef8f9 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataScienceAsyncClient.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataScienceAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataScienceClient.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataScienceClient.java index c779285b9af..8442c25d4b0 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataScienceClient.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataScienceClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataSciencePaginators.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataSciencePaginators.java index 293d93ead34..46ecdac4476 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataSciencePaginators.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataSciencePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataScienceWaiters.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataScienceWaiters.java index b1196fb4f40..a20ac6a01d2 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataScienceWaiters.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/DataScienceWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ApplicationComponent.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ApplicationComponent.java index 12afa15d30a..6bfdb38144b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ApplicationComponent.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ApplicationComponent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ArtifactExportDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ArtifactExportDetails.java index c0b37683a8b..c40b9f5e84f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ArtifactExportDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ArtifactExportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ArtifactExportDetailsObjectStorage.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ArtifactExportDetailsObjectStorage.java index 8bb3828e813..896116fac37 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ArtifactExportDetailsObjectStorage.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ArtifactExportDetailsObjectStorage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ArtifactImportDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ArtifactImportDetails.java index 692f144b5ae..d1cb590950a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ArtifactImportDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ArtifactImportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ArtifactImportDetailsObjectStorage.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ArtifactImportDetailsObjectStorage.java index 8da2e4f501a..c921a9ad853 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ArtifactImportDetailsObjectStorage.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ArtifactImportDetailsObjectStorage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ArtifactSourceType.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ArtifactSourceType.java index e0964898871..4443486cbba 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ArtifactSourceType.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ArtifactSourceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/AuthConfiguration.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/AuthConfiguration.java index bdaec2f68ea..2b9288a268c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/AuthConfiguration.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/AuthConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/AutoScalingPolicy.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/AutoScalingPolicy.java index 51edb945e25..97129c6c981 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/AutoScalingPolicy.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/AutoScalingPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/AutoScalingPolicyDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/AutoScalingPolicyDetails.java index e700235da17..32e4fdd49e2 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/AutoScalingPolicyDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/AutoScalingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/BackupOperationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/BackupOperationDetails.java index 771e2b607f1..585848aedfc 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/BackupOperationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/BackupOperationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/BackupSetting.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/BackupSetting.java index 5d117c0b328..715a403e582 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/BackupSetting.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/BackupSetting.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CategoryLogDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CategoryLogDetails.java index f9f212cf4c5..5fd304f2239 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CategoryLogDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CategoryLogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeDataSciencePrivateEndpointCompartmentDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeDataSciencePrivateEndpointCompartmentDetails.java index 03682dda24c..276d19e1788 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeDataSciencePrivateEndpointCompartmentDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeDataSciencePrivateEndpointCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeJobCompartmentDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeJobCompartmentDetails.java index 11b11b47061..a089a5c7a3f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeJobCompartmentDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeJobCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeJobRunCompartmentDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeJobRunCompartmentDetails.java index 6aa3d6302e9..b8971be2f1f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeJobRunCompartmentDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeJobRunCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeMlApplicationCompartmentDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeMlApplicationCompartmentDetails.java index 0330ee51017..6914c247f4e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeMlApplicationCompartmentDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeMlApplicationCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeMlApplicationImplementationCompartmentDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeMlApplicationImplementationCompartmentDetails.java index 28481019c6d..49e38272d10 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeMlApplicationImplementationCompartmentDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeMlApplicationImplementationCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeMlApplicationInstanceCompartmentDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeMlApplicationInstanceCompartmentDetails.java index 38b690ca774..42576ad252e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeMlApplicationInstanceCompartmentDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeMlApplicationInstanceCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeMlApplicationInstanceViewCompartmentDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeMlApplicationInstanceViewCompartmentDetails.java index 703f3cf1c68..858dee9cfce 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeMlApplicationInstanceViewCompartmentDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeMlApplicationInstanceViewCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeModelCompartmentDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeModelCompartmentDetails.java index 00bb4e76c6e..054610e02a3 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeModelCompartmentDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeModelCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeModelDeploymentCompartmentDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeModelDeploymentCompartmentDetails.java index d3526ae094c..0058dd9bd5d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeModelDeploymentCompartmentDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeModelDeploymentCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeModelGroupCompartmentDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeModelGroupCompartmentDetails.java index 477413a8b78..51dd0c778b7 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeModelGroupCompartmentDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeModelGroupCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeModelGroupVersionHistoryCompartmentDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeModelGroupVersionHistoryCompartmentDetails.java index db29610c1fc..3f0a0a5eff2 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeModelGroupVersionHistoryCompartmentDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeModelGroupVersionHistoryCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeModelVersionSetCompartmentDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeModelVersionSetCompartmentDetails.java index 028cd3d00b7..6cd3721fb2c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeModelVersionSetCompartmentDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeModelVersionSetCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeNotebookSessionCompartmentDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeNotebookSessionCompartmentDetails.java index 377eac00239..b0e2369b6e2 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeNotebookSessionCompartmentDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeNotebookSessionCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangePipelineCompartmentDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangePipelineCompartmentDetails.java index 2f3754ead38..77209eabff2 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangePipelineCompartmentDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangePipelineCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangePipelineRunCompartmentDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangePipelineRunCompartmentDetails.java index 771f127ab2f..f888cd71249 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangePipelineRunCompartmentDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangePipelineRunCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeProjectCompartmentDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeProjectCompartmentDetails.java index 517913da8c8..5721b4112fd 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeProjectCompartmentDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeProjectCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeScheduleCompartmentDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeScheduleCompartmentDetails.java index 809613b7f75..d5957e0249c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeScheduleCompartmentDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ChangeScheduleCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CloneCreateFromModelGroupDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CloneCreateFromModelGroupDetails.java index 047b7097865..27268097168 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CloneCreateFromModelGroupDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CloneCreateFromModelGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CloneCreateFromModelGroupVersionHistoryDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CloneCreateFromModelGroupVersionHistoryDetails.java index 2ee41a934fd..9a103035c4f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CloneCreateFromModelGroupVersionHistoryDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CloneCreateFromModelGroupVersionHistoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CloneModelGroupDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CloneModelGroupDetails.java index fa92ea7d6dd..972750d357e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CloneModelGroupDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CloneModelGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ConfigurationProperty.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ConfigurationProperty.java index 9c89e7d7e89..815cb38ada0 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ConfigurationProperty.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ConfigurationProperty.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ConfigurationPropertySchema.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ConfigurationPropertySchema.java index 1e552edd9d1..694ebe7426f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ConfigurationPropertySchema.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ConfigurationPropertySchema.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ContainerSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ContainerSummary.java index 93ef5e7fbb4..6371facdd7a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ContainerSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ContainerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ContainerTargetWorkload.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ContainerTargetWorkload.java index a8ec00dd891..ade54f3b6f2 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ContainerTargetWorkload.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ContainerTargetWorkload.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ContainerUsage.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ContainerUsage.java index b57a87fb36e..fb8451a1a82 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ContainerUsage.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ContainerUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ContainerVersionLifecycleState.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ContainerVersionLifecycleState.java index 3dc658ac496..881dd68dd95 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ContainerVersionLifecycleState.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ContainerVersionLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateAuthConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateAuthConfigurationDetails.java index 1a6ff2b6ae1..fff15b2e45e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateAuthConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateAuthConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateBaseModelGroupDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateBaseModelGroupDetails.java index c01bb5eb016..ef0d8881fba 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateBaseModelGroupDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateBaseModelGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateDataSciencePrivateEndpointDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateDataSciencePrivateEndpointDetails.java index 68a387e3995..25f14d5e70d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateDataSciencePrivateEndpointDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateDataSciencePrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateIamAuthConfigurationCreateDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateIamAuthConfigurationCreateDetails.java index 8362f4f88c4..0c7252da2e7 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateIamAuthConfigurationCreateDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateIamAuthConfigurationCreateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateIdcsAuthConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateIdcsAuthConfigurationDetails.java index 0ee68faf7cd..3d3626dd9fb 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateIdcsAuthConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateIdcsAuthConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateIdcsCustomServiceAuthConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateIdcsCustomServiceAuthConfigurationDetails.java index e1b2262aadb..6e025c24cc7 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateIdcsCustomServiceAuthConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateIdcsCustomServiceAuthConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateJobDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateJobDetails.java index 55145a36567..596156af5ab 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateJobDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateJobRunDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateJobRunDetails.java index f7a6aa5203c..2dfdeac3f5c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateJobRunDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateJobRunDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateJobRunScheduleActionDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateJobRunScheduleActionDetails.java index 537f8189c70..bd629016af7 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateJobRunScheduleActionDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateJobRunScheduleActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateMlApplicationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateMlApplicationDetails.java index bcf4418a59d..92e4398cd76 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateMlApplicationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateMlApplicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateMlApplicationImplementationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateMlApplicationImplementationDetails.java index 23228665539..34f5d3f20f8 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateMlApplicationImplementationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateMlApplicationImplementationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateMlApplicationInstanceDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateMlApplicationInstanceDetails.java index 050dcc1dbfa..a255c5eb3ca 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateMlApplicationInstanceDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateMlApplicationInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelDeploymentDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelDeploymentDetails.java index 3404cc1b570..e1ea60c2f78 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelDeploymentDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelDetails.java index 481736a8878..6dfabf89c50 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelGroupDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelGroupDetails.java index 11861cc7cde..d8aa0ec99c6 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelGroupDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelGroupVersionHistoryDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelGroupVersionHistoryDetails.java index f32df815083..3452c7b3d4a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelGroupVersionHistoryDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelGroupVersionHistoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelProvenanceDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelProvenanceDetails.java index 7129c9946b0..7fc847c2287 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelProvenanceDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelProvenanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelVersionSetDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelVersionSetDetails.java index 2be2a253f17..1ae690765b6 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelVersionSetDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateModelVersionSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateNotebookSessionDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateNotebookSessionDetails.java index e69cf2192de..38d1e077c17 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateNotebookSessionDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateNotebookSessionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreatePipelineDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreatePipelineDetails.java index ab834d044b0..49c4c1259b6 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreatePipelineDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreatePipelineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreatePipelineRunDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreatePipelineRunDetails.java index a57adcaab76..e24e512a044 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreatePipelineRunDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreatePipelineRunDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreatePipelineRunScheduleActionDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreatePipelineRunScheduleActionDetails.java index 30b55efcd26..5100ac62d24 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreatePipelineRunScheduleActionDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreatePipelineRunScheduleActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateProjectDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateProjectDetails.java index c690976ae55..4d6e821ebbf 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateProjectDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateProjectDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateScheduleDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateScheduleDetails.java index 009b3b5845d..e3608c9ea63 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateScheduleDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CreateScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CustomExpressionQueryScalingConfiguration.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CustomExpressionQueryScalingConfiguration.java index 2b7322d8a2a..114a4652479 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CustomExpressionQueryScalingConfiguration.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CustomExpressionQueryScalingConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CustomMetadata.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CustomMetadata.java index bb6bd18939c..e9583d6ec33 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CustomMetadata.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CustomMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CustomMetricExpressionRule.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CustomMetricExpressionRule.java index 398291f79dc..7743d6ddec9 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CustomMetricExpressionRule.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/CustomMetricExpressionRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataFlowApplicationApplicationComponent.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataFlowApplicationApplicationComponent.java index 23867f0bbf5..4cd70a3b08b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataFlowApplicationApplicationComponent.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataFlowApplicationApplicationComponent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataScienceJobApplicationComponent.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataScienceJobApplicationComponent.java index a929c0ed88b..3f51202b2bc 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataScienceJobApplicationComponent.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataScienceJobApplicationComponent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataScienceModelApplicationComponent.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataScienceModelApplicationComponent.java index 22c94a98e03..efa3bd5a11e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataScienceModelApplicationComponent.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataScienceModelApplicationComponent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataScienceModelDeploymentInstanceComponent.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataScienceModelDeploymentInstanceComponent.java index 5717efe6ca5..0cf4e6ae1e2 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataScienceModelDeploymentInstanceComponent.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataScienceModelDeploymentInstanceComponent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataSciencePipelineApplicationComponent.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataSciencePipelineApplicationComponent.java index fdf71842b2c..c863972cac6 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataSciencePipelineApplicationComponent.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataSciencePipelineApplicationComponent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataSciencePrivateEndpoint.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataSciencePrivateEndpoint.java index 1c5718d4360..0b53817c6b1 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataSciencePrivateEndpoint.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataSciencePrivateEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataSciencePrivateEndpointLifecycleState.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataSciencePrivateEndpointLifecycleState.java index 3cec9b743bb..e6fe0b771eb 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataSciencePrivateEndpointLifecycleState.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataSciencePrivateEndpointLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataSciencePrivateEndpointSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataSciencePrivateEndpointSummary.java index 01f20f54bd2..f9135c0f9cb 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataSciencePrivateEndpointSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataSciencePrivateEndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataScienceResourceType.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataScienceResourceType.java index fe8e8f40645..b031e0b0471 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataScienceResourceType.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataScienceResourceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataScienceScheduleInstanceComponent.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataScienceScheduleInstanceComponent.java index ca2d716de03..52d1c9bab89 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataScienceScheduleInstanceComponent.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DataScienceScheduleInstanceComponent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DefaultJobConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DefaultJobConfigurationDetails.java index 7ae1dd1eb40..6606e37cc16 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DefaultJobConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DefaultJobConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DefaultModelDeploymentEnvironmentConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DefaultModelDeploymentEnvironmentConfigurationDetails.java index e80ba0b33f5..b07ce6d6fa3 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DefaultModelDeploymentEnvironmentConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DefaultModelDeploymentEnvironmentConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DisableMlApplicationInstanceViewTriggerDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DisableMlApplicationInstanceViewTriggerDetails.java index bc9d36df0d5..f6f86ec07b6 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DisableMlApplicationInstanceViewTriggerDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/DisableMlApplicationInstanceViewTriggerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/EmptyJobConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/EmptyJobConfigurationDetails.java index ea735e9ed10..15b6543501f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/EmptyJobConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/EmptyJobConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/EmptyJobInfrastructureConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/EmptyJobInfrastructureConfigurationDetails.java index 3c58722dd9a..27bf9803a6c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/EmptyJobInfrastructureConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/EmptyJobInfrastructureConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/EnableMlApplicationInstanceViewTriggerDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/EnableMlApplicationInstanceViewTriggerDetails.java index 8a20894ff01..3a2f65b018b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/EnableMlApplicationInstanceViewTriggerDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/EnableMlApplicationInstanceViewTriggerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ExportModelArtifactDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ExportModelArtifactDetails.java index 9c69bb129ec..4ace23f2dfb 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ExportModelArtifactDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ExportModelArtifactDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/FastLaunchJobConfigSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/FastLaunchJobConfigSummary.java index a2213bb340f..293ad24a94e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/FastLaunchJobConfigSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/FastLaunchJobConfigSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/FileStorageMountConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/FileStorageMountConfigurationDetails.java index aedb05e0626..c45a9d0e5bf 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/FileStorageMountConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/FileStorageMountConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/FixedSizeScalingPolicy.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/FixedSizeScalingPolicy.java index 725578708bb..bf312e10112 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/FixedSizeScalingPolicy.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/FixedSizeScalingPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/GenericJobRunUseCaseConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/GenericJobRunUseCaseConfigurationDetails.java index d45e984d7c8..261113af792 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/GenericJobRunUseCaseConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/GenericJobRunUseCaseConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/GenericOciResourceApplicationComponent.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/GenericOciResourceApplicationComponent.java index 4c3cede9ce5..f9ba1ff8d24 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/GenericOciResourceApplicationComponent.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/GenericOciResourceApplicationComponent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/GenericOciResourceInstanceComponent.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/GenericOciResourceInstanceComponent.java index 8d27e4cdbca..c39103e5277 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/GenericOciResourceInstanceComponent.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/GenericOciResourceInstanceComponent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/HeterogeneousModelGroupDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/HeterogeneousModelGroupDetails.java index 5d1830d94af..51f6633d859 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/HeterogeneousModelGroupDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/HeterogeneousModelGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/HomogeneousModelGroupDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/HomogeneousModelGroupDetails.java index 5bb24b73caf..d302744ef41 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/HomogeneousModelGroupDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/HomogeneousModelGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/IamAuthConfiguration.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/IamAuthConfiguration.java index 64d346fdad7..ae31810a1fb 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/IamAuthConfiguration.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/IamAuthConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/IdcsAuthConfiguration.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/IdcsAuthConfiguration.java index e207099f31f..7859f7b1541 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/IdcsAuthConfiguration.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/IdcsAuthConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/IdcsCustomServiceAuthConfiguration.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/IdcsCustomServiceAuthConfiguration.java index ee4f3d7b53b..566882755a7 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/IdcsCustomServiceAuthConfiguration.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/IdcsCustomServiceAuthConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ImplementationLogDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ImplementationLogDetails.java index 48faba49831..8034f281d08 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ImplementationLogDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ImplementationLogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ImplementationLogging.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ImplementationLogging.java index 3f73adb6afa..075ad172569 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ImplementationLogging.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ImplementationLogging.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ImportModelArtifactDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ImportModelArtifactDetails.java index 879fb18ab20..731b4754284 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ImportModelArtifactDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ImportModelArtifactDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InfrastructureConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InfrastructureConfigurationDetails.java index 18ecddfba23..a0464b297c4 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InfrastructureConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InfrastructureConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InfrastructureType.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InfrastructureType.java index 88c983f1843..121fbc2fd35 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InfrastructureType.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InfrastructureType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InstanceComponent.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InstanceComponent.java index bd46fcbf178..8f16baaf51c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InstanceComponent.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InstanceComponent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InstanceConfiguration.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InstanceConfiguration.java index 1b1a47c2c44..8266b863889 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InstanceConfiguration.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InstanceConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InstancePoolInfrastructureConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InstancePoolInfrastructureConfigurationDetails.java index b94967c05c7..aa53e07f828 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InstancePoolInfrastructureConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InstancePoolInfrastructureConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InstancePoolModelDeploymentSystemData.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InstancePoolModelDeploymentSystemData.java index 2d34a679661..c2c644e1568 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InstancePoolModelDeploymentSystemData.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InstancePoolModelDeploymentSystemData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InvokeMlApplicationProviderTriggerScheduleActionDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InvokeMlApplicationProviderTriggerScheduleActionDetails.java index dd49727796e..8672fed6aac 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InvokeMlApplicationProviderTriggerScheduleActionDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/InvokeMlApplicationProviderTriggerScheduleActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Job.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Job.java index 26cbf216103..a8e335f71dd 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Job.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Job.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobConfigurationDetails.java index 8217c6cd7c1..6dab34ebec5 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobCustomNetworkConfiguration.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobCustomNetworkConfiguration.java index 127dde7433c..97c79bf982a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobCustomNetworkConfiguration.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobCustomNetworkConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobDefaultNetworkConfiguration.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobDefaultNetworkConfiguration.java index 9a028d7c8a0..3da2d86696c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobDefaultNetworkConfiguration.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobDefaultNetworkConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobEnvironmentConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobEnvironmentConfigurationDetails.java index de7c4114e83..e1fba8fb1df 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobEnvironmentConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobEnvironmentConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobExecProbeDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobExecProbeDetails.java index 57353a93b56..a0e38aa8179 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobExecProbeDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobExecProbeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobInfrastructureConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobInfrastructureConfigurationDetails.java index 84e35328e08..5e8925580ee 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobInfrastructureConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobInfrastructureConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobLifecycleState.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobLifecycleState.java index 6d06d457d25..e985ec0b6c9 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobLifecycleState.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobLogConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobLogConfigurationDetails.java index 8005336ff6c..d3f672cfb1e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobLogConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobLogConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobNetworkConfiguration.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobNetworkConfiguration.java index 644ef55d599..68f40f6cede 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobNetworkConfiguration.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobNetworkConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobNodeConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobNodeConfigurationDetails.java index 7adc5e09bef..69a3d06c285 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobNodeConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobNodeConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobNodeGroupConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobNodeGroupConfigurationDetails.java index 8ddab2880c0..2fde29ce748 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobNodeGroupConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobNodeGroupConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobProbeDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobProbeDetails.java index 39b96a3cb8a..39b640fd43d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobProbeDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobProbeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRun.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRun.java index 115e5f16992..5115aa39504 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRun.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRun.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRunLifecycleState.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRunLifecycleState.java index f039e7e9a68..71939b6a31b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRunLifecycleState.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRunLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRunLogDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRunLogDetails.java index 720fb537514..c89c98f954b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRunLogDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRunLogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRunSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRunSummary.java index 5ae27e43d58..a3eab53ba1b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRunSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRunSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRunUseCaseConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRunUseCaseConfigurationDetails.java index bbdb02e176f..3e316068d0e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRunUseCaseConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRunUseCaseConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRunWorkloadConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRunWorkloadConfigurationDetails.java index 27f71f1f156..65ecdec4998 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRunWorkloadConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobRunWorkloadConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobShapeConfigDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobShapeConfigDetails.java index ec1b73b09aa..09976f48d9b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobShapeConfigDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobShapeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobShapeSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobShapeSummary.java index 03bdcbfd5c5..8533e789c87 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobShapeSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobShapeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobSummary.java index b9bb896c09e..2cfa1460a24 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/JobSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/LogDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/LogDetails.java index 627b003ad9d..7e239706506 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/LogDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/LogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ManagedEgressStandaloneJobInfrastructureConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ManagedEgressStandaloneJobInfrastructureConfigurationDetails.java index c14fd5ec997..1895f3d2018 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ManagedEgressStandaloneJobInfrastructureConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ManagedEgressStandaloneJobInfrastructureConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MemberModelDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MemberModelDetails.java index 243e332a7df..6528d1205ac 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MemberModelDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MemberModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MemberModelEntries.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MemberModelEntries.java index 4a96eeb81bd..db6c7468426 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MemberModelEntries.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MemberModelEntries.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Metadata.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Metadata.java index 412afb55b33..abd25ebe204 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Metadata.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Metadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MetricExpressionRule.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MetricExpressionRule.java index ced668696be..e86237f2236 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MetricExpressionRule.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MetricExpressionRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplication.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplication.java index a65e2e32947..b5ed80e54fc 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplication.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplication.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationCollection.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationCollection.java index 7b41b253ab3..3a73c986fe9 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationCollection.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementation.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementation.java index 509888fdea7..32b8603691f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementation.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementationCollection.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementationCollection.java index 694e6f06157..98466291858 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementationCollection.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementationSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementationSummary.java index 18ab272cb4b..0d4b8387604 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementationSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementationVersion.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementationVersion.java index 8918cd6b811..85d7bf2d2b7 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementationVersion.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementationVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementationVersionCollection.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementationVersionCollection.java index 487683a9ed4..c37c742b8d9 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementationVersionCollection.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementationVersionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementationVersionSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementationVersionSummary.java index 3483f4c4021..56f4c0d0160 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementationVersionSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationImplementationVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstance.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstance.java index c28e759f5cb..226e82f8146 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstance.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceCollection.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceCollection.java index 941f0d2f391..9f9b7c2091c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceCollection.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceInternalTrigger.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceInternalTrigger.java index 15b04808fa9..19a4d0dfa7d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceInternalTrigger.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceInternalTrigger.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceSummary.java index 83339ecf3f7..eb798d7d1fe 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceView.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceView.java index cd68bf4da9f..953f66a3889 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceView.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceView.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceViewCollection.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceViewCollection.java index ef83e8c5489..0b6c32b9653 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceViewCollection.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceViewCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceViewSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceViewSummary.java index 0e3318054e5..50eff7e292f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceViewSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationInstanceViewSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationPackageArgumentDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationPackageArgumentDetails.java index 3440c9b6cb9..6a7016a2a5b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationPackageArgumentDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationPackageArgumentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationPackageArguments.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationPackageArguments.java index a9e1e3d6e5a..5c3dfd81535 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationPackageArguments.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationPackageArguments.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationSummary.java index 94fe17ff2a3..b92b9f47e20 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MlApplicationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Model.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Model.java index b8e57b8f2aa..ca7e303293f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Model.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Model.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelArtifactReferenceDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelArtifactReferenceDetails.java index 44dacefb5aa..de917dbf3b6 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelArtifactReferenceDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelArtifactReferenceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelCategory.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelCategory.java index 9307164567a..71d02aff87e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelCategory.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelCategory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelConfigurationDetails.java index 0a5233072b1..518f4d17402 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeployWorkloadConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeployWorkloadConfigurationDetails.java index b81c8d48f3d..17436883d03 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeployWorkloadConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeployWorkloadConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeployment.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeployment.java index b1b91fe1f98..264d7d259eb 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeployment.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeployment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentConfigurationDetails.java index 68eaef6e7cb..0e270c6a8bb 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentEnvironmentConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentEnvironmentConfigurationDetails.java index 4df9dbc893f..5b6d655fa4a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentEnvironmentConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentEnvironmentConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentEnvironmentConfigurationType.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentEnvironmentConfigurationType.java index 62c4a096f58..3391b938de7 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentEnvironmentConfigurationType.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentEnvironmentConfigurationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentInstanceShapeConfigDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentInstanceShapeConfigDetails.java index 8d397057595..2930a223d2a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentInstanceShapeConfigDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentInstanceShapeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentLifecycleState.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentLifecycleState.java index f7b22f1d339..cd5d3a6d1b2 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentLifecycleState.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentModelStateSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentModelStateSummary.java index ba72ecb5321..ddecc645db7 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentModelStateSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentModelStateSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentModelType.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentModelType.java index 19e0037676e..a5011a7faa6 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentModelType.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentModelType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentShapeSeries.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentShapeSeries.java index 8803dfd9c8d..301806f35da 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentShapeSeries.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentShapeSeries.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentShapeSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentShapeSummary.java index 426b63d98ea..9b488fd4f61 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentShapeSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentShapeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentSummary.java index 591959051b8..117d8465f56 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentSystemData.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentSystemData.java index dd9b690de71..1040e913c5c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentSystemData.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentSystemData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentType.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentType.java index 2fd9e747c7d..0e65a34113e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentType.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelDeploymentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroup.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroup.java index 318fd2be4b0..f02f68f2bf4 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroup.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupCloneSourceDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupCloneSourceDetails.java index 0ee199bf255..de8cbaf0b85 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupCloneSourceDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupCloneSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupConfigurationDetails.java index 674df364bd8..27bccfe002d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupCreateType.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupCreateType.java index 9d883684430..4e5043ad924 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupCreateType.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupCreateType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupDeploymentConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupDeploymentConfigurationDetails.java index 8f9c878d76b..5380202b11d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupDeploymentConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupDeploymentConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupDetails.java index 0a0459c62e9..41d4abb89ad 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupLifecycleState.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupLifecycleState.java index 0f4491a6348..105d2c0e857 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupLifecycleState.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupModelSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupModelSummary.java index cf7c16a75d2..0b87e349e8b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupModelSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupModelSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupSummary.java index 5464a3bfe40..bb268fa4392 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupType.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupType.java index 039f8bb02bc..e12c77ee43e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupType.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupVersionHistory.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupVersionHistory.java index d1a83bac462..9a71618dabb 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupVersionHistory.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupVersionHistory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupVersionHistoryLifecycleState.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupVersionHistoryLifecycleState.java index a2a197fc107..71f70bc38d3 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupVersionHistoryLifecycleState.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupVersionHistoryLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupVersionHistorySummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupVersionHistorySummary.java index f8cc9922d5a..e212e4f58d9 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupVersionHistorySummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelGroupVersionHistorySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelLifecycleState.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelLifecycleState.java index 324b82b6811..fcc8d1aa95e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelLifecycleState.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelProvenance.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelProvenance.java index 140234e36f6..c7b114496b5 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelProvenance.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelProvenance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelSettingActionState.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelSettingActionState.java index 60c2c4cba4b..60178581909 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelSettingActionState.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelSettingActionState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelSettingCustomerNotificationType.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelSettingCustomerNotificationType.java index 0192a7b6d7b..99afba7a494 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelSettingCustomerNotificationType.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelSettingCustomerNotificationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelSummary.java index 80f312ed26f..741c42dd8ec 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelVersionSet.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelVersionSet.java index c36a3d98c43..d6b9c92877e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelVersionSet.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelVersionSet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelVersionSetCategory.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelVersionSetCategory.java index 6b1881d9bce..d8aacc841ad 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelVersionSetCategory.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelVersionSetCategory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelVersionSetLifecycleState.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelVersionSetLifecycleState.java index d18142b5880..d8763808232 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelVersionSetLifecycleState.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelVersionSetLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelVersionSetSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelVersionSetSummary.java index 357729572ca..ff31d34e9fc 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelVersionSetSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModelVersionSetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModifyModelGroupDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModifyModelGroupDetails.java index 84fdb2562e6..45179f6f11a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModifyModelGroupDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ModifyModelGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MultiNodeJobInfrastructureConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MultiNodeJobInfrastructureConfigurationDetails.java index 8ef5a03f262..12f80f0bc82 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MultiNodeJobInfrastructureConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MultiNodeJobInfrastructureConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MultiNodeJobNodeConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MultiNodeJobNodeConfigurationDetails.java index 52f4c1dd121..bd18e746b1d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MultiNodeJobNodeConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/MultiNodeJobNodeConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NodeGroupDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NodeGroupDetails.java index 3a718940cf6..79136428dfa 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NodeGroupDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NodeGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NodeGroupLifecycleState.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NodeGroupLifecycleState.java index daad0731125..8f440976eff 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NodeGroupLifecycleState.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NodeGroupLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSession.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSession.java index f7d0e219305..55b6813a455 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSession.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSession.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionConfigDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionConfigDetails.java index 8397ba0fdf9..e1135059b03 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionConfigDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionConfigurationDetails.java index 8d39e968a0d..0b7db797561 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionGitConfigDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionGitConfigDetails.java index eff6af1a92d..ea9e5052ec6 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionGitConfigDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionGitConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionGitRepoConfigDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionGitRepoConfigDetails.java index 14446f61539..2ff5d7ec9a8 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionGitRepoConfigDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionGitRepoConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionLifecycleState.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionLifecycleState.java index 6664a29174d..97082a8f409 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionLifecycleState.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionRuntimeConfigDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionRuntimeConfigDetails.java index 74f6f049c0a..a1ffc092939 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionRuntimeConfigDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionRuntimeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionShapeConfigDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionShapeConfigDetails.java index 6af32a1c7af..01f7c662fbd 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionShapeConfigDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionShapeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionShapeSeries.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionShapeSeries.java index b017c2897be..ef8998f42e5 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionShapeSeries.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionShapeSeries.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionShapeSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionShapeSummary.java index 000be23b946..cd5e9ebae93 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionShapeSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionShapeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionSummary.java index 46258419ce1..6c5c69480d2 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/NotebookSessionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/OSSModelArtifactReferenceDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/OSSModelArtifactReferenceDetails.java index f1bbd9fb1e0..4a27fd0a987 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/OSSModelArtifactReferenceDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/OSSModelArtifactReferenceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ObjectStorageBucketInstanceComponent.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ObjectStorageBucketInstanceComponent.java index 02cb92e7df4..0fb22086cda 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ObjectStorageBucketInstanceComponent.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ObjectStorageBucketInstanceComponent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ObjectStorageMountConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ObjectStorageMountConfigurationDetails.java index ae99b117bf2..2782acf1515 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ObjectStorageMountConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ObjectStorageMountConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ObjectStorageObjectInstanceComponent.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ObjectStorageObjectInstanceComponent.java index 8c4a2506ac6..5d02b5a0668 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ObjectStorageObjectInstanceComponent.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ObjectStorageObjectInstanceComponent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/OcirContainerJobEnvironmentConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/OcirContainerJobEnvironmentConfigurationDetails.java index 221f5577158..a72498606be 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/OcirContainerJobEnvironmentConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/OcirContainerJobEnvironmentConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/OcirModelDeploymentEnvironmentConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/OcirModelDeploymentEnvironmentConfigurationDetails.java index 94fa2da38e3..21aaf38ad8c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/OcirModelDeploymentEnvironmentConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/OcirModelDeploymentEnvironmentConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PatchInsertNewMemberModels.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PatchInsertNewMemberModels.java index 578d236c36d..f5a45f9a1f1 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PatchInsertNewMemberModels.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PatchInsertNewMemberModels.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PatchInstruction.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PatchInstruction.java index a21df125799..492ac2e8ea3 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PatchInstruction.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PatchInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PatchInstructionType.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PatchInstructionType.java index e537244833b..3e48dcd16e8 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PatchInstructionType.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PatchInstructionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PatchModelGroupMemberModelDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PatchModelGroupMemberModelDetails.java index 887b76d057b..7c5723bc64d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PatchModelGroupMemberModelDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PatchModelGroupMemberModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PatchRemoveMemberModels.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PatchRemoveMemberModels.java index ef4efcac7f0..4ab91c7b01e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PatchRemoveMemberModels.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PatchRemoveMemberModels.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Pipeline.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Pipeline.java index bc6691cdb5d..967cd5c6e6e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Pipeline.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Pipeline.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineConfigurationDetails.java index 96e17a16b5a..596cb290c21 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineContainerConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineContainerConfigurationDetails.java index a0d3ad16ae6..76418dfa072 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineContainerConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineContainerConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineContainerStepDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineContainerStepDetails.java index e8783691963..4e6f1f818c6 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineContainerStepDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineContainerStepDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineContainerStepRun.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineContainerStepRun.java index 4bbad6ff606..414af891520 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineContainerStepRun.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineContainerStepRun.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineContainerStepUpdateDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineContainerStepUpdateDetails.java index a713de4d3d9..382e07a1467 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineContainerStepUpdateDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineContainerStepUpdateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineCustomScriptStepDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineCustomScriptStepDetails.java index b69e4bb8ef9..b2e66fba29a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineCustomScriptStepDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineCustomScriptStepDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineCustomScriptStepRun.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineCustomScriptStepRun.java index 9fb409e67c1..387d2fe78a0 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineCustomScriptStepRun.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineCustomScriptStepRun.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineCustomScriptStepUpdateDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineCustomScriptStepUpdateDetails.java index 616fe225ca2..ea101c2c66a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineCustomScriptStepUpdateDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineCustomScriptStepUpdateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDataflowConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDataflowConfigurationDetails.java index d6023935da3..6956584b306 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDataflowConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDataflowConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDataflowStepDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDataflowStepDetails.java index 3cf2749f9cb..69eb0385ab7 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDataflowStepDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDataflowStepDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDataflowStepRun.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDataflowStepRun.java index af9decf6d18..8635240c12a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDataflowStepRun.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDataflowStepRun.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDataflowStepUpdateDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDataflowStepUpdateDetails.java index 16e0bd0b884..cc38e147ffe 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDataflowStepUpdateDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDataflowStepUpdateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDefaultConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDefaultConfigurationDetails.java index 1f3af7cd1eb..7d0df61fa4a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDefaultConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDefaultConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDefaultStepParameterDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDefaultStepParameterDetails.java index 1cedd8a4c96..8d211751d65 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDefaultStepParameterDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineDefaultStepParameterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineInfrastructureConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineInfrastructureConfigurationDetails.java index 11c7dd93307..9de23194d96 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineInfrastructureConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineInfrastructureConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineJsonStepOutputParameterDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineJsonStepOutputParameterDetails.java index 7e1138a57e4..a407761d233 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineJsonStepOutputParameterDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineJsonStepOutputParameterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineLifecycleState.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineLifecycleState.java index ab31b50b879..11d19cbd203 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineLifecycleState.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineLogConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineLogConfigurationDetails.java index d3e592b3e00..eb65c5fcfa3 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineLogConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineLogConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineMLJobStepDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineMLJobStepDetails.java index 208e5c2c12b..244d9d5d9b2 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineMLJobStepDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineMLJobStepDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineMLJobStepRun.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineMLJobStepRun.java index ec4b5298483..be7266acdca 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineMLJobStepRun.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineMLJobStepRun.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineMLJobStepUpdateDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineMLJobStepUpdateDetails.java index d50083e91d9..3c3b8cf8adc 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineMLJobStepUpdateDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineMLJobStepUpdateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineOcirContainerConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineOcirContainerConfigurationDetails.java index 4144039855e..c4c47738fcd 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineOcirContainerConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineOcirContainerConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineRun.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineRun.java index e5fcdc91b91..cd41cd6dd07 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineRun.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineRun.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineRunLifecycleState.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineRunLifecycleState.java index 163be16df8f..110c6139f9a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineRunLifecycleState.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineRunLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineRunLogDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineRunLogDetails.java index 529a2ff7886..ef0cba3fb77 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineRunLogDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineRunLogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineRunSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineRunSummary.java index 32d4d0e9642..6ceb31a66d9 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineRunSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineRunSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineShapeConfigDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineShapeConfigDetails.java index bd32ccb2016..5a93ed0bb73 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineShapeConfigDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineShapeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepConfigurationDetails.java index 6e388f9be5b..e857fa9d9af 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepDetails.java index 8efe26c9b22..962c0b86c35 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepOutputParameterDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepOutputParameterDetails.java index 6a74072464b..6ed87e6b18b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepOutputParameterDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepOutputParameterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepOverrideDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepOverrideDetails.java index 51ff3b6b978..65bda607fd9 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepOverrideDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepOverrideDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepParameterDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepParameterDetails.java index 1608b3162e0..d6762e75c9d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepParameterDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepParameterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepRun.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepRun.java index 55564402e4e..4d968785e59 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepRun.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepRun.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepUpdateDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepUpdateDetails.java index 0612a4e76af..8d363912909 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepUpdateDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineStepUpdateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineSummary.java index 2b864f38034..58a889befe1 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PipelineSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PredefinedExpressionThresholdScalingConfiguration.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PredefinedExpressionThresholdScalingConfiguration.java index f1bed91e64f..95bfe487732 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PredefinedExpressionThresholdScalingConfiguration.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PredefinedExpressionThresholdScalingConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PredefinedMetricExpressionRule.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PredefinedMetricExpressionRule.java index 9ff3378ddb1..15d5baf659e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PredefinedMetricExpressionRule.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PredefinedMetricExpressionRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PredictionEndpointDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PredictionEndpointDetails.java index dba0eeae6a1..55f1b621fb1 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PredictionEndpointDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PredictionEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PredictionUri.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PredictionUri.java index 37ad545fd1c..b7de704908a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PredictionUri.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/PredictionUri.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Project.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Project.java index 934084b10a4..8798458b4e5 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Project.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Project.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ProjectLifecycleState.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ProjectLifecycleState.java index 8e58ba1a5a9..85ae78358d9 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ProjectLifecycleState.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ProjectLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ProjectSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ProjectSummary.java index 2b0fc3a8df6..a9baf816f0c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ProjectSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ProjectSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/RegisterModelArtifactReferenceDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/RegisterModelArtifactReferenceDetails.java index c81519cf862..38e58d9203d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/RegisterModelArtifactReferenceDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/RegisterModelArtifactReferenceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/RetentionOperationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/RetentionOperationDetails.java index 17f861cc60e..adb1133258c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/RetentionOperationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/RetentionOperationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/RetentionSetting.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/RetentionSetting.java index 117e367d9c7..dea3d974a09 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/RetentionSetting.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/RetentionSetting.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScalingConfiguration.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScalingConfiguration.java index c1451b079a4..83e7f96c289 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScalingConfiguration.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScalingConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScalingPolicy.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScalingPolicy.java index 52a56acdb43..d5f92662ea2 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScalingPolicy.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScalingPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Schedule.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Schedule.java index 67311aab3e8..c5a335723ad 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Schedule.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/Schedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleAction.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleAction.java index 3fd9800a7b4..e91aecd5ff7 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleAction.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleCronTrigger.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleCronTrigger.java index 590d4daefdf..dbbac48c591 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleCronTrigger.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleCronTrigger.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleHttpAction.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleHttpAction.java index 5e624fabfb3..438788456a9 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleHttpAction.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleHttpAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleHttpActionDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleHttpActionDetails.java index 878a51bbb6e..24d0d1e402c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleHttpActionDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleHttpActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleICalTrigger.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleICalTrigger.java index 31610d720d6..86f5a406ba5 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleICalTrigger.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleICalTrigger.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleIntervalTrigger.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleIntervalTrigger.java index 4066af9a8ae..18a9b8f1b82 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleIntervalTrigger.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleIntervalTrigger.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleLifecycleState.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleLifecycleState.java index a8f90a20672..e6469840c32 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleLifecycleState.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleLogDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleLogDetails.java index 1acbdffdc42..96bbf3b90d7 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleLogDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleLogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleSummary.java index 6db84a66f97..728bbd359f0 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleTrigger.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleTrigger.java index 2cf8f964a54..4ceedc7a77e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleTrigger.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ScheduleTrigger.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/SingleModelDeploymentConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/SingleModelDeploymentConfigurationDetails.java index 66db00bb95c..eb79551a83e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/SingleModelDeploymentConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/SingleModelDeploymentConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/StackedModelGroupDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/StackedModelGroupDetails.java index 43988ba9c8a..b612754a640 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/StackedModelGroupDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/StackedModelGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/StandaloneJobInfrastructureConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/StandaloneJobInfrastructureConfigurationDetails.java index 52760ed82d9..f9cea833988 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/StandaloneJobInfrastructureConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/StandaloneJobInfrastructureConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/StorageMountConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/StorageMountConfigurationDetails.java index a17b9d2fbcc..9923282d4b4 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/StorageMountConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/StorageMountConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/TagConfiguration.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/TagConfiguration.java index 56df04f1cb0..fd66a30382f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/TagConfiguration.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/TagConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ThresholdBasedAutoScalingPolicyDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ThresholdBasedAutoScalingPolicyDetails.java index c7b689c36b7..59b8ec76bb6 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ThresholdBasedAutoScalingPolicyDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/ThresholdBasedAutoScalingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/TriggerMlApplicationInstanceFlowDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/TriggerMlApplicationInstanceFlowDetails.java index 1d89b4624be..dada83e95af 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/TriggerMlApplicationInstanceFlowDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/TriggerMlApplicationInstanceFlowDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/TriggerMlApplicationInstanceViewFlowDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/TriggerMlApplicationInstanceViewFlowDetails.java index bdf3bbf15ac..21d416c4456 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/TriggerMlApplicationInstanceViewFlowDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/TriggerMlApplicationInstanceViewFlowDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/TriggerParameter.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/TriggerParameter.java index ff80e004634..880e6d7970a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/TriggerParameter.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/TriggerParameter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateCategoryLogDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateCategoryLogDetails.java index 39ffbd5ba5a..1576e59e7e1 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateCategoryLogDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateCategoryLogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateDataSciencePrivateEndpointDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateDataSciencePrivateEndpointDetails.java index f0a204d853e..96e9a3a0e42 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateDataSciencePrivateEndpointDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateDataSciencePrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateDefaultModelDeploymentEnvironmentConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateDefaultModelDeploymentEnvironmentConfigurationDetails.java index 97de547960e..37e5007d167 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateDefaultModelDeploymentEnvironmentConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateDefaultModelDeploymentEnvironmentConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateInfrastructureConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateInfrastructureConfigurationDetails.java index 8bf423d5e78..6d5a62d2251 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateInfrastructureConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateInfrastructureConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateInstancePoolInfrastructureConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateInstancePoolInfrastructureConfigurationDetails.java index 953ffbd3b2b..587c34c13a0 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateInstancePoolInfrastructureConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateInstancePoolInfrastructureConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateJobDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateJobDetails.java index 15dd4e30e2c..4126bab0702 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateJobDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateJobRunDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateJobRunDetails.java index 75f70f4c179..d40e6ac8304 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateJobRunDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateJobRunDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateMlApplicationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateMlApplicationDetails.java index c3e19c87aef..0f6fab38dda 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateMlApplicationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateMlApplicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateMlApplicationImplementationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateMlApplicationImplementationDetails.java index 72410fb6603..06fa97b86c1 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateMlApplicationImplementationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateMlApplicationImplementationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateMlApplicationImplementationVersionDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateMlApplicationImplementationVersionDetails.java index 675738c15ee..15027574587 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateMlApplicationImplementationVersionDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateMlApplicationImplementationVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateMlApplicationInstanceDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateMlApplicationInstanceDetails.java index fd1c80ff164..53aab029959 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateMlApplicationInstanceDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateMlApplicationInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateMlApplicationInstanceViewDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateMlApplicationInstanceViewDetails.java index 1181bb9a888..9f4d8191ecd 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateMlApplicationInstanceViewDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateMlApplicationInstanceViewDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelConfigurationDetails.java index a9a047b85e4..5dc707c56a0 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelDeploymentConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelDeploymentConfigurationDetails.java index 6363a6ca3e5..c41ff977a82 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelDeploymentConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelDeploymentConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelDeploymentDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelDeploymentDetails.java index d3c9c8b99df..70bea3d3e10 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelDeploymentDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelDeploymentEnvironmentConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelDeploymentEnvironmentConfigurationDetails.java index 639c12b2c21..8a51ee333d1 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelDeploymentEnvironmentConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelDeploymentEnvironmentConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelDetails.java index 9ad25cdba09..16d383c0207 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelGroupConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelGroupConfigurationDetails.java index e9abf98953a..2dd4e627e3e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelGroupConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelGroupConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelGroupDeploymentConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelGroupDeploymentConfigurationDetails.java index dd712dadddd..19f171459f4 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelGroupDeploymentConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelGroupDeploymentConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelGroupDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelGroupDetails.java index 0ceea9cff65..d188aee1f4e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelGroupDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelGroupVersionHistoryDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelGroupVersionHistoryDetails.java index 1260e58d7f5..4cf4c7a175f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelGroupVersionHistoryDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelGroupVersionHistoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelProvenanceDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelProvenanceDetails.java index 0f2ddabb8be..44abeeed4e1 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelProvenanceDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelProvenanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelVersionSetDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelVersionSetDetails.java index 75ae33f2d6b..d70b547961b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelVersionSetDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateModelVersionSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateNotebookSessionDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateNotebookSessionDetails.java index ae924b80f6a..f6af237f725 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateNotebookSessionDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateNotebookSessionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateOcirModelDeploymentEnvironmentConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateOcirModelDeploymentEnvironmentConfigurationDetails.java index 4e6e702bcd3..b07febbabbe 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateOcirModelDeploymentEnvironmentConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateOcirModelDeploymentEnvironmentConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdatePipelineDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdatePipelineDetails.java index d904d335623..5fc492f7e3f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdatePipelineDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdatePipelineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdatePipelineRunDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdatePipelineRunDetails.java index 677c56ebe55..0071eb9d28e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdatePipelineRunDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdatePipelineRunDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateProjectDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateProjectDetails.java index 87b2ef14847..a682463408d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateProjectDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateProjectDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateScheduleDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateScheduleDetails.java index fa386cf3adf..77ee1608e78 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateScheduleDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateSingleModelDeploymentConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateSingleModelDeploymentConfigurationDetails.java index 8c5186033ab..b502d047bae 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateSingleModelDeploymentConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/UpdateSingleModelDeploymentConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequest.java index cb5fb7dc146..b05205aa100 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestError.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestError.java index e426127d968..c6963b8994b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestError.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestLogEntry.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestLogEntry.java index aa1dc653ebf..969f2bc3998 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestLogEntry.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestOperationType.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestOperationType.java index 148fa13765c..3006291b23f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestOperationType.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestOperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestResource.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestResource.java index cab1a51d5fa..a5d2fea619e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestResource.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestStatus.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestStatus.java index 9e93d825218..59390dd1394 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestStatus.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestSummary.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestSummary.java index 8c2e5ea77f6..bbfdef35573 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestSummary.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkloadConfigurationDetails.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkloadConfigurationDetails.java index 3b78fb0b5cc..bfca816aec3 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkloadConfigurationDetails.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/model/WorkloadConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.model; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ActivateModelDeploymentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ActivateModelDeploymentRequest.java index e78474e8ec5..f2403a8b46c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ActivateModelDeploymentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ActivateModelDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ActivateModelGroupRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ActivateModelGroupRequest.java index 5870f076271..e0233b383da 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ActivateModelGroupRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ActivateModelGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ActivateModelRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ActivateModelRequest.java index 9786af483ed..5ce465b54ef 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ActivateModelRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ActivateModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ActivateNotebookSessionRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ActivateNotebookSessionRequest.java index af341a97984..d09187fc564 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ActivateNotebookSessionRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ActivateNotebookSessionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ActivateScheduleRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ActivateScheduleRequest.java index 678fa693a11..30cbbf223d2 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ActivateScheduleRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ActivateScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CancelJobRunRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CancelJobRunRequest.java index dad6ed669f7..8ae59f2c4a9 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CancelJobRunRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CancelJobRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CancelPipelineRunRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CancelPipelineRunRequest.java index 32b303dc334..a77452be78a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CancelPipelineRunRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CancelPipelineRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CancelWorkRequestRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CancelWorkRequestRequest.java index 8aaa938ca51..9c8a7d2eeaa 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CancelWorkRequestRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeDataSciencePrivateEndpointCompartmentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeDataSciencePrivateEndpointCompartmentRequest.java index 7361ee669e4..09306a860fc 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeDataSciencePrivateEndpointCompartmentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeDataSciencePrivateEndpointCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeJobCompartmentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeJobCompartmentRequest.java index 4368771c5ba..b0ce10a0ec7 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeJobCompartmentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeJobCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeJobRunCompartmentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeJobRunCompartmentRequest.java index 0f344f6c949..f291bcf3128 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeJobRunCompartmentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeJobRunCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeMlApplicationCompartmentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeMlApplicationCompartmentRequest.java index 819d8c06051..ceadb2dda75 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeMlApplicationCompartmentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeMlApplicationCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeMlApplicationImplementationCompartmentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeMlApplicationImplementationCompartmentRequest.java index 1f5e6bf2891..0207515d37b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeMlApplicationImplementationCompartmentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeMlApplicationImplementationCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeMlApplicationInstanceCompartmentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeMlApplicationInstanceCompartmentRequest.java index 2635da87d47..5c6030d7a6a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeMlApplicationInstanceCompartmentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeMlApplicationInstanceCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeMlApplicationInstanceViewCompartmentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeMlApplicationInstanceViewCompartmentRequest.java index 34685f49ba7..16a6c8a0d41 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeMlApplicationInstanceViewCompartmentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeMlApplicationInstanceViewCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeModelCompartmentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeModelCompartmentRequest.java index ca1f297ed2c..a9f03d86f67 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeModelCompartmentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeModelCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeModelDeploymentCompartmentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeModelDeploymentCompartmentRequest.java index d1916daa7be..8c38e651f8d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeModelDeploymentCompartmentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeModelDeploymentCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeModelGroupCompartmentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeModelGroupCompartmentRequest.java index 7621098cf67..3ae98b338f3 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeModelGroupCompartmentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeModelGroupCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeModelGroupVersionHistoryCompartmentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeModelGroupVersionHistoryCompartmentRequest.java index 92a6bb3cedc..3cd5f98b975 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeModelGroupVersionHistoryCompartmentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeModelGroupVersionHistoryCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeModelVersionSetCompartmentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeModelVersionSetCompartmentRequest.java index 6930802f1b5..fd4d8e0b3f6 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeModelVersionSetCompartmentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeModelVersionSetCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeNotebookSessionCompartmentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeNotebookSessionCompartmentRequest.java index 189acb97d15..2ce90f05c32 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeNotebookSessionCompartmentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeNotebookSessionCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangePipelineCompartmentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangePipelineCompartmentRequest.java index f3a71881629..553d8e41269 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangePipelineCompartmentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangePipelineCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangePipelineRunCompartmentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangePipelineRunCompartmentRequest.java index 9dc71913c02..58e25108846 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangePipelineRunCompartmentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangePipelineRunCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeProjectCompartmentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeProjectCompartmentRequest.java index b054108d8e9..142df30d2bb 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeProjectCompartmentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeProjectCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeScheduleCompartmentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeScheduleCompartmentRequest.java index 21f4e550aac..109cb124a0c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeScheduleCompartmentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ChangeScheduleCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateDataSciencePrivateEndpointRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateDataSciencePrivateEndpointRequest.java index 7c42e31c64e..4b4ca6b970a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateDataSciencePrivateEndpointRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateDataSciencePrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateJobArtifactRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateJobArtifactRequest.java index 0b81cab01f3..b0d8fc568f3 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateJobArtifactRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateJobArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateJobRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateJobRequest.java index a974feb36f1..fe80ac3b1be 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateJobRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateJobRunRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateJobRunRequest.java index a1e6204f039..600175f9c9d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateJobRunRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateJobRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateMlApplicationImplementationRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateMlApplicationImplementationRequest.java index 4661d55f5dc..7fa1c5bf5da 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateMlApplicationImplementationRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateMlApplicationImplementationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateMlApplicationInstanceRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateMlApplicationInstanceRequest.java index c04e04c5338..f536e3fc07c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateMlApplicationInstanceRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateMlApplicationInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateMlApplicationRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateMlApplicationRequest.java index 5c39953ee1b..4177ab6034e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateMlApplicationRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateMlApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelArtifactRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelArtifactRequest.java index b2ffcfa5907..6a7711485f0 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelArtifactRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelCustomMetadatumArtifactRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelCustomMetadatumArtifactRequest.java index 657210bb37c..5e939cbd272 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelCustomMetadatumArtifactRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelCustomMetadatumArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelDefinedMetadatumArtifactRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelDefinedMetadatumArtifactRequest.java index 1050ca8093c..4f4e563044e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelDefinedMetadatumArtifactRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelDefinedMetadatumArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelDeploymentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelDeploymentRequest.java index f6e90cc0ad5..995a3eb50da 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelDeploymentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelGroupArtifactRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelGroupArtifactRequest.java index 88035b9d3e0..fd46fd8a83c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelGroupArtifactRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelGroupArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelGroupRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelGroupRequest.java index 8f8ce67ab17..39b099e1645 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelGroupRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelGroupVersionHistoryRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelGroupVersionHistoryRequest.java index 36572ace456..86bf9724ea4 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelGroupVersionHistoryRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelGroupVersionHistoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelProvenanceRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelProvenanceRequest.java index ae8079a2b36..e0234bdb937 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelProvenanceRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelProvenanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelRequest.java index 0088c93c64d..4d601ebb97f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelVersionSetRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelVersionSetRequest.java index bd27e523d9f..41276f928df 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelVersionSetRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateModelVersionSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateNotebookSessionRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateNotebookSessionRequest.java index c65885d637d..cefc33365c1 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateNotebookSessionRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateNotebookSessionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreatePipelineRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreatePipelineRequest.java index 5281564d551..fc778c49593 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreatePipelineRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreatePipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreatePipelineRunRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreatePipelineRunRequest.java index 285b1630f35..47384c4a09e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreatePipelineRunRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreatePipelineRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateProjectRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateProjectRequest.java index 9cfddfdadfc..0b844d3ec6f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateProjectRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateScheduleRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateScheduleRequest.java index d8bf7544e21..bbca3f60c31 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateScheduleRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateStepArtifactRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateStepArtifactRequest.java index eb37f3a6d14..f16e3fbe9a7 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateStepArtifactRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/CreateStepArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeactivateModelDeploymentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeactivateModelDeploymentRequest.java index 951caf8e185..8fd416dc69a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeactivateModelDeploymentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeactivateModelDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeactivateModelGroupRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeactivateModelGroupRequest.java index 64befef1106..ff7b1fb6eb4 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeactivateModelGroupRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeactivateModelGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeactivateModelRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeactivateModelRequest.java index c37b3cf96f0..1a94b0169f8 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeactivateModelRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeactivateModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeactivateNotebookSessionRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeactivateNotebookSessionRequest.java index 3128ad6ccc0..296f1fee93e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeactivateNotebookSessionRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeactivateNotebookSessionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeactivateScheduleRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeactivateScheduleRequest.java index bc061de88c3..1eb6fe96383 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeactivateScheduleRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeactivateScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteDataSciencePrivateEndpointRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteDataSciencePrivateEndpointRequest.java index f3dd01d1729..e78e829fc58 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteDataSciencePrivateEndpointRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteDataSciencePrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteJobRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteJobRequest.java index 7936aaa51d9..2b0ac249ece 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteJobRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteJobRunRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteJobRunRequest.java index 725027ee98a..f93efd2ef3e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteJobRunRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteJobRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteMlApplicationImplementationRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteMlApplicationImplementationRequest.java index f42151fb337..35cac9735e2 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteMlApplicationImplementationRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteMlApplicationImplementationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteMlApplicationInstanceRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteMlApplicationInstanceRequest.java index 564c04b4c60..a57d3496bf0 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteMlApplicationInstanceRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteMlApplicationInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteMlApplicationRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteMlApplicationRequest.java index 3080a2fd250..e51f9baaccd 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteMlApplicationRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteMlApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelCustomMetadatumArtifactRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelCustomMetadatumArtifactRequest.java index ed26726d7cc..2dd46760872 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelCustomMetadatumArtifactRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelCustomMetadatumArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelDefinedMetadatumArtifactRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelDefinedMetadatumArtifactRequest.java index 216e6f6cc1f..912b3260f98 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelDefinedMetadatumArtifactRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelDefinedMetadatumArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelDeploymentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelDeploymentRequest.java index 3713ea9b38b..43adc6a81b2 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelDeploymentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelGroupRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelGroupRequest.java index 4314d532a3c..bacbbd029ad 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelGroupRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelGroupVersionHistoryRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelGroupVersionHistoryRequest.java index 32334923cd4..aaf95a9edcf 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelGroupVersionHistoryRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelGroupVersionHistoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelRequest.java index c33625e84cd..a40603da3dc 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelVersionSetRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelVersionSetRequest.java index d3c77a5edc0..158d87e23a0 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelVersionSetRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteModelVersionSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteNotebookSessionRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteNotebookSessionRequest.java index 3466c0c90ff..52404fb3f79 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteNotebookSessionRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteNotebookSessionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeletePipelineRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeletePipelineRequest.java index f768f97e29c..6a8ce65a156 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeletePipelineRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeletePipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeletePipelineRunRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeletePipelineRunRequest.java index d19a123bd7d..366976e2c1d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeletePipelineRunRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeletePipelineRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteProjectRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteProjectRequest.java index e05a6af30c7..483ad222a3e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteProjectRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteScheduleRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteScheduleRequest.java index e947740ad81..4e9bbbce2e4 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteScheduleRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DeleteScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DisableMlApplicationInstanceViewTriggerRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DisableMlApplicationInstanceViewTriggerRequest.java index ae1423efb6b..521d6310ae8 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DisableMlApplicationInstanceViewTriggerRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/DisableMlApplicationInstanceViewTriggerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/EnableMlApplicationInstanceViewTriggerRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/EnableMlApplicationInstanceViewTriggerRequest.java index 15506f6f1de..bf5e4b7a893 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/EnableMlApplicationInstanceViewTriggerRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/EnableMlApplicationInstanceViewTriggerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ExportModelArtifactRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ExportModelArtifactRequest.java index d2e8690113a..aa6459559fd 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ExportModelArtifactRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ExportModelArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetDataSciencePrivateEndpointRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetDataSciencePrivateEndpointRequest.java index e1211feb6e6..da382ea7c33 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetDataSciencePrivateEndpointRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetDataSciencePrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetJobArtifactContentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetJobArtifactContentRequest.java index 6c173c009f1..828827c0431 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetJobArtifactContentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetJobArtifactContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetJobRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetJobRequest.java index 84cebfdfc83..acf31ab7627 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetJobRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetJobRunRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetJobRunRequest.java index ddf6b6769fd..7fca7f26e5f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetJobRunRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetJobRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationHistoricalPackageContentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationHistoricalPackageContentRequest.java index 026a8c03789..3d3459e46cd 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationHistoricalPackageContentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationHistoricalPackageContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationImplementationRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationImplementationRequest.java index fd018676083..a10eca754da 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationImplementationRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationImplementationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationImplementationVersionRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationImplementationVersionRequest.java index 7df655fa28a..4febfd8fce2 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationImplementationVersionRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationImplementationVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationInstanceRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationInstanceRequest.java index 8743fb64ef0..4e2913287a5 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationInstanceRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationInstanceViewRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationInstanceViewRequest.java index 15af4dd6cd5..ce79dbb896b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationInstanceViewRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationInstanceViewRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationPackageContentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationPackageContentRequest.java index d4d3b6b074d..cd92f8450ca 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationPackageContentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationPackageContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationRequest.java index fd3f3c857ef..831bd3c44ef 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetMlApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelArtifactContentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelArtifactContentRequest.java index 24170507cbb..5f658f29026 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelArtifactContentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelArtifactContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelCustomMetadatumArtifactContentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelCustomMetadatumArtifactContentRequest.java index f50ed703a05..148cf963507 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelCustomMetadatumArtifactContentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelCustomMetadatumArtifactContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelDefinedMetadatumArtifactContentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelDefinedMetadatumArtifactContentRequest.java index cbcac2cd68b..edc12fa4100 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelDefinedMetadatumArtifactContentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelDefinedMetadatumArtifactContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelDeploymentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelDeploymentRequest.java index e4acff1bd57..f933d50c53f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelDeploymentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelGroupArtifactContentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelGroupArtifactContentRequest.java index dc69ac50790..bc31918c487 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelGroupArtifactContentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelGroupArtifactContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelGroupRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelGroupRequest.java index e57a0ded8ec..01cea83f8a8 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelGroupRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelGroupVersionHistoryRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelGroupVersionHistoryRequest.java index 6247303874d..c241a1d409e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelGroupVersionHistoryRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelGroupVersionHistoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelProvenanceRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelProvenanceRequest.java index 39ae9a6ac38..fcfa1458c0b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelProvenanceRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelProvenanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelRequest.java index e7a96a0f3d2..0fd2b98981a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelVersionSetRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelVersionSetRequest.java index 9bcd32b6bd4..6e6258e8610 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelVersionSetRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetModelVersionSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetNotebookSessionRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetNotebookSessionRequest.java index bbb0c77fc45..779fa54750a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetNotebookSessionRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetNotebookSessionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetPipelineRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetPipelineRequest.java index 2a8e6646707..7dd2b4acf87 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetPipelineRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetPipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetPipelineRunRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetPipelineRunRequest.java index 3e8fcdae55c..1ff17719967 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetPipelineRunRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetPipelineRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetProjectRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetProjectRequest.java index 0ab1e4eb655..f13857217a9 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetProjectRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetScheduleRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetScheduleRequest.java index 276e805218b..b762fc406eb 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetScheduleRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetStepArtifactContentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetStepArtifactContentRequest.java index 8514e9553ae..e46f2df4d8f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetStepArtifactContentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetStepArtifactContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetWorkRequestRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetWorkRequestRequest.java index bcc4b217e29..5687d3cd8c5 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetWorkRequestRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadJobArtifactRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadJobArtifactRequest.java index 8a9214ea513..73aeecaf388 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadJobArtifactRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadJobArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadModelArtifactRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadModelArtifactRequest.java index 0e1751b1ff7..3b9174f1b15 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadModelArtifactRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadModelArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadModelCustomMetadatumArtifactRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadModelCustomMetadatumArtifactRequest.java index 0e5663cd66d..dd8e6a0ca6f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadModelCustomMetadatumArtifactRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadModelCustomMetadatumArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadModelDefinedMetadatumArtifactRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadModelDefinedMetadatumArtifactRequest.java index 69d9442fad1..5bb382ae4f8 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadModelDefinedMetadatumArtifactRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadModelDefinedMetadatumArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadModelGroupArtifactRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadModelGroupArtifactRequest.java index 8ab5d619cc7..771f974898b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadModelGroupArtifactRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadModelGroupArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadStepArtifactRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadStepArtifactRequest.java index 7ffe7b2afab..c8e1834d8d3 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadStepArtifactRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/HeadStepArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ImportModelArtifactRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ImportModelArtifactRequest.java index cff06a74c78..61887da39c5 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ImportModelArtifactRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ImportModelArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListContainersRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListContainersRequest.java index fa090f7c3ca..1f61ad94056 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListContainersRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListContainersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListDataSciencePrivateEndpointsRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListDataSciencePrivateEndpointsRequest.java index 439cb5ffb34..3b41950b1dd 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListDataSciencePrivateEndpointsRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListDataSciencePrivateEndpointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListFastLaunchJobConfigsRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListFastLaunchJobConfigsRequest.java index fe32dec3363..18e1f9898ba 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListFastLaunchJobConfigsRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListFastLaunchJobConfigsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListJobRunsRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListJobRunsRequest.java index 54dc953edfd..3fb34cfa703 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListJobRunsRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListJobRunsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListJobShapesRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListJobShapesRequest.java index 15c9904aca2..ea78a76a2e7 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListJobShapesRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListJobShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListJobsRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListJobsRequest.java index 0a973fda6f5..cf7e0cf2074 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListJobsRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListJobsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListMlApplicationImplementationVersionsRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListMlApplicationImplementationVersionsRequest.java index f1330d49e40..35954523b3b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListMlApplicationImplementationVersionsRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListMlApplicationImplementationVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListMlApplicationImplementationsRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListMlApplicationImplementationsRequest.java index 4e6767ceac7..7844965a038 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListMlApplicationImplementationsRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListMlApplicationImplementationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListMlApplicationInstanceViewsRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListMlApplicationInstanceViewsRequest.java index 94ab49c6bd1..9f8c0fbf999 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListMlApplicationInstanceViewsRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListMlApplicationInstanceViewsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListMlApplicationInstancesRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListMlApplicationInstancesRequest.java index 874e1976918..9117ca47bcb 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListMlApplicationInstancesRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListMlApplicationInstancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListMlApplicationsRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListMlApplicationsRequest.java index c93db09678a..2584eccb36a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListMlApplicationsRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListMlApplicationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelDeploymentModelStatesRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelDeploymentModelStatesRequest.java index ab5af12fd7c..7efff66dd37 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelDeploymentModelStatesRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelDeploymentModelStatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelDeploymentShapesRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelDeploymentShapesRequest.java index dd31f1da48c..bf629dd6cc6 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelDeploymentShapesRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelDeploymentShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelDeploymentsRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelDeploymentsRequest.java index 915907dc863..f1a138c1321 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelDeploymentsRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelDeploymentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelGroupModelsRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelGroupModelsRequest.java index b8b78ade923..41a7135f9a0 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelGroupModelsRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelGroupModelsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelGroupVersionHistoriesRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelGroupVersionHistoriesRequest.java index 5b5107eaf0a..a3a2a178246 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelGroupVersionHistoriesRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelGroupVersionHistoriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelGroupsRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelGroupsRequest.java index a6d93941adc..bee0483a849 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelGroupsRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelVersionSetsRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelVersionSetsRequest.java index fd94937d17e..5266804e19c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelVersionSetsRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelVersionSetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelsRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelsRequest.java index 168e3f18a05..c67843fe58e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelsRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListModelsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListNotebookSessionShapesRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListNotebookSessionShapesRequest.java index cc8ba069c35..209f0fd42e6 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListNotebookSessionShapesRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListNotebookSessionShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListNotebookSessionsRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListNotebookSessionsRequest.java index 529f086bfa5..89a71d13840 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListNotebookSessionsRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListNotebookSessionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListPipelineRunsRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListPipelineRunsRequest.java index 4079ec5d36e..98cf5d5635d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListPipelineRunsRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListPipelineRunsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListPipelinesRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListPipelinesRequest.java index 7d4358405d3..2d3349e9762 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListPipelinesRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListPipelinesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListProjectsRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListProjectsRequest.java index a2ba1ba7f13..5eb0eed8496 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListProjectsRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListProjectsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListSchedulesRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListSchedulesRequest.java index 0851a590029..17b5c24d14c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListSchedulesRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListSchedulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListWorkRequestErrorsRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListWorkRequestErrorsRequest.java index 43176e475ee..97f21f01663 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListWorkRequestLogsRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListWorkRequestLogsRequest.java index e565cceda29..5bceb49038d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListWorkRequestLogsRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListWorkRequestsRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListWorkRequestsRequest.java index 90266ff64a3..671baf0a16b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListWorkRequestsRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/PutMlApplicationPackageRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/PutMlApplicationPackageRequest.java index 9cb823681cc..dc0f6e16fbb 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/PutMlApplicationPackageRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/PutMlApplicationPackageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/RecoverMlApplicationInstanceViewRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/RecoverMlApplicationInstanceViewRequest.java index 6956ab84ed5..e65bc3b9b18 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/RecoverMlApplicationInstanceViewRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/RecoverMlApplicationInstanceViewRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/RegisterModelArtifactReferenceRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/RegisterModelArtifactReferenceRequest.java index 79539852ad3..fd4c88c761a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/RegisterModelArtifactReferenceRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/RegisterModelArtifactReferenceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/RestoreArchivedModelArtifactRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/RestoreArchivedModelArtifactRequest.java index 10901e7bcdb..83ad5519673 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/RestoreArchivedModelArtifactRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/RestoreArchivedModelArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/TriggerMlApplicationInstanceFlowRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/TriggerMlApplicationInstanceFlowRequest.java index 7c7ff243301..51ea674d48a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/TriggerMlApplicationInstanceFlowRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/TriggerMlApplicationInstanceFlowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/TriggerMlApplicationInstanceViewFlowRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/TriggerMlApplicationInstanceViewFlowRequest.java index e8b5f1ee4d5..233e229396b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/TriggerMlApplicationInstanceViewFlowRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/TriggerMlApplicationInstanceViewFlowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateDataSciencePrivateEndpointRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateDataSciencePrivateEndpointRequest.java index 5aac8319c4e..87a24200bf3 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateDataSciencePrivateEndpointRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateDataSciencePrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateJobRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateJobRequest.java index 13ad2609131..ec7e9fca64a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateJobRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateJobRunRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateJobRunRequest.java index e0fbfc321a0..383e3401d04 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateJobRunRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateJobRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateMlApplicationImplementationRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateMlApplicationImplementationRequest.java index 800abdc8b85..b06eb03d35d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateMlApplicationImplementationRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateMlApplicationImplementationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateMlApplicationImplementationVersionRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateMlApplicationImplementationVersionRequest.java index 5b1c22c4799..9bc65ce2e6f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateMlApplicationImplementationVersionRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateMlApplicationImplementationVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateMlApplicationInstanceRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateMlApplicationInstanceRequest.java index c94df67188b..4fa99e77bc9 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateMlApplicationInstanceRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateMlApplicationInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateMlApplicationInstanceViewRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateMlApplicationInstanceViewRequest.java index d86bcfcdaef..c86f5539d03 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateMlApplicationInstanceViewRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateMlApplicationInstanceViewRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateMlApplicationRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateMlApplicationRequest.java index d882107eb12..11c6c1a532c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateMlApplicationRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateMlApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelCustomMetadatumArtifactRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelCustomMetadatumArtifactRequest.java index 0ab2fdf6600..52813be4117 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelCustomMetadatumArtifactRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelCustomMetadatumArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelDefinedMetadatumArtifactRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelDefinedMetadatumArtifactRequest.java index 65450b5af3a..320cad00994 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelDefinedMetadatumArtifactRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelDefinedMetadatumArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelDeploymentRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelDeploymentRequest.java index 892b1bc986b..141a82237ac 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelDeploymentRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelGroupRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelGroupRequest.java index 58f17d1faaf..ab24208973c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelGroupRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelGroupVersionHistoryRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelGroupVersionHistoryRequest.java index a34e1bef35b..ed9b6962e4e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelGroupVersionHistoryRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelGroupVersionHistoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelProvenanceRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelProvenanceRequest.java index d830b355793..f3cc03021f5 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelProvenanceRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelProvenanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelRequest.java index e6f5b78c3af..cfbda51b042 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelVersionSetRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelVersionSetRequest.java index 61bb3488d47..5c9425c4b28 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelVersionSetRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateModelVersionSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateNotebookSessionRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateNotebookSessionRequest.java index 5276da551cf..7a4ef090fd0 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateNotebookSessionRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateNotebookSessionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdatePipelineRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdatePipelineRequest.java index 8848a2d3b7f..fabd08e0b07 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdatePipelineRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdatePipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdatePipelineRunRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdatePipelineRunRequest.java index 042bf1d7f82..c7393282e09 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdatePipelineRunRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdatePipelineRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateProjectRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateProjectRequest.java index 8526bcd63ae..f932db9661c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateProjectRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateScheduleRequest.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateScheduleRequest.java index ec3c8f2c2e7..df8b0a4290f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateScheduleRequest.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/requests/UpdateScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.requests; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ActivateModelDeploymentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ActivateModelDeploymentResponse.java index 7de8a19163b..f2f3340e821 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ActivateModelDeploymentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ActivateModelDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ActivateModelGroupResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ActivateModelGroupResponse.java index 29c554b19b5..ff940a7f218 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ActivateModelGroupResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ActivateModelGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ActivateModelResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ActivateModelResponse.java index bcc7c86e409..98c33d760de 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ActivateModelResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ActivateModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ActivateNotebookSessionResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ActivateNotebookSessionResponse.java index 82a17e9ad5a..37cc9409b77 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ActivateNotebookSessionResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ActivateNotebookSessionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ActivateScheduleResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ActivateScheduleResponse.java index 65472b37624..99ff5ce6c66 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ActivateScheduleResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ActivateScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CancelJobRunResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CancelJobRunResponse.java index de66dcf4a42..bc2695c81a3 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CancelJobRunResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CancelJobRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CancelPipelineRunResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CancelPipelineRunResponse.java index ebc0bb231e0..1ca51f7aa7b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CancelPipelineRunResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CancelPipelineRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CancelWorkRequestResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CancelWorkRequestResponse.java index f76a526f16a..ca30ef7ec25 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CancelWorkRequestResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeDataSciencePrivateEndpointCompartmentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeDataSciencePrivateEndpointCompartmentResponse.java index e7ab26b9917..fb50321393e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeDataSciencePrivateEndpointCompartmentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeDataSciencePrivateEndpointCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeJobCompartmentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeJobCompartmentResponse.java index bd620a317f6..33b3c7f34d6 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeJobCompartmentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeJobCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeJobRunCompartmentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeJobRunCompartmentResponse.java index 94a5564ed33..8e2e67f3cd6 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeJobRunCompartmentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeJobRunCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeMlApplicationCompartmentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeMlApplicationCompartmentResponse.java index 4cfb71d7cd9..3afedaeabd9 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeMlApplicationCompartmentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeMlApplicationCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeMlApplicationImplementationCompartmentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeMlApplicationImplementationCompartmentResponse.java index 6379c334d80..a5f139d0d08 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeMlApplicationImplementationCompartmentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeMlApplicationImplementationCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeMlApplicationInstanceCompartmentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeMlApplicationInstanceCompartmentResponse.java index bfc55d7e6e2..f827d13bad3 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeMlApplicationInstanceCompartmentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeMlApplicationInstanceCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeMlApplicationInstanceViewCompartmentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeMlApplicationInstanceViewCompartmentResponse.java index 9fe6871e190..64cbcf6ad37 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeMlApplicationInstanceViewCompartmentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeMlApplicationInstanceViewCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeModelCompartmentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeModelCompartmentResponse.java index 403441d96e0..4bd29a08259 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeModelCompartmentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeModelCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeModelDeploymentCompartmentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeModelDeploymentCompartmentResponse.java index faff505cf8f..4487c16ccbe 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeModelDeploymentCompartmentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeModelDeploymentCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeModelGroupCompartmentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeModelGroupCompartmentResponse.java index 12c1654cf6b..fc70bba1862 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeModelGroupCompartmentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeModelGroupCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeModelGroupVersionHistoryCompartmentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeModelGroupVersionHistoryCompartmentResponse.java index 453a8634207..209eb0cd408 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeModelGroupVersionHistoryCompartmentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeModelGroupVersionHistoryCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeModelVersionSetCompartmentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeModelVersionSetCompartmentResponse.java index 4d92c6fd50a..604ff6d9c84 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeModelVersionSetCompartmentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeModelVersionSetCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeNotebookSessionCompartmentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeNotebookSessionCompartmentResponse.java index 4756aaef3ce..60d9710b12d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeNotebookSessionCompartmentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeNotebookSessionCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangePipelineCompartmentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangePipelineCompartmentResponse.java index 2899b9842cd..87b47d39b7a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangePipelineCompartmentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangePipelineCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangePipelineRunCompartmentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangePipelineRunCompartmentResponse.java index 74492c7c590..5c9bde66624 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangePipelineRunCompartmentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangePipelineRunCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeProjectCompartmentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeProjectCompartmentResponse.java index b271d56e6ab..c838859aafb 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeProjectCompartmentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeProjectCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeScheduleCompartmentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeScheduleCompartmentResponse.java index d83989a5fba..6f9128a9ddb 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeScheduleCompartmentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ChangeScheduleCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateDataSciencePrivateEndpointResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateDataSciencePrivateEndpointResponse.java index b19158c4de4..9ca650f7354 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateDataSciencePrivateEndpointResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateDataSciencePrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateJobArtifactResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateJobArtifactResponse.java index 22c84c4f1d2..cd7a940eb40 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateJobArtifactResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateJobArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateJobResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateJobResponse.java index 6ab09522bc9..f9887b91a1b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateJobResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateJobRunResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateJobRunResponse.java index 6f247ebec4e..f2ed65b8593 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateJobRunResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateJobRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateMlApplicationImplementationResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateMlApplicationImplementationResponse.java index 0850d859e89..43c6441c906 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateMlApplicationImplementationResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateMlApplicationImplementationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateMlApplicationInstanceResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateMlApplicationInstanceResponse.java index 8373e83e2cc..25d43f4e919 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateMlApplicationInstanceResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateMlApplicationInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateMlApplicationResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateMlApplicationResponse.java index ac8397d6d67..0bd3f8b8d35 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateMlApplicationResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateMlApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelArtifactResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelArtifactResponse.java index 71fbe7d80ae..d0b81c0dd5b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelArtifactResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelCustomMetadatumArtifactResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelCustomMetadatumArtifactResponse.java index 77b0d8cf67a..e96450da23f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelCustomMetadatumArtifactResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelCustomMetadatumArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelDefinedMetadatumArtifactResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelDefinedMetadatumArtifactResponse.java index d4e3829487c..d647dd76135 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelDefinedMetadatumArtifactResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelDefinedMetadatumArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelDeploymentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelDeploymentResponse.java index fd04836bf60..4d70b11c543 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelDeploymentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelGroupArtifactResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelGroupArtifactResponse.java index 7044c22619d..311fbc69357 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelGroupArtifactResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelGroupArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelGroupResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelGroupResponse.java index f4a5be47242..2e68b9e054e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelGroupResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelGroupVersionHistoryResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelGroupVersionHistoryResponse.java index 68c1654c155..e1c11cde26e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelGroupVersionHistoryResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelGroupVersionHistoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelProvenanceResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelProvenanceResponse.java index 8d94cde3303..1b1ee975026 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelProvenanceResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelProvenanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelResponse.java index 843781ea4ce..c466a0bef7a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelVersionSetResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelVersionSetResponse.java index 17a57023e4c..f2dd21b989f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelVersionSetResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateModelVersionSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateNotebookSessionResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateNotebookSessionResponse.java index 8f2d1abd98a..ff95d19dfb8 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateNotebookSessionResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateNotebookSessionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreatePipelineResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreatePipelineResponse.java index 558ea810e16..18377fc2f08 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreatePipelineResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreatePipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreatePipelineRunResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreatePipelineRunResponse.java index f89b76927c3..22c00882f58 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreatePipelineRunResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreatePipelineRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateProjectResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateProjectResponse.java index 2dbc3af7cbc..4677376ea2d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateProjectResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateScheduleResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateScheduleResponse.java index 247764b1f40..fb8a15fb319 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateScheduleResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateStepArtifactResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateStepArtifactResponse.java index 34a235751f5..4dff5c31b3d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateStepArtifactResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/CreateStepArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeactivateModelDeploymentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeactivateModelDeploymentResponse.java index e41119163b9..3dd29f18ab0 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeactivateModelDeploymentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeactivateModelDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeactivateModelGroupResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeactivateModelGroupResponse.java index 3977d627248..ac4c1c08df9 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeactivateModelGroupResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeactivateModelGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeactivateModelResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeactivateModelResponse.java index bbebd4bb402..dc03c7587fe 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeactivateModelResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeactivateModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeactivateNotebookSessionResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeactivateNotebookSessionResponse.java index 171553e9aba..df80f37f7a2 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeactivateNotebookSessionResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeactivateNotebookSessionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeactivateScheduleResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeactivateScheduleResponse.java index 0ec1c5c5856..f721dcedc3b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeactivateScheduleResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeactivateScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteDataSciencePrivateEndpointResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteDataSciencePrivateEndpointResponse.java index c9e1e6ca469..225b24d94cb 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteDataSciencePrivateEndpointResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteDataSciencePrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteJobResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteJobResponse.java index 54bcc43dd61..d7fb9af6b09 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteJobResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteJobRunResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteJobRunResponse.java index b5afbda9809..09e804817cf 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteJobRunResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteJobRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteMlApplicationImplementationResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteMlApplicationImplementationResponse.java index a5a6b6fc404..52578b9223d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteMlApplicationImplementationResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteMlApplicationImplementationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteMlApplicationInstanceResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteMlApplicationInstanceResponse.java index 0fa51952466..235ec921dc3 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteMlApplicationInstanceResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteMlApplicationInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteMlApplicationResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteMlApplicationResponse.java index 9798eb28729..729987e370f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteMlApplicationResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteMlApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelCustomMetadatumArtifactResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelCustomMetadatumArtifactResponse.java index 140354847b5..8bdd993b13c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelCustomMetadatumArtifactResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelCustomMetadatumArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelDefinedMetadatumArtifactResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelDefinedMetadatumArtifactResponse.java index 443afacf779..4a3f522a5a7 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelDefinedMetadatumArtifactResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelDefinedMetadatumArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelDeploymentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelDeploymentResponse.java index 871597d133c..3b748a69c8d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelDeploymentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelGroupResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelGroupResponse.java index 3afc34e50c1..bd0a42d49fd 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelGroupResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelGroupVersionHistoryResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelGroupVersionHistoryResponse.java index d708dbb7c89..3cd614e2d24 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelGroupVersionHistoryResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelGroupVersionHistoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelResponse.java index 10840fdbcbf..4ee97fb8ff2 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelVersionSetResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelVersionSetResponse.java index 6a65dd341e2..6023c07017f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelVersionSetResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteModelVersionSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteNotebookSessionResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteNotebookSessionResponse.java index 260c5f6cd1c..3063238bdab 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteNotebookSessionResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteNotebookSessionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeletePipelineResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeletePipelineResponse.java index f571a165b41..1819eb32dcb 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeletePipelineResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeletePipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeletePipelineRunResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeletePipelineRunResponse.java index 1ff20cfca89..a375b33c2d6 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeletePipelineRunResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeletePipelineRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteProjectResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteProjectResponse.java index d9c2ae79791..65b9f2de3a2 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteProjectResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteScheduleResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteScheduleResponse.java index 3de5f992164..e9b5efc8ac1 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteScheduleResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DeleteScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DisableMlApplicationInstanceViewTriggerResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DisableMlApplicationInstanceViewTriggerResponse.java index 63714e2a418..aaebe46cc51 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DisableMlApplicationInstanceViewTriggerResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/DisableMlApplicationInstanceViewTriggerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/EnableMlApplicationInstanceViewTriggerResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/EnableMlApplicationInstanceViewTriggerResponse.java index 116ac2653cf..ac2e4d184b0 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/EnableMlApplicationInstanceViewTriggerResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/EnableMlApplicationInstanceViewTriggerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ExportModelArtifactResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ExportModelArtifactResponse.java index 269bc5e4687..de47595d9bc 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ExportModelArtifactResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ExportModelArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetDataSciencePrivateEndpointResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetDataSciencePrivateEndpointResponse.java index 641fc1f7e7c..8c3e24a2169 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetDataSciencePrivateEndpointResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetDataSciencePrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetJobArtifactContentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetJobArtifactContentResponse.java index a05da444c9f..251e316db18 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetJobArtifactContentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetJobArtifactContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetJobResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetJobResponse.java index 55ed1ee39a4..e269ef0e90b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetJobResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetJobRunResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetJobRunResponse.java index 1e9d17a07a4..c9f464ba7e9 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetJobRunResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetJobRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationHistoricalPackageContentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationHistoricalPackageContentResponse.java index 9818893051a..a365eeb75e9 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationHistoricalPackageContentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationHistoricalPackageContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationImplementationResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationImplementationResponse.java index 7949a5222a6..6ddbe1b933d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationImplementationResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationImplementationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationImplementationVersionResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationImplementationVersionResponse.java index 4d31944248f..0f37c83f562 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationImplementationVersionResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationImplementationVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationInstanceResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationInstanceResponse.java index 693b53ef4e4..43f5c7270cb 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationInstanceResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationInstanceViewResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationInstanceViewResponse.java index 777ce4a7cca..8a28939c0de 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationInstanceViewResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationInstanceViewResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationPackageContentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationPackageContentResponse.java index 71ef2610f02..697b4d80ad7 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationPackageContentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationPackageContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationResponse.java index 56b1b824b0e..3685d4bfa72 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetMlApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelArtifactContentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelArtifactContentResponse.java index 5817d1b8836..b20163f04a2 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelArtifactContentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelArtifactContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelCustomMetadatumArtifactContentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelCustomMetadatumArtifactContentResponse.java index c45cc8a23a9..cba7eed4972 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelCustomMetadatumArtifactContentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelCustomMetadatumArtifactContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelDefinedMetadatumArtifactContentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelDefinedMetadatumArtifactContentResponse.java index 13cc707e485..45c6149d1fb 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelDefinedMetadatumArtifactContentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelDefinedMetadatumArtifactContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelDeploymentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelDeploymentResponse.java index b40c430ebda..885b2638e01 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelDeploymentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelGroupArtifactContentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelGroupArtifactContentResponse.java index a260311ff63..38b533d91d3 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelGroupArtifactContentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelGroupArtifactContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelGroupResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelGroupResponse.java index 1278fccec85..9b789f1f5b0 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelGroupResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelGroupVersionHistoryResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelGroupVersionHistoryResponse.java index d665e247bc4..9b28535a842 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelGroupVersionHistoryResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelGroupVersionHistoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelProvenanceResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelProvenanceResponse.java index b355aae2f20..7afb3462872 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelProvenanceResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelProvenanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelResponse.java index 5901ec10127..4572013108b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelVersionSetResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelVersionSetResponse.java index c3213ae4c6d..96f14419463 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelVersionSetResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetModelVersionSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetNotebookSessionResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetNotebookSessionResponse.java index 750bf397ac5..2ca8dcd3876 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetNotebookSessionResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetNotebookSessionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetPipelineResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetPipelineResponse.java index 277dc2d136c..887778473c0 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetPipelineResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetPipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetPipelineRunResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetPipelineRunResponse.java index c5c6075c6c7..03e0f86b7fa 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetPipelineRunResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetPipelineRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetProjectResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetProjectResponse.java index 633f48dfc8d..96ced56d56f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetProjectResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetScheduleResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetScheduleResponse.java index 275677bab76..6116354ffc2 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetScheduleResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetStepArtifactContentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetStepArtifactContentResponse.java index d00d674f267..c7496b25682 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetStepArtifactContentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetStepArtifactContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetWorkRequestResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetWorkRequestResponse.java index 9bcf6008745..563495a1fd7 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetWorkRequestResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadJobArtifactResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadJobArtifactResponse.java index 5231dafc1a3..24f2ffbade6 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadJobArtifactResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadJobArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadModelArtifactResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadModelArtifactResponse.java index 2fbe1234826..2b3888158c8 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadModelArtifactResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadModelArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadModelCustomMetadatumArtifactResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadModelCustomMetadatumArtifactResponse.java index a75a3b6f892..4d4e43053ab 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadModelCustomMetadatumArtifactResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadModelCustomMetadatumArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadModelDefinedMetadatumArtifactResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadModelDefinedMetadatumArtifactResponse.java index ac6b1ab8e38..2ac1c818161 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadModelDefinedMetadatumArtifactResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadModelDefinedMetadatumArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadModelGroupArtifactResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadModelGroupArtifactResponse.java index 36d4b087ddd..8931233e019 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadModelGroupArtifactResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadModelGroupArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadStepArtifactResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadStepArtifactResponse.java index 40c789deb9f..bfa4131f150 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadStepArtifactResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/HeadStepArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ImportModelArtifactResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ImportModelArtifactResponse.java index ba6e693780c..2f4231d6964 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ImportModelArtifactResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ImportModelArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListContainersResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListContainersResponse.java index dc8cd7c48e3..5433f50cfb6 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListContainersResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListContainersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListDataSciencePrivateEndpointsResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListDataSciencePrivateEndpointsResponse.java index 6d2786d9701..cde268bc9dc 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListDataSciencePrivateEndpointsResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListDataSciencePrivateEndpointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListFastLaunchJobConfigsResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListFastLaunchJobConfigsResponse.java index 96e7f90a050..b3a0602c7d8 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListFastLaunchJobConfigsResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListFastLaunchJobConfigsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListJobRunsResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListJobRunsResponse.java index f68c2fe3c04..83c5875199f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListJobRunsResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListJobRunsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListJobShapesResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListJobShapesResponse.java index 0337db79092..344565aaa3a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListJobShapesResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListJobShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListJobsResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListJobsResponse.java index 8c992f79412..d1a68c5159e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListJobsResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListJobsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListMlApplicationImplementationVersionsResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListMlApplicationImplementationVersionsResponse.java index 13389a03162..7a9bc95f886 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListMlApplicationImplementationVersionsResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListMlApplicationImplementationVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListMlApplicationImplementationsResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListMlApplicationImplementationsResponse.java index 55f3be1e207..5bf4b40fc1d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListMlApplicationImplementationsResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListMlApplicationImplementationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListMlApplicationInstanceViewsResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListMlApplicationInstanceViewsResponse.java index d9311845916..190f13f8af3 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListMlApplicationInstanceViewsResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListMlApplicationInstanceViewsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListMlApplicationInstancesResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListMlApplicationInstancesResponse.java index 351b06ed8d4..7e3acaa7e8c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListMlApplicationInstancesResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListMlApplicationInstancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListMlApplicationsResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListMlApplicationsResponse.java index aa49a7bdf7c..31e5341209b 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListMlApplicationsResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListMlApplicationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelDeploymentModelStatesResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelDeploymentModelStatesResponse.java index b7da45bbeb9..5808d4dbc10 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelDeploymentModelStatesResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelDeploymentModelStatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelDeploymentShapesResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelDeploymentShapesResponse.java index 4be1767ad01..c346dd31482 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelDeploymentShapesResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelDeploymentShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelDeploymentsResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelDeploymentsResponse.java index b7b571794e5..8c443a452de 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelDeploymentsResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelDeploymentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelGroupModelsResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelGroupModelsResponse.java index 8f31df3bfab..dafba864045 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelGroupModelsResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelGroupModelsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelGroupVersionHistoriesResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelGroupVersionHistoriesResponse.java index 48f770b4478..53930d8ab17 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelGroupVersionHistoriesResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelGroupVersionHistoriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelGroupsResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelGroupsResponse.java index 6087a7b5a86..9387f6e0c6a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelGroupsResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelVersionSetsResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelVersionSetsResponse.java index 12349277b26..ea5d4249879 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelVersionSetsResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelVersionSetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelsResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelsResponse.java index f4028595c8e..74468232fb4 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelsResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListModelsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListNotebookSessionShapesResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListNotebookSessionShapesResponse.java index 21158d614ed..e74a5920769 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListNotebookSessionShapesResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListNotebookSessionShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListNotebookSessionsResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListNotebookSessionsResponse.java index e78ec8d2115..c2de359abd5 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListNotebookSessionsResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListNotebookSessionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListPipelineRunsResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListPipelineRunsResponse.java index 4112212ed3d..f9833544242 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListPipelineRunsResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListPipelineRunsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListPipelinesResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListPipelinesResponse.java index 028e19b20b2..0534b779762 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListPipelinesResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListPipelinesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListProjectsResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListProjectsResponse.java index ded9092cba2..1736233638d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListProjectsResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListProjectsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListSchedulesResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListSchedulesResponse.java index f0d3f5a57f9..0008035745a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListSchedulesResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListSchedulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListWorkRequestErrorsResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListWorkRequestErrorsResponse.java index cf74e21c938..d08e7a4bf1e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListWorkRequestLogsResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListWorkRequestLogsResponse.java index 8e6fe6d5e7c..87eb98b0f64 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListWorkRequestLogsResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListWorkRequestsResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListWorkRequestsResponse.java index 6bd9aaa3cdf..9db175f9aee 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListWorkRequestsResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/PutMlApplicationPackageResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/PutMlApplicationPackageResponse.java index 4013cbaa81e..7c08ab91f13 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/PutMlApplicationPackageResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/PutMlApplicationPackageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/RecoverMlApplicationInstanceViewResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/RecoverMlApplicationInstanceViewResponse.java index 2f9645e4d29..2906431a35f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/RecoverMlApplicationInstanceViewResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/RecoverMlApplicationInstanceViewResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/RegisterModelArtifactReferenceResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/RegisterModelArtifactReferenceResponse.java index 5d404119a5d..885ab23ca05 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/RegisterModelArtifactReferenceResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/RegisterModelArtifactReferenceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/RestoreArchivedModelArtifactResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/RestoreArchivedModelArtifactResponse.java index 18a20dabad7..e0d12278d96 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/RestoreArchivedModelArtifactResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/RestoreArchivedModelArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/TriggerMlApplicationInstanceFlowResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/TriggerMlApplicationInstanceFlowResponse.java index bb20fa63844..b4386e03e73 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/TriggerMlApplicationInstanceFlowResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/TriggerMlApplicationInstanceFlowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/TriggerMlApplicationInstanceViewFlowResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/TriggerMlApplicationInstanceViewFlowResponse.java index 4c2cbde5527..13579c3fe80 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/TriggerMlApplicationInstanceViewFlowResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/TriggerMlApplicationInstanceViewFlowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateDataSciencePrivateEndpointResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateDataSciencePrivateEndpointResponse.java index e3b3fec5e78..e3401b99cc2 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateDataSciencePrivateEndpointResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateDataSciencePrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateJobResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateJobResponse.java index 57912d3c479..a19cc5f02ab 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateJobResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateJobRunResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateJobRunResponse.java index 9b704166321..32bd81340e8 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateJobRunResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateJobRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateMlApplicationImplementationResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateMlApplicationImplementationResponse.java index 37341a79f2a..8c9df9e3134 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateMlApplicationImplementationResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateMlApplicationImplementationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateMlApplicationImplementationVersionResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateMlApplicationImplementationVersionResponse.java index 036b22cc13a..72d51383290 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateMlApplicationImplementationVersionResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateMlApplicationImplementationVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateMlApplicationInstanceResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateMlApplicationInstanceResponse.java index 520301c61aa..3f8deaa3e6a 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateMlApplicationInstanceResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateMlApplicationInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateMlApplicationInstanceViewResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateMlApplicationInstanceViewResponse.java index 9db37811357..dee3958c94d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateMlApplicationInstanceViewResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateMlApplicationInstanceViewResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateMlApplicationResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateMlApplicationResponse.java index 2bf43f6eb8f..6d6c7c3b223 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateMlApplicationResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateMlApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelCustomMetadatumArtifactResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelCustomMetadatumArtifactResponse.java index e29bcf8f6a8..6ba4622bdf4 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelCustomMetadatumArtifactResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelCustomMetadatumArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelDefinedMetadatumArtifactResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelDefinedMetadatumArtifactResponse.java index 22831233db5..c79c0c09ade 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelDefinedMetadatumArtifactResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelDefinedMetadatumArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelDeploymentResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelDeploymentResponse.java index 5f455ae2b18..0d225bf317d 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelDeploymentResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelGroupResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelGroupResponse.java index fabc33aef8e..a47aeae45d4 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelGroupResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelGroupVersionHistoryResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelGroupVersionHistoryResponse.java index a4192674ff8..37dc2ccb41c 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelGroupVersionHistoryResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelGroupVersionHistoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelProvenanceResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelProvenanceResponse.java index 42cf748c56f..7b29d2aab31 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelProvenanceResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelProvenanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelResponse.java index 7000da9ea9c..9f38fe0d06f 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelVersionSetResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelVersionSetResponse.java index 176ce8fa9c4..b210a8c2285 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelVersionSetResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateModelVersionSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateNotebookSessionResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateNotebookSessionResponse.java index 2e47e77ceea..800f99d49dd 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateNotebookSessionResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateNotebookSessionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdatePipelineResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdatePipelineResponse.java index 31c75a097b6..ddd808887ec 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdatePipelineResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdatePipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdatePipelineRunResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdatePipelineRunResponse.java index 253cd2a1007..d87b061f817 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdatePipelineRunResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdatePipelineRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateProjectResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateProjectResponse.java index 9116ca99546..8e3dee4b91e 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateProjectResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateScheduleResponse.java b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateScheduleResponse.java index 31f0b828a8f..00c4a3440fc 100644 --- a/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateScheduleResponse.java +++ b/bmc-datascience/src/main/java/com/oracle/bmc/datascience/responses/UpdateScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.datascience.responses; diff --git a/bmc-datascience/src/main/resources/com/oracle/bmc/datascience/client.properties b/bmc-datascience/src/main/resources/com/oracle/bmc/datascience/client.properties index aeb24e2dea5..00f79f3b952 100644 --- a/bmc-datascience/src/main/resources/com/oracle/bmc/datascience/client.properties +++ b/bmc-datascience/src/main/resources/com/oracle/bmc/datascience/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-dblm/pom.xml b/bmc-dblm/pom.xml index 2816e01d417..0ae6e8d70f8 100644 --- a/bmc-dblm/pom.xml +++ b/bmc-dblm/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-dblm @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagement.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagement.java index ea793fc0516..5c3bbd81090 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagement.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagementAsync.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagementAsync.java index 091a6df6c9d..73f6b34d9b7 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagementAsync.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagementAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagementAsyncClient.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagementAsyncClient.java index 67abda1c097..3435f5855aa 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagementAsyncClient.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagementAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagementClient.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagementClient.java index e0cb7ef19cd..8c95eb2af32 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagementClient.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagementClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagementPaginators.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagementPaginators.java index 687092f5cdb..f154288349c 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagementPaginators.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagementPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagementWaiters.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagementWaiters.java index abc8bf0efda..9de2abbacbe 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagementWaiters.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/DbLifeCycleManagementWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ActionType.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ActionType.java index 2acccdf8788..0119115b69c 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ActionType.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/AdditionalPatches.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/AdditionalPatches.java index 3d79aaa2240..298475dd55f 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/AdditionalPatches.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/AdditionalPatches.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/AggregatedVulnerabilityCollection.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/AggregatedVulnerabilityCollection.java index 97e9f241bc8..360087e51b3 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/AggregatedVulnerabilityCollection.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/AggregatedVulnerabilityCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/AggregatedVulnerabilitySummary.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/AggregatedVulnerabilitySummary.java index b67e91f8e15..07a71055a59 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/AggregatedVulnerabilitySummary.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/AggregatedVulnerabilitySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ChildPdb.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ChildPdb.java index 753ff90c8f8..b1be8e9bb17 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ChildPdb.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ChildPdb.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/CreateVulnerabilityScanDetails.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/CreateVulnerabilityScanDetails.java index efa73c250d3..a0c6add5403 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/CreateVulnerabilityScanDetails.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/CreateVulnerabilityScanDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/DatabasesSummary.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/DatabasesSummary.java index bc9940ad0aa..f3a5490134e 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/DatabasesSummary.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/DatabasesSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/DblmPatchManagement.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/DblmPatchManagement.java index da5d0b96ba0..d5912d23393 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/DblmPatchManagement.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/DblmPatchManagement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/DblmVulnerability.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/DblmVulnerability.java index d31727a5339..3a06b4ef154 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/DblmVulnerability.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/DblmVulnerability.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/FppServer.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/FppServer.java index b203fa16370..df377b59def 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/FppServer.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/FppServer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/HostInfo.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/HostInfo.java index 1843760b7cc..4671c7290ef 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/HostInfo.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/HostInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ImageDetails.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ImageDetails.java index ec84acfb509..c3692fc8346 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ImageDetails.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ImagesPatchRecommendationSummary.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ImagesPatchRecommendationSummary.java index f128489d19f..94022a93b08 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ImagesPatchRecommendationSummary.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ImagesPatchRecommendationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/MetricError.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/MetricError.java index 855a025ab56..a69c6d68a64 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/MetricError.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/MetricError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/NotificationCollection.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/NotificationCollection.java index fe76b0e56d5..dcb397efc90 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/NotificationCollection.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/NotificationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/NotificationSummary.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/NotificationSummary.java index dc06064ba19..d6991d5f96a 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/NotificationSummary.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/NotificationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/OperationStatus.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/OperationStatus.java index 1e373a5b30a..c05b8a70862 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/OperationStatus.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/OperationType.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/OperationType.java index 3b17b75c7a0..e3c6f23df13 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/OperationType.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchActivityDetails.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchActivityDetails.java index 33db7856ec4..e41d4f2ebc1 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchActivityDetails.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchActivityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchComplianceDetails.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchComplianceDetails.java index 73a196d5e64..0e9853cb92f 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchComplianceDetails.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchComplianceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchDatabasesCollection.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchDatabasesCollection.java index 6ca6d6e572a..88445cd03b0 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchDatabasesCollection.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchDatabasesCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchOperationsSummary.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchOperationsSummary.java index 4966febfc56..cdcd394a79e 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchOperationsSummary.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchOperationsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchRecommendationSummary.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchRecommendationSummary.java index 208a6c1216e..33ac80d16e9 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchRecommendationSummary.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchRecommendationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchRecommendationsDetailsSummary.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchRecommendationsDetailsSummary.java index 3aaad20e355..d96408aa02d 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchRecommendationsDetailsSummary.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/PatchRecommendationsDetailsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ResourceInfo.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ResourceInfo.java index 3bda69a72b0..5c0e1f12d4a 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ResourceInfo.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ResourceInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ResourceSummary.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ResourceSummary.java index 99ed2125843..81ba4235dc1 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ResourceSummary.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ResourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ResourcesPatchComplianceSummary.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ResourcesPatchComplianceSummary.java index 19187ac9358..00dc6aa4612 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ResourcesPatchComplianceSummary.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ResourcesPatchComplianceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ResourcesSeverities.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ResourcesSeverities.java index d5d748533de..3a38c08437d 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ResourcesSeverities.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/ResourcesSeverities.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/SortOrder.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/SortOrder.java index 276deb391d8..f8ddc9d24ac 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/SortOrder.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilitiesSummary.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilitiesSummary.java index f0413f0b9d8..d57ac44f20c 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilitiesSummary.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilitiesSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityCollection.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityCollection.java index 336a3e44618..3e3bbf36b34 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityCollection.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityResourceCollection.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityResourceCollection.java index ee0865bb531..df0e64d1da2 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityResourceCollection.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityResourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityResourceSummary.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityResourceSummary.java index f369229090b..61fe3212758 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityResourceSummary.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityResourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityRiskLevel.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityRiskLevel.java index 56654fceb35..bd47f175068 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityRiskLevel.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityRiskLevel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityScan.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityScan.java index 5c7a4617465..f9cce5646a1 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityScan.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityScan.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityScanCollection.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityScanCollection.java index 6680de61b80..d5eb54a24e5 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityScanCollection.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityScanCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityScanSummary.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityScanSummary.java index 8b4dc5e163b..10c45094161 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityScanSummary.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilityScanSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilitySummary.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilitySummary.java index 91516991208..707d501a60e 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilitySummary.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/VulnerabilitySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequest.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequest.java index 6ba8c57c3f7..ca0c437e72f 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequest.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestError.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestError.java index 5835750fa51..26a17aa1a73 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestError.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestErrorCollection.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestErrorCollection.java index 8f18030a5f2..c7db88e5852 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestErrorCollection.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestLogEntry.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestLogEntry.java index ca97f6c7f66..0bfb585b489 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestLogEntry.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestLogEntryCollection.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestLogEntryCollection.java index bf72361df9a..99095c56e63 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestLogEntryCollection.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestResource.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestResource.java index 0206c018b64..9334f6daa0c 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestResource.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestResourceMetadataKey.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestResourceMetadataKey.java index 894a8d156c9..30cce0c5e5f 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestResourceMetadataKey.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestSummary.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestSummary.java index ba957f906c5..da5e072c882 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestSummary.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestSummaryCollection.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestSummaryCollection.java index 3c4d8544aaf..752ff5c840a 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestSummaryCollection.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.model; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/CreateVulnerabilityScanRequest.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/CreateVulnerabilityScanRequest.java index c2173b3d858..a1dc129ec2e 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/CreateVulnerabilityScanRequest.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/CreateVulnerabilityScanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.requests; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/GetPatchManagementRequest.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/GetPatchManagementRequest.java index 00fe221b74b..bd110452141 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/GetPatchManagementRequest.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/GetPatchManagementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.requests; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/GetVulnerabilityRequest.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/GetVulnerabilityRequest.java index cfb98efbebf..9bbb84885fd 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/GetVulnerabilityRequest.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/GetVulnerabilityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.requests; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/GetVulnerabilityScanRequest.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/GetVulnerabilityScanRequest.java index ee76720e82b..9c47f4ed07a 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/GetVulnerabilityScanRequest.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/GetVulnerabilityScanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.requests; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/GetWorkRequestRequest.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/GetWorkRequestRequest.java index cccc5f77590..ec0c643a058 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/GetWorkRequestRequest.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.requests; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListAggregatedVulnerabilityDataRequest.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListAggregatedVulnerabilityDataRequest.java index f5bb6a98d21..8ccb2ffa4fc 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListAggregatedVulnerabilityDataRequest.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListAggregatedVulnerabilityDataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.requests; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListDatabasesRequest.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListDatabasesRequest.java index 0d2bd620f9c..af81a0efa7c 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListDatabasesRequest.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListDatabasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.requests; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListNotificationsRequest.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListNotificationsRequest.java index 5a895112793..2ddda6c6cfd 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListNotificationsRequest.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListNotificationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.requests; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListVulnerabilitiesRequest.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListVulnerabilitiesRequest.java index 7b599db821c..98abc2b4fb5 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListVulnerabilitiesRequest.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListVulnerabilitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.requests; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListVulnerabilityResourcesRequest.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListVulnerabilityResourcesRequest.java index 254d9677255..bce300ca73d 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListVulnerabilityResourcesRequest.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListVulnerabilityResourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.requests; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListVulnerabilityScansRequest.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListVulnerabilityScansRequest.java index 1e75d3e0424..aa5c166d21e 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListVulnerabilityScansRequest.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListVulnerabilityScansRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.requests; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListWorkRequestErrorsRequest.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListWorkRequestErrorsRequest.java index e898b5b084a..8905c4237ae 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.requests; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListWorkRequestLogsRequest.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListWorkRequestLogsRequest.java index b3401115d1a..841a20b832f 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListWorkRequestLogsRequest.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.requests; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListWorkRequestsRequest.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListWorkRequestsRequest.java index fb6cec9abc6..a81e0a1684a 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListWorkRequestsRequest.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.requests; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/CreateVulnerabilityScanResponse.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/CreateVulnerabilityScanResponse.java index 482999a6bcd..9b8419f0090 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/CreateVulnerabilityScanResponse.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/CreateVulnerabilityScanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.responses; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/GetPatchManagementResponse.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/GetPatchManagementResponse.java index 861a9e425fc..50d5fad6627 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/GetPatchManagementResponse.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/GetPatchManagementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.responses; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/GetVulnerabilityResponse.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/GetVulnerabilityResponse.java index 9eaf664802b..481041d6ff4 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/GetVulnerabilityResponse.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/GetVulnerabilityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.responses; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/GetVulnerabilityScanResponse.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/GetVulnerabilityScanResponse.java index 500401b1845..0c53777fb7a 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/GetVulnerabilityScanResponse.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/GetVulnerabilityScanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.responses; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/GetWorkRequestResponse.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/GetWorkRequestResponse.java index 1cbf2e6d8e8..51553a74fe4 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/GetWorkRequestResponse.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.responses; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListAggregatedVulnerabilityDataResponse.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListAggregatedVulnerabilityDataResponse.java index 9ff43b000b8..5f8749b0e7f 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListAggregatedVulnerabilityDataResponse.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListAggregatedVulnerabilityDataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.responses; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListDatabasesResponse.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListDatabasesResponse.java index d24ab94e93b..632d0d70955 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListDatabasesResponse.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListDatabasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.responses; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListNotificationsResponse.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListNotificationsResponse.java index 378e464f698..a1145cf1bda 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListNotificationsResponse.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListNotificationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.responses; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListVulnerabilitiesResponse.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListVulnerabilitiesResponse.java index f0cca4a453a..8daa711df62 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListVulnerabilitiesResponse.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListVulnerabilitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.responses; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListVulnerabilityResourcesResponse.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListVulnerabilityResourcesResponse.java index f5bda01df81..6d88f17f0b2 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListVulnerabilityResourcesResponse.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListVulnerabilityResourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.responses; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListVulnerabilityScansResponse.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListVulnerabilityScansResponse.java index ac1f40447a6..b0464ee3116 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListVulnerabilityScansResponse.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListVulnerabilityScansResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.responses; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListWorkRequestErrorsResponse.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListWorkRequestErrorsResponse.java index bc002c22b3c..db7a916b317 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.responses; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListWorkRequestLogsResponse.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListWorkRequestLogsResponse.java index 396dcc353bc..13ae2f63fc8 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListWorkRequestLogsResponse.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.responses; diff --git a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListWorkRequestsResponse.java b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListWorkRequestsResponse.java index 08c5db4f0a7..cc2ca6d77df 100644 --- a/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListWorkRequestsResponse.java +++ b/bmc-dblm/src/main/java/com/oracle/bmc/dblm/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dblm.responses; diff --git a/bmc-dblm/src/main/resources/com/oracle/bmc/dblm/client.properties b/bmc-dblm/src/main/resources/com/oracle/bmc/dblm/client.properties index d0068f15034..6e8e742b0c6 100644 --- a/bmc-dblm/src/main/resources/com/oracle/bmc/dblm/client.properties +++ b/bmc-dblm/src/main/resources/com/oracle/bmc/dblm/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-dbmulticloud/pom.xml b/bmc-dbmulticloud/pom.xml index c48f24b5cba..605d29c0d42 100644 --- a/bmc-dbmulticloud/pom.xml +++ b/bmc-dbmulticloud/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-dbmulticloud @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProvider.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProvider.java index 6ca01cdb982..b8924a8cc12 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProvider.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProviderAsync.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProviderAsync.java index 712f398f960..08a08064241 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProviderAsync.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProviderAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProviderAsyncClient.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProviderAsyncClient.java index c7da3241323..0cb57aae594 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProviderAsyncClient.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProviderAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProviderClient.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProviderClient.java index 8f9f5ea400b..414a991fcf3 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProviderClient.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProviderClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProviderPaginators.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProviderPaginators.java index 405c6dc5225..1b15cf71670 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProviderPaginators.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProviderPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProviderWaiters.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProviderWaiters.java index 601ac09a1ac..e71ef255394 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProviderWaiters.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudAwsProviderWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProvider.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProvider.java index ac67aec372b..2d47b361c9e 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProvider.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProviderAsync.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProviderAsync.java index eb65c1d1305..b63c51a9222 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProviderAsync.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProviderAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProviderAsyncClient.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProviderAsyncClient.java index 02fa517e249..a57adc40fea 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProviderAsyncClient.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProviderAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProviderClient.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProviderClient.java index 63decc06472..eda2d173ce0 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProviderClient.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProviderClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProviderPaginators.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProviderPaginators.java index 6c0d7df2a53..9515935c4dd 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProviderPaginators.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProviderPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProviderWaiters.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProviderWaiters.java index 61469af45bc..9e4c9778f63 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProviderWaiters.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/DbMulticloudGCPProviderWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscovery.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscovery.java index 96e616ec48c..4260419ee13 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscovery.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscovery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscoveryAsync.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscoveryAsync.java index 756de56b4c0..329f88e1451 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscoveryAsync.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscoveryAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscoveryAsyncClient.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscoveryAsyncClient.java index eaf6460613c..feaecb0ec18 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscoveryAsyncClient.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscoveryAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscoveryClient.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscoveryClient.java index 68b25f873a5..959cb3c3030 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscoveryClient.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscoveryClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscoveryPaginators.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscoveryPaginators.java index 4a61d78ee52..7a939cc7bdc 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscoveryPaginators.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscoveryPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscoveryWaiters.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscoveryWaiters.java index 8d1da364ba6..52ccdd3ea16 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscoveryWaiters.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/MultiCloudResourceDiscoveryWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainer.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainer.java index b069592e168..a0a9bdcc9ce 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainer.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainerAsync.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainerAsync.java index 81030edb57e..6552dbfb351 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainerAsync.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainerAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainerAsyncClient.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainerAsyncClient.java index d4b04085f13..5f4b86dee84 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainerAsyncClient.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainerAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainerClient.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainerClient.java index e702877ac70..2bca91e6903 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainerClient.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainerClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainerPaginators.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainerPaginators.java index 42814fde308..e45a076bebf 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainerPaginators.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainerPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainerWaiters.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainerWaiters.java index 022a8ac5a5f..6aa1cd5afe2 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainerWaiters.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobContainerWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMount.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMount.java index f62f0c92341..6eff2e42be9 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMount.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMount.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMountAsync.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMountAsync.java index b272b13b762..411e5d9b4e3 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMountAsync.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMountAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMountAsyncClient.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMountAsyncClient.java index f1f92125cda..cb9d03fc245 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMountAsyncClient.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMountAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMountClient.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMountClient.java index 00befd066fe..e0d01d0d8cc 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMountClient.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMountClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMountPaginators.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMountPaginators.java index 9b16f783596..1421d843115 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMountPaginators.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMountPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMountWaiters.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMountWaiters.java index cf1c1650acb..8dcf8356b2e 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMountWaiters.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureBlobMountWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnector.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnector.java index a010b412a48..c8b896e8999 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnector.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnectorAsync.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnectorAsync.java index f7400cc8741..921b2a98746 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnectorAsync.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnectorAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnectorAsyncClient.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnectorAsyncClient.java index 86dd584216d..58adba8bf76 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnectorAsyncClient.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnectorAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnectorClient.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnectorClient.java index a0bae62758d..146483fdcb2 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnectorClient.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnectorClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnectorPaginators.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnectorPaginators.java index be2dd725b4f..bcc6dcfccd5 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnectorPaginators.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnectorPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnectorWaiters.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnectorWaiters.java index b90d6df5a28..d112695ba6b 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnectorWaiters.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDBAzureConnectorWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKey.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKey.java index 5cbda4b4307..2a7be54a970 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKey.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKeyAsync.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKeyAsync.java index 80dca4f0098..ecd3fdf6932 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKeyAsync.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKeyAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKeyAsyncClient.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKeyAsyncClient.java index 27dc397bc59..bb40f314f43 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKeyAsyncClient.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKeyAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKeyClient.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKeyClient.java index 193f2e10acd..b009443396b 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKeyClient.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKeyClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKeyPaginators.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKeyPaginators.java index 3cd9a57752e..43c1756d009 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKeyPaginators.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKeyPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKeyWaiters.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKeyWaiters.java index a865b1807d5..b383e47c899 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKeyWaiters.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureKeyWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVault.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVault.java index 1b3b0577776..ac4b53553f6 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVault.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVault.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociation.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociation.java index 211fb2982aa..9369584784b 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociation.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociationAsync.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociationAsync.java index ff187f21f48..76c1f67aad4 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociationAsync.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociationAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociationAsyncClient.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociationAsyncClient.java index b51ef025b57..d52b3fb0474 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociationAsyncClient.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociationAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociationClient.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociationClient.java index 01eac0144e9..5fdb5d68ca7 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociationClient.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociationClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociationPaginators.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociationPaginators.java index b190db36c86..c9e782fdff6 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociationPaginators.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociationPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociationWaiters.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociationWaiters.java index 001aad20801..50a6eb25f50 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociationWaiters.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAssociationWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAsync.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAsync.java index e86c7e8725b..0f1eede10a6 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAsync.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAsyncClient.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAsyncClient.java index c5881e3d8ce..c6be1a5fe71 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAsyncClient.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultClient.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultClient.java index c9c1bf6bee2..0163dd117b9 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultClient.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultPaginators.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultPaginators.java index df2c82b9104..9e876369acd 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultPaginators.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultWaiters.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultWaiters.java index 7b20a8dc6aa..eec295a985a 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultWaiters.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/OracleDbAzureVaultWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequest.java index fefdbc01e9f..449cd6f7c40 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequestAsync.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequestAsync.java index a862a3f848b..4e0d39d9cde 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequestAsync.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequestAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequestAsyncClient.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequestAsyncClient.java index 752e9fa2197..1e2d33596c6 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequestAsyncClient.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequestAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequestClient.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequestClient.java index 05c97c2d778..63d33f81ad0 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequestClient.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequestClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequestPaginators.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequestPaginators.java index f856cd4d9b6..857791a44ab 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequestPaginators.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequestPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequestWaiters.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequestWaiters.java index ab4f5ac43a7..2b66d8014f4 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequestWaiters.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/WorkRequestWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ActionType.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ActionType.java index 3b89b2044a5..367a9e30798 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ActionType.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ArcAgentNodes.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ArcAgentNodes.java index 596bae3f898..7132a9b57d7 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ArcAgentNodes.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ArcAgentNodes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/AwsNodes.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/AwsNodes.java index 886a5c7a801..7eb3dabc0dd 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/AwsNodes.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/AwsNodes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeMultiCloudResourceDiscoveryCompartmentDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeMultiCloudResourceDiscoveryCompartmentDetails.java index 4b14e8c7151..60b3245d3c8 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeMultiCloudResourceDiscoveryCompartmentDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeMultiCloudResourceDiscoveryCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAwsIdentityConnectorCompartmentDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAwsIdentityConnectorCompartmentDetails.java index 4dce936ec47..ad408afc81f 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAwsIdentityConnectorCompartmentDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAwsIdentityConnectorCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAwsKeyCompartmentDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAwsKeyCompartmentDetails.java index 58a1c08de98..297af1ad1eb 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAwsKeyCompartmentDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAwsKeyCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAzureBlobContainerCompartmentDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAzureBlobContainerCompartmentDetails.java index 6ddc0943890..42c358790dc 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAzureBlobContainerCompartmentDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAzureBlobContainerCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAzureBlobMountCompartmentDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAzureBlobMountCompartmentDetails.java index 1448bc9879a..5e681e03c48 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAzureBlobMountCompartmentDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAzureBlobMountCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAzureConnectorCompartmentDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAzureConnectorCompartmentDetails.java index 38ed9565885..dad352acbe6 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAzureConnectorCompartmentDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAzureConnectorCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAzureVaultAssociationCompartmentDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAzureVaultAssociationCompartmentDetails.java index c3fbb3157c5..158ec938b49 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAzureVaultAssociationCompartmentDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAzureVaultAssociationCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAzureVaultCompartmentDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAzureVaultCompartmentDetails.java index 7faa53e9168..86fb85a3cea 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAzureVaultCompartmentDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbAzureVaultCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbGcpIdentityConnectorCompartmentDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbGcpIdentityConnectorCompartmentDetails.java index 1f1b009812c..66b0c6ad026 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbGcpIdentityConnectorCompartmentDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbGcpIdentityConnectorCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbGcpKeyRingCompartmentDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbGcpKeyRingCompartmentDetails.java index c5d3ebddad9..ee25b114ed0 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbGcpKeyRingCompartmentDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ChangeOracleDbGcpKeyRingCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateMultiCloudResourceDiscoveryDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateMultiCloudResourceDiscoveryDetails.java index 0ca718eb1d7..393ddfa0447 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateMultiCloudResourceDiscoveryDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateMultiCloudResourceDiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAwsIdentityConnectorDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAwsIdentityConnectorDetails.java index 60cfa9234b0..2f3ec24384d 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAwsIdentityConnectorDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAwsIdentityConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAwsKeyDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAwsKeyDetails.java index c2d6c8359c5..25d965f92d1 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAwsKeyDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAwsKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAzureBlobContainerDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAzureBlobContainerDetails.java index 9055ed29171..c229f84fccb 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAzureBlobContainerDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAzureBlobContainerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAzureBlobMountDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAzureBlobMountDetails.java index a44c3e3da1d..1cf96342b54 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAzureBlobMountDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAzureBlobMountDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAzureConnectorDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAzureConnectorDetails.java index 432c70fd565..512d36a39cf 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAzureConnectorDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAzureConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAzureVaultAssociationDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAzureVaultAssociationDetails.java index f25c1686e20..579cc60884a 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAzureVaultAssociationDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAzureVaultAssociationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAzureVaultDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAzureVaultDetails.java index 30162d3fd72..caf618a542b 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAzureVaultDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbAzureVaultDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbGcpIdentityConnectorDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbGcpIdentityConnectorDetails.java index 04bfe01f04e..985d0f3e969 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbGcpIdentityConnectorDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbGcpIdentityConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbGcpKeyRingDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbGcpKeyRingDetails.java index 8aa7b7a9a0d..24ca3373728 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbGcpKeyRingDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/CreateOracleDbGcpKeyRingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/GcpNodes.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/GcpNodes.java index a29cce651e7..cc3cb9b0971 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/GcpNodes.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/GcpNodes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/MultiCloudResourceDiscovery.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/MultiCloudResourceDiscovery.java index be90b211c71..ace2f771248 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/MultiCloudResourceDiscovery.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/MultiCloudResourceDiscovery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/MultiCloudResourceDiscoverySummary.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/MultiCloudResourceDiscoverySummary.java index 6338d2dbb05..677b83e1dde 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/MultiCloudResourceDiscoverySummary.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/MultiCloudResourceDiscoverySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/MultiCloudResourceDiscoverySummaryCollection.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/MultiCloudResourceDiscoverySummaryCollection.java index 08bee56ca7e..7433ffb6bfd 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/MultiCloudResourceDiscoverySummaryCollection.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/MultiCloudResourceDiscoverySummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OperationStatus.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OperationStatus.java index adb805cee49..880b853bff6 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OperationStatus.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OperationType.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OperationType.java index fa70e960e25..e44865a22a9 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OperationType.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsIdentityConnector.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsIdentityConnector.java index 20ba315a35e..02504412472 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsIdentityConnector.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsIdentityConnector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsIdentityConnectorSummary.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsIdentityConnectorSummary.java index 4e677036d00..9937c4d6d9c 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsIdentityConnectorSummary.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsIdentityConnectorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsIdentityConnectorSummaryCollection.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsIdentityConnectorSummaryCollection.java index f1d594d6fbf..2d3356ca605 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsIdentityConnectorSummaryCollection.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsIdentityConnectorSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsKey.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsKey.java index d5025f25974..8789f559102 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsKey.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsKeySummary.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsKeySummary.java index dd853a64f6e..aa8f6a8b3fc 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsKeySummary.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsKeySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsKeySummaryCollection.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsKeySummaryCollection.java index 7a28fb10caa..a7a623c9bf9 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsKeySummaryCollection.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAwsKeySummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobContainer.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobContainer.java index b3616fd1b63..3c1a3d1c1de 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobContainer.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobContainer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobContainerSummary.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobContainerSummary.java index 1159c098a3a..e9039e43518 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobContainerSummary.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobContainerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobContainerSummaryCollection.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobContainerSummaryCollection.java index 506cb85efc1..edb772f6463 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobContainerSummaryCollection.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobContainerSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobMount.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobMount.java index 2953ca73d85..9c263919a4c 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobMount.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobMount.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobMountSummary.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobMountSummary.java index da76935cea6..802aaa090e3 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobMountSummary.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobMountSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobMountSummaryCollection.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobMountSummaryCollection.java index d32d3d1be58..edbeed94af2 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobMountSummaryCollection.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureBlobMountSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureConnector.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureConnector.java index f8530de062d..e6ba6f563f8 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureConnector.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureConnector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureConnectorSummary.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureConnectorSummary.java index 81f5ed6ec99..04ba7ba431a 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureConnectorSummary.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureConnectorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureConnectorSummaryCollection.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureConnectorSummaryCollection.java index f12b44b9700..3cf492f7185 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureConnectorSummaryCollection.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureConnectorSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureKey.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureKey.java index b8ed23704f6..bfa19986fb4 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureKey.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureKeySummary.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureKeySummary.java index 5fafbc17a9a..72254be1533 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureKeySummary.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureKeySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureKeySummaryCollection.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureKeySummaryCollection.java index 1627d15715f..1a80548fd59 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureKeySummaryCollection.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureKeySummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVault.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVault.java index 331aa92d03f..9f85ab18ee7 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVault.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVault.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVaultAssociation.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVaultAssociation.java index 4470ee3c7e9..1f13b6ef729 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVaultAssociation.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVaultAssociation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVaultAssociationSummary.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVaultAssociationSummary.java index 63bba0d4cb0..458c43f8446 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVaultAssociationSummary.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVaultAssociationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVaultAssociationSummaryCollection.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVaultAssociationSummaryCollection.java index 3b4f78586ab..bfc942ccd84 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVaultAssociationSummaryCollection.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVaultAssociationSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVaultSummary.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVaultSummary.java index c5738853ce8..d4851c9d7d1 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVaultSummary.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVaultSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVaultSummaryCollection.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVaultSummaryCollection.java index 744bab2a23a..8191812bc64 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVaultSummaryCollection.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbAzureVaultSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpIdentityConnector.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpIdentityConnector.java index 86cb560af16..2f453639cbf 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpIdentityConnector.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpIdentityConnector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpIdentityConnectorSummary.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpIdentityConnectorSummary.java index dd448864e2d..6bb1add9b41 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpIdentityConnectorSummary.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpIdentityConnectorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpIdentityConnectorSummaryCollection.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpIdentityConnectorSummaryCollection.java index a25a6cdbcf4..849d818ce21 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpIdentityConnectorSummaryCollection.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpIdentityConnectorSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKey.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKey.java index 2862d5bb8fd..b18ba88f58d 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKey.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKeyRing.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKeyRing.java index 5eaaa1867c7..dca74bf529f 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKeyRing.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKeyRing.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKeyRingSummary.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKeyRingSummary.java index e1033aacd14..0b3a0938471 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKeyRingSummary.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKeyRingSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKeyRingSummaryCollection.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKeyRingSummaryCollection.java index 26fce25abb6..0181b98e34f 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKeyRingSummaryCollection.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKeyRingSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKeySummary.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKeySummary.java index f79ba51bc4d..114216533a6 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKeySummary.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKeySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKeySummaryCollection.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKeySummaryCollection.java index cccaa20fa6d..742b4747f48 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKeySummaryCollection.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/OracleDbGcpKeySummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/PatchOracleDbAzureConnectorDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/PatchOracleDbAzureConnectorDetails.java index 8fa7ff4dd29..548180b9f7c 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/PatchOracleDbAzureConnectorDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/PatchOracleDbAzureConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/RefreshOracleDbAwsKeyDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/RefreshOracleDbAwsKeyDetails.java index 5342f771c9c..d7432cc50dc 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/RefreshOracleDbAwsKeyDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/RefreshOracleDbAwsKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/RefreshOracleDbAzureVaultDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/RefreshOracleDbAzureVaultDetails.java index 5882fdb4b52..a8610a897be 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/RefreshOracleDbAzureVaultDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/RefreshOracleDbAzureVaultDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/RefreshOracleDbGcpKeyRingDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/RefreshOracleDbGcpKeyRingDetails.java index fc58084178f..9759e71a08f 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/RefreshOracleDbGcpKeyRingDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/RefreshOracleDbGcpKeyRingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/Resources.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/Resources.java index 5ae92e2a53d..bdb428d8912 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/Resources.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/Resources.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ServiceRoleDetail.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ServiceRoleDetail.java index 328282f4ccd..cdb795a18e8 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ServiceRoleDetail.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ServiceRoleDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ServiceRoleDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ServiceRoleDetails.java index e9e1d65d1c8..9f890a417cf 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ServiceRoleDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/ServiceRoleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/SortOrder.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/SortOrder.java index 0919d6d798a..ab99fe108eb 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/SortOrder.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateMultiCloudResourceDiscoveryDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateMultiCloudResourceDiscoveryDetails.java index f120cc9ad53..46ef999a243 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateMultiCloudResourceDiscoveryDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateMultiCloudResourceDiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAwsIdentityConnectorDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAwsIdentityConnectorDetails.java index 65b51ee0d61..60373025926 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAwsIdentityConnectorDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAwsIdentityConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAwsKeyDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAwsKeyDetails.java index ef155ec2988..00552ef4e62 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAwsKeyDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAwsKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAzureBlobContainerDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAzureBlobContainerDetails.java index 39b3440d8aa..5db9cb5b5a6 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAzureBlobContainerDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAzureBlobContainerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAzureBlobMountDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAzureBlobMountDetails.java index ca2de0dd380..2ddadc4d62c 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAzureBlobMountDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAzureBlobMountDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAzureConnectorDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAzureConnectorDetails.java index 64a79d29fab..8581f2afd70 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAzureConnectorDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAzureConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAzureVaultAssociationDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAzureVaultAssociationDetails.java index f40e0c33b44..b8ea9c47269 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAzureVaultAssociationDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAzureVaultAssociationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAzureVaultDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAzureVaultDetails.java index aeb16af65b5..e7aa3fcadd2 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAzureVaultDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbAzureVaultDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbGcpIdentityConnectorDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbGcpIdentityConnectorDetails.java index 4723cfca5e3..e4e171878df 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbGcpIdentityConnectorDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbGcpIdentityConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbGcpKeyRingDetails.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbGcpKeyRingDetails.java index 26b8e806f87..0f26634d148 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbGcpKeyRingDetails.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/UpdateOracleDbGcpKeyRingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequest.java index c78da0a0140..0f1c56e66fb 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestError.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestError.java index 0853d7f8bb1..60c1d731418 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestError.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestErrorCollection.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestErrorCollection.java index 1211aa26ac2..b1d05640a8c 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestErrorCollection.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestLogEntry.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestLogEntry.java index 8749714d7b9..4fca25b2939 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestLogEntry.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestLogEntryCollection.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestLogEntryCollection.java index 153675c4a1b..1e74302a3b1 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestLogEntryCollection.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestResource.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestResource.java index c32dd5722d5..8b3c7de3a92 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestResource.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestResourceMetadataKey.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestResourceMetadataKey.java index 80868f89636..372abc9c516 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestResourceMetadataKey.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestSummary.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestSummary.java index 1288fb36c29..40c75574e3c 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestSummary.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestSummaryCollection.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestSummaryCollection.java index e092ae214fa..546d8e60e0a 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestSummaryCollection.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.model; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CancelWorkRequestRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CancelWorkRequestRequest.java index 7dedc5f6e0c..6aec291bbde 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CancelWorkRequestRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CascadingDeleteOracleDbAzureVaultAssociationRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CascadingDeleteOracleDbAzureVaultAssociationRequest.java index bbc892a481d..9cc4f3a27a0 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CascadingDeleteOracleDbAzureVaultAssociationRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CascadingDeleteOracleDbAzureVaultAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeMultiCloudResourceDiscoveryCompartmentRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeMultiCloudResourceDiscoveryCompartmentRequest.java index 6cca53f282f..a5bf72e847b 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeMultiCloudResourceDiscoveryCompartmentRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeMultiCloudResourceDiscoveryCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAwsIdentityConnectorCompartmentRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAwsIdentityConnectorCompartmentRequest.java index 5e6b713bc78..5fa3d18b02c 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAwsIdentityConnectorCompartmentRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAwsIdentityConnectorCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAwsKeyCompartmentRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAwsKeyCompartmentRequest.java index f37747a3e69..d45d165316c 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAwsKeyCompartmentRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAwsKeyCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAzureBlobContainerCompartmentRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAzureBlobContainerCompartmentRequest.java index a13913cf433..1f873fb067b 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAzureBlobContainerCompartmentRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAzureBlobContainerCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAzureBlobMountCompartmentRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAzureBlobMountCompartmentRequest.java index 49ca45c6722..aaf478ac3f0 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAzureBlobMountCompartmentRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAzureBlobMountCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAzureConnectorCompartmentRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAzureConnectorCompartmentRequest.java index 3f495477033..4148c6fe030 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAzureConnectorCompartmentRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAzureConnectorCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAzureVaultAssociationCompartmentRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAzureVaultAssociationCompartmentRequest.java index 4fb4557db85..670e3e9eca0 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAzureVaultAssociationCompartmentRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAzureVaultAssociationCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAzureVaultCompartmentRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAzureVaultCompartmentRequest.java index 0f57b9dfe1a..24f5f926abd 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAzureVaultCompartmentRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbAzureVaultCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbGcpIdentityConnectorCompartmentRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbGcpIdentityConnectorCompartmentRequest.java index d2d1481f962..91f2c0df6fd 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbGcpIdentityConnectorCompartmentRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbGcpIdentityConnectorCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbGcpKeyRingCompartmentRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbGcpKeyRingCompartmentRequest.java index 25e565d29d6..a29984fcf59 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbGcpKeyRingCompartmentRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ChangeOracleDbGcpKeyRingCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateMultiCloudResourceDiscoveryRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateMultiCloudResourceDiscoveryRequest.java index 72e1214641f..4deed13c608 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateMultiCloudResourceDiscoveryRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateMultiCloudResourceDiscoveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAwsIdentityConnectorRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAwsIdentityConnectorRequest.java index f8bace57590..0ff31a6a451 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAwsIdentityConnectorRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAwsIdentityConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAwsKeyRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAwsKeyRequest.java index c4d27bae316..029020205bc 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAwsKeyRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAwsKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAzureBlobContainerRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAzureBlobContainerRequest.java index b8bda14dea1..6e97f6e0cf1 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAzureBlobContainerRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAzureBlobContainerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAzureBlobMountRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAzureBlobMountRequest.java index 1efc800ace3..e2997db7719 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAzureBlobMountRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAzureBlobMountRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAzureConnectorRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAzureConnectorRequest.java index c988651ef46..e0fccac605a 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAzureConnectorRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAzureConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAzureVaultAssociationRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAzureVaultAssociationRequest.java index a814f7c024d..6ab0a144096 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAzureVaultAssociationRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAzureVaultAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAzureVaultRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAzureVaultRequest.java index f6b69271301..46da16c0810 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAzureVaultRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbAzureVaultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbGcpIdentityConnectorRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbGcpIdentityConnectorRequest.java index ca8e9d5de68..a0f49b4af02 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbGcpIdentityConnectorRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbGcpIdentityConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbGcpKeyRingRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbGcpKeyRingRequest.java index 666962df8ec..7a7419d3055 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbGcpKeyRingRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/CreateOracleDbGcpKeyRingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteMultiCloudResourceDiscoveryRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteMultiCloudResourceDiscoveryRequest.java index 02076a4982b..2ae26c7872d 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteMultiCloudResourceDiscoveryRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteMultiCloudResourceDiscoveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAwsIdentityConnectorRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAwsIdentityConnectorRequest.java index 46def1e81d9..198b313b1c0 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAwsIdentityConnectorRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAwsIdentityConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAwsKeyRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAwsKeyRequest.java index 66573386a41..86d6f9d9a10 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAwsKeyRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAwsKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAzureBlobContainerRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAzureBlobContainerRequest.java index a5f4343c565..f6385a499a7 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAzureBlobContainerRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAzureBlobContainerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAzureBlobMountRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAzureBlobMountRequest.java index 0cb462114a1..7a401bd1581 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAzureBlobMountRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAzureBlobMountRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAzureConnectorRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAzureConnectorRequest.java index dee5cf46200..e59bbbea567 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAzureConnectorRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAzureConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAzureVaultAssociationRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAzureVaultAssociationRequest.java index 788c42149a9..2a0f8668843 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAzureVaultAssociationRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAzureVaultAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAzureVaultRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAzureVaultRequest.java index 1cab8108a25..4799e3bd6b6 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAzureVaultRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbAzureVaultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbGcpIdentityConnectorRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbGcpIdentityConnectorRequest.java index 76bc4d9934a..5fda7b17a70 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbGcpIdentityConnectorRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbGcpIdentityConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbGcpKeyRingRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbGcpKeyRingRequest.java index 7633f78a66a..fa3d747875a 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbGcpKeyRingRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/DeleteOracleDbGcpKeyRingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetMultiCloudResourceDiscoveryRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetMultiCloudResourceDiscoveryRequest.java index e1d532f3009..e51106a8d3b 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetMultiCloudResourceDiscoveryRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetMultiCloudResourceDiscoveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAwsIdentityConnectorRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAwsIdentityConnectorRequest.java index 78ba34e0823..d0170f6cabd 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAwsIdentityConnectorRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAwsIdentityConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAwsKeyRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAwsKeyRequest.java index 778667a2f79..15e5bafdd81 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAwsKeyRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAwsKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureBlobContainerRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureBlobContainerRequest.java index e591de76383..2fbe6b1e584 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureBlobContainerRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureBlobContainerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureBlobMountRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureBlobMountRequest.java index b2c72106fe3..c327860678f 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureBlobMountRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureBlobMountRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureConnectorRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureConnectorRequest.java index 47b5b4a9b4d..8924716f728 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureConnectorRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureKeyRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureKeyRequest.java index 233c746743e..9fc156a4184 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureKeyRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureVaultAssociationRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureVaultAssociationRequest.java index 59b6ab9f33e..c9711a8b87d 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureVaultAssociationRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureVaultAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureVaultRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureVaultRequest.java index 378ce23c0fd..e1a3138222e 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureVaultRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbAzureVaultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbGcpIdentityConnectorRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbGcpIdentityConnectorRequest.java index bf5c306bbef..1880186f34e 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbGcpIdentityConnectorRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbGcpIdentityConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbGcpKeyRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbGcpKeyRequest.java index 7f05835c466..a006eaf19d9 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbGcpKeyRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbGcpKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbGcpKeyRingRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbGcpKeyRingRequest.java index 01ce83afc8a..9f2720e1e1d 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbGcpKeyRingRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetOracleDbGcpKeyRingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetWorkRequestRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetWorkRequestRequest.java index 245f74a9024..844461b950d 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetWorkRequestRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListMultiCloudResourceDiscoveriesRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListMultiCloudResourceDiscoveriesRequest.java index 3004791c717..d9749f00153 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListMultiCloudResourceDiscoveriesRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListMultiCloudResourceDiscoveriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAwsIdentityConnectorsRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAwsIdentityConnectorsRequest.java index 27ee954abec..44682a8a7f4 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAwsIdentityConnectorsRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAwsIdentityConnectorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAwsKeysRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAwsKeysRequest.java index 7ee5aee8979..10f823e3963 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAwsKeysRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAwsKeysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureBlobContainersRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureBlobContainersRequest.java index 92631b1642e..6e7a7f1f1d6 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureBlobContainersRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureBlobContainersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureBlobMountsRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureBlobMountsRequest.java index 80a50ca76f6..7a12276f393 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureBlobMountsRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureBlobMountsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureConnectorsRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureConnectorsRequest.java index 9892dd62ea7..35bea1454ad 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureConnectorsRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureConnectorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureKeysRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureKeysRequest.java index b77ebf36225..66f433273ea 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureKeysRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureKeysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureVaultAssociationsRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureVaultAssociationsRequest.java index e9af92cd7b6..367605f078b 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureVaultAssociationsRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureVaultAssociationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureVaultsRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureVaultsRequest.java index 5e99b9abe4f..158068ea135 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureVaultsRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbAzureVaultsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbGcpIdentityConnectorsRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbGcpIdentityConnectorsRequest.java index 3c823391baf..7da2ce3a9e2 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbGcpIdentityConnectorsRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbGcpIdentityConnectorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbGcpKeyRingsRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbGcpKeyRingsRequest.java index 9f37dee8224..a8086a02d10 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbGcpKeyRingsRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbGcpKeyRingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbGcpKeysRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbGcpKeysRequest.java index 4ad23daf685..f5a948859e2 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbGcpKeysRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListOracleDbGcpKeysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListWorkRequestErrorsRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListWorkRequestErrorsRequest.java index db873b23d86..d4b6be5c837 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListWorkRequestLogsRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListWorkRequestLogsRequest.java index d855141c184..0d5e22678ad 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListWorkRequestLogsRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListWorkRequestsRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListWorkRequestsRequest.java index 807c0c8797b..007fc005688 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListWorkRequestsRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/PatchOracleDbAzureConnectorRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/PatchOracleDbAzureConnectorRequest.java index 073abda8e53..a20d84496bd 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/PatchOracleDbAzureConnectorRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/PatchOracleDbAzureConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbAwsIdentityConnectorRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbAwsIdentityConnectorRequest.java index 2b13072d9c1..a33b8170816 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbAwsIdentityConnectorRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbAwsIdentityConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbAwsKeyRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbAwsKeyRequest.java index 38768a7de2a..685a77397a3 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbAwsKeyRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbAwsKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbAzureConnectorRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbAzureConnectorRequest.java index e1b7d5e34f1..ae04e19ae20 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbAzureConnectorRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbAzureConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbAzureVaultRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbAzureVaultRequest.java index bc3f3c62d59..bac76cabf95 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbAzureVaultRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbAzureVaultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbGcpIdentityConnectorRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbGcpIdentityConnectorRequest.java index 978fecb6589..4e10779504d 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbGcpIdentityConnectorRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbGcpIdentityConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbGcpKeyRingRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbGcpKeyRingRequest.java index 9b0266d1694..59c3ee5a22e 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbGcpKeyRingRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/RefreshOracleDbGcpKeyRingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateMultiCloudResourceDiscoveryRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateMultiCloudResourceDiscoveryRequest.java index e7a8f43629e..bb1c1034c54 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateMultiCloudResourceDiscoveryRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateMultiCloudResourceDiscoveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAwsIdentityConnectorRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAwsIdentityConnectorRequest.java index 78a9374612e..c1e92423e23 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAwsIdentityConnectorRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAwsIdentityConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAwsKeyRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAwsKeyRequest.java index bd9d7e18a5d..7ca34d5df5c 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAwsKeyRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAwsKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAzureBlobContainerRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAzureBlobContainerRequest.java index 342baf7dfe9..326cc0f8b19 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAzureBlobContainerRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAzureBlobContainerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAzureBlobMountRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAzureBlobMountRequest.java index 6a65e53365c..e453fd8ddcc 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAzureBlobMountRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAzureBlobMountRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAzureConnectorRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAzureConnectorRequest.java index f2001a00f91..e490f2d9e30 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAzureConnectorRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAzureConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAzureVaultAssociationRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAzureVaultAssociationRequest.java index fa410d01509..88166eeb6e2 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAzureVaultAssociationRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAzureVaultAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAzureVaultRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAzureVaultRequest.java index 3660fc39a5b..f455ec18cec 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAzureVaultRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbAzureVaultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbGcpIdentityConnectorRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbGcpIdentityConnectorRequest.java index e4eb0582641..374d2597c56 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbGcpIdentityConnectorRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbGcpIdentityConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbGcpKeyRingRequest.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbGcpKeyRingRequest.java index ebf792a11a7..0f2c84423c0 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbGcpKeyRingRequest.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/requests/UpdateOracleDbGcpKeyRingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.requests; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CancelWorkRequestResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CancelWorkRequestResponse.java index 02d26be4612..ac43a4f6d07 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CancelWorkRequestResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CascadingDeleteOracleDbAzureVaultAssociationResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CascadingDeleteOracleDbAzureVaultAssociationResponse.java index c75ca42439a..321f8ed2a01 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CascadingDeleteOracleDbAzureVaultAssociationResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CascadingDeleteOracleDbAzureVaultAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeMultiCloudResourceDiscoveryCompartmentResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeMultiCloudResourceDiscoveryCompartmentResponse.java index ea428adab64..14436c0d8aa 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeMultiCloudResourceDiscoveryCompartmentResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeMultiCloudResourceDiscoveryCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAwsIdentityConnectorCompartmentResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAwsIdentityConnectorCompartmentResponse.java index 3c5a9ec0d44..fbd5c3c9440 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAwsIdentityConnectorCompartmentResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAwsIdentityConnectorCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAwsKeyCompartmentResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAwsKeyCompartmentResponse.java index 841d430f5e8..eca3f304d75 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAwsKeyCompartmentResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAwsKeyCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAzureBlobContainerCompartmentResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAzureBlobContainerCompartmentResponse.java index c3c072bcc73..2891c7a8fca 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAzureBlobContainerCompartmentResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAzureBlobContainerCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAzureBlobMountCompartmentResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAzureBlobMountCompartmentResponse.java index 8fbf7f0578e..2483a0c85c1 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAzureBlobMountCompartmentResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAzureBlobMountCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAzureConnectorCompartmentResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAzureConnectorCompartmentResponse.java index 4c61c6d5394..913e8591ff0 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAzureConnectorCompartmentResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAzureConnectorCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAzureVaultAssociationCompartmentResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAzureVaultAssociationCompartmentResponse.java index d8a2db7a5d3..d2c18448d39 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAzureVaultAssociationCompartmentResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAzureVaultAssociationCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAzureVaultCompartmentResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAzureVaultCompartmentResponse.java index feac154b865..cd81be82fa7 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAzureVaultCompartmentResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbAzureVaultCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbGcpIdentityConnectorCompartmentResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbGcpIdentityConnectorCompartmentResponse.java index ad9cd11f92e..645958eb895 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbGcpIdentityConnectorCompartmentResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbGcpIdentityConnectorCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbGcpKeyRingCompartmentResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbGcpKeyRingCompartmentResponse.java index 33a26b541ed..3a2f260eea8 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbGcpKeyRingCompartmentResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ChangeOracleDbGcpKeyRingCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateMultiCloudResourceDiscoveryResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateMultiCloudResourceDiscoveryResponse.java index d9f548b399a..232c9d54c99 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateMultiCloudResourceDiscoveryResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateMultiCloudResourceDiscoveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAwsIdentityConnectorResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAwsIdentityConnectorResponse.java index 39ba1676b71..399c44d0fd9 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAwsIdentityConnectorResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAwsIdentityConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAwsKeyResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAwsKeyResponse.java index e847ab56374..81f6d358ed5 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAwsKeyResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAwsKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAzureBlobContainerResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAzureBlobContainerResponse.java index fe5934489c2..7243491310f 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAzureBlobContainerResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAzureBlobContainerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAzureBlobMountResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAzureBlobMountResponse.java index 42562b490ca..164c240aedb 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAzureBlobMountResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAzureBlobMountResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAzureConnectorResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAzureConnectorResponse.java index 04a44591c2e..8f44fc5ffdc 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAzureConnectorResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAzureConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAzureVaultAssociationResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAzureVaultAssociationResponse.java index b314e664a17..8417b59f244 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAzureVaultAssociationResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAzureVaultAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAzureVaultResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAzureVaultResponse.java index d53ac7da7a4..41724109464 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAzureVaultResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbAzureVaultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbGcpIdentityConnectorResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbGcpIdentityConnectorResponse.java index 201d7ee0b05..557cb525fd2 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbGcpIdentityConnectorResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbGcpIdentityConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbGcpKeyRingResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbGcpKeyRingResponse.java index 06b63126fb3..9d20c74df90 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbGcpKeyRingResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/CreateOracleDbGcpKeyRingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteMultiCloudResourceDiscoveryResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteMultiCloudResourceDiscoveryResponse.java index 42e77b30ee3..6f4055c7e78 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteMultiCloudResourceDiscoveryResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteMultiCloudResourceDiscoveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAwsIdentityConnectorResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAwsIdentityConnectorResponse.java index ce0c2430f45..a9d8d57c324 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAwsIdentityConnectorResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAwsIdentityConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAwsKeyResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAwsKeyResponse.java index 1f0e0fc9bae..801d6461c73 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAwsKeyResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAwsKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAzureBlobContainerResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAzureBlobContainerResponse.java index 6f630d66bd5..67b31883c4d 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAzureBlobContainerResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAzureBlobContainerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAzureBlobMountResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAzureBlobMountResponse.java index 66624139efe..80639e10833 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAzureBlobMountResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAzureBlobMountResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAzureConnectorResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAzureConnectorResponse.java index 907305ad441..e4be3eb35fb 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAzureConnectorResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAzureConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAzureVaultAssociationResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAzureVaultAssociationResponse.java index c8a93270ecc..620d5cb02e0 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAzureVaultAssociationResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAzureVaultAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAzureVaultResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAzureVaultResponse.java index de369ec29c5..7213fe7ca75 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAzureVaultResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbAzureVaultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbGcpIdentityConnectorResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbGcpIdentityConnectorResponse.java index d04525bfa1e..59943375492 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbGcpIdentityConnectorResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbGcpIdentityConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbGcpKeyRingResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbGcpKeyRingResponse.java index db412c79796..77cc253c590 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbGcpKeyRingResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/DeleteOracleDbGcpKeyRingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetMultiCloudResourceDiscoveryResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetMultiCloudResourceDiscoveryResponse.java index 348f753830c..cb63a8d3cfc 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetMultiCloudResourceDiscoveryResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetMultiCloudResourceDiscoveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAwsIdentityConnectorResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAwsIdentityConnectorResponse.java index 0f4620d19bd..3c3328411fe 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAwsIdentityConnectorResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAwsIdentityConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAwsKeyResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAwsKeyResponse.java index 1806f8d820b..958e5b53c0d 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAwsKeyResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAwsKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureBlobContainerResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureBlobContainerResponse.java index 0384c9d38cb..440fe6d81a3 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureBlobContainerResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureBlobContainerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureBlobMountResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureBlobMountResponse.java index 9a958fe42c5..368e1d737f5 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureBlobMountResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureBlobMountResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureConnectorResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureConnectorResponse.java index b14458ef878..e2a059bf3e6 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureConnectorResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureKeyResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureKeyResponse.java index e14a8881ea6..de5b2b0f2f6 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureKeyResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureVaultAssociationResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureVaultAssociationResponse.java index dfc712cf70e..0a2bc552bec 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureVaultAssociationResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureVaultAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureVaultResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureVaultResponse.java index 98b239d370e..8261512df60 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureVaultResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbAzureVaultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbGcpIdentityConnectorResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbGcpIdentityConnectorResponse.java index bd72eb20d91..10e382a0f1e 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbGcpIdentityConnectorResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbGcpIdentityConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbGcpKeyResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbGcpKeyResponse.java index 0128caa7ef5..6c971006882 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbGcpKeyResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbGcpKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbGcpKeyRingResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbGcpKeyRingResponse.java index 1d4c14c3379..e060eff2b86 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbGcpKeyRingResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetOracleDbGcpKeyRingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetWorkRequestResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetWorkRequestResponse.java index d890005b2de..34def5c9625 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetWorkRequestResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListMultiCloudResourceDiscoveriesResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListMultiCloudResourceDiscoveriesResponse.java index 9f010867fb5..9d73834afce 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListMultiCloudResourceDiscoveriesResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListMultiCloudResourceDiscoveriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAwsIdentityConnectorsResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAwsIdentityConnectorsResponse.java index 4eac1bf3082..33ed927e22c 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAwsIdentityConnectorsResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAwsIdentityConnectorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAwsKeysResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAwsKeysResponse.java index fba3b56cd49..1f86e24492b 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAwsKeysResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAwsKeysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureBlobContainersResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureBlobContainersResponse.java index eb570d581a7..0ed6c504e1d 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureBlobContainersResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureBlobContainersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureBlobMountsResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureBlobMountsResponse.java index 3faabeaaa74..b392a00d6ac 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureBlobMountsResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureBlobMountsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureConnectorsResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureConnectorsResponse.java index 8ce71104888..4081daa3de9 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureConnectorsResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureConnectorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureKeysResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureKeysResponse.java index e2f1824ef97..7e3ec0591d0 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureKeysResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureKeysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureVaultAssociationsResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureVaultAssociationsResponse.java index 138d20f26f4..a53426163bc 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureVaultAssociationsResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureVaultAssociationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureVaultsResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureVaultsResponse.java index 91193bf519d..3c39a78ee9b 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureVaultsResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbAzureVaultsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbGcpIdentityConnectorsResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbGcpIdentityConnectorsResponse.java index 48c7d14ba73..2e75e8792c8 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbGcpIdentityConnectorsResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbGcpIdentityConnectorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbGcpKeyRingsResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbGcpKeyRingsResponse.java index dbad90c50fa..28d79d635d1 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbGcpKeyRingsResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbGcpKeyRingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbGcpKeysResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbGcpKeysResponse.java index 51b8bd9b440..74168831d84 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbGcpKeysResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListOracleDbGcpKeysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListWorkRequestErrorsResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListWorkRequestErrorsResponse.java index 158c157246d..965bf9e16ba 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListWorkRequestLogsResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListWorkRequestLogsResponse.java index c53421a24fc..8e7ae616ec7 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListWorkRequestLogsResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListWorkRequestsResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListWorkRequestsResponse.java index 21365e89d45..1d24d89269a 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListWorkRequestsResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/PatchOracleDbAzureConnectorResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/PatchOracleDbAzureConnectorResponse.java index 8270d759160..87fb17345b8 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/PatchOracleDbAzureConnectorResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/PatchOracleDbAzureConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbAwsIdentityConnectorResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbAwsIdentityConnectorResponse.java index 9a1952384c6..7fd51705c98 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbAwsIdentityConnectorResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbAwsIdentityConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbAwsKeyResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbAwsKeyResponse.java index 7b46c6f5ab9..4f2d40323f5 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbAwsKeyResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbAwsKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbAzureConnectorResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbAzureConnectorResponse.java index 1d770ce85c8..1fd99403024 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbAzureConnectorResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbAzureConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbAzureVaultResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbAzureVaultResponse.java index e16c2d5ad7a..818c4037100 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbAzureVaultResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbAzureVaultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbGcpIdentityConnectorResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbGcpIdentityConnectorResponse.java index 246bc99ee23..eb829c977f9 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbGcpIdentityConnectorResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbGcpIdentityConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbGcpKeyRingResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbGcpKeyRingResponse.java index 4ea77605044..3f9af8c7567 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbGcpKeyRingResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/RefreshOracleDbGcpKeyRingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateMultiCloudResourceDiscoveryResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateMultiCloudResourceDiscoveryResponse.java index bb194707583..83ec439219e 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateMultiCloudResourceDiscoveryResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateMultiCloudResourceDiscoveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAwsIdentityConnectorResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAwsIdentityConnectorResponse.java index da4636686a7..9dc94904d3a 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAwsIdentityConnectorResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAwsIdentityConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAwsKeyResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAwsKeyResponse.java index 7b4bd5eff47..9826ba13e87 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAwsKeyResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAwsKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAzureBlobContainerResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAzureBlobContainerResponse.java index 44588070356..8b4603c9716 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAzureBlobContainerResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAzureBlobContainerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAzureBlobMountResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAzureBlobMountResponse.java index a1e292f857f..efe4493ed1b 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAzureBlobMountResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAzureBlobMountResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAzureConnectorResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAzureConnectorResponse.java index 85fecc86f78..554664f336e 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAzureConnectorResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAzureConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAzureVaultAssociationResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAzureVaultAssociationResponse.java index c45466d2d2f..5ebe9d9a252 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAzureVaultAssociationResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAzureVaultAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAzureVaultResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAzureVaultResponse.java index c00f70a0ede..2fac35e221e 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAzureVaultResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbAzureVaultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbGcpIdentityConnectorResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbGcpIdentityConnectorResponse.java index 0dbe92f79d8..22579bdf377 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbGcpIdentityConnectorResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbGcpIdentityConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbGcpKeyRingResponse.java b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbGcpKeyRingResponse.java index c1c5db5002b..a8f8e626c09 100644 --- a/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbGcpKeyRingResponse.java +++ b/bmc-dbmulticloud/src/main/java/com/oracle/bmc/dbmulticloud/responses/UpdateOracleDbGcpKeyRingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dbmulticloud.responses; diff --git a/bmc-dbmulticloud/src/main/resources/com/oracle/bmc/dbmulticloud/client.properties b/bmc-dbmulticloud/src/main/resources/com/oracle/bmc/dbmulticloud/client.properties index 4f2d7a4b86a..b1f6b8e9ff6 100644 --- a/bmc-dbmulticloud/src/main/resources/com/oracle/bmc/dbmulticloud/client.properties +++ b/bmc-dbmulticloud/src/main/resources/com/oracle/bmc/dbmulticloud/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-delegateaccesscontrol/pom.xml b/bmc-delegateaccesscontrol/pom.xml index 7a47efa514c..54fe8b534b9 100644 --- a/bmc-delegateaccesscontrol/pom.xml +++ b/bmc-delegateaccesscontrol/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-delegateaccesscontrol @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControl.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControl.java index 0a843b9eaf8..d3f4fa33245 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControl.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControl.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControlAsync.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControlAsync.java index 707637f71c7..842d8167227 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControlAsync.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControlAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControlAsyncClient.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControlAsyncClient.java index eb8fec05200..77dd0c4e40f 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControlAsyncClient.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControlAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControlClient.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControlClient.java index ef1f6b23f77..e0c8e5605f1 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControlClient.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControlClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControlPaginators.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControlPaginators.java index f7b5fb2d1f5..00a6a0bb924 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControlPaginators.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControlPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControlWaiters.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControlWaiters.java index 411f3e4698c..3d82255abd5 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControlWaiters.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/DelegateAccessControlWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequest.java index 519e0e3a18c..ac09d24c669 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequestAsync.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequestAsync.java index d3bfbc3ff52..8c0db6ccb03 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequestAsync.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequestAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequestAsyncClient.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequestAsyncClient.java index a99c7720e5f..16d480d59ce 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequestAsyncClient.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequestAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequestClient.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequestClient.java index d0caeee39bd..dfea408fa14 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequestClient.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequestClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequestPaginators.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequestPaginators.java index 838d49ce385..e508089bc56 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequestPaginators.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequestPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequestWaiters.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequestWaiters.java index b17348729aa..a167d9d51f4 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequestWaiters.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/WorkRequestWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ActionType.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ActionType.java index 174e22542de..e6157b71bd8 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ActionType.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ApproveDelegatedResourceAccessRequestDetails.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ApproveDelegatedResourceAccessRequestDetails.java index bb37954ca9a..e1287bd5c3c 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ApproveDelegatedResourceAccessRequestDetails.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ApproveDelegatedResourceAccessRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/AuditReportStatus.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/AuditReportStatus.java index 8dd448c46c4..5ed2b14ac36 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/AuditReportStatus.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/AuditReportStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ChangeDelegationControlCompartmentDetails.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ChangeDelegationControlCompartmentDetails.java index e3f531f0c5f..ea5e493d6d5 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ChangeDelegationControlCompartmentDetails.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ChangeDelegationControlCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ChangeDelegationSubscriptionCompartmentDetails.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ChangeDelegationSubscriptionCompartmentDetails.java index 406adec2e02..9d5a1391565 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ChangeDelegationSubscriptionCompartmentDetails.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ChangeDelegationSubscriptionCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/CreateDelegationControlDetails.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/CreateDelegationControlDetails.java index 33279c4aaa7..6cc20115a31 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/CreateDelegationControlDetails.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/CreateDelegationControlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/CreateDelegationSubscriptionDetails.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/CreateDelegationSubscriptionDetails.java index d242752948c..4524a6964d9 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/CreateDelegationSubscriptionDetails.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/CreateDelegationSubscriptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequest.java index 1a6472d51aa..1e88af31135 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestApprovalDetails.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestApprovalDetails.java index 8985bafddc1..ce734a650be 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestApprovalDetails.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestApprovalDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestAuditLogReport.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestAuditLogReport.java index 54aa04d1fbe..4d0cc00b827 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestAuditLogReport.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestAuditLogReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestAuditType.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestAuditType.java index 74ec57d51f5..78f56188cdf 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestAuditType.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestAuditType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestHistoryCollection.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestHistoryCollection.java index 6df6787c083..637e5929d8d 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestHistoryCollection.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestHistoryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestHistorySummary.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestHistorySummary.java index 500fd1d50fc..b75b253b0e5 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestHistorySummary.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestHistorySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestSeverity.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestSeverity.java index 3623c28e5f2..37482cbd293 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestSeverity.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestSeverity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestStatus.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestStatus.java index 7c4537a9a2b..e3c6ca685e8 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestStatus.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestSummary.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestSummary.java index cf0f6ac8424..73e5b6ec57e 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestSummary.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestSummaryCollection.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestSummaryCollection.java index 37db41ca442..ee1357eff92 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestSummaryCollection.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequesterType.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequesterType.java index 2071b7e88a6..e034ac9ea8b 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequesterType.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegatedResourceAccessRequesterType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControl.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControl.java index 81aee913d7f..1c055a63346 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControl.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControl.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControlResourceCollection.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControlResourceCollection.java index 9c43f21ebd6..393d92e0b32 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControlResourceCollection.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControlResourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControlResourceSummary.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControlResourceSummary.java index 63c6803da8c..d680847d286 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControlResourceSummary.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControlResourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControlResourceType.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControlResourceType.java index 03bc2ab2968..d41f227ae25 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControlResourceType.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControlResourceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControlSummary.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControlSummary.java index 1dfe4360f14..c4ff1cbe0e1 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControlSummary.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControlSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControlSummaryCollection.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControlSummaryCollection.java index 8b5778e4587..a27da7e218a 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControlSummaryCollection.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationControlSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationSubscription.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationSubscription.java index ffa3d7f2923..437dedae8d7 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationSubscription.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationSubscription.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationSubscriptionSummary.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationSubscriptionSummary.java index 5cacfbcab2b..b029b316915 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationSubscriptionSummary.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationSubscriptionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationSubscriptionSummaryCollection.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationSubscriptionSummaryCollection.java index f55b4c2dbd6..4d4304afa4f 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationSubscriptionSummaryCollection.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/DelegationSubscriptionSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/OperationStatus.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/OperationStatus.java index fd8e3be3157..d9ff6b6e009 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/OperationStatus.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/OperationType.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/OperationType.java index 3dc6fc41302..99f429d6cfc 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/OperationType.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/RejectDelegatedResourceAccessRequestDetails.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/RejectDelegatedResourceAccessRequestDetails.java index 7d411609330..74b5ee91326 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/RejectDelegatedResourceAccessRequestDetails.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/RejectDelegatedResourceAccessRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/RevokeDelegatedResourceAccessRequestDetails.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/RevokeDelegatedResourceAccessRequestDetails.java index 24987d237e4..85bbe9ece10 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/RevokeDelegatedResourceAccessRequestDetails.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/RevokeDelegatedResourceAccessRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProvider.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProvider.java index 2d1299b554b..b8d54865dcf 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProvider.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderAction.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderAction.java index 500dfa1fbe4..2962556884d 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderAction.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderActionProperties.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderActionProperties.java index 29c48888709..e8fce9cb80d 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderActionProperties.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderActionProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderActionSummary.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderActionSummary.java index c006c064fb9..f5b91a5a28b 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderActionSummary.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderActionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderActionSummaryCollection.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderActionSummaryCollection.java index 092ff6f7703..4ac749bcd56 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderActionSummaryCollection.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderActionSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderInteractionCollection.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderInteractionCollection.java index 709163db329..4edb88c7fc6 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderInteractionCollection.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderInteractionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderInteractionRequestDetails.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderInteractionRequestDetails.java index 2f0b154bf11..f4b4a5eaf5d 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderInteractionRequestDetails.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderInteractionRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderInteractionSummary.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderInteractionSummary.java index 3ad7b25f8c7..1dd9a884859 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderInteractionSummary.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderInteractionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderServiceType.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderServiceType.java index fcf983bba1a..3b19f135472 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderServiceType.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderServiceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderSummary.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderSummary.java index 442cf99c24b..0e5fbba3d7a 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderSummary.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderSummaryCollection.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderSummaryCollection.java index 0ce62552dd3..21c1431a71b 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderSummaryCollection.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/ServiceProviderSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/SortOrders.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/SortOrders.java index 5300671e7b5..33564a57bcf 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/SortOrders.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/SortOrders.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/UpdateDelegationControlDetails.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/UpdateDelegationControlDetails.java index 056e378ce5d..584ce5fef4d 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/UpdateDelegationControlDetails.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/UpdateDelegationControlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/UpdateDelegationSubscriptionDetails.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/UpdateDelegationSubscriptionDetails.java index 1a97894b20c..792615301f9 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/UpdateDelegationSubscriptionDetails.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/UpdateDelegationSubscriptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequest.java index 99fb15726a1..855b82cad09 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestError.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestError.java index 93acdbab62b..5942e4be200 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestError.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestErrorCollection.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestErrorCollection.java index d654a83541b..4eabcd8da03 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestErrorCollection.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestLogEntry.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestLogEntry.java index 6b658dfcb4a..3f43952a13e 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestLogEntry.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestLogEntryCollection.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestLogEntryCollection.java index d77b802ceae..42a30c253a0 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestLogEntryCollection.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestResource.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestResource.java index e3440740af8..55a8746bc32 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestResource.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestResourceMetadataKey.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestResourceMetadataKey.java index 751b6126318..2df451dd6fe 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestResourceMetadataKey.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestSummary.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestSummary.java index 151dd58836a..5bc7abb9130 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestSummary.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestSummaryCollection.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestSummaryCollection.java index e10b6694e98..6bb4f252689 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestSummaryCollection.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.model; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ApproveDelegatedResourceAccessRequestRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ApproveDelegatedResourceAccessRequestRequest.java index 62fe6ac3d25..e6557c2cd94 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ApproveDelegatedResourceAccessRequestRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ApproveDelegatedResourceAccessRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ChangeDelegationControlCompartmentRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ChangeDelegationControlCompartmentRequest.java index c4447dc1ce3..0e85020b9e3 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ChangeDelegationControlCompartmentRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ChangeDelegationControlCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ChangeDelegationSubscriptionCompartmentRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ChangeDelegationSubscriptionCompartmentRequest.java index 90c862b4426..db9cd5cd550 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ChangeDelegationSubscriptionCompartmentRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ChangeDelegationSubscriptionCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/CreateDelegationControlRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/CreateDelegationControlRequest.java index 78ac19585a5..631088ac95a 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/CreateDelegationControlRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/CreateDelegationControlRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/CreateDelegationSubscriptionRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/CreateDelegationSubscriptionRequest.java index d2a422eeffe..bf20f97e5b2 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/CreateDelegationSubscriptionRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/CreateDelegationSubscriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/DeleteDelegationControlRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/DeleteDelegationControlRequest.java index 01e61a28db8..bae6fd7a80c 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/DeleteDelegationControlRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/DeleteDelegationControlRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/DeleteDelegationSubscriptionRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/DeleteDelegationSubscriptionRequest.java index da965960768..b031eb20ebc 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/DeleteDelegationSubscriptionRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/DeleteDelegationSubscriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetDelegatedResourceAccessRequestAuditLogReportRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetDelegatedResourceAccessRequestAuditLogReportRequest.java index b74f5f2bf6f..c34b079988b 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetDelegatedResourceAccessRequestAuditLogReportRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetDelegatedResourceAccessRequestAuditLogReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetDelegatedResourceAccessRequestRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetDelegatedResourceAccessRequestRequest.java index 0a5090ba21d..64ddb1bf443 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetDelegatedResourceAccessRequestRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetDelegatedResourceAccessRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetDelegationControlRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetDelegationControlRequest.java index 905ba26e79c..86274d0b0b2 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetDelegationControlRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetDelegationControlRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetDelegationSubscriptionRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetDelegationSubscriptionRequest.java index 8fd13981180..615b3c704eb 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetDelegationSubscriptionRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetDelegationSubscriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetServiceProviderActionRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetServiceProviderActionRequest.java index b6af0b7f32e..b58e84c5e17 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetServiceProviderActionRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetServiceProviderActionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetServiceProviderRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetServiceProviderRequest.java index 3b3c2e86dca..8815ded7e32 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetServiceProviderRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetServiceProviderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetWorkRequestRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetWorkRequestRequest.java index bfb2ac58794..c92eab79518 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetWorkRequestRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListDelegatedResourceAccessRequestHistoriesRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListDelegatedResourceAccessRequestHistoriesRequest.java index e2b330c8b41..5dfbbe7372d 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListDelegatedResourceAccessRequestHistoriesRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListDelegatedResourceAccessRequestHistoriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListDelegatedResourceAccessRequestsRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListDelegatedResourceAccessRequestsRequest.java index fdc28b6ecd8..c1082b1c71b 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListDelegatedResourceAccessRequestsRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListDelegatedResourceAccessRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListDelegationControlResourcesRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListDelegationControlResourcesRequest.java index b2ce46ac6cb..582ac975fd3 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListDelegationControlResourcesRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListDelegationControlResourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListDelegationControlsRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListDelegationControlsRequest.java index e28ecba8dab..4636bac7d79 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListDelegationControlsRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListDelegationControlsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListDelegationSubscriptionsRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListDelegationSubscriptionsRequest.java index e27bfa439e9..71398ef24b4 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListDelegationSubscriptionsRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListDelegationSubscriptionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListServiceProviderActionsRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListServiceProviderActionsRequest.java index 2155184e457..8b760a16c62 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListServiceProviderActionsRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListServiceProviderActionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListServiceProviderInteractionsRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListServiceProviderInteractionsRequest.java index a51660bbe0a..62c1f954eed 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListServiceProviderInteractionsRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListServiceProviderInteractionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListServiceProvidersRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListServiceProvidersRequest.java index 2f62f708f22..7636e1459f8 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListServiceProvidersRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListServiceProvidersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListWorkRequestErrorsRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListWorkRequestErrorsRequest.java index cc2266832fb..ca1577aea6a 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListWorkRequestLogsRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListWorkRequestLogsRequest.java index cc6eabc6c8e..0e62255cab8 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListWorkRequestLogsRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListWorkRequestsRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListWorkRequestsRequest.java index 2d5a82fced0..4586bb215c5 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListWorkRequestsRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/RejectDelegatedResourceAccessRequestRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/RejectDelegatedResourceAccessRequestRequest.java index ea5805b264e..4b2a84d14b5 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/RejectDelegatedResourceAccessRequestRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/RejectDelegatedResourceAccessRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/RevokeDelegatedResourceAccessRequestRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/RevokeDelegatedResourceAccessRequestRequest.java index bdf16498450..d768345b242 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/RevokeDelegatedResourceAccessRequestRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/RevokeDelegatedResourceAccessRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ServiceProviderInteractionRequestRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ServiceProviderInteractionRequestRequest.java index 846cc750363..6e82e56f16d 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ServiceProviderInteractionRequestRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/ServiceProviderInteractionRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/UpdateDelegationControlRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/UpdateDelegationControlRequest.java index 65908e4712a..5fead7e2109 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/UpdateDelegationControlRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/UpdateDelegationControlRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/UpdateDelegationSubscriptionRequest.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/UpdateDelegationSubscriptionRequest.java index 4becc8f38ab..1109a2e7668 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/UpdateDelegationSubscriptionRequest.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/requests/UpdateDelegationSubscriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.requests; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ApproveDelegatedResourceAccessRequestResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ApproveDelegatedResourceAccessRequestResponse.java index 59543c4141b..98d041d42e8 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ApproveDelegatedResourceAccessRequestResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ApproveDelegatedResourceAccessRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ChangeDelegationControlCompartmentResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ChangeDelegationControlCompartmentResponse.java index e7aede2d4e3..4f838d7e77c 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ChangeDelegationControlCompartmentResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ChangeDelegationControlCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ChangeDelegationSubscriptionCompartmentResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ChangeDelegationSubscriptionCompartmentResponse.java index 2579dd45837..1d3c82fb5c7 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ChangeDelegationSubscriptionCompartmentResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ChangeDelegationSubscriptionCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/CreateDelegationControlResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/CreateDelegationControlResponse.java index 4c509750e75..aee6c76b28d 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/CreateDelegationControlResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/CreateDelegationControlResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/CreateDelegationSubscriptionResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/CreateDelegationSubscriptionResponse.java index 9593d2178c3..62cb277144a 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/CreateDelegationSubscriptionResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/CreateDelegationSubscriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/DeleteDelegationControlResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/DeleteDelegationControlResponse.java index eac1c437bb7..6d15ea998c6 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/DeleteDelegationControlResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/DeleteDelegationControlResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/DeleteDelegationSubscriptionResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/DeleteDelegationSubscriptionResponse.java index 01824331594..1b5e5145742 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/DeleteDelegationSubscriptionResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/DeleteDelegationSubscriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetDelegatedResourceAccessRequestAuditLogReportResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetDelegatedResourceAccessRequestAuditLogReportResponse.java index 249cc550afe..9c74b672f5a 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetDelegatedResourceAccessRequestAuditLogReportResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetDelegatedResourceAccessRequestAuditLogReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetDelegatedResourceAccessRequestResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetDelegatedResourceAccessRequestResponse.java index 69b5f7695d0..5277c7d8e2f 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetDelegatedResourceAccessRequestResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetDelegatedResourceAccessRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetDelegationControlResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetDelegationControlResponse.java index 1b7972b538c..9717b86d9ea 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetDelegationControlResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetDelegationControlResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetDelegationSubscriptionResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetDelegationSubscriptionResponse.java index 7b41eaa7d01..0852b83f619 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetDelegationSubscriptionResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetDelegationSubscriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetServiceProviderActionResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetServiceProviderActionResponse.java index c66728e242c..97971dd1c05 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetServiceProviderActionResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetServiceProviderActionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetServiceProviderResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetServiceProviderResponse.java index 7d1beb33230..2728efb45d0 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetServiceProviderResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetServiceProviderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetWorkRequestResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetWorkRequestResponse.java index 5d2b99d1be5..80847902229 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetWorkRequestResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListDelegatedResourceAccessRequestHistoriesResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListDelegatedResourceAccessRequestHistoriesResponse.java index 71c6dc94911..cb8e81b3e8e 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListDelegatedResourceAccessRequestHistoriesResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListDelegatedResourceAccessRequestHistoriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListDelegatedResourceAccessRequestsResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListDelegatedResourceAccessRequestsResponse.java index 3d7a4eeb729..4ddc6d1bfc5 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListDelegatedResourceAccessRequestsResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListDelegatedResourceAccessRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListDelegationControlResourcesResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListDelegationControlResourcesResponse.java index 963acb4e22a..917ac9c1380 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListDelegationControlResourcesResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListDelegationControlResourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListDelegationControlsResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListDelegationControlsResponse.java index c2bd28a3013..5a289ebfeb2 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListDelegationControlsResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListDelegationControlsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListDelegationSubscriptionsResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListDelegationSubscriptionsResponse.java index ebcebaedfc1..4bfb11a8d66 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListDelegationSubscriptionsResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListDelegationSubscriptionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListServiceProviderActionsResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListServiceProviderActionsResponse.java index 48ea4c20151..b874ade0218 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListServiceProviderActionsResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListServiceProviderActionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListServiceProviderInteractionsResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListServiceProviderInteractionsResponse.java index a9d56750370..b17b1ed473b 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListServiceProviderInteractionsResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListServiceProviderInteractionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListServiceProvidersResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListServiceProvidersResponse.java index 5a31c1ba383..c5fa40e5acc 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListServiceProvidersResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListServiceProvidersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListWorkRequestErrorsResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListWorkRequestErrorsResponse.java index 73d23405445..223de17d751 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListWorkRequestLogsResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListWorkRequestLogsResponse.java index 7776369ded9..bcc0e09af32 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListWorkRequestLogsResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListWorkRequestsResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListWorkRequestsResponse.java index 9eebc5a2263..758e8c9aaea 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListWorkRequestsResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/RejectDelegatedResourceAccessRequestResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/RejectDelegatedResourceAccessRequestResponse.java index 5a5bdff311b..912d328e3a2 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/RejectDelegatedResourceAccessRequestResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/RejectDelegatedResourceAccessRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/RevokeDelegatedResourceAccessRequestResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/RevokeDelegatedResourceAccessRequestResponse.java index f63d4fa170b..e613de46760 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/RevokeDelegatedResourceAccessRequestResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/RevokeDelegatedResourceAccessRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ServiceProviderInteractionRequestResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ServiceProviderInteractionRequestResponse.java index a52ac710fb6..1b5b5df1e20 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ServiceProviderInteractionRequestResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/ServiceProviderInteractionRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/UpdateDelegationControlResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/UpdateDelegationControlResponse.java index b1004844e5d..19c3dff226d 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/UpdateDelegationControlResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/UpdateDelegationControlResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/UpdateDelegationSubscriptionResponse.java b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/UpdateDelegationSubscriptionResponse.java index 06d56593f48..f0833622a83 100644 --- a/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/UpdateDelegationSubscriptionResponse.java +++ b/bmc-delegateaccesscontrol/src/main/java/com/oracle/bmc/delegateaccesscontrol/responses/UpdateDelegationSubscriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.delegateaccesscontrol.responses; diff --git a/bmc-delegateaccesscontrol/src/main/resources/com/oracle/bmc/delegateaccesscontrol/client.properties b/bmc-delegateaccesscontrol/src/main/resources/com/oracle/bmc/delegateaccesscontrol/client.properties index 3e1551aa288..e1ec1b6b372 100644 --- a/bmc-delegateaccesscontrol/src/main/resources/com/oracle/bmc/delegateaccesscontrol/client.properties +++ b/bmc-delegateaccesscontrol/src/main/resources/com/oracle/bmc/delegateaccesscontrol/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-demandsignal/pom.xml b/bmc-demandsignal/pom.xml index 77fb9b84870..6a247a43895 100644 --- a/bmc-demandsignal/pom.xml +++ b/bmc-demandsignal/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-demandsignal @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignal.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignal.java index 6621e8ce1be..b6b20096c40 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignal.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignal.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignalAsync.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignalAsync.java index 7212122dc45..121b45fa271 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignalAsync.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignalAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignalAsyncClient.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignalAsyncClient.java index 20156016a4b..07b5541986f 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignalAsyncClient.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignalAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignalClient.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignalClient.java index df96960a082..416f503f9fe 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignalClient.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignalClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignalPaginators.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignalPaginators.java index 0c995532e88..fae5ecfb500 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignalPaginators.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignalPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignalWaiters.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignalWaiters.java index daff53b5263..d171038f5dc 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignalWaiters.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/OccDemandSignalWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/ChangeOccDemandSignalCompartmentDetails.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/ChangeOccDemandSignalCompartmentDetails.java index 27fdb65b2e9..24609301507 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/ChangeOccDemandSignalCompartmentDetails.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/ChangeOccDemandSignalCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.model; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/CreateOccDemandSignalDetails.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/CreateOccDemandSignalDetails.java index 2196e10dc7e..687c3bcd462 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/CreateOccDemandSignalDetails.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/CreateOccDemandSignalDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.model; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/OccDemandSignal.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/OccDemandSignal.java index 8f4a240127b..f26c6acbed8 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/OccDemandSignal.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/OccDemandSignal.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.model; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/OccDemandSignalCollection.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/OccDemandSignalCollection.java index 98fe0d054ea..2c8b052f8fe 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/OccDemandSignalCollection.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/OccDemandSignalCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.model; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/OccDemandSignalData.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/OccDemandSignalData.java index 35489c73fea..7ac8a0d5e83 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/OccDemandSignalData.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/OccDemandSignalData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.model; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/OccDemandSignalSummary.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/OccDemandSignalSummary.java index 05aa365e5ce..73405e1c799 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/OccDemandSignalSummary.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/OccDemandSignalSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.model; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/OccDemandSignalValue.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/OccDemandSignalValue.java index e4998ac2013..abc716509f6 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/OccDemandSignalValue.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/OccDemandSignalValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.model; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchInsertInstruction.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchInsertInstruction.java index bcb1c805a9d..51d11597493 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchInsertInstruction.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchInsertInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.model; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchInsertMultipleInstruction.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchInsertMultipleInstruction.java index 1ebb5cdc1a8..f54a2e1f941 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchInsertMultipleInstruction.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchInsertMultipleInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.model; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchInstruction.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchInstruction.java index ef5a156599d..6e9378f0d0a 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchInstruction.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.model; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchMergeInstruction.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchMergeInstruction.java index 121599400f3..12258cb4911 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchMergeInstruction.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchMergeInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.model; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchMoveInstruction.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchMoveInstruction.java index 9325de826ef..5547d57e6be 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchMoveInstruction.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchMoveInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.model; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchOccDemandSignalDetails.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchOccDemandSignalDetails.java index 3b91d589a3e..7ca24cefce3 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchOccDemandSignalDetails.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchOccDemandSignalDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.model; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchProhibitInstruction.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchProhibitInstruction.java index 05e9621bc2a..1897cfead7e 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchProhibitInstruction.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchProhibitInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.model; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchRemoveInstruction.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchRemoveInstruction.java index 4265e32bd79..81c3290e160 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchRemoveInstruction.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchRemoveInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.model; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchReplaceInstruction.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchReplaceInstruction.java index 8e4203082eb..5b77fff776e 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchReplaceInstruction.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchReplaceInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.model; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchRequireInstruction.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchRequireInstruction.java index 995dff07514..c24219fb20d 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchRequireInstruction.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/PatchRequireInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.model; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/SortOrder.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/SortOrder.java index 889b8478733..bb9436c79d5 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/SortOrder.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.model; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/UpdateOccDemandSignalDetails.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/UpdateOccDemandSignalDetails.java index 5303654fc04..749eeef21b3 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/UpdateOccDemandSignalDetails.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/model/UpdateOccDemandSignalDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.model; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/ChangeOccDemandSignalCompartmentRequest.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/ChangeOccDemandSignalCompartmentRequest.java index 94c1acbc36d..2805c968f43 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/ChangeOccDemandSignalCompartmentRequest.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/ChangeOccDemandSignalCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.requests; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/CreateOccDemandSignalRequest.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/CreateOccDemandSignalRequest.java index 87196bb978f..7a33c693d95 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/CreateOccDemandSignalRequest.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/CreateOccDemandSignalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.requests; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/DeleteOccDemandSignalRequest.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/DeleteOccDemandSignalRequest.java index cc01ed2477f..d2ec5a19e5d 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/DeleteOccDemandSignalRequest.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/DeleteOccDemandSignalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.requests; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/GetOccDemandSignalRequest.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/GetOccDemandSignalRequest.java index 23a54760bf5..35e256be82e 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/GetOccDemandSignalRequest.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/GetOccDemandSignalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.requests; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/ListOccDemandSignalsRequest.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/ListOccDemandSignalsRequest.java index 701560e2e38..6d3b4bcb860 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/ListOccDemandSignalsRequest.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/ListOccDemandSignalsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.requests; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/PatchOccDemandSignalRequest.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/PatchOccDemandSignalRequest.java index 329f95e73bd..bab9667df11 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/PatchOccDemandSignalRequest.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/PatchOccDemandSignalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.requests; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/UpdateOccDemandSignalRequest.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/UpdateOccDemandSignalRequest.java index 8b677d27ffa..0be0ab1a2e4 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/UpdateOccDemandSignalRequest.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/requests/UpdateOccDemandSignalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.requests; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/ChangeOccDemandSignalCompartmentResponse.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/ChangeOccDemandSignalCompartmentResponse.java index bcbe148628c..f4ac55aba95 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/ChangeOccDemandSignalCompartmentResponse.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/ChangeOccDemandSignalCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.responses; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/CreateOccDemandSignalResponse.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/CreateOccDemandSignalResponse.java index 9e65a2b7731..35643a96818 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/CreateOccDemandSignalResponse.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/CreateOccDemandSignalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.responses; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/DeleteOccDemandSignalResponse.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/DeleteOccDemandSignalResponse.java index c4c93f0fadb..a8506a57c3e 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/DeleteOccDemandSignalResponse.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/DeleteOccDemandSignalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.responses; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/GetOccDemandSignalResponse.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/GetOccDemandSignalResponse.java index 5a37025dcb4..2757454f20d 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/GetOccDemandSignalResponse.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/GetOccDemandSignalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.responses; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/ListOccDemandSignalsResponse.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/ListOccDemandSignalsResponse.java index ac526d2a326..28decef56f4 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/ListOccDemandSignalsResponse.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/ListOccDemandSignalsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.responses; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/PatchOccDemandSignalResponse.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/PatchOccDemandSignalResponse.java index 61260f97037..5e5f96b3ac1 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/PatchOccDemandSignalResponse.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/PatchOccDemandSignalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.responses; diff --git a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/UpdateOccDemandSignalResponse.java b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/UpdateOccDemandSignalResponse.java index 4ca519d894b..182cfe0ab7e 100644 --- a/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/UpdateOccDemandSignalResponse.java +++ b/bmc-demandsignal/src/main/java/com/oracle/bmc/demandsignal/responses/UpdateOccDemandSignalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.demandsignal.responses; diff --git a/bmc-demandsignal/src/main/resources/com/oracle/bmc/demandsignal/client.properties b/bmc-demandsignal/src/main/resources/com/oracle/bmc/demandsignal/client.properties index 949a2fcc182..fefe21c1d9b 100644 --- a/bmc-demandsignal/src/main/resources/com/oracle/bmc/demandsignal/client.properties +++ b/bmc-demandsignal/src/main/resources/com/oracle/bmc/demandsignal/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-desktops/pom.xml b/bmc-desktops/pom.xml index d5eddde45b8..f5137117b29 100644 --- a/bmc-desktops/pom.xml +++ b/bmc-desktops/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-desktops @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopService.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopService.java index 86ac5b5952d..eecc6e4f268 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopService.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopService.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopServiceAsync.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopServiceAsync.java index d3bf77d89d7..24602552900 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopServiceAsync.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopServiceAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopServiceAsyncClient.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopServiceAsyncClient.java index 71ea170fade..453b754f20e 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopServiceAsyncClient.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopServiceAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopServiceClient.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopServiceClient.java index 330fc473c99..c3a73de4cff 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopServiceClient.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopServiceClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopServicePaginators.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopServicePaginators.java index f5c4f4aaf8a..57c20e45b2f 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopServicePaginators.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopServicePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopServiceWaiters.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopServiceWaiters.java index b8ade8bef73..4bcc082abd0 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopServiceWaiters.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/DesktopServiceWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/ActionType.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/ActionType.java index 13288b130f0..76548676e6c 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/ActionType.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/ChangeDesktopPoolCompartmentDetails.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/ChangeDesktopPoolCompartmentDetails.java index f6b5aa76d8d..885afe3f7de 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/ChangeDesktopPoolCompartmentDetails.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/ChangeDesktopPoolCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/CreateDesktopPoolDesktopSessionLifecycleActions.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/CreateDesktopPoolDesktopSessionLifecycleActions.java index 12af158b69d..9623bce615c 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/CreateDesktopPoolDesktopSessionLifecycleActions.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/CreateDesktopPoolDesktopSessionLifecycleActions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/CreateDesktopPoolDetails.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/CreateDesktopPoolDetails.java index c795ebbf304..75ab4bec112 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/CreateDesktopPoolDetails.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/CreateDesktopPoolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/CreateDesktopPoolPrivateAccessDetails.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/CreateDesktopPoolPrivateAccessDetails.java index 57a8c6d37b3..e54324e3ff6 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/CreateDesktopPoolPrivateAccessDetails.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/CreateDesktopPoolPrivateAccessDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/CreateDesktopPoolShapeConfigDetails.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/CreateDesktopPoolShapeConfigDetails.java index abd498c179c..b547c3f5287 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/CreateDesktopPoolShapeConfigDetails.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/CreateDesktopPoolShapeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/Desktop.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/Desktop.java index 4fa5d3623ef..59cb657d1c0 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/Desktop.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/Desktop.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopAvailabilityPolicy.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopAvailabilityPolicy.java index 340cf47543e..cd0174705dc 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopAvailabilityPolicy.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopAvailabilityPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopCollection.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopCollection.java index 90c53d783db..9caefe848a7 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopCollection.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopDevicePolicy.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopDevicePolicy.java index 4e290d9cfb5..61ebb45e946 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopDevicePolicy.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopDevicePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopImage.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopImage.java index 57dceae0326..e47873bccd1 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopImage.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopImage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopNetworkConfiguration.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopNetworkConfiguration.java index 78239093aa8..554c641128e 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopNetworkConfiguration.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopNetworkConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPool.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPool.java index 80924d07e0d..716e16340f0 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPool.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPool.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolCollection.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolCollection.java index 820d506057e..23ff29db28d 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolCollection.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolDesktopCollection.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolDesktopCollection.java index eda8158a762..61b0d1f86bd 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolDesktopCollection.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolDesktopCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolDesktopSummary.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolDesktopSummary.java index 7826bbd8c14..47fea780fb1 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolDesktopSummary.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolDesktopSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolPrivateAccessDetails.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolPrivateAccessDetails.java index b3951d2a487..87dc94d40f4 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolPrivateAccessDetails.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolPrivateAccessDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolShapeConfig.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolShapeConfig.java index 5ac2b18d91f..8fe7b914aba 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolShapeConfig.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolShapeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolSummary.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolSummary.java index 2c0cb13f71b..37a74516c08 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolSummary.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolVolumeCollection.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolVolumeCollection.java index 7020f05bd20..64ca7d89b8b 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolVolumeCollection.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolVolumeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolVolumeSummary.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolVolumeSummary.java index f4ed8bc4d91..c2740f73b5f 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolVolumeSummary.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopPoolVolumeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopSchedule.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopSchedule.java index 623f68d0874..eafa910c23e 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopSchedule.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopSchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopSessionLifecycleActions.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopSessionLifecycleActions.java index 7318c8ae8e7..55f6e87fa5e 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopSessionLifecycleActions.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopSessionLifecycleActions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopSummary.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopSummary.java index d368586ff1f..116421aeb88 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopSummary.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DesktopSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DisconnectConfig.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DisconnectConfig.java index b77214f9634..505b1415675 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DisconnectConfig.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/DisconnectConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/HostingOptions.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/HostingOptions.java index c7f28d552dd..ca908ecf88d 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/HostingOptions.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/HostingOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/InactivityConfig.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/InactivityConfig.java index dd701cbfecd..cb8fa89357b 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/InactivityConfig.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/InactivityConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/LifecycleState.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/LifecycleState.java index 5b0b9be1586..3191b21b922 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/LifecycleState.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/LifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/OperationStatus.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/OperationStatus.java index d4ca28d5636..80e777aac63 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/OperationStatus.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/OperationType.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/OperationType.java index 63a34651517..67f570edd48 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/OperationType.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/UpdateDesktopDetails.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/UpdateDesktopDetails.java index 32879cd4c68..e63f4c20905 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/UpdateDesktopDetails.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/UpdateDesktopDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/UpdateDesktopPoolDesktopSessionLifecycleActions.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/UpdateDesktopPoolDesktopSessionLifecycleActions.java index 51d9d0f16c5..d6e83656abf 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/UpdateDesktopPoolDesktopSessionLifecycleActions.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/UpdateDesktopPoolDesktopSessionLifecycleActions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/UpdateDesktopPoolDetails.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/UpdateDesktopPoolDetails.java index bc69b241adb..43c8d2cd903 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/UpdateDesktopPoolDetails.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/UpdateDesktopPoolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequest.java index b03825b6298..26cf831200e 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestError.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestError.java index 980c4d23019..b207a5536cf 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestError.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestErrorCollection.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestErrorCollection.java index 92198bd5c44..24e74d65ad8 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestErrorCollection.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestLogEntry.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestLogEntry.java index d3e3168ae23..7a9032a6e95 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestLogEntry.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestLogEntryCollection.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestLogEntryCollection.java index faaf67f68d8..9c0731b1f9a 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestLogEntryCollection.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestResource.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestResource.java index 9f11e4d6577..aeef0124462 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestResource.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestSummary.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestSummary.java index 2399f4dc711..6da8b159429 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestSummary.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestSummaryCollection.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestSummaryCollection.java index 484042d58b4..8da4a2c8d57 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestSummaryCollection.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.model; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/CancelWorkRequestRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/CancelWorkRequestRequest.java index 7129d03e6d1..713db83d33b 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/CancelWorkRequestRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.requests; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ChangeDesktopPoolCompartmentRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ChangeDesktopPoolCompartmentRequest.java index a535a35d5cd..1c04c66f6d4 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ChangeDesktopPoolCompartmentRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ChangeDesktopPoolCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.requests; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/CreateDesktopPoolRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/CreateDesktopPoolRequest.java index 6622cffa2a5..40ee80c8010 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/CreateDesktopPoolRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/CreateDesktopPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.requests; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/DeleteDesktopPoolRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/DeleteDesktopPoolRequest.java index ef488f7163b..6f6d7556d2f 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/DeleteDesktopPoolRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/DeleteDesktopPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.requests; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/DeleteDesktopRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/DeleteDesktopRequest.java index 51fd0191d9e..27843882e59 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/DeleteDesktopRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/DeleteDesktopRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.requests; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/GetDesktopPoolRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/GetDesktopPoolRequest.java index 131f0f3340e..b5f132fdc3a 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/GetDesktopPoolRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/GetDesktopPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.requests; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/GetDesktopRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/GetDesktopRequest.java index 4c3b8fa85c8..cd35471020b 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/GetDesktopRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/GetDesktopRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.requests; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/GetWorkRequestRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/GetWorkRequestRequest.java index 2d4b2b1e71a..f675cbeae0b 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/GetWorkRequestRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.requests; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListDesktopPoolDesktopsRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListDesktopPoolDesktopsRequest.java index 4840d17d738..9e53e5cea38 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListDesktopPoolDesktopsRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListDesktopPoolDesktopsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.requests; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListDesktopPoolVolumesRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListDesktopPoolVolumesRequest.java index 52709ce5a6c..33df65c3729 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListDesktopPoolVolumesRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListDesktopPoolVolumesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.requests; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListDesktopPoolsRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListDesktopPoolsRequest.java index 92312c617da..41d6d729e18 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListDesktopPoolsRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListDesktopPoolsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.requests; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListDesktopsRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListDesktopsRequest.java index 9713464b52e..3ed8ee8819f 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListDesktopsRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListDesktopsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.requests; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListWorkRequestErrorsRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListWorkRequestErrorsRequest.java index cc9b281f31d..0cca08b0465 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.requests; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListWorkRequestLogsRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListWorkRequestLogsRequest.java index 6c02d2f79ee..152f6378957 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListWorkRequestLogsRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.requests; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListWorkRequestsRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListWorkRequestsRequest.java index e2be3f86c05..e7afa1404cd 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListWorkRequestsRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.requests; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/StartDesktopPoolRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/StartDesktopPoolRequest.java index ce6aaa2cb08..565cfd8a79f 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/StartDesktopPoolRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/StartDesktopPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.requests; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/StartDesktopRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/StartDesktopRequest.java index 5738f2709b7..5859ec3f423 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/StartDesktopRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/StartDesktopRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.requests; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/StopDesktopPoolRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/StopDesktopPoolRequest.java index 2282e3797f6..7a73c4ee4e1 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/StopDesktopPoolRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/StopDesktopPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.requests; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/StopDesktopRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/StopDesktopRequest.java index 6c2f1146fdc..4445e514243 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/StopDesktopRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/StopDesktopRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.requests; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/UpdateDesktopPoolRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/UpdateDesktopPoolRequest.java index a122df7b59f..d6ace133072 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/UpdateDesktopPoolRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/UpdateDesktopPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.requests; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/UpdateDesktopRequest.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/UpdateDesktopRequest.java index da09a9e06d3..e2038236f3e 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/UpdateDesktopRequest.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/requests/UpdateDesktopRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.requests; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/CancelWorkRequestResponse.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/CancelWorkRequestResponse.java index 0b60df947d5..18dada2b02a 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/CancelWorkRequestResponse.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.responses; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ChangeDesktopPoolCompartmentResponse.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ChangeDesktopPoolCompartmentResponse.java index 0822265e6e2..ce5a65b2c82 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ChangeDesktopPoolCompartmentResponse.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ChangeDesktopPoolCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.responses; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/CreateDesktopPoolResponse.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/CreateDesktopPoolResponse.java index 0453257e644..f739ea34563 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/CreateDesktopPoolResponse.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/CreateDesktopPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.responses; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/DeleteDesktopPoolResponse.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/DeleteDesktopPoolResponse.java index e8d480aca15..de54f5d7167 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/DeleteDesktopPoolResponse.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/DeleteDesktopPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.responses; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/DeleteDesktopResponse.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/DeleteDesktopResponse.java index 715e815291b..824b8f83994 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/DeleteDesktopResponse.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/DeleteDesktopResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.responses; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/GetDesktopPoolResponse.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/GetDesktopPoolResponse.java index 0fb888b1d42..317faf9f8bd 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/GetDesktopPoolResponse.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/GetDesktopPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.responses; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/GetDesktopResponse.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/GetDesktopResponse.java index 9db90cfa272..8308cbdc8b2 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/GetDesktopResponse.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/GetDesktopResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.responses; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/GetWorkRequestResponse.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/GetWorkRequestResponse.java index e26864c108d..d0f69478c12 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/GetWorkRequestResponse.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.responses; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListDesktopPoolDesktopsResponse.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListDesktopPoolDesktopsResponse.java index 07520ec0bd4..d840a8eda6c 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListDesktopPoolDesktopsResponse.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListDesktopPoolDesktopsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.responses; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListDesktopPoolVolumesResponse.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListDesktopPoolVolumesResponse.java index 6cdef4b3617..c28b016974e 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListDesktopPoolVolumesResponse.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListDesktopPoolVolumesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.responses; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListDesktopPoolsResponse.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListDesktopPoolsResponse.java index 84f292b2384..81d92bd24fd 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListDesktopPoolsResponse.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListDesktopPoolsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.responses; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListDesktopsResponse.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListDesktopsResponse.java index 4292f0fda4f..5421265318a 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListDesktopsResponse.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListDesktopsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.responses; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListWorkRequestErrorsResponse.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListWorkRequestErrorsResponse.java index dfa25b104e3..c89e5c94a54 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.responses; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListWorkRequestLogsResponse.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListWorkRequestLogsResponse.java index d86dbb8b602..edd982a56f2 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListWorkRequestLogsResponse.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.responses; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListWorkRequestsResponse.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListWorkRequestsResponse.java index da403c5d400..e4e8334f41d 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListWorkRequestsResponse.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.responses; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/StartDesktopPoolResponse.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/StartDesktopPoolResponse.java index b790d3243cf..ff5d4864900 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/StartDesktopPoolResponse.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/StartDesktopPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.responses; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/StartDesktopResponse.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/StartDesktopResponse.java index fb9f54de5d8..4deedd7e189 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/StartDesktopResponse.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/StartDesktopResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.responses; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/StopDesktopPoolResponse.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/StopDesktopPoolResponse.java index 84871588f30..893d1c304db 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/StopDesktopPoolResponse.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/StopDesktopPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.responses; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/StopDesktopResponse.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/StopDesktopResponse.java index 83182abae2f..a017323cd0f 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/StopDesktopResponse.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/StopDesktopResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.responses; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/UpdateDesktopPoolResponse.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/UpdateDesktopPoolResponse.java index 329162f56e4..15ba62d7abf 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/UpdateDesktopPoolResponse.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/UpdateDesktopPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.responses; diff --git a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/UpdateDesktopResponse.java b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/UpdateDesktopResponse.java index 1e7d3996b46..2a533943a83 100644 --- a/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/UpdateDesktopResponse.java +++ b/bmc-desktops/src/main/java/com/oracle/bmc/desktops/responses/UpdateDesktopResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.desktops.responses; diff --git a/bmc-desktops/src/main/resources/com/oracle/bmc/desktops/client.properties b/bmc-desktops/src/main/resources/com/oracle/bmc/desktops/client.properties index ad528f8f749..414585461ab 100644 --- a/bmc-desktops/src/main/resources/com/oracle/bmc/desktops/client.properties +++ b/bmc-desktops/src/main/resources/com/oracle/bmc/desktops/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-devops/pom.xml b/bmc-devops/pom.xml index baad4a858dd..813b148af09 100644 --- a/bmc-devops/pom.xml +++ b/bmc-devops/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-devops @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/Devops.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/Devops.java index 93de7736540..247412b0f00 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/Devops.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/Devops.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops; @@ -1095,23 +1095,6 @@ GetPullRequestAttachmentResponse getPullRequestAttachment( GetPullRequestAttachmentContentResponse getPullRequestAttachmentContent( GetPullRequestAttachmentContentRequest request); - /** - * Get pull request diff summary metric - * - * @param request The request object containing the details to send - * @return A response object containing details about the completed operation - * @throws BmcException when an error occurs. This operation uses - * RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is - * provided. The specifics of the default retry strategy are described here - * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries - *

Example: Click here to see how to use - * GetPullRequestChangeSummaryMetrics API. - */ - GetPullRequestChangeSummaryMetricsResponse getPullRequestChangeSummaryMetrics( - GetPullRequestChangeSummaryMetricsRequest request); - /** * Get PullRequest comment by identifier * @@ -1693,39 +1676,6 @@ ListPullRequestAttachmentsResponse listPullRequestAttachments( */ ListPullRequestCommentsResponse listPullRequestComments(ListPullRequestCommentsRequest request); - /** - * List pull request commits - * - * @param request The request object containing the details to send - * @return A response object containing details about the completed operation - * @throws BmcException when an error occurs. This operation uses - * RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is - * provided. The specifics of the default retry strategy are described here - * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries - *

Example: Click here to see how to use - * ListPullRequestCommits API. - */ - ListPullRequestCommitsResponse listPullRequestCommits(ListPullRequestCommitsRequest request); - - /** - * List pull request file changes - * - * @param request The request object containing the details to send - * @return A response object containing details about the completed operation - * @throws BmcException when an error occurs. This operation uses - * RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is - * provided. The specifics of the default retry strategy are described here - * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries - *

Example: Click here to see how to use - * ListPullRequestFileChanges API. - */ - ListPullRequestFileChangesResponse listPullRequestFileChanges( - ListPullRequestFileChangesRequest request); - /** * Returns a list of PullRequests. * @@ -1935,40 +1885,6 @@ ListRepositoryCommitAnalyticsAuthorsResponse listRepositoryCommitAnalyticsAuthor */ ReopenPullRequestResponse reopenPullRequest(ReopenPullRequestRequest request); - /** - * Reopen a PullRequest Comment - * - * @param request The request object containing the details to send - * @return A response object containing details about the completed operation - * @throws BmcException when an error occurs. This operation uses - * RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is - * provided. The specifics of the default retry strategy are described here - * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries - *

Example: Click here to see how to use - * ReopenPullRequestComment API. - */ - ReopenPullRequestCommentResponse reopenPullRequestComment( - ReopenPullRequestCommentRequest request); - - /** - * Resolve a PullRequest Comment - * - * @param request The request object containing the details to send - * @return A response object containing details about the completed operation - * @throws BmcException when an error occurs. This operation uses - * RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is - * provided. The specifics of the default retry strategy are described here - * https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_Retries - *

Example: Click here to see how to use - * ResolvePullRequestComment API. - */ - ResolvePullRequestCommentResponse resolvePullRequestComment( - ResolvePullRequestCommentRequest request); - /** * Review a PullRequest * diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/DevopsAsync.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/DevopsAsync.java index 00e51755a58..d1f02435eca 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/DevopsAsync.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/DevopsAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops; @@ -1044,24 +1044,6 @@ java.util.concurrent.Future getPullRequestAtta GetPullRequestAttachmentContentResponse> handler); - /** - * Get pull request diff summary metric - * - * @param request The request object containing the details to send - * @param handler The request handler to invoke upon completion, may be null. - * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, - * if you provide an AsyncHandler and use the Future, some types of responses (like - * java.io.InputStream) may not be able to be read in both places as the underlying stream - * may only be consumed once. - */ - java.util.concurrent.Future - getPullRequestChangeSummaryMetrics( - GetPullRequestChangeSummaryMetricsRequest request, - com.oracle.bmc.responses.AsyncHandler< - GetPullRequestChangeSummaryMetricsRequest, - GetPullRequestChangeSummaryMetricsResponse> - handler); - /** * Get PullRequest comment by identifier * @@ -1632,38 +1614,6 @@ java.util.concurrent.Future listPullRequestComm ListPullRequestCommentsRequest, ListPullRequestCommentsResponse> handler); - /** - * List pull request commits - * - * @param request The request object containing the details to send - * @param handler The request handler to invoke upon completion, may be null. - * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, - * if you provide an AsyncHandler and use the Future, some types of responses (like - * java.io.InputStream) may not be able to be read in both places as the underlying stream - * may only be consumed once. - */ - java.util.concurrent.Future listPullRequestCommits( - ListPullRequestCommitsRequest request, - com.oracle.bmc.responses.AsyncHandler< - ListPullRequestCommitsRequest, ListPullRequestCommitsResponse> - handler); - - /** - * List pull request file changes - * - * @param request The request object containing the details to send - * @param handler The request handler to invoke upon completion, may be null. - * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, - * if you provide an AsyncHandler and use the Future, some types of responses (like - * java.io.InputStream) may not be able to be read in both places as the underlying stream - * may only be consumed once. - */ - java.util.concurrent.Future listPullRequestFileChanges( - ListPullRequestFileChangesRequest request, - com.oracle.bmc.responses.AsyncHandler< - ListPullRequestFileChangesRequest, ListPullRequestFileChangesResponse> - handler); - /** * Returns a list of PullRequests. * @@ -1866,38 +1816,6 @@ java.util.concurrent.Future reopenPullRequest( ReopenPullRequestRequest, ReopenPullRequestResponse> handler); - /** - * Reopen a PullRequest Comment - * - * @param request The request object containing the details to send - * @param handler The request handler to invoke upon completion, may be null. - * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, - * if you provide an AsyncHandler and use the Future, some types of responses (like - * java.io.InputStream) may not be able to be read in both places as the underlying stream - * may only be consumed once. - */ - java.util.concurrent.Future reopenPullRequestComment( - ReopenPullRequestCommentRequest request, - com.oracle.bmc.responses.AsyncHandler< - ReopenPullRequestCommentRequest, ReopenPullRequestCommentResponse> - handler); - - /** - * Resolve a PullRequest Comment - * - * @param request The request object containing the details to send - * @param handler The request handler to invoke upon completion, may be null. - * @return A Future that can be used to get the response if no AsyncHandler was provided. Note, - * if you provide an AsyncHandler and use the Future, some types of responses (like - * java.io.InputStream) may not be able to be read in both places as the underlying stream - * may only be consumed once. - */ - java.util.concurrent.Future resolvePullRequestComment( - ResolvePullRequestCommentRequest request, - com.oracle.bmc.responses.AsyncHandler< - ResolvePullRequestCommentRequest, ResolvePullRequestCommentResponse> - handler); - /** * Review a PullRequest * diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/DevopsAsyncClient.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/DevopsAsyncClient.java index 8c342dc2e41..d369cec534a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/DevopsAsyncClient.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/DevopsAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops; @@ -2265,41 +2265,6 @@ public java.util.concurrent.Future getPullRequ .callAsync(handler); } - @Override - public java.util.concurrent.Future - getPullRequestChangeSummaryMetrics( - GetPullRequestChangeSummaryMetricsRequest request, - final com.oracle.bmc.responses.AsyncHandler< - GetPullRequestChangeSummaryMetricsRequest, - GetPullRequestChangeSummaryMetricsResponse> - handler) { - - Validate.notBlank(request.getPullRequestId(), "pullRequestId must not be blank"); - - return clientCall(request, GetPullRequestChangeSummaryMetricsResponse::builder) - .logger(LOG, "getPullRequestChangeSummaryMetrics") - .serviceDetails( - "Devops", - "GetPullRequestChangeSummaryMetrics", - "https://docs.oracle.com/iaas/api/#/en/devops/20210630/PullRequest/GetPullRequestChangeSummaryMetrics") - .method(com.oracle.bmc.http.client.Method.GET) - .requestBuilder(GetPullRequestChangeSummaryMetricsRequest::builder) - .basePath("/20210630") - .appendPathParam("pullRequests") - .appendPathParam(request.getPullRequestId()) - .appendPathParam("changeSummaryMetrics") - .accept("application/json") - .appendHeader("opc-request-id", request.getOpcRequestId()) - .handleBody( - com.oracle.bmc.devops.model.PullRequestChangeSummaryMetrics.class, - GetPullRequestChangeSummaryMetricsResponse.Builder - ::pullRequestChangeSummaryMetrics) - .handleResponseHeaderString( - "opc-request-id", - GetPullRequestChangeSummaryMetricsResponse.Builder::opcRequestId) - .callAsync(handler); - } - @Override public java.util.concurrent.Future getPullRequestComment( GetPullRequestCommentRequest request, @@ -3671,79 +3636,6 @@ public java.util.concurrent.Future listPullRequ .callAsync(handler); } - @Override - public java.util.concurrent.Future listPullRequestCommits( - ListPullRequestCommitsRequest request, - final com.oracle.bmc.responses.AsyncHandler< - ListPullRequestCommitsRequest, ListPullRequestCommitsResponse> - handler) { - - Validate.notBlank(request.getPullRequestId(), "pullRequestId must not be blank"); - - return clientCall(request, ListPullRequestCommitsResponse::builder) - .logger(LOG, "listPullRequestCommits") - .serviceDetails( - "Devops", - "ListPullRequestCommits", - "https://docs.oracle.com/iaas/api/#/en/devops/20210630/PullRequest/ListPullRequestCommits") - .method(com.oracle.bmc.http.client.Method.GET) - .requestBuilder(ListPullRequestCommitsRequest::builder) - .basePath("/20210630") - .appendPathParam("pullRequests") - .appendPathParam(request.getPullRequestId()) - .appendPathParam("commits") - .appendQueryParam("limit", request.getLimit()) - .appendQueryParam("page", request.getPage()) - .accept("application/json") - .appendHeader("opc-request-id", request.getOpcRequestId()) - .handleBody( - com.oracle.bmc.devops.model.RepositoryCommitCollection.class, - ListPullRequestCommitsResponse.Builder::repositoryCommitCollection) - .handleResponseHeaderString( - "opc-request-id", ListPullRequestCommitsResponse.Builder::opcRequestId) - .handleResponseHeaderString( - "opc-next-page", ListPullRequestCommitsResponse.Builder::opcNextPage) - .callAsync(handler); - } - - @Override - public java.util.concurrent.Future - listPullRequestFileChanges( - ListPullRequestFileChangesRequest request, - final com.oracle.bmc.responses.AsyncHandler< - ListPullRequestFileChangesRequest, - ListPullRequestFileChangesResponse> - handler) { - - Validate.notBlank(request.getPullRequestId(), "pullRequestId must not be blank"); - - return clientCall(request, ListPullRequestFileChangesResponse::builder) - .logger(LOG, "listPullRequestFileChanges") - .serviceDetails( - "Devops", - "ListPullRequestFileChanges", - "https://docs.oracle.com/iaas/api/#/en/devops/20210630/PullRequest/ListPullRequestFileChanges") - .method(com.oracle.bmc.http.client.Method.GET) - .requestBuilder(ListPullRequestFileChangesRequest::builder) - .basePath("/20210630") - .appendPathParam("pullRequests") - .appendPathParam(request.getPullRequestId()) - .appendPathParam("fileChanges") - .appendQueryParam("filePath", request.getFilePath()) - .appendQueryParam("limit", request.getLimit()) - .appendQueryParam("page", request.getPage()) - .accept("application/json") - .appendHeader("opc-request-id", request.getOpcRequestId()) - .handleBody( - com.oracle.bmc.devops.model.PullRequestFileChangeCollection.class, - ListPullRequestFileChangesResponse.Builder::pullRequestFileChangeCollection) - .handleResponseHeaderString( - "opc-request-id", ListPullRequestFileChangesResponse.Builder::opcRequestId) - .handleResponseHeaderString( - "opc-next-page", ListPullRequestFileChangesResponse.Builder::opcNextPage) - .callAsync(handler); - } - @Override public java.util.concurrent.Future listPullRequests( ListPullRequestsRequest request, @@ -4248,82 +4140,6 @@ public java.util.concurrent.Future reopenPullRequest( .callAsync(handler); } - @Override - public java.util.concurrent.Future reopenPullRequestComment( - ReopenPullRequestCommentRequest request, - final com.oracle.bmc.responses.AsyncHandler< - ReopenPullRequestCommentRequest, ReopenPullRequestCommentResponse> - handler) { - - Validate.notBlank(request.getPullRequestId(), "pullRequestId must not be blank"); - - Validate.notBlank(request.getCommentId(), "commentId must not be blank"); - - return clientCall(request, ReopenPullRequestCommentResponse::builder) - .logger(LOG, "reopenPullRequestComment") - .serviceDetails( - "Devops", - "ReopenPullRequestComment", - "https://docs.oracle.com/iaas/api/#/en/devops/20210630/PullRequest/ReopenPullRequestComment") - .method(com.oracle.bmc.http.client.Method.POST) - .requestBuilder(ReopenPullRequestCommentRequest::builder) - .basePath("/20210630") - .appendPathParam("pullRequests") - .appendPathParam(request.getPullRequestId()) - .appendPathParam("comments") - .appendPathParam(request.getCommentId()) - .appendPathParam("actions") - .appendPathParam("reopen") - .accept("application/json") - .appendHeader("if-match", request.getIfMatch()) - .appendHeader("opc-request-id", request.getOpcRequestId()) - .handleBody( - com.oracle.bmc.devops.model.PullRequestComment.class, - ReopenPullRequestCommentResponse.Builder::pullRequestComment) - .handleResponseHeaderString( - "opc-request-id", ReopenPullRequestCommentResponse.Builder::opcRequestId) - .handleResponseHeaderString("etag", ReopenPullRequestCommentResponse.Builder::etag) - .callAsync(handler); - } - - @Override - public java.util.concurrent.Future resolvePullRequestComment( - ResolvePullRequestCommentRequest request, - final com.oracle.bmc.responses.AsyncHandler< - ResolvePullRequestCommentRequest, ResolvePullRequestCommentResponse> - handler) { - - Validate.notBlank(request.getPullRequestId(), "pullRequestId must not be blank"); - - Validate.notBlank(request.getCommentId(), "commentId must not be blank"); - - return clientCall(request, ResolvePullRequestCommentResponse::builder) - .logger(LOG, "resolvePullRequestComment") - .serviceDetails( - "Devops", - "ResolvePullRequestComment", - "https://docs.oracle.com/iaas/api/#/en/devops/20210630/PullRequest/ResolvePullRequestComment") - .method(com.oracle.bmc.http.client.Method.POST) - .requestBuilder(ResolvePullRequestCommentRequest::builder) - .basePath("/20210630") - .appendPathParam("pullRequests") - .appendPathParam(request.getPullRequestId()) - .appendPathParam("comments") - .appendPathParam(request.getCommentId()) - .appendPathParam("actions") - .appendPathParam("resolve") - .accept("application/json") - .appendHeader("if-match", request.getIfMatch()) - .appendHeader("opc-request-id", request.getOpcRequestId()) - .handleBody( - com.oracle.bmc.devops.model.PullRequestComment.class, - ResolvePullRequestCommentResponse.Builder::pullRequestComment) - .handleResponseHeaderString( - "opc-request-id", ResolvePullRequestCommentResponse.Builder::opcRequestId) - .handleResponseHeaderString("etag", ResolvePullRequestCommentResponse.Builder::etag) - .callAsync(handler); - } - @Override public java.util.concurrent.Future reviewPullRequest( ReviewPullRequestRequest request, diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/DevopsClient.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/DevopsClient.java index 6e68bb8ab4b..ffa879b5bc6 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/DevopsClient.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/DevopsClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops; @@ -2122,37 +2122,6 @@ public GetPullRequestAttachmentContentResponse getPullRequestAttachmentContent( .callSync(); } - @Override - public GetPullRequestChangeSummaryMetricsResponse getPullRequestChangeSummaryMetrics( - GetPullRequestChangeSummaryMetricsRequest request) { - - Validate.notBlank(request.getPullRequestId(), "pullRequestId must not be blank"); - - return clientCall(request, GetPullRequestChangeSummaryMetricsResponse::builder) - .logger(LOG, "getPullRequestChangeSummaryMetrics") - .serviceDetails( - "Devops", - "GetPullRequestChangeSummaryMetrics", - "https://docs.oracle.com/iaas/api/#/en/devops/20210630/PullRequest/GetPullRequestChangeSummaryMetrics") - .method(com.oracle.bmc.http.client.Method.GET) - .requestBuilder(GetPullRequestChangeSummaryMetricsRequest::builder) - .basePath("/20210630") - .appendPathParam("pullRequests") - .appendPathParam(request.getPullRequestId()) - .appendPathParam("changeSummaryMetrics") - .accept("application/json") - .appendHeader("opc-request-id", request.getOpcRequestId()) - .operationUsesDefaultRetries() - .handleBody( - com.oracle.bmc.devops.model.PullRequestChangeSummaryMetrics.class, - GetPullRequestChangeSummaryMetricsResponse.Builder - ::pullRequestChangeSummaryMetrics) - .handleResponseHeaderString( - "opc-request-id", - GetPullRequestChangeSummaryMetricsResponse.Builder::opcRequestId) - .callSync(); - } - @Override public GetPullRequestCommentResponse getPullRequestComment( GetPullRequestCommentRequest request) { @@ -3431,73 +3400,6 @@ public ListPullRequestCommentsResponse listPullRequestComments( .callSync(); } - @Override - public ListPullRequestCommitsResponse listPullRequestCommits( - ListPullRequestCommitsRequest request) { - - Validate.notBlank(request.getPullRequestId(), "pullRequestId must not be blank"); - - return clientCall(request, ListPullRequestCommitsResponse::builder) - .logger(LOG, "listPullRequestCommits") - .serviceDetails( - "Devops", - "ListPullRequestCommits", - "https://docs.oracle.com/iaas/api/#/en/devops/20210630/PullRequest/ListPullRequestCommits") - .method(com.oracle.bmc.http.client.Method.GET) - .requestBuilder(ListPullRequestCommitsRequest::builder) - .basePath("/20210630") - .appendPathParam("pullRequests") - .appendPathParam(request.getPullRequestId()) - .appendPathParam("commits") - .appendQueryParam("limit", request.getLimit()) - .appendQueryParam("page", request.getPage()) - .accept("application/json") - .appendHeader("opc-request-id", request.getOpcRequestId()) - .operationUsesDefaultRetries() - .handleBody( - com.oracle.bmc.devops.model.RepositoryCommitCollection.class, - ListPullRequestCommitsResponse.Builder::repositoryCommitCollection) - .handleResponseHeaderString( - "opc-request-id", ListPullRequestCommitsResponse.Builder::opcRequestId) - .handleResponseHeaderString( - "opc-next-page", ListPullRequestCommitsResponse.Builder::opcNextPage) - .callSync(); - } - - @Override - public ListPullRequestFileChangesResponse listPullRequestFileChanges( - ListPullRequestFileChangesRequest request) { - - Validate.notBlank(request.getPullRequestId(), "pullRequestId must not be blank"); - - return clientCall(request, ListPullRequestFileChangesResponse::builder) - .logger(LOG, "listPullRequestFileChanges") - .serviceDetails( - "Devops", - "ListPullRequestFileChanges", - "https://docs.oracle.com/iaas/api/#/en/devops/20210630/PullRequest/ListPullRequestFileChanges") - .method(com.oracle.bmc.http.client.Method.GET) - .requestBuilder(ListPullRequestFileChangesRequest::builder) - .basePath("/20210630") - .appendPathParam("pullRequests") - .appendPathParam(request.getPullRequestId()) - .appendPathParam("fileChanges") - .appendQueryParam("filePath", request.getFilePath()) - .appendQueryParam("limit", request.getLimit()) - .appendQueryParam("page", request.getPage()) - .accept("application/json") - .appendHeader("opc-request-id", request.getOpcRequestId()) - .operationUsesDefaultRetries() - .handleBody( - com.oracle.bmc.devops.model.PullRequestFileChangeCollection.class, - ListPullRequestFileChangesResponse.Builder::pullRequestFileChangeCollection) - .handleResponseHeaderString( - "opc-request-id", ListPullRequestFileChangesResponse.Builder::opcRequestId) - .handleResponseHeaderString( - "opc-next-page", ListPullRequestFileChangesResponse.Builder::opcNextPage) - .callSync(); - } - @Override public ListPullRequestsResponse listPullRequests(ListPullRequestsRequest request) { @@ -3965,78 +3867,6 @@ public ReopenPullRequestResponse reopenPullRequest(ReopenPullRequestRequest requ .callSync(); } - @Override - public ReopenPullRequestCommentResponse reopenPullRequestComment( - ReopenPullRequestCommentRequest request) { - - Validate.notBlank(request.getPullRequestId(), "pullRequestId must not be blank"); - - Validate.notBlank(request.getCommentId(), "commentId must not be blank"); - - return clientCall(request, ReopenPullRequestCommentResponse::builder) - .logger(LOG, "reopenPullRequestComment") - .serviceDetails( - "Devops", - "ReopenPullRequestComment", - "https://docs.oracle.com/iaas/api/#/en/devops/20210630/PullRequest/ReopenPullRequestComment") - .method(com.oracle.bmc.http.client.Method.POST) - .requestBuilder(ReopenPullRequestCommentRequest::builder) - .basePath("/20210630") - .appendPathParam("pullRequests") - .appendPathParam(request.getPullRequestId()) - .appendPathParam("comments") - .appendPathParam(request.getCommentId()) - .appendPathParam("actions") - .appendPathParam("reopen") - .accept("application/json") - .appendHeader("if-match", request.getIfMatch()) - .appendHeader("opc-request-id", request.getOpcRequestId()) - .operationUsesDefaultRetries() - .handleBody( - com.oracle.bmc.devops.model.PullRequestComment.class, - ReopenPullRequestCommentResponse.Builder::pullRequestComment) - .handleResponseHeaderString( - "opc-request-id", ReopenPullRequestCommentResponse.Builder::opcRequestId) - .handleResponseHeaderString("etag", ReopenPullRequestCommentResponse.Builder::etag) - .callSync(); - } - - @Override - public ResolvePullRequestCommentResponse resolvePullRequestComment( - ResolvePullRequestCommentRequest request) { - - Validate.notBlank(request.getPullRequestId(), "pullRequestId must not be blank"); - - Validate.notBlank(request.getCommentId(), "commentId must not be blank"); - - return clientCall(request, ResolvePullRequestCommentResponse::builder) - .logger(LOG, "resolvePullRequestComment") - .serviceDetails( - "Devops", - "ResolvePullRequestComment", - "https://docs.oracle.com/iaas/api/#/en/devops/20210630/PullRequest/ResolvePullRequestComment") - .method(com.oracle.bmc.http.client.Method.POST) - .requestBuilder(ResolvePullRequestCommentRequest::builder) - .basePath("/20210630") - .appendPathParam("pullRequests") - .appendPathParam(request.getPullRequestId()) - .appendPathParam("comments") - .appendPathParam(request.getCommentId()) - .appendPathParam("actions") - .appendPathParam("resolve") - .accept("application/json") - .appendHeader("if-match", request.getIfMatch()) - .appendHeader("opc-request-id", request.getOpcRequestId()) - .operationUsesDefaultRetries() - .handleBody( - com.oracle.bmc.devops.model.PullRequestComment.class, - ResolvePullRequestCommentResponse.Builder::pullRequestComment) - .handleResponseHeaderString( - "opc-request-id", ResolvePullRequestCommentResponse.Builder::opcRequestId) - .handleResponseHeaderString("etag", ResolvePullRequestCommentResponse.Builder::etag) - .callSync(); - } - @Override public ReviewPullRequestResponse reviewPullRequest(ReviewPullRequestRequest request) { diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/DevopsPaginators.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/DevopsPaginators.java index b92459b3533..e80ca966a4f 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/DevopsPaginators.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/DevopsPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops; @@ -2652,252 +2652,6 @@ public ListPullRequestCommentsResponse apply( }); } - /** - * Creates a new iterable which will iterate over the responses received from the - * listPullRequestCommits operation. This iterable will fetch more data from the server as - * needed. - * - * @param request a request which can be sent to the service operation - * @return an {@link java.lang.Iterable} which can be used to iterate over the responses - * received from the service. - */ - public Iterable listPullRequestCommitsResponseIterator( - final ListPullRequestCommitsRequest request) { - return new com.oracle.bmc.paginator.internal.ResponseIterable< - ListPullRequestCommitsRequest.Builder, - ListPullRequestCommitsRequest, - ListPullRequestCommitsResponse>( - new java.util.function.Supplier() { - @Override - public ListPullRequestCommitsRequest.Builder get() { - return ListPullRequestCommitsRequest.builder().copy(request); - } - }, - new java.util.function.Function() { - @Override - public String apply(ListPullRequestCommitsResponse response) { - return response.getOpcNextPage(); - } - }, - new java.util.function.Function< - com.oracle.bmc.paginator.internal.RequestBuilderAndToken< - ListPullRequestCommitsRequest.Builder>, - ListPullRequestCommitsRequest>() { - @Override - public ListPullRequestCommitsRequest apply( - com.oracle.bmc.paginator.internal.RequestBuilderAndToken< - ListPullRequestCommitsRequest.Builder> - input) { - if (input.getNextPageToken() == null) { - return input.getRequestBuilder().build(); - } else { - return input.getRequestBuilder() - .page(input.getNextPageToken().orElse(null)) - .build(); - } - } - }, - new java.util.function.Function< - ListPullRequestCommitsRequest, ListPullRequestCommitsResponse>() { - @Override - public ListPullRequestCommitsResponse apply( - ListPullRequestCommitsRequest request) { - return client.listPullRequestCommits(request); - } - }); - } - - /** - * Creates a new iterable which will iterate over the {@link - * com.oracle.bmc.devops.model.RepositoryCommitSummary} objects contained in responses from the - * listPullRequestCommits operation. This iterable will fetch more data from the server as - * needed. - * - * @param request a request which can be sent to the service operation - * @return an {@link java.lang.Iterable} which can be used to iterate over the {@link - * com.oracle.bmc.devops.model.RepositoryCommitSummary} objects contained in responses - * received from the service. - */ - public Iterable - listPullRequestCommitsRecordIterator(final ListPullRequestCommitsRequest request) { - return new com.oracle.bmc.paginator.internal.ResponseRecordIterable< - ListPullRequestCommitsRequest.Builder, - ListPullRequestCommitsRequest, - ListPullRequestCommitsResponse, - com.oracle.bmc.devops.model.RepositoryCommitSummary>( - new java.util.function.Supplier() { - @Override - public ListPullRequestCommitsRequest.Builder get() { - return ListPullRequestCommitsRequest.builder().copy(request); - } - }, - new java.util.function.Function() { - @Override - public String apply(ListPullRequestCommitsResponse response) { - return response.getOpcNextPage(); - } - }, - new java.util.function.Function< - com.oracle.bmc.paginator.internal.RequestBuilderAndToken< - ListPullRequestCommitsRequest.Builder>, - ListPullRequestCommitsRequest>() { - @Override - public ListPullRequestCommitsRequest apply( - com.oracle.bmc.paginator.internal.RequestBuilderAndToken< - ListPullRequestCommitsRequest.Builder> - input) { - if (input.getNextPageToken() == null) { - return input.getRequestBuilder().build(); - } else { - return input.getRequestBuilder() - .page(input.getNextPageToken().orElse(null)) - .build(); - } - } - }, - new java.util.function.Function< - ListPullRequestCommitsRequest, ListPullRequestCommitsResponse>() { - @Override - public ListPullRequestCommitsResponse apply( - ListPullRequestCommitsRequest request) { - return client.listPullRequestCommits(request); - } - }, - new java.util.function.Function< - ListPullRequestCommitsResponse, - java.util.List>() { - @Override - public java.util.List - apply(ListPullRequestCommitsResponse response) { - return response.getRepositoryCommitCollection().getItems(); - } - }); - } - - /** - * Creates a new iterable which will iterate over the responses received from the - * listPullRequestFileChanges operation. This iterable will fetch more data from the server as - * needed. - * - * @param request a request which can be sent to the service operation - * @return an {@link java.lang.Iterable} which can be used to iterate over the responses - * received from the service. - */ - public Iterable listPullRequestFileChangesResponseIterator( - final ListPullRequestFileChangesRequest request) { - return new com.oracle.bmc.paginator.internal.ResponseIterable< - ListPullRequestFileChangesRequest.Builder, - ListPullRequestFileChangesRequest, - ListPullRequestFileChangesResponse>( - new java.util.function.Supplier() { - @Override - public ListPullRequestFileChangesRequest.Builder get() { - return ListPullRequestFileChangesRequest.builder().copy(request); - } - }, - new java.util.function.Function() { - @Override - public String apply(ListPullRequestFileChangesResponse response) { - return response.getOpcNextPage(); - } - }, - new java.util.function.Function< - com.oracle.bmc.paginator.internal.RequestBuilderAndToken< - ListPullRequestFileChangesRequest.Builder>, - ListPullRequestFileChangesRequest>() { - @Override - public ListPullRequestFileChangesRequest apply( - com.oracle.bmc.paginator.internal.RequestBuilderAndToken< - ListPullRequestFileChangesRequest.Builder> - input) { - if (input.getNextPageToken() == null) { - return input.getRequestBuilder().build(); - } else { - return input.getRequestBuilder() - .page(input.getNextPageToken().orElse(null)) - .build(); - } - } - }, - new java.util.function.Function< - ListPullRequestFileChangesRequest, ListPullRequestFileChangesResponse>() { - @Override - public ListPullRequestFileChangesResponse apply( - ListPullRequestFileChangesRequest request) { - return client.listPullRequestFileChanges(request); - } - }); - } - - /** - * Creates a new iterable which will iterate over the {@link - * com.oracle.bmc.devops.model.PullRequestFileChangeSummary} objects contained in responses from - * the listPullRequestFileChanges operation. This iterable will fetch more data from the server - * as needed. - * - * @param request a request which can be sent to the service operation - * @return an {@link java.lang.Iterable} which can be used to iterate over the {@link - * com.oracle.bmc.devops.model.PullRequestFileChangeSummary} objects contained in responses - * received from the service. - */ - public Iterable - listPullRequestFileChangesRecordIterator( - final ListPullRequestFileChangesRequest request) { - return new com.oracle.bmc.paginator.internal.ResponseRecordIterable< - ListPullRequestFileChangesRequest.Builder, - ListPullRequestFileChangesRequest, - ListPullRequestFileChangesResponse, - com.oracle.bmc.devops.model.PullRequestFileChangeSummary>( - new java.util.function.Supplier() { - @Override - public ListPullRequestFileChangesRequest.Builder get() { - return ListPullRequestFileChangesRequest.builder().copy(request); - } - }, - new java.util.function.Function() { - @Override - public String apply(ListPullRequestFileChangesResponse response) { - return response.getOpcNextPage(); - } - }, - new java.util.function.Function< - com.oracle.bmc.paginator.internal.RequestBuilderAndToken< - ListPullRequestFileChangesRequest.Builder>, - ListPullRequestFileChangesRequest>() { - @Override - public ListPullRequestFileChangesRequest apply( - com.oracle.bmc.paginator.internal.RequestBuilderAndToken< - ListPullRequestFileChangesRequest.Builder> - input) { - if (input.getNextPageToken() == null) { - return input.getRequestBuilder().build(); - } else { - return input.getRequestBuilder() - .page(input.getNextPageToken().orElse(null)) - .build(); - } - } - }, - new java.util.function.Function< - ListPullRequestFileChangesRequest, ListPullRequestFileChangesResponse>() { - @Override - public ListPullRequestFileChangesResponse apply( - ListPullRequestFileChangesRequest request) { - return client.listPullRequestFileChanges(request); - } - }, - new java.util.function.Function< - ListPullRequestFileChangesResponse, - java.util.List< - com.oracle.bmc.devops.model.PullRequestFileChangeSummary>>() { - @Override - public java.util.List - apply(ListPullRequestFileChangesResponse response) { - return response.getPullRequestFileChangeCollection().getItems(); - } - }); - } - /** * Creates a new iterable which will iterate over the responses received from the * listPullRequests operation. This iterable will fetch more data from the server as needed. diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/DevopsWaiters.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/DevopsWaiters.java index c4f2cbd2d21..1d6dfaed8b2 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/DevopsWaiters.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/DevopsWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/AbsoluteWaitCriteria.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/AbsoluteWaitCriteria.java index b70cfad54d7..a58639de318 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/AbsoluteWaitCriteria.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/AbsoluteWaitCriteria.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/AbsoluteWaitCriteriaSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/AbsoluteWaitCriteriaSummary.java index 01c6f984e49..ad1216357c9 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/AbsoluteWaitCriteriaSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/AbsoluteWaitCriteriaSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ActionType.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ActionType.java index 063dc7c69b0..78163f4621c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ActionType.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ActualBuildRunnerShapeConfig.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ActualBuildRunnerShapeConfig.java index 6d0f9556030..f6b76cad65a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ActualBuildRunnerShapeConfig.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ActualBuildRunnerShapeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalAction.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalAction.java index e4ebc74d1ea..520a83e3733 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalAction.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalActivitySummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalActivitySummary.java index c06165b3b97..28e876bab21 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalActivitySummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalActivitySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalPolicy.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalPolicy.java index 6a1b0cea133..748f212df83 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalPolicy.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalRule.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalRule.java index 087b04aeb63..6d980585db0 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalRule.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalRuleCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalRuleCollection.java index e10e74da885..bcfdfcfaae9 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalRuleCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalRuleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalRuleMergeCheck.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalRuleMergeCheck.java index 9e6f8833d4e..c81bd9ca80a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalRuleMergeCheck.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApprovalRuleMergeCheck.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApproveDeploymentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApproveDeploymentDetails.java index 6010a77f894..9e2c6b24215 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApproveDeploymentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ApproveDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/AutomatedDeployStageRollbackPolicy.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/AutomatedDeployStageRollbackPolicy.java index c4cecbed3c6..67c66d4efc3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/AutomatedDeployStageRollbackPolicy.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/AutomatedDeployStageRollbackPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BackendSetIpCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BackendSetIpCollection.java index 090e2bae407..e85fbbf0d77 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BackendSetIpCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BackendSetIpCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudAppPasswordConnection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudAppPasswordConnection.java index c384564dadd..7baaeb811ec 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudAppPasswordConnection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudAppPasswordConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudAppPasswordConnectionSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudAppPasswordConnectionSummary.java index b8d87470160..66be6552601 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudAppPasswordConnectionSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudAppPasswordConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudBuildRunSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudBuildRunSource.java index d52255a4ec8..8005acc5d59 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudBuildRunSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudBuildRunSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudBuildSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudBuildSource.java index 9e2b1e478bc..17e31144539 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudBuildSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudBuildSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudFilter.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudFilter.java index 6023629b11e..9493e75894d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudFilter.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudFilterAttributes.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudFilterAttributes.java index fe5b3368d35..47bb8b26272 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudFilterAttributes.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudFilterAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudFilterExclusionAttributes.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudFilterExclusionAttributes.java index 2e212e23b5a..a20024fc138 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudFilterExclusionAttributes.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudFilterExclusionAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudTrigger.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudTrigger.java index 2f889237932..33fec62e778 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudTrigger.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudTrigger.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudTriggerCreateResult.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudTriggerCreateResult.java index f1bcb0960be..406a39ecfc5 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudTriggerCreateResult.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudTriggerCreateResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudTriggerSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudTriggerSummary.java index c2e14cf82b7..89bcad274ba 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudTriggerSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketCloudTriggerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerAccessTokenConnection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerAccessTokenConnection.java index d427f5bfe28..e05e1cbf235 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerAccessTokenConnection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerAccessTokenConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerBuildRunSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerBuildRunSource.java index 41159e6aeb0..ec0b49afb60 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerBuildRunSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerBuildRunSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerBuildSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerBuildSource.java index 64743bbdb49..5e430bedfa7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerBuildSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerBuildSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerFilter.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerFilter.java index 25cc85f2fec..e89ff6905e7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerFilter.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerFilterAttributes.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerFilterAttributes.java index a34df99b7c8..e132ef3f659 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerFilterAttributes.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerFilterAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerTokenConnectionSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerTokenConnectionSummary.java index 6cc5a68d17a..edefb49e4d6 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerTokenConnectionSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerTokenConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerTrigger.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerTrigger.java index 6453810cea7..17f1e87c816 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerTrigger.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerTrigger.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerTriggerCreateResult.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerTriggerCreateResult.java index a47ae86cf04..f12935ecb4d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerTriggerCreateResult.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerTriggerCreateResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerTriggerSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerTriggerSummary.java index a7df2b8150c..8b0e87d0a53 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerTriggerSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BitbucketServerTriggerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildMergeCheck.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildMergeCheck.java index ef0a30f1353..71888ef1737 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildMergeCheck.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildMergeCheck.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildOutputs.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildOutputs.java index e36532d938f..65ec0adbc7e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildOutputs.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildOutputs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipeline.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipeline.java index a020e580011..074ca0ee3d5 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipeline.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipeline.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineCollection.java index e8e98a66a25..45832c762f4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineParameter.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineParameter.java index af0cd228a69..0aa807f43f5 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineParameter.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineParameter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineParameterCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineParameterCollection.java index fc5158b0c93..388f4dc4b0d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineParameterCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineParameterCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStage.java index 453f0d99047..9a2594e1e58 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStageCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStageCollection.java index 1348433b9f8..532417bd8b7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStageCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStagePredecessor.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStagePredecessor.java index 0687837dba5..59e91da592a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStagePredecessor.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStagePredecessor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStagePredecessorCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStagePredecessorCollection.java index bfff4f5a3eb..bca1e682669 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStagePredecessorCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStagePredecessorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStageRunProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStageRunProgress.java index 7910f5de298..380ea68f63c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStageRunProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStageRunProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStageSummary.java index b4f96cddccc..d55ed6afe5a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineSummary.java index 503b73711b5..679bfd42a29 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildPipelineSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRun.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRun.java index ba8667f7fb6..1fae1094210 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRun.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRun.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunArgument.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunArgument.java index 691f895a33c..3105c15b09b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunArgument.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunArgument.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunArgumentCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunArgumentCollection.java index e79042b5633..993c407b995 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunArgumentCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunArgumentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunProgress.java index c9886b19d44..5b2f8134ad1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunProgressSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunProgressSummary.java index d0f5c2553c1..c16adcb80c2 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunProgressSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunProgressSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSnapshot.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSnapshot.java index d231df6ae5e..c75efad219e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSnapshot.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSnapshot.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSnapshotCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSnapshotCollection.java index a447064ffdc..f98f649401c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSnapshotCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSnapshotCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSnapshotSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSnapshotSummary.java index 158af6fdf5a..0caca84c899 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSnapshotSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSnapshotSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSource.java index f5ee4989a5d..7fcd4f88edf 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSummary.java index 96f8442d4df..a485b5be731 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSummaryCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSummaryCollection.java index 019407aa89e..44dbb83d655 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSummaryCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunnerShapeConfig.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunnerShapeConfig.java index a425ba719b9..ac87a070ac0 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunnerShapeConfig.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildRunnerShapeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildSource.java index 6555deba8a9..7b098c75a66 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildSourceCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildSourceCollection.java index 82264ce170e..8c549598104 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildSourceCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildSourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildStage.java index 340691ca124..dc377ee6ade 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildStageRunProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildStageRunProgress.java index 0c96918bb74..18e1da9b7a0 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildStageRunProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildStageRunProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildStageRunStep.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildStageRunStep.java index 86d966222cd..1ad3e112e2f 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildStageRunStep.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildStageRunStep.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildStageSummary.java index 77a165ac003..fd962b4c7e4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/BuildStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CaCertVerify.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CaCertVerify.java index 64778e3426b..a4d692a7be4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CaCertVerify.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CaCertVerify.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CancelBuildRunDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CancelBuildRunDetails.java index e714fcfe192..e45ddcdcec8 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CancelBuildRunDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CancelBuildRunDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CancelDeploymentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CancelDeploymentDetails.java index 6fda8e484b9..a13fb77f7a3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CancelDeploymentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CancelDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ChangeProjectCompartmentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ChangeProjectCompartmentDetails.java index f992b674702..cbe352dba3a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ChangeProjectCompartmentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ChangeProjectCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommentActivitySummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommentActivitySummary.java index b73e5487cd8..d1b18f6f0f1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommentActivitySummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommentActivitySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommitActivitySummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommitActivitySummary.java index 69591190753..359a3a2bbc8 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommitActivitySummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommitActivitySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommitAnalyticsAuthorCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommitAnalyticsAuthorCollection.java index 8f398cf063a..89d1b4762cb 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommitAnalyticsAuthorCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommitAnalyticsAuthorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommitAnalyticsAuthorSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommitAnalyticsAuthorSummary.java index de67cbb41cb..3d6960e9f04 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommitAnalyticsAuthorSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommitAnalyticsAuthorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommitInfo.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommitInfo.java index 62c6836b4e9..cab76d61df7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommitInfo.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommitInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommitMessageSettings.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommitMessageSettings.java new file mode 100644 index 00000000000..30aa2442093 --- /dev/null +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CommitMessageSettings.java @@ -0,0 +1,139 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.devops.model; + +/** + * Settings for controlling how commit summaries are appended to the commit message when merging a + * pull request.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20210630") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = CommitMessageSettings.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class CommitMessageSettings + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({"commitSummariesCount"}) + public CommitMessageSettings(Integer commitSummariesCount) { + super(); + this.commitSummariesCount = commitSummariesCount; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** The number of commit summaries to append. Set to 0 to exclude commit summaries. */ + @com.fasterxml.jackson.annotation.JsonProperty("commitSummariesCount") + private Integer commitSummariesCount; + + /** + * The number of commit summaries to append. Set to 0 to exclude commit summaries. + * + * @param commitSummariesCount the value to set + * @return this builder + */ + public Builder commitSummariesCount(Integer commitSummariesCount) { + this.commitSummariesCount = commitSummariesCount; + this.__explicitlySet__.add("commitSummariesCount"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public CommitMessageSettings build() { + CommitMessageSettings model = new CommitMessageSettings(this.commitSummariesCount); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(CommitMessageSettings model) { + if (model.wasPropertyExplicitlySet("commitSummariesCount")) { + this.commitSummariesCount(model.getCommitSummariesCount()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** The number of commit summaries to append. Set to 0 to exclude commit summaries. */ + @com.fasterxml.jackson.annotation.JsonProperty("commitSummariesCount") + private final Integer commitSummariesCount; + + /** + * The number of commit summaries to append. Set to 0 to exclude commit summaries. + * + * @return the value + */ + public Integer getCommitSummariesCount() { + return commitSummariesCount; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("CommitMessageSettings("); + sb.append("super=").append(super.toString()); + sb.append("commitSummariesCount=").append(String.valueOf(this.commitSummariesCount)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CommitMessageSettings)) { + return false; + } + + CommitMessageSettings other = (CommitMessageSettings) o; + return java.util.Objects.equals(this.commitSummariesCount, other.commitSummariesCount) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = + (result * PRIME) + + (this.commitSummariesCount == null + ? 43 + : this.commitSummariesCount.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenDeployStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenDeployStage.java index 8ba8500aa4f..f99b1a430cb 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenDeployStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenDeployStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenDeployStageExecutionProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenDeployStageExecutionProgress.java index 8baff124abd..463bf9e3cd9 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenDeployStageExecutionProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenDeployStageExecutionProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenDeployStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenDeployStageSummary.java index 824da3bdf43..6bc2794a777 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenDeployStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenDeployStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenTrafficShiftDeployStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenTrafficShiftDeployStage.java index 409975f735e..0ad6f94ccbf 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenTrafficShiftDeployStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenTrafficShiftDeployStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenTrafficShiftDeployStageExecutionProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenTrafficShiftDeployStageExecutionProgress.java index f65387eb5fe..f8a47acb3b2 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenTrafficShiftDeployStageExecutionProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenTrafficShiftDeployStageExecutionProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenTrafficShiftDeployStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenTrafficShiftDeployStageSummary.java index 1100b9c1eb4..0febe08a68e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenTrafficShiftDeployStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupBlueGreenTrafficShiftDeployStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupByIdsSelector.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupByIdsSelector.java index cf55df7d96e..dace54e2773 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupByIdsSelector.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupByIdsSelector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupByQuerySelector.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupByQuerySelector.java index 54d23eb292c..96aa0666908 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupByQuerySelector.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupByQuerySelector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryApprovalDeployStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryApprovalDeployStage.java index 16768fa0015..efc2c60873d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryApprovalDeployStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryApprovalDeployStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryApprovalDeployStageExecutionProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryApprovalDeployStageExecutionProgress.java index 7b560377b44..bb4066c0489 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryApprovalDeployStageExecutionProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryApprovalDeployStageExecutionProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryApprovalDeployStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryApprovalDeployStageSummary.java index e38a3828c4c..6bd0b0d4256 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryApprovalDeployStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryApprovalDeployStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryDeployStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryDeployStage.java index 2edcec5a89e..7b4f10cc16b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryDeployStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryDeployStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryDeployStageExecutionProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryDeployStageExecutionProgress.java index 7d8ef37179e..addba2002a3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryDeployStageExecutionProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryDeployStageExecutionProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryDeployStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryDeployStageSummary.java index 6ad347fa870..fe12b304f74 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryDeployStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryDeployStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryTrafficShiftDeployStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryTrafficShiftDeployStage.java index f2a09b42e4f..b09f6dc88e8 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryTrafficShiftDeployStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryTrafficShiftDeployStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryTrafficShiftDeployStageExecutionProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryTrafficShiftDeployStageExecutionProgress.java index a7b9e1ee36c..8d0576f033e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryTrafficShiftDeployStageExecutionProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryTrafficShiftDeployStageExecutionProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryTrafficShiftDeployStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryTrafficShiftDeployStageSummary.java index 541ba85579a..f754f6a6f50 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryTrafficShiftDeployStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupCanaryTrafficShiftDeployStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupDeployEnvironment.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupDeployEnvironment.java index 50e23b449fd..fea0439c2a4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupDeployEnvironment.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupDeployEnvironment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -137,6 +137,16 @@ public Builder systemTags(java.util.Map> s return this; } + @com.fasterxml.jackson.annotation.JsonProperty("securityAttributes") + private java.util.Map> securityAttributes; + + public Builder securityAttributes( + java.util.Map> securityAttributes) { + this.securityAttributes = securityAttributes; + this.__explicitlySet__.add("securityAttributes"); + return this; + } + @com.fasterxml.jackson.annotation.JsonProperty("computeInstanceGroupSelectors") private ComputeInstanceGroupSelectorCollection computeInstanceGroupSelectors; @@ -165,6 +175,7 @@ public ComputeInstanceGroupDeployEnvironment build() { this.freeformTags, this.definedTags, this.systemTags, + this.securityAttributes, this.computeInstanceGroupSelectors); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); @@ -210,6 +221,9 @@ public Builder copy(ComputeInstanceGroupDeployEnvironment model) { if (model.wasPropertyExplicitlySet("systemTags")) { this.systemTags(model.getSystemTags()); } + if (model.wasPropertyExplicitlySet("securityAttributes")) { + this.securityAttributes(model.getSecurityAttributes()); + } if (model.wasPropertyExplicitlySet("computeInstanceGroupSelectors")) { this.computeInstanceGroupSelectors(model.getComputeInstanceGroupSelectors()); } @@ -240,6 +254,7 @@ public ComputeInstanceGroupDeployEnvironment( java.util.Map freeformTags, java.util.Map> definedTags, java.util.Map> systemTags, + java.util.Map> securityAttributes, ComputeInstanceGroupSelectorCollection computeInstanceGroupSelectors) { super( id, @@ -253,7 +268,8 @@ public ComputeInstanceGroupDeployEnvironment( lifecycleDetails, freeformTags, definedTags, - systemTags); + systemTags, + securityAttributes); this.computeInstanceGroupSelectors = computeInstanceGroupSelectors; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupDeployEnvironmentSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupDeployEnvironmentSummary.java index f0c6824e0c7..b7b09243017 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupDeployEnvironmentSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupDeployEnvironmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -136,6 +136,16 @@ public Builder systemTags(java.util.Map> s return this; } + @com.fasterxml.jackson.annotation.JsonProperty("securityAttributes") + private java.util.Map> securityAttributes; + + public Builder securityAttributes( + java.util.Map> securityAttributes) { + this.securityAttributes = securityAttributes; + this.__explicitlySet__.add("securityAttributes"); + return this; + } + @com.fasterxml.jackson.annotation.JsonProperty("computeInstanceGroupSelectors") private ComputeInstanceGroupSelectorCollection computeInstanceGroupSelectors; @@ -164,6 +174,7 @@ public ComputeInstanceGroupDeployEnvironmentSummary build() { this.freeformTags, this.definedTags, this.systemTags, + this.securityAttributes, this.computeInstanceGroupSelectors); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); @@ -209,6 +220,9 @@ public Builder copy(ComputeInstanceGroupDeployEnvironmentSummary model) { if (model.wasPropertyExplicitlySet("systemTags")) { this.systemTags(model.getSystemTags()); } + if (model.wasPropertyExplicitlySet("securityAttributes")) { + this.securityAttributes(model.getSecurityAttributes()); + } if (model.wasPropertyExplicitlySet("computeInstanceGroupSelectors")) { this.computeInstanceGroupSelectors(model.getComputeInstanceGroupSelectors()); } @@ -239,6 +253,7 @@ public ComputeInstanceGroupDeployEnvironmentSummary( java.util.Map freeformTags, java.util.Map> definedTags, java.util.Map> systemTags, + java.util.Map> securityAttributes, ComputeInstanceGroupSelectorCollection computeInstanceGroupSelectors) { super( id, @@ -252,7 +267,8 @@ public ComputeInstanceGroupDeployEnvironmentSummary( lifecycleDetails, freeformTags, definedTags, - systemTags); + systemTags, + securityAttributes); this.computeInstanceGroupSelectors = computeInstanceGroupSelectors; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupDeployStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupDeployStage.java index 909e1ef5a7a..67f9c7984f8 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupDeployStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupDeployStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupDeployStageExecutionProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupDeployStageExecutionProgress.java index c4e3c1b12a2..69581f12e3e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupDeployStageExecutionProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupDeployStageExecutionProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupDeployStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupDeployStageSummary.java index 6cc9339f0ae..373b1eae37d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupDeployStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupDeployStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupFailurePolicy.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupFailurePolicy.java index cbe24e6a466..81075e34028 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupFailurePolicy.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupFailurePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupFailurePolicyByCount.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupFailurePolicyByCount.java index b9f09aded76..e6eeb71fa97 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupFailurePolicyByCount.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupFailurePolicyByCount.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupFailurePolicyByPercentage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupFailurePolicyByPercentage.java index 44d6bd4366e..54ac7574baf 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupFailurePolicyByPercentage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupFailurePolicyByPercentage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupLinearRolloutPolicyByCount.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupLinearRolloutPolicyByCount.java index d46d2b1dfac..99238627192 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupLinearRolloutPolicyByCount.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupLinearRolloutPolicyByCount.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupLinearRolloutPolicyByPercentage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupLinearRolloutPolicyByPercentage.java index 8e62b72683e..5dda4cd5667 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupLinearRolloutPolicyByPercentage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupLinearRolloutPolicyByPercentage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupRolloutPolicy.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupRolloutPolicy.java index 7fedf32bd03..cf9417fd75a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupRolloutPolicy.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupRolloutPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupSelector.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupSelector.java index e1a0de4211c..d237cc880b8 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupSelector.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupSelector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupSelectorCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupSelectorCollection.java index 64d0c50a841..b5767ae839d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupSelectorCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ComputeInstanceGroupSelectorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ConflictMergeCheck.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ConflictMergeCheck.java index aab396e14b3..c08f59fb6a7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ConflictMergeCheck.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ConflictMergeCheck.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Connection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Connection.java index ec489051cee..e29527f637b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Connection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Connection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ConnectionCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ConnectionCollection.java index 21dfa35868c..bcf3f022078 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ConnectionCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ConnectionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ConnectionSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ConnectionSummary.java index 583da2323df..9a8a06caaed 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ConnectionSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ConnectionValidationResult.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ConnectionValidationResult.java index b580ea7f486..a7ce3fac04b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ConnectionValidationResult.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ConnectionValidationResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ContainerConfig.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ContainerConfig.java index e393aef40ff..bcd55402a0a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ContainerConfig.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ContainerConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ContainerInstanceConfig.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ContainerInstanceConfig.java index b691d195170..e8c4bb66707 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ContainerInstanceConfig.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ContainerInstanceConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ContainerRegistryDeliveredArtifact.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ContainerRegistryDeliveredArtifact.java index eb3ddf3d639..d9f26da88ab 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ContainerRegistryDeliveredArtifact.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ContainerRegistryDeliveredArtifact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CountBasedApprovalPolicy.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CountBasedApprovalPolicy.java index 2f2793c3c3a..22432cfcd82 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CountBasedApprovalPolicy.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CountBasedApprovalPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateAbsoluteWaitCriteriaDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateAbsoluteWaitCriteriaDetails.java index f62d4d2ff8b..f343b2ebcce 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateAbsoluteWaitCriteriaDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateAbsoluteWaitCriteriaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBitbucketCloudAppPasswordConnectionDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBitbucketCloudAppPasswordConnectionDetails.java index 7640a1b915c..bfb8ed0a699 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBitbucketCloudAppPasswordConnectionDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBitbucketCloudAppPasswordConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBitbucketCloudTriggerDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBitbucketCloudTriggerDetails.java index 77a4140d834..d13c227df66 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBitbucketCloudTriggerDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBitbucketCloudTriggerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBitbucketServerAccessTokenConnectionDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBitbucketServerAccessTokenConnectionDetails.java index f1696af41d3..9e20216c181 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBitbucketServerAccessTokenConnectionDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBitbucketServerAccessTokenConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBitbucketServerTriggerDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBitbucketServerTriggerDetails.java index 3c331bf9995..2599cf88e49 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBitbucketServerTriggerDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBitbucketServerTriggerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBuildPipelineDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBuildPipelineDetails.java index 50d10cd390f..3d8f0931205 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBuildPipelineDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBuildPipelineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBuildPipelineStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBuildPipelineStageDetails.java index 2d15e5ac5b4..c991d859c9d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBuildPipelineStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBuildPipelineStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBuildRunDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBuildRunDetails.java index 7861280d749..d603d07d60c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBuildRunDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBuildRunDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBuildStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBuildStageDetails.java index 09867e8763d..035113068ca 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBuildStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateBuildStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupBlueGreenDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupBlueGreenDeployStageDetails.java index a3ed238aaf1..e217889d68b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupBlueGreenDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupBlueGreenDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupBlueGreenTrafficShiftDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupBlueGreenTrafficShiftDeployStageDetails.java index 50293cdf95b..1c1baa3b4de 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupBlueGreenTrafficShiftDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupBlueGreenTrafficShiftDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupCanaryApprovalDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupCanaryApprovalDeployStageDetails.java index 2b0eb177273..f17da7f0d3f 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupCanaryApprovalDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupCanaryApprovalDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupCanaryDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupCanaryDeployStageDetails.java index b8d21ff7d28..fe74c545c0f 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupCanaryDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupCanaryDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupCanaryTrafficShiftDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupCanaryTrafficShiftDeployStageDetails.java index b6789ea736e..35f487e0198 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupCanaryTrafficShiftDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupCanaryTrafficShiftDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupDeployEnvironmentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupDeployEnvironmentDetails.java index 92313494c4c..c00715b2825 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupDeployEnvironmentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupDeployEnvironmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -74,6 +74,16 @@ public Builder definedTags( return this; } + @com.fasterxml.jackson.annotation.JsonProperty("securityAttributes") + private java.util.Map> securityAttributes; + + public Builder securityAttributes( + java.util.Map> securityAttributes) { + this.securityAttributes = securityAttributes; + this.__explicitlySet__.add("securityAttributes"); + return this; + } + @com.fasterxml.jackson.annotation.JsonProperty("computeInstanceGroupSelectors") private ComputeInstanceGroupSelectorCollection computeInstanceGroupSelectors; @@ -95,6 +105,7 @@ public CreateComputeInstanceGroupDeployEnvironmentDetails build() { this.projectId, this.freeformTags, this.definedTags, + this.securityAttributes, this.computeInstanceGroupSelectors); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); @@ -119,6 +130,9 @@ public Builder copy(CreateComputeInstanceGroupDeployEnvironmentDetails model) { if (model.wasPropertyExplicitlySet("definedTags")) { this.definedTags(model.getDefinedTags()); } + if (model.wasPropertyExplicitlySet("securityAttributes")) { + this.securityAttributes(model.getSecurityAttributes()); + } if (model.wasPropertyExplicitlySet("computeInstanceGroupSelectors")) { this.computeInstanceGroupSelectors(model.getComputeInstanceGroupSelectors()); } @@ -142,8 +156,9 @@ public CreateComputeInstanceGroupDeployEnvironmentDetails( String projectId, java.util.Map freeformTags, java.util.Map> definedTags, + java.util.Map> securityAttributes, ComputeInstanceGroupSelectorCollection computeInstanceGroupSelectors) { - super(description, displayName, projectId, freeformTags, definedTags); + super(description, displayName, projectId, freeformTags, definedTags, securityAttributes); this.computeInstanceGroupSelectors = computeInstanceGroupSelectors; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupDeployStageDetails.java index 22d9d840c52..c8bf11c523a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateComputeInstanceGroupDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateConnectionDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateConnectionDetails.java index 8e4a3d851ed..336e27ef912 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateConnectionDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeliverArtifactStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeliverArtifactStageDetails.java index 5453fb3f77b..77560348919 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeliverArtifactStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeliverArtifactStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployArtifactDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployArtifactDetails.java index 1d7a47539f8..821433c3790 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployArtifactDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployArtifactDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployEnvironmentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployEnvironmentDetails.java index cc7c235ceb2..a7e2dac958e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployEnvironmentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployEnvironmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -42,20 +42,23 @@ public class CreateDeployEnvironmentDetails "displayName", "projectId", "freeformTags", - "definedTags" + "definedTags", + "securityAttributes" }) protected CreateDeployEnvironmentDetails( String description, String displayName, String projectId, java.util.Map freeformTags, - java.util.Map> definedTags) { + java.util.Map> definedTags, + java.util.Map> securityAttributes) { super(); this.description = description; this.displayName = displayName; this.projectId = projectId; this.freeformTags = freeformTags; this.definedTags = definedTags; + this.securityAttributes = securityAttributes; } /** Optional description about the deployment environment. */ @@ -137,6 +140,29 @@ public java.util.Map> getDefinedTags() { return definedTags; } + /** + * Security attributes for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "enforce"}}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("securityAttributes") + private final java.util.Map> securityAttributes; + + /** + * Security attributes for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "enforce"}}}} + * + * @return the value + */ + public java.util.Map> getSecurityAttributes() { + return securityAttributes; + } + @Override public String toString() { return this.toString(true); @@ -157,6 +183,7 @@ public String toString(boolean includeByteArrayContents) { sb.append(", projectId=").append(String.valueOf(this.projectId)); sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); sb.append(", definedTags=").append(String.valueOf(this.definedTags)); + sb.append(", securityAttributes=").append(String.valueOf(this.securityAttributes)); sb.append(")"); return sb.toString(); } @@ -176,6 +203,7 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.projectId, other.projectId) && java.util.Objects.equals(this.freeformTags, other.freeformTags) && java.util.Objects.equals(this.definedTags, other.definedTags) + && java.util.Objects.equals(this.securityAttributes, other.securityAttributes) && super.equals(other); } @@ -188,6 +216,11 @@ public int hashCode() { result = (result * PRIME) + (this.projectId == null ? 43 : this.projectId.hashCode()); result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); + result = + (result * PRIME) + + (this.securityAttributes == null + ? 43 + : this.securityAttributes.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployPipelineDeploymentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployPipelineDeploymentDetails.java index a793ef92c5e..dd849d45115 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployPipelineDeploymentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployPipelineDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployPipelineDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployPipelineDetails.java index a3dce97f769..2bf3c41e4c5 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployPipelineDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployPipelineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployPipelineRedeploymentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployPipelineRedeploymentDetails.java index 23399cbce12..96747f7db37 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployPipelineRedeploymentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployPipelineRedeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployStageDetails.java index bcb5814d843..33824e240ad 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeploymentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeploymentDetails.java index d2b3df750fb..6de45ae308d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeploymentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDevopsCodeRepositoryTriggerDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDevopsCodeRepositoryTriggerDetails.java index b82eb056251..0a8db3046e3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDevopsCodeRepositoryTriggerDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateDevopsCodeRepositoryTriggerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateFunctionDeployEnvironmentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateFunctionDeployEnvironmentDetails.java index 68978268a98..88aea68a277 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateFunctionDeployEnvironmentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateFunctionDeployEnvironmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -72,6 +72,16 @@ public Builder definedTags( this.__explicitlySet__.add("definedTags"); return this; } + + @com.fasterxml.jackson.annotation.JsonProperty("securityAttributes") + private java.util.Map> securityAttributes; + + public Builder securityAttributes( + java.util.Map> securityAttributes) { + this.securityAttributes = securityAttributes; + this.__explicitlySet__.add("securityAttributes"); + return this; + } /** The OCID of the Function. */ @com.fasterxml.jackson.annotation.JsonProperty("functionId") private String functionId; @@ -99,6 +109,7 @@ public CreateFunctionDeployEnvironmentDetails build() { this.projectId, this.freeformTags, this.definedTags, + this.securityAttributes, this.functionId); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); @@ -123,6 +134,9 @@ public Builder copy(CreateFunctionDeployEnvironmentDetails model) { if (model.wasPropertyExplicitlySet("definedTags")) { this.definedTags(model.getDefinedTags()); } + if (model.wasPropertyExplicitlySet("securityAttributes")) { + this.securityAttributes(model.getSecurityAttributes()); + } if (model.wasPropertyExplicitlySet("functionId")) { this.functionId(model.getFunctionId()); } @@ -146,8 +160,9 @@ public CreateFunctionDeployEnvironmentDetails( String projectId, java.util.Map freeformTags, java.util.Map> definedTags, + java.util.Map> securityAttributes, String functionId) { - super(description, displayName, projectId, freeformTags, definedTags); + super(description, displayName, projectId, freeformTags, definedTags, securityAttributes); this.functionId = functionId; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateFunctionDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateFunctionDeployStageDetails.java index 18879c3a5d6..a468e187511 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateFunctionDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateFunctionDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGithubAccessTokenConnectionDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGithubAccessTokenConnectionDetails.java index a35a18b0357..75a0c01cee1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGithubAccessTokenConnectionDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGithubAccessTokenConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGithubTriggerDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGithubTriggerDetails.java index 99c6e9ff9b0..4afe44e1272 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGithubTriggerDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGithubTriggerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGitlabAccessTokenConnectionDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGitlabAccessTokenConnectionDetails.java index ee6e9b364e1..75fedaf5192 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGitlabAccessTokenConnectionDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGitlabAccessTokenConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGitlabServerAccessTokenConnectionDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGitlabServerAccessTokenConnectionDetails.java index 40556e488dc..6f383300d0d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGitlabServerAccessTokenConnectionDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGitlabServerAccessTokenConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGitlabServerTriggerDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGitlabServerTriggerDetails.java index d18fa81a570..6e4a027c229 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGitlabServerTriggerDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGitlabServerTriggerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGitlabTriggerDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGitlabTriggerDetails.java index 38aefb1c953..a373f48ce5c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGitlabTriggerDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateGitlabTriggerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateInvokeFunctionDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateInvokeFunctionDeployStageDetails.java index b5d23133e64..627c3c67807 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateInvokeFunctionDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateInvokeFunctionDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateLoadBalancerTrafficShiftDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateLoadBalancerTrafficShiftDeployStageDetails.java index 08391e25725..e8d2424a782 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateLoadBalancerTrafficShiftDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateLoadBalancerTrafficShiftDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateManualApprovalDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateManualApprovalDeployStageDetails.java index d2047adb268..227e2289846 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateManualApprovalDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateManualApprovalDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeBlueGreenDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeBlueGreenDeployStageDetails.java index 5b5f80fd462..44a9d7148b4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeBlueGreenDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeBlueGreenDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeBlueGreenTrafficShiftDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeBlueGreenTrafficShiftDeployStageDetails.java index 15647eb1f57..d6b97a2584d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeBlueGreenTrafficShiftDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeBlueGreenTrafficShiftDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeCanaryApprovalDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeCanaryApprovalDeployStageDetails.java index 752adae6ee6..36d266ab41e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeCanaryApprovalDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeCanaryApprovalDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeCanaryDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeCanaryDeployStageDetails.java index e94429ddc71..b441a347528 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeCanaryDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeCanaryDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeCanaryTrafficShiftDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeCanaryTrafficShiftDeployStageDetails.java index 46a671c85d8..30acb2e0653 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeCanaryTrafficShiftDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeCanaryTrafficShiftDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeClusterDeployEnvironmentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeClusterDeployEnvironmentDetails.java index 18154a9d692..955b95ffe56 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeClusterDeployEnvironmentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeClusterDeployEnvironmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -72,6 +72,16 @@ public Builder definedTags( this.__explicitlySet__.add("definedTags"); return this; } + + @com.fasterxml.jackson.annotation.JsonProperty("securityAttributes") + private java.util.Map> securityAttributes; + + public Builder securityAttributes( + java.util.Map> securityAttributes) { + this.securityAttributes = securityAttributes; + this.__explicitlySet__.add("securityAttributes"); + return this; + } /** The OCID of the Kubernetes cluster. */ @com.fasterxml.jackson.annotation.JsonProperty("clusterId") private String clusterId; @@ -108,6 +118,7 @@ public CreateOkeClusterDeployEnvironmentDetails build() { this.projectId, this.freeformTags, this.definedTags, + this.securityAttributes, this.clusterId, this.networkChannel); for (String explicitlySetProperty : this.__explicitlySet__) { @@ -133,6 +144,9 @@ public Builder copy(CreateOkeClusterDeployEnvironmentDetails model) { if (model.wasPropertyExplicitlySet("definedTags")) { this.definedTags(model.getDefinedTags()); } + if (model.wasPropertyExplicitlySet("securityAttributes")) { + this.securityAttributes(model.getSecurityAttributes()); + } if (model.wasPropertyExplicitlySet("clusterId")) { this.clusterId(model.getClusterId()); } @@ -159,9 +173,10 @@ public CreateOkeClusterDeployEnvironmentDetails( String projectId, java.util.Map freeformTags, java.util.Map> definedTags, + java.util.Map> securityAttributes, String clusterId, NetworkChannel networkChannel) { - super(description, displayName, projectId, freeformTags, definedTags); + super(description, displayName, projectId, freeformTags, definedTags, securityAttributes); this.clusterId = clusterId; this.networkChannel = networkChannel; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeDeployStageDetails.java index e4d1e69e5b1..9c3b74fe80c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeHelmChartDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeHelmChartDeployStageDetails.java index a2d623d4343..02c5534a7a5 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeHelmChartDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOkeHelmChartDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -206,12 +206,16 @@ public Builder namespace(String namespace) { this.__explicitlySet__.add("namespace"); return this; } - /** Time to wait for execution of a helm stage. Defaults to 300 seconds. */ + /** + * Time to wait for execution of a helm stage. Defaults to 300 seconds. Maximum allowed is + * 10800 seconds (3 hours). + */ @com.fasterxml.jackson.annotation.JsonProperty("timeoutInSeconds") private Integer timeoutInSeconds; /** - * Time to wait for execution of a helm stage. Defaults to 300 seconds. + * Time to wait for execution of a helm stage. Defaults to 300 seconds. Maximum allowed is + * 10800 seconds (3 hours). * * @param timeoutInSeconds the value to set * @return this builder @@ -764,12 +768,16 @@ public String getNamespace() { return namespace; } - /** Time to wait for execution of a helm stage. Defaults to 300 seconds. */ + /** + * Time to wait for execution of a helm stage. Defaults to 300 seconds. Maximum allowed is 10800 + * seconds (3 hours). + */ @com.fasterxml.jackson.annotation.JsonProperty("timeoutInSeconds") private final Integer timeoutInSeconds; /** - * Time to wait for execution of a helm stage. Defaults to 300 seconds. + * Time to wait for execution of a helm stage. Defaults to 300 seconds. Maximum allowed is 10800 + * seconds (3 hours). * * @return the value */ diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOrUpdateGitBranchDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOrUpdateGitBranchDetails.java index b96a1b3b422..0f96231c7d6 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOrUpdateGitBranchDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOrUpdateGitBranchDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOrUpdateGitRefDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOrUpdateGitRefDetails.java index 5803bcf2047..aad52276740 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOrUpdateGitRefDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOrUpdateGitRefDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOrUpdateGitTagDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOrUpdateGitTagDetails.java index d7be0fb3b27..43ea9ec5f7b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOrUpdateGitTagDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOrUpdateGitTagDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOrUpdateProtectedBranchDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOrUpdateProtectedBranchDetails.java index eac9892a83f..0e81d78e87b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOrUpdateProtectedBranchDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateOrUpdateProtectedBranchDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateProjectDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateProjectDetails.java index 6f08aa124dc..d3a35f01b64 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateProjectDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateProjectDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreatePullRequestCommentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreatePullRequestCommentDetails.java index 4b90d0454ce..5ae946f4f32 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreatePullRequestCommentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreatePullRequestCommentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreatePullRequestDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreatePullRequestDetails.java index f15ae14c022..a49624defef 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreatePullRequestDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreatePullRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateRepositoryDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateRepositoryDetails.java index 0ad848edc57..916996407cc 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateRepositoryDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateRepositoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateReviewerDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateReviewerDetails.java index 8d67bc51984..ad166eb2f4c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateReviewerDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateReviewerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateShellDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateShellDeployStageDetails.java index 733e75a3d77..e507ef4b937 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateShellDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateShellDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateSingleDeployStageDeploymentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateSingleDeployStageDeploymentDetails.java index 0ff15beb296..35d81f74ba4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateSingleDeployStageDeploymentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateSingleDeployStageDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateSingleDeployStageRedeploymentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateSingleDeployStageRedeploymentDetails.java index 2d04a688066..567568136c7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateSingleDeployStageRedeploymentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateSingleDeployStageRedeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateTriggerDeploymentStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateTriggerDeploymentStageDetails.java index 80631c8df10..5a564263895 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateTriggerDeploymentStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateTriggerDeploymentStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateTriggerDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateTriggerDetails.java index 0dca2c9d657..fcf1510dc72 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateTriggerDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateTriggerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateVbsAccessTokenConnectionDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateVbsAccessTokenConnectionDetails.java index 9d1f7b89bdf..a1a6727fbc1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateVbsAccessTokenConnectionDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateVbsAccessTokenConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateVbsTriggerDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateVbsTriggerDetails.java index 845850e4c53..3bade04605c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateVbsTriggerDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateVbsTriggerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateWaitCriteriaDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateWaitCriteriaDetails.java index cae55a0e9c0..956e5afc24b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateWaitCriteriaDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateWaitCriteriaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateWaitDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateWaitDeployStageDetails.java index 443796207fb..9f132082bb4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateWaitDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateWaitDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateWaitStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateWaitStageDetails.java index a881b4caa49..3df3a128620 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateWaitStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CreateWaitStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CustomBuildRunnerShapeConfig.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CustomBuildRunnerShapeConfig.java index 70a095cd53f..2ac129daa25 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CustomBuildRunnerShapeConfig.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/CustomBuildRunnerShapeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DefaultBuildRunnerShapeConfig.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DefaultBuildRunnerShapeConfig.java index 500c089664a..dcab29c5184 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DefaultBuildRunnerShapeConfig.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DefaultBuildRunnerShapeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeleteGitRefDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeleteGitRefDetails.java index 5ed63805b13..b856f5c7394 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeleteGitRefDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeleteGitRefDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeleteProtectedBranchDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeleteProtectedBranchDetails.java index 66daf61294c..1ca1a583f17 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeleteProtectedBranchDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeleteProtectedBranchDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliverArtifact.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliverArtifact.java index 09ab12fc845..c7d5a4d409d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliverArtifact.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliverArtifact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliverArtifactCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliverArtifactCollection.java index b83a2de570a..b4478da6e0f 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliverArtifactCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliverArtifactCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliverArtifactStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliverArtifactStage.java index fdff7f2fee9..f40a6f935fb 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliverArtifactStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliverArtifactStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliverArtifactStageRunProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliverArtifactStageRunProgress.java index 387dd0f686e..edfdaa45ffe 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliverArtifactStageRunProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliverArtifactStageRunProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliverArtifactStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliverArtifactStageSummary.java index d8cd129a429..7dcb4bee7d5 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliverArtifactStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliverArtifactStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliveredArtifact.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliveredArtifact.java index c932f4b6500..f77726a7379 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliveredArtifact.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliveredArtifact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliveredArtifactCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliveredArtifactCollection.java index 498d482095e..f94dea828cd 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliveredArtifactCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeliveredArtifactCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifact.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifact.java index 8a10df9bc8c..16fb367f5bb 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifact.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifactCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifactCollection.java index 6d6fe5dd42d..d33086b12cc 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifactCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifactCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifactOverrideArgument.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifactOverrideArgument.java index 1f5d7b1b204..4f7369999fb 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifactOverrideArgument.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifactOverrideArgument.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifactOverrideArgumentCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifactOverrideArgumentCollection.java index 6b7412b32d7..e34f120b634 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifactOverrideArgumentCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifactOverrideArgumentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifactSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifactSource.java index a1be5dd203c..799ef0f7fd0 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifactSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifactSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifactSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifactSummary.java index a5a8e76afad..55cdc0a631d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifactSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployArtifactSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployEnvironment.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployEnvironment.java index 73e44aed480..a22056432a4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployEnvironment.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployEnvironment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -49,7 +49,8 @@ public class DeployEnvironment extends com.oracle.bmc.http.client.internal.Expli "lifecycleDetails", "freeformTags", "definedTags", - "systemTags" + "systemTags", + "securityAttributes" }) protected DeployEnvironment( String id, @@ -63,7 +64,8 @@ protected DeployEnvironment( String lifecycleDetails, java.util.Map freeformTags, java.util.Map> definedTags, - java.util.Map> systemTags) { + java.util.Map> systemTags, + java.util.Map> securityAttributes) { super(); this.id = id; this.description = description; @@ -77,6 +79,7 @@ protected DeployEnvironment( this.freeformTags = freeformTags; this.definedTags = definedTags; this.systemTags = systemTags; + this.securityAttributes = securityAttributes; } /** Unique identifier that is immutable on creation. */ @@ -322,6 +325,29 @@ public java.util.Map> getSystemTags() { return systemTags; } + /** + * Security attributes for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "enforce"}}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("securityAttributes") + private final java.util.Map> securityAttributes; + + /** + * Security attributes for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "enforce"}}}} + * + * @return the value + */ + public java.util.Map> getSecurityAttributes() { + return securityAttributes; + } + @Override public String toString() { return this.toString(true); @@ -349,6 +375,7 @@ public String toString(boolean includeByteArrayContents) { sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); sb.append(", definedTags=").append(String.valueOf(this.definedTags)); sb.append(", systemTags=").append(String.valueOf(this.systemTags)); + sb.append(", securityAttributes=").append(String.valueOf(this.securityAttributes)); sb.append(")"); return sb.toString(); } @@ -375,6 +402,7 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.freeformTags, other.freeformTags) && java.util.Objects.equals(this.definedTags, other.definedTags) && java.util.Objects.equals(this.systemTags, other.systemTags) + && java.util.Objects.equals(this.securityAttributes, other.securityAttributes) && super.equals(other); } @@ -400,6 +428,11 @@ public int hashCode() { result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); result = (result * PRIME) + (this.systemTags == null ? 43 : this.systemTags.hashCode()); + result = + (result * PRIME) + + (this.securityAttributes == null + ? 43 + : this.securityAttributes.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployEnvironmentCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployEnvironmentCollection.java index 1868622b101..64333245380 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployEnvironmentCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployEnvironmentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployEnvironmentSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployEnvironmentSummary.java index a2cc59eccb1..a426af99bb3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployEnvironmentSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployEnvironmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -49,7 +49,8 @@ public class DeployEnvironmentSummary "lifecycleDetails", "freeformTags", "definedTags", - "systemTags" + "systemTags", + "securityAttributes" }) protected DeployEnvironmentSummary( String id, @@ -63,7 +64,8 @@ protected DeployEnvironmentSummary( String lifecycleDetails, java.util.Map freeformTags, java.util.Map> definedTags, - java.util.Map> systemTags) { + java.util.Map> systemTags, + java.util.Map> securityAttributes) { super(); this.id = id; this.description = description; @@ -77,6 +79,7 @@ protected DeployEnvironmentSummary( this.freeformTags = freeformTags; this.definedTags = definedTags; this.systemTags = systemTags; + this.securityAttributes = securityAttributes; } /** Unique identifier that is immutable on creation. */ @@ -267,6 +270,29 @@ public java.util.Map> getSystemTags() { return systemTags; } + /** + * Security attributes for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "enforce"}}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("securityAttributes") + private final java.util.Map> securityAttributes; + + /** + * Security attributes for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "enforce"}}}} + * + * @return the value + */ + public java.util.Map> getSecurityAttributes() { + return securityAttributes; + } + @Override public String toString() { return this.toString(true); @@ -294,6 +320,7 @@ public String toString(boolean includeByteArrayContents) { sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); sb.append(", definedTags=").append(String.valueOf(this.definedTags)); sb.append(", systemTags=").append(String.valueOf(this.systemTags)); + sb.append(", securityAttributes=").append(String.valueOf(this.securityAttributes)); sb.append(")"); return sb.toString(); } @@ -320,6 +347,7 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.freeformTags, other.freeformTags) && java.util.Objects.equals(this.definedTags, other.definedTags) && java.util.Objects.equals(this.systemTags, other.systemTags) + && java.util.Objects.equals(this.securityAttributes, other.securityAttributes) && super.equals(other); } @@ -345,6 +373,11 @@ public int hashCode() { result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); result = (result * PRIME) + (this.systemTags == null ? 43 : this.systemTags.hashCode()); + result = + (result * PRIME) + + (this.securityAttributes == null + ? 43 + : this.securityAttributes.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipeline.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipeline.java index 441c0db5916..de8fdfa8cdf 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipeline.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipeline.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineArtifact.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineArtifact.java index 1055ad282da..3077bdbd314 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineArtifact.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineArtifact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineArtifactCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineArtifactCollection.java index a2b40c6666a..b3d7fa39596 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineArtifactCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineArtifactCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineCollection.java index 7f8b7cbe5f9..40d63efe46b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineDeployment.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineDeployment.java index e4b94eda403..14e1fc4936a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineDeployment.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineDeployment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -195,6 +195,15 @@ public Builder systemTags(java.util.Map> s return this; } + @com.fasterxml.jackson.annotation.JsonProperty("cmUrl") + private String cmUrl; + + public Builder cmUrl(String cmUrl) { + this.cmUrl = cmUrl; + this.__explicitlySet__.add("cmUrl"); + return this; + } + @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); @@ -218,7 +227,8 @@ public DeployPipelineDeployment build() { this.deploymentExecutionProgress, this.freeformTags, this.definedTags, - this.systemTags); + this.systemTags, + this.cmUrl); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } @@ -281,6 +291,9 @@ public Builder copy(DeployPipelineDeployment model) { if (model.wasPropertyExplicitlySet("systemTags")) { this.systemTags(model.getSystemTags()); } + if (model.wasPropertyExplicitlySet("cmUrl")) { + this.cmUrl(model.getCmUrl()); + } return this; } } @@ -313,7 +326,8 @@ public DeployPipelineDeployment( DeploymentExecutionProgress deploymentExecutionProgress, java.util.Map freeformTags, java.util.Map> definedTags, - java.util.Map> systemTags) { + java.util.Map> systemTags, + String cmUrl) { super( deployPipelineArtifacts, deployPipelineEnvironments, @@ -332,7 +346,8 @@ public DeployPipelineDeployment( deploymentExecutionProgress, freeformTags, definedTags, - systemTags); + systemTags, + cmUrl); } @Override diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineDeploymentSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineDeploymentSummary.java index afaac26e924..bd084f4dd6a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineDeploymentSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineDeploymentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineEnvironment.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineEnvironment.java index a5ca205bacb..b84dc61a31a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineEnvironment.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineEnvironment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineEnvironmentCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineEnvironmentCollection.java index 42a5c0bc9b5..8d7b44f9b1c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineEnvironmentCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineEnvironmentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineParameter.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineParameter.java index de1830f4cb6..36d8d4c0c04 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineParameter.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineParameter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineParameterCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineParameterCollection.java index 70ca1648452..166a81d1cf1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineParameterCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineParameterCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineRedeployment.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineRedeployment.java index f3478babcb1..c1dd7e5b79e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineRedeployment.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineRedeployment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -194,6 +194,15 @@ public Builder systemTags(java.util.Map> s this.__explicitlySet__.add("systemTags"); return this; } + + @com.fasterxml.jackson.annotation.JsonProperty("cmUrl") + private String cmUrl; + + public Builder cmUrl(String cmUrl) { + this.cmUrl = cmUrl; + this.__explicitlySet__.add("cmUrl"); + return this; + } /** Specifies the OCID of the previous deployment to be redeployed. */ @com.fasterxml.jackson.annotation.JsonProperty("previousDeploymentId") private String previousDeploymentId; @@ -234,6 +243,7 @@ public DeployPipelineRedeployment build() { this.freeformTags, this.definedTags, this.systemTags, + this.cmUrl, this.previousDeploymentId); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); @@ -297,6 +307,9 @@ public Builder copy(DeployPipelineRedeployment model) { if (model.wasPropertyExplicitlySet("systemTags")) { this.systemTags(model.getSystemTags()); } + if (model.wasPropertyExplicitlySet("cmUrl")) { + this.cmUrl(model.getCmUrl()); + } if (model.wasPropertyExplicitlySet("previousDeploymentId")) { this.previousDeploymentId(model.getPreviousDeploymentId()); } @@ -333,6 +346,7 @@ public DeployPipelineRedeployment( java.util.Map freeformTags, java.util.Map> definedTags, java.util.Map> systemTags, + String cmUrl, String previousDeploymentId) { super( deployPipelineArtifacts, @@ -352,7 +366,8 @@ public DeployPipelineRedeployment( deploymentExecutionProgress, freeformTags, definedTags, - systemTags); + systemTags, + cmUrl); this.previousDeploymentId = previousDeploymentId; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineRedeploymentSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineRedeploymentSummary.java index ee668fd962f..57b14a34100 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineRedeploymentSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineRedeploymentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineStage.java index 017c8bcdea1..4920617e7a3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineStageCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineStageCollection.java index e5dc7c77f10..e6c13a5ebcb 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineStageCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineStageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineSummary.java index 2c655988b7b..c472ed788f8 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployPipelineSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStage.java index 78f6c3e0ec1..d3667860a4f 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageCollection.java index 2351da87f7e..144f264facf 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageExecutionProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageExecutionProgress.java index 0672914ffd8..e0813456c19 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageExecutionProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageExecutionProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageExecutionProgressDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageExecutionProgressDetails.java index ab31593d538..9dc32d79d53 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageExecutionProgressDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageExecutionProgressDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageExecutionStep.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageExecutionStep.java index 99758a61c24..3aa5211f59d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageExecutionStep.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageExecutionStep.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageOverrideArgument.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageOverrideArgument.java index dcbf7ce8b61..27442168f37 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageOverrideArgument.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageOverrideArgument.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageOverrideArgumentCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageOverrideArgumentCollection.java index f560eec61c3..0c3b520cf4b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageOverrideArgumentCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageOverrideArgumentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStagePredecessor.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStagePredecessor.java index 122e59e6c3a..777e0a83c5d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStagePredecessor.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStagePredecessor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStagePredecessorCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStagePredecessorCollection.java index 4d82b36f383..3bd6cf45492 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStagePredecessorCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStagePredecessorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageRollbackPolicy.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageRollbackPolicy.java index 24e60d22fd8..3cd59d8d937 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageRollbackPolicy.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageRollbackPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageSummary.java index 5d7dbbedc7d..c71e09978ca 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeployStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Deployment.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Deployment.java index e6c8cf10131..f7f2d625827 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Deployment.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Deployment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -57,7 +57,8 @@ public class Deployment extends com.oracle.bmc.http.client.internal.ExplicitlySe "deploymentExecutionProgress", "freeformTags", "definedTags", - "systemTags" + "systemTags", + "cmUrl" }) protected Deployment( DeployPipelineArtifactCollection deployPipelineArtifacts, @@ -77,7 +78,8 @@ protected Deployment( DeploymentExecutionProgress deploymentExecutionProgress, java.util.Map freeformTags, java.util.Map> definedTags, - java.util.Map> systemTags) { + java.util.Map> systemTags, + String cmUrl) { super(); this.deployPipelineArtifacts = deployPipelineArtifacts; this.deployPipelineEnvironments = deployPipelineEnvironments; @@ -97,6 +99,7 @@ protected Deployment( this.freeformTags = freeformTags; this.definedTags = definedTags; this.systemTags = systemTags; + this.cmUrl = cmUrl; } @com.fasterxml.jackson.annotation.JsonProperty("deployPipelineArtifacts") @@ -383,6 +386,19 @@ public java.util.Map> getSystemTags() { return systemTags; } + /** Internal-only URL to change management ticket for annotation on dashboards. */ + @com.fasterxml.jackson.annotation.JsonProperty("cmUrl") + private final String cmUrl; + + /** + * Internal-only URL to change management ticket for annotation on dashboards. + * + * @return the value + */ + public String getCmUrl() { + return cmUrl; + } + @Override public String toString() { return this.toString(true); @@ -420,6 +436,7 @@ public String toString(boolean includeByteArrayContents) { sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); sb.append(", definedTags=").append(String.valueOf(this.definedTags)); sb.append(", systemTags=").append(String.valueOf(this.systemTags)); + sb.append(", cmUrl=").append(String.valueOf(this.cmUrl)); sb.append(")"); return sb.toString(); } @@ -456,6 +473,7 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.freeformTags, other.freeformTags) && java.util.Objects.equals(this.definedTags, other.definedTags) && java.util.Objects.equals(this.systemTags, other.systemTags) + && java.util.Objects.equals(this.cmUrl, other.cmUrl) && super.equals(other); } @@ -513,6 +531,7 @@ public int hashCode() { result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); result = (result * PRIME) + (this.systemTags == null ? 43 : this.systemTags.hashCode()); + result = (result * PRIME) + (this.cmUrl == null ? 43 : this.cmUrl.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeploymentArgument.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeploymentArgument.java index d3009a9a391..e3441399c8a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeploymentArgument.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeploymentArgument.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeploymentArgumentCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeploymentArgumentCollection.java index c139c6f3a6a..2291753acac 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeploymentArgumentCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeploymentArgumentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeploymentCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeploymentCollection.java index 6547969b47e..dedb09fbeed 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeploymentCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeploymentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeploymentExecutionProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeploymentExecutionProgress.java index d9419391158..c66ce5c1e56 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeploymentExecutionProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeploymentExecutionProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeploymentSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeploymentSummary.java index e332f036bd4..30fa74360d7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeploymentSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DeploymentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryBuildRunSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryBuildRunSource.java index cac159de1bc..650fb3b7102 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryBuildRunSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryBuildRunSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryBuildSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryBuildSource.java index 5eb73ee651c..d084422c8b1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryBuildSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryBuildSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryFilter.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryFilter.java index 83f5ecdef11..3a34acd4c8b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryFilter.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryFilterAttributes.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryFilterAttributes.java index 0c044139bf0..4489d4e8577 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryFilterAttributes.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryFilterAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryFilterExclusionAttributes.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryFilterExclusionAttributes.java index 267d0fa35d9..26c7cbb1ee6 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryFilterExclusionAttributes.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryFilterExclusionAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryTrigger.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryTrigger.java index 81d11d6d747..83552202e9a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryTrigger.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryTrigger.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryTriggerCreateResult.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryTriggerCreateResult.java index 651734d82d3..12f04d544d4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryTriggerCreateResult.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryTriggerCreateResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryTriggerSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryTriggerSummary.java index 31eb657c1a5..d56acd420de 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryTriggerSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DevopsCodeRepositoryTriggerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffChunk.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffChunk.java index ec497c5cf28..6fd5f054587 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffChunk.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffChunk.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffCollection.java index e86938c0063..a33058d4182 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffLineDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffLineDetails.java index eb03c6a2bb6..292c162524d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffLineDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffLineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffResponse.java index 7d1085fcbc4..de19c25f0e7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffResponseEntry.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffResponseEntry.java index ec0509822af..d3b98589bd6 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffResponseEntry.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffResponseEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffSection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffSection.java index b75a9b7319d..ee2ed8623a3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffSection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffSection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffSummary.java index 48c3c625160..6e2c4351fe8 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/DiffSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ExecuteMergePullRequestDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ExecuteMergePullRequestDetails.java index 58dcee9d642..d799e9f8e69 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ExecuteMergePullRequestDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ExecuteMergePullRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ExportedVariable.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ExportedVariable.java index 114eb1ac2d4..c896606e308 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ExportedVariable.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ExportedVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ExportedVariableCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ExportedVariableCollection.java index d3a4c97cd34..0edcd66efa3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ExportedVariableCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ExportedVariableCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FileDiffResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FileDiffResponse.java index 4b0ae312482..30dc57ab821 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FileDiffResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FileDiffResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FileFilter.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FileFilter.java index 8bb9e649d54..4db8e8f4e02 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FileFilter.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FileFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FileLineDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FileLineDetails.java index 6f0915a01ce..e61abf60b27 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FileLineDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FileLineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Filter.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Filter.java index 3981599b0ab..fa570cb4471 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Filter.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Filter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ForkSyncStatusCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ForkSyncStatusCollection.java index 4a492a98123..3b00204b5ed 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ForkSyncStatusCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ForkSyncStatusCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ForkSyncStatusSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ForkSyncStatusSummary.java index 7eb7464db5c..2f2e20de7a1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ForkSyncStatusSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ForkSyncStatusSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FunctionDeployEnvironment.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FunctionDeployEnvironment.java index 3655b98e7ff..5b97d9724b7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FunctionDeployEnvironment.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FunctionDeployEnvironment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -135,6 +135,16 @@ public Builder systemTags(java.util.Map> s this.__explicitlySet__.add("systemTags"); return this; } + + @com.fasterxml.jackson.annotation.JsonProperty("securityAttributes") + private java.util.Map> securityAttributes; + + public Builder securityAttributes( + java.util.Map> securityAttributes) { + this.securityAttributes = securityAttributes; + this.__explicitlySet__.add("securityAttributes"); + return this; + } /** The OCID of the Function. */ @com.fasterxml.jackson.annotation.JsonProperty("functionId") private String functionId; @@ -169,6 +179,7 @@ public FunctionDeployEnvironment build() { this.freeformTags, this.definedTags, this.systemTags, + this.securityAttributes, this.functionId); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); @@ -214,6 +225,9 @@ public Builder copy(FunctionDeployEnvironment model) { if (model.wasPropertyExplicitlySet("systemTags")) { this.systemTags(model.getSystemTags()); } + if (model.wasPropertyExplicitlySet("securityAttributes")) { + this.securityAttributes(model.getSecurityAttributes()); + } if (model.wasPropertyExplicitlySet("functionId")) { this.functionId(model.getFunctionId()); } @@ -244,6 +258,7 @@ public FunctionDeployEnvironment( java.util.Map freeformTags, java.util.Map> definedTags, java.util.Map> systemTags, + java.util.Map> securityAttributes, String functionId) { super( id, @@ -257,7 +272,8 @@ public FunctionDeployEnvironment( lifecycleDetails, freeformTags, definedTags, - systemTags); + systemTags, + securityAttributes); this.functionId = functionId; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FunctionDeployEnvironmentSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FunctionDeployEnvironmentSummary.java index efb1cee1f63..a2a739b5557 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FunctionDeployEnvironmentSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FunctionDeployEnvironmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -135,6 +135,16 @@ public Builder systemTags(java.util.Map> s this.__explicitlySet__.add("systemTags"); return this; } + + @com.fasterxml.jackson.annotation.JsonProperty("securityAttributes") + private java.util.Map> securityAttributes; + + public Builder securityAttributes( + java.util.Map> securityAttributes) { + this.securityAttributes = securityAttributes; + this.__explicitlySet__.add("securityAttributes"); + return this; + } /** The OCID of the Function. */ @com.fasterxml.jackson.annotation.JsonProperty("functionId") private String functionId; @@ -169,6 +179,7 @@ public FunctionDeployEnvironmentSummary build() { this.freeformTags, this.definedTags, this.systemTags, + this.securityAttributes, this.functionId); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); @@ -214,6 +225,9 @@ public Builder copy(FunctionDeployEnvironmentSummary model) { if (model.wasPropertyExplicitlySet("systemTags")) { this.systemTags(model.getSystemTags()); } + if (model.wasPropertyExplicitlySet("securityAttributes")) { + this.securityAttributes(model.getSecurityAttributes()); + } if (model.wasPropertyExplicitlySet("functionId")) { this.functionId(model.getFunctionId()); } @@ -244,6 +258,7 @@ public FunctionDeployEnvironmentSummary( java.util.Map freeformTags, java.util.Map> definedTags, java.util.Map> systemTags, + java.util.Map> securityAttributes, String functionId) { super( id, @@ -257,7 +272,8 @@ public FunctionDeployEnvironmentSummary( lifecycleDetails, freeformTags, definedTags, - systemTags); + systemTags, + securityAttributes); this.functionId = functionId; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FunctionDeployStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FunctionDeployStage.java index ffcb73624fd..4ec741331b7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FunctionDeployStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FunctionDeployStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FunctionDeployStageExecutionProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FunctionDeployStageExecutionProgress.java index 81f8676caa2..f9d854e76e0 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FunctionDeployStageExecutionProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FunctionDeployStageExecutionProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FunctionDeployStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FunctionDeployStageSummary.java index 44d7f60fb06..99df2e871b9 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FunctionDeployStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/FunctionDeployStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GenericDeliveredArtifact.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GenericDeliveredArtifact.java index b008daf8fe1..c449522c174 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GenericDeliveredArtifact.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GenericDeliveredArtifact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GenericDeployArtifactSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GenericDeployArtifactSource.java index 38a0ae2b094..e000146b37f 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GenericDeployArtifactSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GenericDeployArtifactSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -57,16 +57,12 @@ public Builder deployArtifactPath(String deployArtifactPath) { this.__explicitlySet__.add("deployArtifactPath"); return this; } - /** - * Users can set this as a placeholder value that refers to a pipeline parameter, for - * example, ${appVersion}. - */ + /** Users can set this as a placeholder value that refers to a pipeline parameter. */ @com.fasterxml.jackson.annotation.JsonProperty("deployArtifactVersion") private String deployArtifactVersion; /** - * Users can set this as a placeholder value that refers to a pipeline parameter, for - * example, ${appVersion}. + * Users can set this as a placeholder value that refers to a pipeline parameter. * * @param deployArtifactVersion the value to set * @return this builder @@ -149,16 +145,12 @@ public String getDeployArtifactPath() { return deployArtifactPath; } - /** - * Users can set this as a placeholder value that refers to a pipeline parameter, for example, - * ${appVersion}. - */ + /** Users can set this as a placeholder value that refers to a pipeline parameter. */ @com.fasterxml.jackson.annotation.JsonProperty("deployArtifactVersion") private final String deployArtifactVersion; /** - * Users can set this as a placeholder value that refers to a pipeline parameter, for example, - * ${appVersion}. + * Users can set this as a placeholder value that refers to a pipeline parameter. * * @return the value */ diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubAccessTokenConnection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubAccessTokenConnection.java index 7ce4bf223da..dc200ea9915 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubAccessTokenConnection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubAccessTokenConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubAccessTokenConnectionSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubAccessTokenConnectionSummary.java index 73855e31795..fada6d0a477 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubAccessTokenConnectionSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubAccessTokenConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubBuildRunSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubBuildRunSource.java index 1f3373eb665..265c65db614 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubBuildRunSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubBuildRunSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubBuildSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubBuildSource.java index c0ae0076f40..ab75ebe926b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubBuildSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubBuildSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubFilter.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubFilter.java index 0d1ff6e5015..d02890b34d1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubFilter.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubFilterAttributes.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubFilterAttributes.java index 1cdd12bef9b..3213a944aef 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubFilterAttributes.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubFilterAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubFilterExclusionAttributes.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubFilterExclusionAttributes.java index 36dda6b3354..5c3a946ee48 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubFilterExclusionAttributes.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubFilterExclusionAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubTrigger.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubTrigger.java index 6a326375233..2d234eb29a6 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubTrigger.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubTrigger.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubTriggerCreateResult.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubTriggerCreateResult.java index c730f648414..4018b5227eb 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubTriggerCreateResult.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubTriggerCreateResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubTriggerSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubTriggerSummary.java index a9aeb330f4d..7fd609c8df4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubTriggerSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GithubTriggerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabAccessTokenConnection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabAccessTokenConnection.java index 9e8ad1c509f..2cf9fa15dc9 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabAccessTokenConnection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabAccessTokenConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabAccessTokenConnectionSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabAccessTokenConnectionSummary.java index 583d98cb527..f31a56747b5 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabAccessTokenConnectionSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabAccessTokenConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabBuildRunSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabBuildRunSource.java index 6c91f9f580d..f3d3f51f67a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabBuildRunSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabBuildRunSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabBuildSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabBuildSource.java index 3a6a7a52a90..09ce47bc2f6 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabBuildSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabBuildSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabFilter.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabFilter.java index e0ada53c417..b9c92ec4052 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabFilter.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabFilterAttributes.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabFilterAttributes.java index 9414aa293a2..b066075828c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabFilterAttributes.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabFilterAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabFilterExclusionAttributes.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabFilterExclusionAttributes.java index 825dc3df83a..83c4b76adea 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabFilterExclusionAttributes.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabFilterExclusionAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerAccessTokenConnection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerAccessTokenConnection.java index a716b53b9c5..aa4356335d6 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerAccessTokenConnection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerAccessTokenConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerAccessTokenConnectionSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerAccessTokenConnectionSummary.java index 2b8c7d4e954..22f5a90197e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerAccessTokenConnectionSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerAccessTokenConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerBuildRunSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerBuildRunSource.java index 93c9bd824b3..c975ea3de91 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerBuildRunSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerBuildRunSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerBuildSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerBuildSource.java index 0baa997a5c9..9c70f7c8bb7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerBuildSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerBuildSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerFilter.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerFilter.java index cdd7d9d49ed..8b047e257bf 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerFilter.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerFilterAttributes.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerFilterAttributes.java index 1ceab405c0f..7c2c6258a03 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerFilterAttributes.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerFilterAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerFilterExclusionAttributes.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerFilterExclusionAttributes.java index f749e041219..a2b4e11e1ef 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerFilterExclusionAttributes.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerFilterExclusionAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerTrigger.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerTrigger.java index d5f48d66a50..70f6c62b0db 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerTrigger.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerTrigger.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerTriggerCreateResult.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerTriggerCreateResult.java index 9f39691715f..31fce6a2c23 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerTriggerCreateResult.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerTriggerCreateResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerTriggerSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerTriggerSummary.java index a2660d76915..8ed6e93c8c6 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerTriggerSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabServerTriggerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabTrigger.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabTrigger.java index e42581799df..154a36b09ce 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabTrigger.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabTrigger.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabTriggerCreateResult.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabTriggerCreateResult.java index 67099eef42e..4de8e4423d7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabTriggerCreateResult.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabTriggerCreateResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabTriggerSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabTriggerSummary.java index 1b8ef5881d1..6d8b6d47c08 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabTriggerSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/GitlabTriggerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmCommandSpecArtifactSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmCommandSpecArtifactSource.java index 3dcc9f52507..9268bcb6224 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmCommandSpecArtifactSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmCommandSpecArtifactSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmDiffArgument.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmDiffArgument.java index 7c8694407f7..e9f7a958d33 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmDiffArgument.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmDiffArgument.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmDiffArgumentCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmDiffArgumentCollection.java index 5a15197f891..41657b8ee5a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmDiffArgumentCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmDiffArgumentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmRepositoryDeployArtifactSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmRepositoryDeployArtifactSource.java index 8cb8709ecff..0241471ab2d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmRepositoryDeployArtifactSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmRepositoryDeployArtifactSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -42,16 +42,12 @@ public Builder chartUrl(String chartUrl) { this.__explicitlySet__.add("chartUrl"); return this; } - /** - * Users can set this as a placeholder value that refers to a pipeline parameter, for - * example, ${appVersion}. - */ + /** Users can set this as a placeholder value that refers to a pipeline parameter. */ @com.fasterxml.jackson.annotation.JsonProperty("deployArtifactVersion") private String deployArtifactVersion; /** - * Users can set this as a placeholder value that refers to a pipeline parameter, for - * example, ${appVersion}. + * Users can set this as a placeholder value that refers to a pipeline parameter. * * @param deployArtifactVersion the value to set * @return this builder @@ -134,16 +130,12 @@ public String getChartUrl() { return chartUrl; } - /** - * Users can set this as a placeholder value that refers to a pipeline parameter, for example, - * ${appVersion}. - */ + /** Users can set this as a placeholder value that refers to a pipeline parameter. */ @com.fasterxml.jackson.annotation.JsonProperty("deployArtifactVersion") private final String deployArtifactVersion; /** - * Users can set this as a placeholder value that refers to a pipeline parameter, for example, - * ${appVersion}. + * Users can set this as a placeholder value that refers to a pipeline parameter. * * @return the value */ diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmSetValue.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmSetValue.java index af0c04bb9ba..0f19f8ec43c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmSetValue.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmSetValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmSetValueCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmSetValueCollection.java index 7c60eeb726d..c3fc2f2e2d7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmSetValueCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmSetValueCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmStageContent.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmStageContent.java index 3aa67aa66d6..b389b42868c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmStageContent.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/HelmStageContent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/InlineDeployArtifactSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/InlineDeployArtifactSource.java index 714529d554f..f58020a73fc 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/InlineDeployArtifactSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/InlineDeployArtifactSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/InlinePublicKeyVerificationKeySource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/InlinePublicKeyVerificationKeySource.java index 8493166c466..f65fd35b887 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/InlinePublicKeyVerificationKeySource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/InlinePublicKeyVerificationKeySource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/InvokeFunctionDeployStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/InvokeFunctionDeployStage.java index 9ccb9f5dab2..4cfe9cb22f2 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/InvokeFunctionDeployStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/InvokeFunctionDeployStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/InvokeFunctionDeployStageExecutionProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/InvokeFunctionDeployStageExecutionProgress.java index d80292ecc47..b2e6c93ec38 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/InvokeFunctionDeployStageExecutionProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/InvokeFunctionDeployStageExecutionProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/InvokeFunctionDeployStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/InvokeFunctionDeployStageSummary.java index e4dee976060..1526d81e5c6 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/InvokeFunctionDeployStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/InvokeFunctionDeployStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/LoadBalancerConfig.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/LoadBalancerConfig.java index a903ce5ef4b..7a327e6a9fe 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/LoadBalancerConfig.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/LoadBalancerConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/LoadBalancerTrafficShiftDeployStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/LoadBalancerTrafficShiftDeployStage.java index f0056440106..bf1c4bb493d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/LoadBalancerTrafficShiftDeployStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/LoadBalancerTrafficShiftDeployStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/LoadBalancerTrafficShiftDeployStageExecutionProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/LoadBalancerTrafficShiftDeployStageExecutionProgress.java index 7638aceb1e3..cb36ec0f9ad 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/LoadBalancerTrafficShiftDeployStageExecutionProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/LoadBalancerTrafficShiftDeployStageExecutionProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/LoadBalancerTrafficShiftDeployStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/LoadBalancerTrafficShiftDeployStageSummary.java index b49a07f3ea1..475d85a7a1b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/LoadBalancerTrafficShiftDeployStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/LoadBalancerTrafficShiftDeployStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/LoadBalancerTrafficShiftRolloutPolicy.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/LoadBalancerTrafficShiftRolloutPolicy.java index 984ddb59d41..21042afc92a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/LoadBalancerTrafficShiftRolloutPolicy.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/LoadBalancerTrafficShiftRolloutPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ManualApprovalDeployStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ManualApprovalDeployStage.java index c6b0e14b6e1..ba3c84a5e4b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ManualApprovalDeployStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ManualApprovalDeployStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ManualApprovalDeployStageExecutionProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ManualApprovalDeployStageExecutionProgress.java index cbd54318407..358aab11719 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ManualApprovalDeployStageExecutionProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ManualApprovalDeployStageExecutionProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ManualApprovalDeployStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ManualApprovalDeployStageSummary.java index 97ffa39a24c..392458695ff 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ManualApprovalDeployStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ManualApprovalDeployStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ManualBuildRunSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ManualBuildRunSource.java index 90da6dd8213..6b8ef370c70 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ManualBuildRunSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ManualBuildRunSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeCheck.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeCheck.java index fc1d0ef517c..a922f815214 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeCheck.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeCheck.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeCheckCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeCheckCollection.java index 88189ea7697..2a99af0c0ce 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeCheckCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeCheckCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeCheckSettingsValue.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeCheckSettingsValue.java index 0319ccbc3a7..14ad21df6db 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeCheckSettingsValue.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeCheckSettingsValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeChecks.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeChecks.java index 00542fba13a..6566fb581c8 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeChecks.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeChecks.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergePullRequestDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergePullRequestDetails.java index 60dc33e79b1..67a39a6c2cd 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergePullRequestDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergePullRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeSettings.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeSettings.java index a87a7e0aaf4..bf81737d10b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeSettings.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeStrategy.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeStrategy.java index c0fa92270b3..420e59045aa 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeStrategy.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MergeStrategy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MetricName.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MetricName.java index 7cb5bb6cfb8..21442fa1710 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MetricName.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MetricName.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MirrorRepositoryConfig.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MirrorRepositoryConfig.java index deba8904534..5e2e3164045 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MirrorRepositoryConfig.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/MirrorRepositoryConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NetworkChannel.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NetworkChannel.java index f0ebf719b17..4bc36df0ea3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NetworkChannel.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NetworkChannel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NginxBlueGreenStrategy.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NginxBlueGreenStrategy.java index 245f7740d65..36df518035d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NginxBlueGreenStrategy.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NginxBlueGreenStrategy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NginxCanaryStrategy.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NginxCanaryStrategy.java index a782fe4a611..0bed578c4eb 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NginxCanaryStrategy.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NginxCanaryStrategy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NoDeployStageRollbackPolicy.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NoDeployStageRollbackPolicy.java index 827d1debd02..1e877a9dcf2 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NoDeployStageRollbackPolicy.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NoDeployStageRollbackPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NoneVerificationKeySource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NoneVerificationKeySource.java index 8c21e2b4b45..1db2695f19c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NoneVerificationKeySource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NoneVerificationKeySource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NotificationConfig.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NotificationConfig.java index d916b6810f0..61a88157ac2 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NotificationConfig.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/NotificationConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OcirDeployArtifactSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OcirDeployArtifactSource.java index 0351fd6b5ff..1712183204e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OcirDeployArtifactSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OcirDeployArtifactSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenDeployStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenDeployStage.java index db60b8fb50a..a1fffe1a5f6 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenDeployStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenDeployStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenDeployStageExecutionProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenDeployStageExecutionProgress.java index 1daf2267a56..fdacad5ea90 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenDeployStageExecutionProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenDeployStageExecutionProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenDeployStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenDeployStageSummary.java index 544c019c72f..7a4949fd4aa 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenDeployStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenDeployStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenStrategy.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenStrategy.java index 63822765316..f866aee50f3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenStrategy.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenStrategy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenTrafficShiftDeployStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenTrafficShiftDeployStage.java index 80fee10828a..87ad9dccb20 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenTrafficShiftDeployStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenTrafficShiftDeployStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenTrafficShiftDeployStageExecutionProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenTrafficShiftDeployStageExecutionProgress.java index 17a0e246be5..770680d90a1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenTrafficShiftDeployStageExecutionProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenTrafficShiftDeployStageExecutionProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenTrafficShiftDeployStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenTrafficShiftDeployStageSummary.java index c0a02be0c77..d488bf41d97 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenTrafficShiftDeployStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeBlueGreenTrafficShiftDeployStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryApprovalDeployStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryApprovalDeployStage.java index 23f0f5c7dec..ce02d162630 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryApprovalDeployStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryApprovalDeployStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryApprovalDeployStageExecutionProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryApprovalDeployStageExecutionProgress.java index 7eae401f398..abd155d18db 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryApprovalDeployStageExecutionProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryApprovalDeployStageExecutionProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryApprovalDeployStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryApprovalDeployStageSummary.java index d53f33802ac..1b36324fb15 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryApprovalDeployStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryApprovalDeployStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryDeployStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryDeployStage.java index f612c920087..3b86ea58d61 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryDeployStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryDeployStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryDeployStageExecutionProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryDeployStageExecutionProgress.java index d6b6bd73bfc..8b9ba690a7e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryDeployStageExecutionProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryDeployStageExecutionProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryDeployStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryDeployStageSummary.java index c33013643b8..72211152d5b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryDeployStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryDeployStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryStrategy.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryStrategy.java index 3158153b4ab..137f6221d50 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryStrategy.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryStrategy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryTrafficShiftDeployStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryTrafficShiftDeployStage.java index 734e29f1b35..08faa245be4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryTrafficShiftDeployStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryTrafficShiftDeployStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryTrafficShiftDeployStageExecutionProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryTrafficShiftDeployStageExecutionProgress.java index fd76e5d1b01..2b11e27d34a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryTrafficShiftDeployStageExecutionProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryTrafficShiftDeployStageExecutionProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryTrafficShiftDeployStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryTrafficShiftDeployStageSummary.java index f21ff657163..70de1dfdedc 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryTrafficShiftDeployStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeCanaryTrafficShiftDeployStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeClusterDeployEnvironment.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeClusterDeployEnvironment.java index fa86ea9dcab..895a8efad74 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeClusterDeployEnvironment.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeClusterDeployEnvironment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -135,6 +135,16 @@ public Builder systemTags(java.util.Map> s this.__explicitlySet__.add("systemTags"); return this; } + + @com.fasterxml.jackson.annotation.JsonProperty("securityAttributes") + private java.util.Map> securityAttributes; + + public Builder securityAttributes( + java.util.Map> securityAttributes) { + this.securityAttributes = securityAttributes; + this.__explicitlySet__.add("securityAttributes"); + return this; + } /** The OCID of the Kubernetes cluster. */ @com.fasterxml.jackson.annotation.JsonProperty("clusterId") private String clusterId; @@ -178,6 +188,7 @@ public OkeClusterDeployEnvironment build() { this.freeformTags, this.definedTags, this.systemTags, + this.securityAttributes, this.clusterId, this.networkChannel); for (String explicitlySetProperty : this.__explicitlySet__) { @@ -224,6 +235,9 @@ public Builder copy(OkeClusterDeployEnvironment model) { if (model.wasPropertyExplicitlySet("systemTags")) { this.systemTags(model.getSystemTags()); } + if (model.wasPropertyExplicitlySet("securityAttributes")) { + this.securityAttributes(model.getSecurityAttributes()); + } if (model.wasPropertyExplicitlySet("clusterId")) { this.clusterId(model.getClusterId()); } @@ -257,6 +271,7 @@ public OkeClusterDeployEnvironment( java.util.Map freeformTags, java.util.Map> definedTags, java.util.Map> systemTags, + java.util.Map> securityAttributes, String clusterId, NetworkChannel networkChannel) { super( @@ -271,7 +286,8 @@ public OkeClusterDeployEnvironment( lifecycleDetails, freeformTags, definedTags, - systemTags); + systemTags, + securityAttributes); this.clusterId = clusterId; this.networkChannel = networkChannel; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeClusterDeployEnvironmentSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeClusterDeployEnvironmentSummary.java index 35e10b6beed..afa07cb8ab1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeClusterDeployEnvironmentSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeClusterDeployEnvironmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -135,6 +135,16 @@ public Builder systemTags(java.util.Map> s this.__explicitlySet__.add("systemTags"); return this; } + + @com.fasterxml.jackson.annotation.JsonProperty("securityAttributes") + private java.util.Map> securityAttributes; + + public Builder securityAttributes( + java.util.Map> securityAttributes) { + this.securityAttributes = securityAttributes; + this.__explicitlySet__.add("securityAttributes"); + return this; + } /** The OCID of the Kubernetes cluster. */ @com.fasterxml.jackson.annotation.JsonProperty("clusterId") private String clusterId; @@ -178,6 +188,7 @@ public OkeClusterDeployEnvironmentSummary build() { this.freeformTags, this.definedTags, this.systemTags, + this.securityAttributes, this.clusterId, this.networkChannel); for (String explicitlySetProperty : this.__explicitlySet__) { @@ -224,6 +235,9 @@ public Builder copy(OkeClusterDeployEnvironmentSummary model) { if (model.wasPropertyExplicitlySet("systemTags")) { this.systemTags(model.getSystemTags()); } + if (model.wasPropertyExplicitlySet("securityAttributes")) { + this.securityAttributes(model.getSecurityAttributes()); + } if (model.wasPropertyExplicitlySet("clusterId")) { this.clusterId(model.getClusterId()); } @@ -257,6 +271,7 @@ public OkeClusterDeployEnvironmentSummary( java.util.Map freeformTags, java.util.Map> definedTags, java.util.Map> systemTags, + java.util.Map> securityAttributes, String clusterId, NetworkChannel networkChannel) { super( @@ -271,7 +286,8 @@ public OkeClusterDeployEnvironmentSummary( lifecycleDetails, freeformTags, definedTags, - systemTags); + systemTags, + securityAttributes); this.clusterId = clusterId; this.networkChannel = networkChannel; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeDeployStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeDeployStage.java index f60f1e34e9d..b202ac1b7c8 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeDeployStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeDeployStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeDeployStageExecutionProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeDeployStageExecutionProgress.java index 351d96f7aa2..3cd708bc2e2 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeDeployStageExecutionProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeDeployStageExecutionProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeDeployStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeDeployStageSummary.java index 371872b810d..da4ba78e109 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeDeployStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeDeployStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeHelmChartDeployStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeHelmChartDeployStage.java index 41438fec0a7..fd48377aea6 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeHelmChartDeployStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeHelmChartDeployStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeHelmChartDeployStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeHelmChartDeployStageSummary.java index d30af274d72..c512c924f97 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeHelmChartDeployStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeHelmChartDeployStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeHelmChartDeploymentStageExecutionProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeHelmChartDeploymentStageExecutionProgress.java index 918fab95eec..3e92e44c5c2 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeHelmChartDeploymentStageExecutionProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OkeHelmChartDeploymentStageExecutionProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OperationStatus.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OperationStatus.java index 74a707b54aa..47a00a1e046 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OperationStatus.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OperationType.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OperationType.java index 394f875525d..b0300fcd775 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OperationType.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchInsertInstruction.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchInsertInstruction.java index 2a78b4b65f8..c43aee3a195 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchInsertInstruction.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchInsertInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchInstruction.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchInstruction.java index 7737b69b1b0..2422a84cdfa 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchInstruction.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchMergeInstruction.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchMergeInstruction.java index 0dcf3797b5f..2767e5da53b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchMergeInstruction.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchMergeInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchMoveInstruction.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchMoveInstruction.java index 05429399dac..d414b45fb18 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchMoveInstruction.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchMoveInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchProhibitInstruction.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchProhibitInstruction.java index 9c9bd7ec28c..6e6985fac52 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchProhibitInstruction.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchProhibitInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchPullRequestDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchPullRequestDetails.java index 0365310f7a8..f540172d3c9 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchPullRequestDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchPullRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchRemoveInstruction.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchRemoveInstruction.java index 5c6eb6a269f..671adc62aec 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchRemoveInstruction.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchRemoveInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchReplaceInstruction.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchReplaceInstruction.java index 5d854483bdd..98c74b43bbe 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchReplaceInstruction.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchReplaceInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchRequireInstruction.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchRequireInstruction.java index b4df7521249..5d63e6869f9 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchRequireInstruction.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PatchRequireInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PrincipalDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PrincipalDetails.java index 5196736c152..b453bc0d763 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PrincipalDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PrincipalDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PrivateEndpointChannel.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PrivateEndpointChannel.java index 9c1a6fc5680..0703c342593 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PrivateEndpointChannel.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PrivateEndpointChannel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Project.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Project.java index 7fa60d0c0fd..2c6b8caf9d1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Project.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Project.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProjectCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProjectCollection.java index 4b5b0d287f3..5871102eb6c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProjectCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProjectCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProjectNotificationPreference.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProjectNotificationPreference.java index 7d2d30e1fce..d3142538ea3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProjectNotificationPreference.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProjectNotificationPreference.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProjectRepositorySettings.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProjectRepositorySettings.java index 9d88d4ebcd4..29d64534324 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProjectRepositorySettings.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProjectRepositorySettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProjectSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProjectSummary.java index 9a9c35f99c3..664bd9ea9b1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProjectSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProjectSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProtectedBranch.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProtectedBranch.java index 8bdcd8e04f1..ce287d6362e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProtectedBranch.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProtectedBranch.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProtectedBranchCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProtectedBranchCollection.java index c769c3f080d..850f16180c4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProtectedBranchCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProtectedBranchCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProtectedBranchSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProtectedBranchSummary.java index 4add72dd297..1f8bf161bef 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProtectedBranchSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProtectedBranchSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProtectionLevel.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProtectionLevel.java index b02f697d6cc..f23683a8a40 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProtectionLevel.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ProtectionLevel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequest.java index 446f002e43f..61026dcc7f9 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -36,7 +36,6 @@ public final class PullRequest extends com.oracle.bmc.http.client.internal.Expli "lifecycleState", "lifecycleDetails", "reviewers", - "mergedCommitId", "mergeChecks", "createdBy", "mergedBy", @@ -62,7 +61,6 @@ public PullRequest( LifecycleState lifecycleState, LifecycleDetails lifecycleDetails, java.util.List reviewers, - String mergedCommitId, MergeCheckCollection mergeChecks, PrincipalDetails createdBy, PrincipalDetails mergedBy, @@ -87,7 +85,6 @@ public PullRequest( this.lifecycleState = lifecycleState; this.lifecycleDetails = lifecycleDetails; this.reviewers = reviewers; - this.mergedCommitId = mergedCommitId; this.mergeChecks = mergeChecks; this.createdBy = createdBy; this.mergedBy = mergedBy; @@ -321,21 +318,6 @@ public Builder reviewers(java.util.List reviewers) { this.__explicitlySet__.add("reviewers"); return this; } - /** The commit ID when the Pull Request was merged. */ - @com.fasterxml.jackson.annotation.JsonProperty("mergedCommitId") - private String mergedCommitId; - - /** - * The commit ID when the Pull Request was merged. - * - * @param mergedCommitId the value to set - * @return this builder - */ - public Builder mergedCommitId(String mergedCommitId) { - this.mergedCommitId = mergedCommitId; - this.__explicitlySet__.add("mergedCommitId"); - return this; - } @com.fasterxml.jackson.annotation.JsonProperty("mergeChecks") private MergeCheckCollection mergeChecks; @@ -499,7 +481,6 @@ public PullRequest build() { this.lifecycleState, this.lifecycleDetails, this.reviewers, - this.mergedCommitId, this.mergeChecks, this.createdBy, this.mergedBy, @@ -559,9 +540,6 @@ public Builder copy(PullRequest model) { if (model.wasPropertyExplicitlySet("reviewers")) { this.reviewers(model.getReviewers()); } - if (model.wasPropertyExplicitlySet("mergedCommitId")) { - this.mergedCommitId(model.getMergedCommitId()); - } if (model.wasPropertyExplicitlySet("mergeChecks")) { this.mergeChecks(model.getMergeChecks()); } @@ -887,19 +865,6 @@ public java.util.List getReviewers() { return reviewers; } - /** The commit ID when the Pull Request was merged. */ - @com.fasterxml.jackson.annotation.JsonProperty("mergedCommitId") - private final String mergedCommitId; - - /** - * The commit ID when the Pull Request was merged. - * - * @return the value - */ - public String getMergedCommitId() { - return mergedCommitId; - } - @com.fasterxml.jackson.annotation.JsonProperty("mergeChecks") private final MergeCheckCollection mergeChecks; @@ -1054,7 +1019,6 @@ public String toString(boolean includeByteArrayContents) { sb.append(", lifecycleState=").append(String.valueOf(this.lifecycleState)); sb.append(", lifecycleDetails=").append(String.valueOf(this.lifecycleDetails)); sb.append(", reviewers=").append(String.valueOf(this.reviewers)); - sb.append(", mergedCommitId=").append(String.valueOf(this.mergedCommitId)); sb.append(", mergeChecks=").append(String.valueOf(this.mergeChecks)); sb.append(", createdBy=").append(String.valueOf(this.createdBy)); sb.append(", mergedBy=").append(String.valueOf(this.mergedBy)); @@ -1094,7 +1058,6 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.lifecycleState, other.lifecycleState) && java.util.Objects.equals(this.lifecycleDetails, other.lifecycleDetails) && java.util.Objects.equals(this.reviewers, other.reviewers) - && java.util.Objects.equals(this.mergedCommitId, other.mergedCommitId) && java.util.Objects.equals(this.mergeChecks, other.mergeChecks) && java.util.Objects.equals(this.createdBy, other.createdBy) && java.util.Objects.equals(this.mergedBy, other.mergedBy) @@ -1141,9 +1104,6 @@ public int hashCode() { (result * PRIME) + (this.lifecycleDetails == null ? 43 : this.lifecycleDetails.hashCode()); result = (result * PRIME) + (this.reviewers == null ? 43 : this.reviewers.hashCode()); - result = - (result * PRIME) - + (this.mergedCommitId == null ? 43 : this.mergedCommitId.hashCode()); result = (result * PRIME) + (this.mergeChecks == null ? 43 : this.mergeChecks.hashCode()); result = (result * PRIME) + (this.createdBy == null ? 43 : this.createdBy.hashCode()); result = (result * PRIME) + (this.mergedBy == null ? 43 : this.mergedBy.hashCode()); diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestActivityCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestActivityCollection.java index 4a32978fa09..985e2bd64b5 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestActivityCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestActivityCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestActivitySummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestActivitySummary.java index 8203b0a4c1e..c4236cec79e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestActivitySummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestActivitySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestAttachment.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestAttachment.java index 092a11a5a17..a0dee91b2ff 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestAttachment.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestAttachmentCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestAttachmentCollection.java index 5b806ae5b18..0bd31a5727d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestAttachmentCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestAttachmentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestAttachmentSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestAttachmentSummary.java index c6aace8bb8a..a613b2eca23 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestAttachmentSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestAttachmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestAuthorCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestAuthorCollection.java index fc67a051f6e..9adb02af0bb 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestAuthorCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestAuthorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestAuthorSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestAuthorSummary.java index f5b7eca43c9..ccc17cc0003 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestAuthorSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestAuthorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestChangeSummaryMetrics.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestChangeSummaryMetrics.java deleted file mode 100644 index 93fa705adff..00000000000 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestChangeSummaryMetrics.java +++ /dev/null @@ -1,213 +0,0 @@ -/** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. - * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. - */ -package com.oracle.bmc.devops.model; - -/** - * Response object for obtaining summary metric of Pull Request changed files.
- * Note: Objects should always be created or deserialized using the {@link Builder}. This model - * distinguishes fields that are {@code null} because they are unset from fields that are explicitly - * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a - * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link - * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set - * fields into account. The constructor, on the other hand, does not take the explicitly set fields - * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code - * null}). - */ -@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20210630") -@com.fasterxml.jackson.databind.annotation.JsonDeserialize( - builder = PullRequestChangeSummaryMetrics.Builder.class) -@com.fasterxml.jackson.annotation.JsonFilter( - com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) -public final class PullRequestChangeSummaryMetrics - extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { - @Deprecated - @java.beans.ConstructorProperties({"changedFilesCount", "addedLinesCount", "deletedLinesCount"}) - public PullRequestChangeSummaryMetrics( - Integer changedFilesCount, Integer addedLinesCount, Integer deletedLinesCount) { - super(); - this.changedFilesCount = changedFilesCount; - this.addedLinesCount = addedLinesCount; - this.deletedLinesCount = deletedLinesCount; - } - - @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") - public static class Builder { - /** The number of lines added in whole difference. */ - @com.fasterxml.jackson.annotation.JsonProperty("changedFilesCount") - private Integer changedFilesCount; - - /** - * The number of lines added in whole difference. - * - * @param changedFilesCount the value to set - * @return this builder - */ - public Builder changedFilesCount(Integer changedFilesCount) { - this.changedFilesCount = changedFilesCount; - this.__explicitlySet__.add("changedFilesCount"); - return this; - } - /** The number of lines added in whole difference. */ - @com.fasterxml.jackson.annotation.JsonProperty("addedLinesCount") - private Integer addedLinesCount; - - /** - * The number of lines added in whole difference. - * - * @param addedLinesCount the value to set - * @return this builder - */ - public Builder addedLinesCount(Integer addedLinesCount) { - this.addedLinesCount = addedLinesCount; - this.__explicitlySet__.add("addedLinesCount"); - return this; - } - /** The number of lines deleted in whole difference. */ - @com.fasterxml.jackson.annotation.JsonProperty("deletedLinesCount") - private Integer deletedLinesCount; - - /** - * The number of lines deleted in whole difference. - * - * @param deletedLinesCount the value to set - * @return this builder - */ - public Builder deletedLinesCount(Integer deletedLinesCount) { - this.deletedLinesCount = deletedLinesCount; - this.__explicitlySet__.add("deletedLinesCount"); - return this; - } - - @com.fasterxml.jackson.annotation.JsonIgnore - private final java.util.Set __explicitlySet__ = new java.util.HashSet(); - - public PullRequestChangeSummaryMetrics build() { - PullRequestChangeSummaryMetrics model = - new PullRequestChangeSummaryMetrics( - this.changedFilesCount, this.addedLinesCount, this.deletedLinesCount); - for (String explicitlySetProperty : this.__explicitlySet__) { - model.markPropertyAsExplicitlySet(explicitlySetProperty); - } - return model; - } - - @com.fasterxml.jackson.annotation.JsonIgnore - public Builder copy(PullRequestChangeSummaryMetrics model) { - if (model.wasPropertyExplicitlySet("changedFilesCount")) { - this.changedFilesCount(model.getChangedFilesCount()); - } - if (model.wasPropertyExplicitlySet("addedLinesCount")) { - this.addedLinesCount(model.getAddedLinesCount()); - } - if (model.wasPropertyExplicitlySet("deletedLinesCount")) { - this.deletedLinesCount(model.getDeletedLinesCount()); - } - return this; - } - } - - /** Create a new builder. */ - public static Builder builder() { - return new Builder(); - } - - public Builder toBuilder() { - return new Builder().copy(this); - } - - /** The number of lines added in whole difference. */ - @com.fasterxml.jackson.annotation.JsonProperty("changedFilesCount") - private final Integer changedFilesCount; - - /** - * The number of lines added in whole difference. - * - * @return the value - */ - public Integer getChangedFilesCount() { - return changedFilesCount; - } - - /** The number of lines added in whole difference. */ - @com.fasterxml.jackson.annotation.JsonProperty("addedLinesCount") - private final Integer addedLinesCount; - - /** - * The number of lines added in whole difference. - * - * @return the value - */ - public Integer getAddedLinesCount() { - return addedLinesCount; - } - - /** The number of lines deleted in whole difference. */ - @com.fasterxml.jackson.annotation.JsonProperty("deletedLinesCount") - private final Integer deletedLinesCount; - - /** - * The number of lines deleted in whole difference. - * - * @return the value - */ - public Integer getDeletedLinesCount() { - return deletedLinesCount; - } - - @Override - public String toString() { - return this.toString(true); - } - - /** - * Return a string representation of the object. - * - * @param includeByteArrayContents true to include the full contents of byte arrays - * @return string representation - */ - public String toString(boolean includeByteArrayContents) { - java.lang.StringBuilder sb = new java.lang.StringBuilder(); - sb.append("PullRequestChangeSummaryMetrics("); - sb.append("super=").append(super.toString()); - sb.append("changedFilesCount=").append(String.valueOf(this.changedFilesCount)); - sb.append(", addedLinesCount=").append(String.valueOf(this.addedLinesCount)); - sb.append(", deletedLinesCount=").append(String.valueOf(this.deletedLinesCount)); - sb.append(")"); - return sb.toString(); - } - - @Override - public boolean equals(Object o) { - if (this == o) { - return true; - } - if (!(o instanceof PullRequestChangeSummaryMetrics)) { - return false; - } - - PullRequestChangeSummaryMetrics other = (PullRequestChangeSummaryMetrics) o; - return java.util.Objects.equals(this.changedFilesCount, other.changedFilesCount) - && java.util.Objects.equals(this.addedLinesCount, other.addedLinesCount) - && java.util.Objects.equals(this.deletedLinesCount, other.deletedLinesCount) - && super.equals(other); - } - - @Override - public int hashCode() { - final int PRIME = 59; - int result = 1; - result = - (result * PRIME) - + (this.changedFilesCount == null ? 43 : this.changedFilesCount.hashCode()); - result = - (result * PRIME) - + (this.addedLinesCount == null ? 43 : this.addedLinesCount.hashCode()); - result = - (result * PRIME) - + (this.deletedLinesCount == null ? 43 : this.deletedLinesCount.hashCode()); - result = (result * PRIME) + super.hashCode(); - return result; - } -} diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestCollection.java index 3f7110385e8..904e42267b3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestComment.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestComment.java index 14cd946e4d6..79a2db0f158 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestComment.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestComment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestCommentCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestCommentCollection.java index b96a76dc1b9..66cf31d8497 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestCommentCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestCommentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestCommentLikeCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestCommentLikeCollection.java index c77ec81caf0..4cb9e8638c6 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestCommentLikeCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestCommentLikeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestCommentSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestCommentSummary.java index 6ef70891108..1a2b46723f4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestCommentSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestCommentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestFileChangeSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestFileChangeSummary.java deleted file mode 100644 index f19f9d2506f..00000000000 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestFileChangeSummary.java +++ /dev/null @@ -1,640 +0,0 @@ -/** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. - * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. - */ -package com.oracle.bmc.devops.model; - -/** - * Entry for description of change on a file.
- * Note: Objects should always be created or deserialized using the {@link Builder}. This model - * distinguishes fields that are {@code null} because they are unset from fields that are explicitly - * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a - * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link - * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set - * fields into account. The constructor, on the other hand, does not take the explicitly set fields - * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code - * null}). - */ -@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20210630") -@com.fasterxml.jackson.databind.annotation.JsonDeserialize( - builder = PullRequestFileChangeSummary.Builder.class) -@com.fasterxml.jackson.annotation.JsonFilter( - com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) -public final class PullRequestFileChangeSummary - extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { - @Deprecated - @java.beans.ConstructorProperties({ - "changeType", - "objectType", - "commitId", - "oldPath", - "newPath", - "oldId", - "newId", - "addedLinesCount", - "deletedLinesCount", - "hasConflicts", - "freeformTags", - "definedTags", - "systemTags" - }) - public PullRequestFileChangeSummary( - String changeType, - String objectType, - String commitId, - String oldPath, - String newPath, - String oldId, - String newId, - Integer addedLinesCount, - Integer deletedLinesCount, - Boolean hasConflicts, - java.util.Map freeformTags, - java.util.Map> definedTags, - java.util.Map> systemTags) { - super(); - this.changeType = changeType; - this.objectType = objectType; - this.commitId = commitId; - this.oldPath = oldPath; - this.newPath = newPath; - this.oldId = oldId; - this.newId = newId; - this.addedLinesCount = addedLinesCount; - this.deletedLinesCount = deletedLinesCount; - this.hasConflicts = hasConflicts; - this.freeformTags = freeformTags; - this.definedTags = definedTags; - this.systemTags = systemTags; - } - - @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") - public static class Builder { - /** Type of change made to file. */ - @com.fasterxml.jackson.annotation.JsonProperty("changeType") - private String changeType; - - /** - * Type of change made to file. - * - * @param changeType the value to set - * @return this builder - */ - public Builder changeType(String changeType) { - this.changeType = changeType; - this.__explicitlySet__.add("changeType"); - return this; - } - /** The type of the changed object. */ - @com.fasterxml.jackson.annotation.JsonProperty("objectType") - private String objectType; - - /** - * The type of the changed object. - * - * @param objectType the value to set - * @return this builder - */ - public Builder objectType(String objectType) { - this.objectType = objectType; - this.__explicitlySet__.add("objectType"); - return this; - } - /** The ID of the commit where the change is coming from. */ - @com.fasterxml.jackson.annotation.JsonProperty("commitId") - private String commitId; - - /** - * The ID of the commit where the change is coming from. - * - * @param commitId the value to set - * @return this builder - */ - public Builder commitId(String commitId) { - this.commitId = commitId; - this.__explicitlySet__.add("commitId"); - return this; - } - /** The path on the target to the changed object. */ - @com.fasterxml.jackson.annotation.JsonProperty("oldPath") - private String oldPath; - - /** - * The path on the target to the changed object. - * - * @param oldPath the value to set - * @return this builder - */ - public Builder oldPath(String oldPath) { - this.oldPath = oldPath; - this.__explicitlySet__.add("oldPath"); - return this; - } - /** The path on the source to the changed object. */ - @com.fasterxml.jackson.annotation.JsonProperty("newPath") - private String newPath; - - /** - * The path on the source to the changed object. - * - * @param newPath the value to set - * @return this builder - */ - public Builder newPath(String newPath) { - this.newPath = newPath; - this.__explicitlySet__.add("newPath"); - return this; - } - /** The ID of the changed object on the target. */ - @com.fasterxml.jackson.annotation.JsonProperty("oldId") - private String oldId; - - /** - * The ID of the changed object on the target. - * - * @param oldId the value to set - * @return this builder - */ - public Builder oldId(String oldId) { - this.oldId = oldId; - this.__explicitlySet__.add("oldId"); - return this; - } - /** The ID of the changed object on the source. */ - @com.fasterxml.jackson.annotation.JsonProperty("newId") - private String newId; - - /** - * The ID of the changed object on the source. - * - * @param newId the value to set - * @return this builder - */ - public Builder newId(String newId) { - this.newId = newId; - this.__explicitlySet__.add("newId"); - return this; - } - /** The number of lines added in whole difference. */ - @com.fasterxml.jackson.annotation.JsonProperty("addedLinesCount") - private Integer addedLinesCount; - - /** - * The number of lines added in whole difference. - * - * @param addedLinesCount the value to set - * @return this builder - */ - public Builder addedLinesCount(Integer addedLinesCount) { - this.addedLinesCount = addedLinesCount; - this.__explicitlySet__.add("addedLinesCount"); - return this; - } - /** The number of lines deleted in whole difference. */ - @com.fasterxml.jackson.annotation.JsonProperty("deletedLinesCount") - private Integer deletedLinesCount; - - /** - * The number of lines deleted in whole difference. - * - * @param deletedLinesCount the value to set - * @return this builder - */ - public Builder deletedLinesCount(Integer deletedLinesCount) { - this.deletedLinesCount = deletedLinesCount; - this.__explicitlySet__.add("deletedLinesCount"); - return this; - } - /** Indicates whether the changed file contains conflicts. */ - @com.fasterxml.jackson.annotation.JsonProperty("hasConflicts") - private Boolean hasConflicts; - - /** - * Indicates whether the changed file contains conflicts. - * - * @param hasConflicts the value to set - * @return this builder - */ - public Builder hasConflicts(Boolean hasConflicts) { - this.hasConflicts = hasConflicts; - this.__explicitlySet__.add("hasConflicts"); - return this; - } - /** - * Simple key-value pair that is applied without any predefined name, type or scope. Exists - * for cross-compatibility only. See [Resource - * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: - * {@code {"bar-key": "value"}} - */ - @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") - private java.util.Map freeformTags; - - /** - * Simple key-value pair that is applied without any predefined name, type or scope. Exists - * for cross-compatibility only. See [Resource - * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: - * {@code {"bar-key": "value"}} - * - * @param freeformTags the value to set - * @return this builder - */ - public Builder freeformTags(java.util.Map freeformTags) { - this.freeformTags = freeformTags; - this.__explicitlySet__.add("freeformTags"); - return this; - } - /** - * Defined tags for this resource. Each key is predefined and scoped to a namespace. See - * [Resource Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). - * Example: {@code {"foo-namespace": {"bar-key": "value"}}} - */ - @com.fasterxml.jackson.annotation.JsonProperty("definedTags") - private java.util.Map> definedTags; - - /** - * Defined tags for this resource. Each key is predefined and scoped to a namespace. See - * [Resource Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). - * Example: {@code {"foo-namespace": {"bar-key": "value"}}} - * - * @param definedTags the value to set - * @return this builder - */ - public Builder definedTags( - java.util.Map> definedTags) { - this.definedTags = definedTags; - this.__explicitlySet__.add("definedTags"); - return this; - } - /** - * Usage of system tag keys. These predefined keys are scoped to namespaces. See [Resource - * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: - * {@code {"orcl-cloud": {"free-tier-retained": "true"}}} - */ - @com.fasterxml.jackson.annotation.JsonProperty("systemTags") - private java.util.Map> systemTags; - - /** - * Usage of system tag keys. These predefined keys are scoped to namespaces. See [Resource - * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: - * {@code {"orcl-cloud": {"free-tier-retained": "true"}}} - * - * @param systemTags the value to set - * @return this builder - */ - public Builder systemTags(java.util.Map> systemTags) { - this.systemTags = systemTags; - this.__explicitlySet__.add("systemTags"); - return this; - } - - @com.fasterxml.jackson.annotation.JsonIgnore - private final java.util.Set __explicitlySet__ = new java.util.HashSet(); - - public PullRequestFileChangeSummary build() { - PullRequestFileChangeSummary model = - new PullRequestFileChangeSummary( - this.changeType, - this.objectType, - this.commitId, - this.oldPath, - this.newPath, - this.oldId, - this.newId, - this.addedLinesCount, - this.deletedLinesCount, - this.hasConflicts, - this.freeformTags, - this.definedTags, - this.systemTags); - for (String explicitlySetProperty : this.__explicitlySet__) { - model.markPropertyAsExplicitlySet(explicitlySetProperty); - } - return model; - } - - @com.fasterxml.jackson.annotation.JsonIgnore - public Builder copy(PullRequestFileChangeSummary model) { - if (model.wasPropertyExplicitlySet("changeType")) { - this.changeType(model.getChangeType()); - } - if (model.wasPropertyExplicitlySet("objectType")) { - this.objectType(model.getObjectType()); - } - if (model.wasPropertyExplicitlySet("commitId")) { - this.commitId(model.getCommitId()); - } - if (model.wasPropertyExplicitlySet("oldPath")) { - this.oldPath(model.getOldPath()); - } - if (model.wasPropertyExplicitlySet("newPath")) { - this.newPath(model.getNewPath()); - } - if (model.wasPropertyExplicitlySet("oldId")) { - this.oldId(model.getOldId()); - } - if (model.wasPropertyExplicitlySet("newId")) { - this.newId(model.getNewId()); - } - if (model.wasPropertyExplicitlySet("addedLinesCount")) { - this.addedLinesCount(model.getAddedLinesCount()); - } - if (model.wasPropertyExplicitlySet("deletedLinesCount")) { - this.deletedLinesCount(model.getDeletedLinesCount()); - } - if (model.wasPropertyExplicitlySet("hasConflicts")) { - this.hasConflicts(model.getHasConflicts()); - } - if (model.wasPropertyExplicitlySet("freeformTags")) { - this.freeformTags(model.getFreeformTags()); - } - if (model.wasPropertyExplicitlySet("definedTags")) { - this.definedTags(model.getDefinedTags()); - } - if (model.wasPropertyExplicitlySet("systemTags")) { - this.systemTags(model.getSystemTags()); - } - return this; - } - } - - /** Create a new builder. */ - public static Builder builder() { - return new Builder(); - } - - public Builder toBuilder() { - return new Builder().copy(this); - } - - /** Type of change made to file. */ - @com.fasterxml.jackson.annotation.JsonProperty("changeType") - private final String changeType; - - /** - * Type of change made to file. - * - * @return the value - */ - public String getChangeType() { - return changeType; - } - - /** The type of the changed object. */ - @com.fasterxml.jackson.annotation.JsonProperty("objectType") - private final String objectType; - - /** - * The type of the changed object. - * - * @return the value - */ - public String getObjectType() { - return objectType; - } - - /** The ID of the commit where the change is coming from. */ - @com.fasterxml.jackson.annotation.JsonProperty("commitId") - private final String commitId; - - /** - * The ID of the commit where the change is coming from. - * - * @return the value - */ - public String getCommitId() { - return commitId; - } - - /** The path on the target to the changed object. */ - @com.fasterxml.jackson.annotation.JsonProperty("oldPath") - private final String oldPath; - - /** - * The path on the target to the changed object. - * - * @return the value - */ - public String getOldPath() { - return oldPath; - } - - /** The path on the source to the changed object. */ - @com.fasterxml.jackson.annotation.JsonProperty("newPath") - private final String newPath; - - /** - * The path on the source to the changed object. - * - * @return the value - */ - public String getNewPath() { - return newPath; - } - - /** The ID of the changed object on the target. */ - @com.fasterxml.jackson.annotation.JsonProperty("oldId") - private final String oldId; - - /** - * The ID of the changed object on the target. - * - * @return the value - */ - public String getOldId() { - return oldId; - } - - /** The ID of the changed object on the source. */ - @com.fasterxml.jackson.annotation.JsonProperty("newId") - private final String newId; - - /** - * The ID of the changed object on the source. - * - * @return the value - */ - public String getNewId() { - return newId; - } - - /** The number of lines added in whole difference. */ - @com.fasterxml.jackson.annotation.JsonProperty("addedLinesCount") - private final Integer addedLinesCount; - - /** - * The number of lines added in whole difference. - * - * @return the value - */ - public Integer getAddedLinesCount() { - return addedLinesCount; - } - - /** The number of lines deleted in whole difference. */ - @com.fasterxml.jackson.annotation.JsonProperty("deletedLinesCount") - private final Integer deletedLinesCount; - - /** - * The number of lines deleted in whole difference. - * - * @return the value - */ - public Integer getDeletedLinesCount() { - return deletedLinesCount; - } - - /** Indicates whether the changed file contains conflicts. */ - @com.fasterxml.jackson.annotation.JsonProperty("hasConflicts") - private final Boolean hasConflicts; - - /** - * Indicates whether the changed file contains conflicts. - * - * @return the value - */ - public Boolean getHasConflicts() { - return hasConflicts; - } - - /** - * Simple key-value pair that is applied without any predefined name, type or scope. Exists for - * cross-compatibility only. See [Resource - * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: - * {@code {"bar-key": "value"}} - */ - @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") - private final java.util.Map freeformTags; - - /** - * Simple key-value pair that is applied without any predefined name, type or scope. Exists for - * cross-compatibility only. See [Resource - * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: - * {@code {"bar-key": "value"}} - * - * @return the value - */ - public java.util.Map getFreeformTags() { - return freeformTags; - } - - /** - * Defined tags for this resource. Each key is predefined and scoped to a namespace. See - * [Resource Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). - * Example: {@code {"foo-namespace": {"bar-key": "value"}}} - */ - @com.fasterxml.jackson.annotation.JsonProperty("definedTags") - private final java.util.Map> definedTags; - - /** - * Defined tags for this resource. Each key is predefined and scoped to a namespace. See - * [Resource Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). - * Example: {@code {"foo-namespace": {"bar-key": "value"}}} - * - * @return the value - */ - public java.util.Map> getDefinedTags() { - return definedTags; - } - - /** - * Usage of system tag keys. These predefined keys are scoped to namespaces. See [Resource - * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: - * {@code {"orcl-cloud": {"free-tier-retained": "true"}}} - */ - @com.fasterxml.jackson.annotation.JsonProperty("systemTags") - private final java.util.Map> systemTags; - - /** - * Usage of system tag keys. These predefined keys are scoped to namespaces. See [Resource - * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: - * {@code {"orcl-cloud": {"free-tier-retained": "true"}}} - * - * @return the value - */ - public java.util.Map> getSystemTags() { - return systemTags; - } - - @Override - public String toString() { - return this.toString(true); - } - - /** - * Return a string representation of the object. - * - * @param includeByteArrayContents true to include the full contents of byte arrays - * @return string representation - */ - public String toString(boolean includeByteArrayContents) { - java.lang.StringBuilder sb = new java.lang.StringBuilder(); - sb.append("PullRequestFileChangeSummary("); - sb.append("super=").append(super.toString()); - sb.append("changeType=").append(String.valueOf(this.changeType)); - sb.append(", objectType=").append(String.valueOf(this.objectType)); - sb.append(", commitId=").append(String.valueOf(this.commitId)); - sb.append(", oldPath=").append(String.valueOf(this.oldPath)); - sb.append(", newPath=").append(String.valueOf(this.newPath)); - sb.append(", oldId=").append(String.valueOf(this.oldId)); - sb.append(", newId=").append(String.valueOf(this.newId)); - sb.append(", addedLinesCount=").append(String.valueOf(this.addedLinesCount)); - sb.append(", deletedLinesCount=").append(String.valueOf(this.deletedLinesCount)); - sb.append(", hasConflicts=").append(String.valueOf(this.hasConflicts)); - sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); - sb.append(", definedTags=").append(String.valueOf(this.definedTags)); - sb.append(", systemTags=").append(String.valueOf(this.systemTags)); - sb.append(")"); - return sb.toString(); - } - - @Override - public boolean equals(Object o) { - if (this == o) { - return true; - } - if (!(o instanceof PullRequestFileChangeSummary)) { - return false; - } - - PullRequestFileChangeSummary other = (PullRequestFileChangeSummary) o; - return java.util.Objects.equals(this.changeType, other.changeType) - && java.util.Objects.equals(this.objectType, other.objectType) - && java.util.Objects.equals(this.commitId, other.commitId) - && java.util.Objects.equals(this.oldPath, other.oldPath) - && java.util.Objects.equals(this.newPath, other.newPath) - && java.util.Objects.equals(this.oldId, other.oldId) - && java.util.Objects.equals(this.newId, other.newId) - && java.util.Objects.equals(this.addedLinesCount, other.addedLinesCount) - && java.util.Objects.equals(this.deletedLinesCount, other.deletedLinesCount) - && java.util.Objects.equals(this.hasConflicts, other.hasConflicts) - && java.util.Objects.equals(this.freeformTags, other.freeformTags) - && java.util.Objects.equals(this.definedTags, other.definedTags) - && java.util.Objects.equals(this.systemTags, other.systemTags) - && super.equals(other); - } - - @Override - public int hashCode() { - final int PRIME = 59; - int result = 1; - result = (result * PRIME) + (this.changeType == null ? 43 : this.changeType.hashCode()); - result = (result * PRIME) + (this.objectType == null ? 43 : this.objectType.hashCode()); - result = (result * PRIME) + (this.commitId == null ? 43 : this.commitId.hashCode()); - result = (result * PRIME) + (this.oldPath == null ? 43 : this.oldPath.hashCode()); - result = (result * PRIME) + (this.newPath == null ? 43 : this.newPath.hashCode()); - result = (result * PRIME) + (this.oldId == null ? 43 : this.oldId.hashCode()); - result = (result * PRIME) + (this.newId == null ? 43 : this.newId.hashCode()); - result = - (result * PRIME) - + (this.addedLinesCount == null ? 43 : this.addedLinesCount.hashCode()); - result = - (result * PRIME) - + (this.deletedLinesCount == null ? 43 : this.deletedLinesCount.hashCode()); - result = (result * PRIME) + (this.hasConflicts == null ? 43 : this.hasConflicts.hashCode()); - result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); - result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); - result = (result * PRIME) + (this.systemTags == null ? 43 : this.systemTags.hashCode()); - result = (result * PRIME) + super.hashCode(); - return result; - } -} diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestLifecycleActivitySummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestLifecycleActivitySummary.java index 18c1fd4be69..b3def198fa1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestLifecycleActivitySummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestLifecycleActivitySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestNotificationPreference.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestNotificationPreference.java index a737e87205a..b89b61bb4df 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestNotificationPreference.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestNotificationPreference.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestSummary.java index f582b2dc2a8..7371c193912 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PullRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PutRepositoryBranchDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PutRepositoryBranchDetails.java index b8e775c570c..7b097793fd3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PutRepositoryBranchDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PutRepositoryBranchDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PutRepositoryRefDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PutRepositoryRefDetails.java index 36341f3e09a..7467591bac4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PutRepositoryRefDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PutRepositoryRefDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PutRepositoryTagDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PutRepositoryTagDetails.java index 1f089ebd6be..d4a2cf8be7e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PutRepositoryTagDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/PutRepositoryTagDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Repository.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Repository.java index 4a8e9937cb9..002332cd1bb 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Repository.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Repository.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryAnalyticsDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryAnalyticsDetails.java index da636aa1726..ff0a217f531 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryAnalyticsDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryAnalyticsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryAuthorCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryAuthorCollection.java index 03ae556466c..b704ca980b9 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryAuthorCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryAuthorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryAuthorSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryAuthorSummary.java index 03a457a536d..56da19d1009 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryAuthorSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryAuthorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryBranch.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryBranch.java index 222fb27fa7b..b81353860d0 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryBranch.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryBranch.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryBranchSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryBranchSummary.java index c850ac476a0..64f4170eb6e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryBranchSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryBranchSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -54,6 +54,24 @@ public Builder repositoryId(String repositoryId) { return this; } + @com.fasterxml.jackson.annotation.JsonProperty("timeCreated") + private java.util.Date timeCreated; + + public Builder timeCreated(java.util.Date timeCreated) { + this.timeCreated = timeCreated; + this.__explicitlySet__.add("timeCreated"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("timeUpdated") + private java.util.Date timeUpdated; + + public Builder timeUpdated(java.util.Date timeUpdated) { + this.timeUpdated = timeUpdated; + this.__explicitlySet__.add("timeUpdated"); + return this; + } + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") private java.util.Map freeformTags; @@ -96,6 +114,52 @@ public Builder commitId(String commitId) { this.__explicitlySet__.add("commitId"); return this; } + /** The author of latest commit */ + @com.fasterxml.jackson.annotation.JsonProperty("latestCommitAuthorName") + private String latestCommitAuthorName; + + /** + * The author of latest commit + * + * @param latestCommitAuthorName the value to set + * @return this builder + */ + public Builder latestCommitAuthorName(String latestCommitAuthorName) { + this.latestCommitAuthorName = latestCommitAuthorName; + this.__explicitlySet__.add("latestCommitAuthorName"); + return this; + } + /** Up to 5 pull requests associated with this branch. */ + @com.fasterxml.jackson.annotation.JsonProperty("topNPullRequests") + private java.util.List topNPullRequests; + + /** + * Up to 5 pull requests associated with this branch. + * + * @param topNPullRequests the value to set + * @return this builder + */ + public Builder topNPullRequests(java.util.List topNPullRequests) { + this.topNPullRequests = topNPullRequests; + this.__explicitlySet__.add("topNPullRequests"); + return this; + } + /** Counts of pull requests for this branch grouped by their state. */ + @com.fasterxml.jackson.annotation.JsonProperty("pullRequestStateCounts") + private java.util.Map pullRequestStateCounts; + + /** + * Counts of pull requests for this branch grouped by their state. + * + * @param pullRequestStateCounts the value to set + * @return this builder + */ + public Builder pullRequestStateCounts( + java.util.Map pullRequestStateCounts) { + this.pullRequestStateCounts = pullRequestStateCounts; + this.__explicitlySet__.add("pullRequestStateCounts"); + return this; + } @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); @@ -106,10 +170,15 @@ public RepositoryBranchSummary build() { this.refName, this.fullRefName, this.repositoryId, + this.timeCreated, + this.timeUpdated, this.freeformTags, this.definedTags, this.systemTags, - this.commitId); + this.commitId, + this.latestCommitAuthorName, + this.topNPullRequests, + this.pullRequestStateCounts); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } @@ -127,6 +196,12 @@ public Builder copy(RepositoryBranchSummary model) { if (model.wasPropertyExplicitlySet("repositoryId")) { this.repositoryId(model.getRepositoryId()); } + if (model.wasPropertyExplicitlySet("timeCreated")) { + this.timeCreated(model.getTimeCreated()); + } + if (model.wasPropertyExplicitlySet("timeUpdated")) { + this.timeUpdated(model.getTimeUpdated()); + } if (model.wasPropertyExplicitlySet("freeformTags")) { this.freeformTags(model.getFreeformTags()); } @@ -139,6 +214,15 @@ public Builder copy(RepositoryBranchSummary model) { if (model.wasPropertyExplicitlySet("commitId")) { this.commitId(model.getCommitId()); } + if (model.wasPropertyExplicitlySet("latestCommitAuthorName")) { + this.latestCommitAuthorName(model.getLatestCommitAuthorName()); + } + if (model.wasPropertyExplicitlySet("topNPullRequests")) { + this.topNPullRequests(model.getTopNPullRequests()); + } + if (model.wasPropertyExplicitlySet("pullRequestStateCounts")) { + this.pullRequestStateCounts(model.getPullRequestStateCounts()); + } return this; } } @@ -157,12 +241,28 @@ public RepositoryBranchSummary( String refName, String fullRefName, String repositoryId, + java.util.Date timeCreated, + java.util.Date timeUpdated, java.util.Map freeformTags, java.util.Map> definedTags, java.util.Map> systemTags, - String commitId) { - super(refName, fullRefName, repositoryId, freeformTags, definedTags, systemTags); + String commitId, + String latestCommitAuthorName, + java.util.List topNPullRequests, + java.util.Map pullRequestStateCounts) { + super( + refName, + fullRefName, + repositoryId, + timeCreated, + timeUpdated, + freeformTags, + definedTags, + systemTags); this.commitId = commitId; + this.latestCommitAuthorName = latestCommitAuthorName; + this.topNPullRequests = topNPullRequests; + this.pullRequestStateCounts = pullRequestStateCounts; } /** Commit ID pointed to by the new branch. */ @@ -178,6 +278,45 @@ public String getCommitId() { return commitId; } + /** The author of latest commit */ + @com.fasterxml.jackson.annotation.JsonProperty("latestCommitAuthorName") + private final String latestCommitAuthorName; + + /** + * The author of latest commit + * + * @return the value + */ + public String getLatestCommitAuthorName() { + return latestCommitAuthorName; + } + + /** Up to 5 pull requests associated with this branch. */ + @com.fasterxml.jackson.annotation.JsonProperty("topNPullRequests") + private final java.util.List topNPullRequests; + + /** + * Up to 5 pull requests associated with this branch. + * + * @return the value + */ + public java.util.List getTopNPullRequests() { + return topNPullRequests; + } + + /** Counts of pull requests for this branch grouped by their state. */ + @com.fasterxml.jackson.annotation.JsonProperty("pullRequestStateCounts") + private final java.util.Map pullRequestStateCounts; + + /** + * Counts of pull requests for this branch grouped by their state. + * + * @return the value + */ + public java.util.Map getPullRequestStateCounts() { + return pullRequestStateCounts; + } + @Override public String toString() { return this.toString(true); @@ -194,6 +333,9 @@ public String toString(boolean includeByteArrayContents) { sb.append("RepositoryBranchSummary("); sb.append("super=").append(super.toString(includeByteArrayContents)); sb.append(", commitId=").append(String.valueOf(this.commitId)); + sb.append(", latestCommitAuthorName=").append(String.valueOf(this.latestCommitAuthorName)); + sb.append(", topNPullRequests=").append(String.valueOf(this.topNPullRequests)); + sb.append(", pullRequestStateCounts=").append(String.valueOf(this.pullRequestStateCounts)); sb.append(")"); return sb.toString(); } @@ -208,7 +350,13 @@ public boolean equals(Object o) { } RepositoryBranchSummary other = (RepositoryBranchSummary) o; - return java.util.Objects.equals(this.commitId, other.commitId) && super.equals(other); + return java.util.Objects.equals(this.commitId, other.commitId) + && java.util.Objects.equals( + this.latestCommitAuthorName, other.latestCommitAuthorName) + && java.util.Objects.equals(this.topNPullRequests, other.topNPullRequests) + && java.util.Objects.equals( + this.pullRequestStateCounts, other.pullRequestStateCounts) + && super.equals(other); } @Override @@ -216,6 +364,19 @@ public int hashCode() { final int PRIME = 59; int result = super.hashCode(); result = (result * PRIME) + (this.commitId == null ? 43 : this.commitId.hashCode()); + result = + (result * PRIME) + + (this.latestCommitAuthorName == null + ? 43 + : this.latestCommitAuthorName.hashCode()); + result = + (result * PRIME) + + (this.topNPullRequests == null ? 43 : this.topNPullRequests.hashCode()); + result = + (result * PRIME) + + (this.pullRequestStateCounts == null + ? 43 + : this.pullRequestStateCounts.hashCode()); return result; } } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryCollection.java index 3005f13f06c..173708aa777 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryCommit.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryCommit.java index 3dc086daabb..2d1e31cd390 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryCommit.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryCommit.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -29,7 +29,6 @@ public final class RepositoryCommit "authorEmail", "committerName", "committerEmail", - "mergedPullRequestId", "parentCommitIds", "timeCreated", "treeId" @@ -41,7 +40,6 @@ public RepositoryCommit( String authorEmail, String committerName, String committerEmail, - String mergedPullRequestId, java.util.List parentCommitIds, java.util.Date timeCreated, String treeId) { @@ -52,7 +50,6 @@ public RepositoryCommit( this.authorEmail = authorEmail; this.committerName = committerName; this.committerEmail = committerEmail; - this.mergedPullRequestId = mergedPullRequestId; this.parentCommitIds = parentCommitIds; this.timeCreated = timeCreated; this.treeId = treeId; @@ -150,21 +147,6 @@ public Builder committerEmail(String committerEmail) { this.__explicitlySet__.add("committerEmail"); return this; } - /** Id of the PullRequest that this commit was merged with. */ - @com.fasterxml.jackson.annotation.JsonProperty("mergedPullRequestId") - private String mergedPullRequestId; - - /** - * Id of the PullRequest that this commit was merged with. - * - * @param mergedPullRequestId the value to set - * @return this builder - */ - public Builder mergedPullRequestId(String mergedPullRequestId) { - this.mergedPullRequestId = mergedPullRequestId; - this.__explicitlySet__.add("mergedPullRequestId"); - return this; - } /** An array of parent commit IDs of created commit. */ @com.fasterxml.jackson.annotation.JsonProperty("parentCommitIds") private java.util.List parentCommitIds; @@ -223,7 +205,6 @@ public RepositoryCommit build() { this.authorEmail, this.committerName, this.committerEmail, - this.mergedPullRequestId, this.parentCommitIds, this.timeCreated, this.treeId); @@ -253,9 +234,6 @@ public Builder copy(RepositoryCommit model) { if (model.wasPropertyExplicitlySet("committerEmail")) { this.committerEmail(model.getCommitterEmail()); } - if (model.wasPropertyExplicitlySet("mergedPullRequestId")) { - this.mergedPullRequestId(model.getMergedPullRequestId()); - } if (model.wasPropertyExplicitlySet("parentCommitIds")) { this.parentCommitIds(model.getParentCommitIds()); } @@ -356,19 +334,6 @@ public String getCommitterEmail() { return committerEmail; } - /** Id of the PullRequest that this commit was merged with. */ - @com.fasterxml.jackson.annotation.JsonProperty("mergedPullRequestId") - private final String mergedPullRequestId; - - /** - * Id of the PullRequest that this commit was merged with. - * - * @return the value - */ - public String getMergedPullRequestId() { - return mergedPullRequestId; - } - /** An array of parent commit IDs of created commit. */ @com.fasterxml.jackson.annotation.JsonProperty("parentCommitIds") private final java.util.List parentCommitIds; @@ -429,7 +394,6 @@ public String toString(boolean includeByteArrayContents) { sb.append(", authorEmail=").append(String.valueOf(this.authorEmail)); sb.append(", committerName=").append(String.valueOf(this.committerName)); sb.append(", committerEmail=").append(String.valueOf(this.committerEmail)); - sb.append(", mergedPullRequestId=").append(String.valueOf(this.mergedPullRequestId)); sb.append(", parentCommitIds=").append(String.valueOf(this.parentCommitIds)); sb.append(", timeCreated=").append(String.valueOf(this.timeCreated)); sb.append(", treeId=").append(String.valueOf(this.treeId)); @@ -453,7 +417,6 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.authorEmail, other.authorEmail) && java.util.Objects.equals(this.committerName, other.committerName) && java.util.Objects.equals(this.committerEmail, other.committerEmail) - && java.util.Objects.equals(this.mergedPullRequestId, other.mergedPullRequestId) && java.util.Objects.equals(this.parentCommitIds, other.parentCommitIds) && java.util.Objects.equals(this.timeCreated, other.timeCreated) && java.util.Objects.equals(this.treeId, other.treeId) @@ -476,11 +439,6 @@ public int hashCode() { result = (result * PRIME) + (this.committerEmail == null ? 43 : this.committerEmail.hashCode()); - result = - (result * PRIME) - + (this.mergedPullRequestId == null - ? 43 - : this.mergedPullRequestId.hashCode()); result = (result * PRIME) + (this.parentCommitIds == null ? 43 : this.parentCommitIds.hashCode()); diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryCommitCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryCommitCollection.java index 86e28316484..7ce2df15dfa 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryCommitCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryCommitCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryCommitSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryCommitSummary.java index 721837cbaef..a8f407a92d2 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryCommitSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryCommitSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryFileLines.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryFileLines.java index 64b407fc3e2..a845371ab30 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryFileLines.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryFileLines.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryMetricAggregation.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryMetricAggregation.java index 16d3ffdb2bb..39e3f373845 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryMetricAggregation.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryMetricAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryMetricSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryMetricSummary.java index 8ca47f29845..8e03180ef02 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryMetricSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryMetricSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryMirrorRecord.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryMirrorRecord.java index ede6d75befd..6cc05c37fb9 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryMirrorRecord.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryMirrorRecord.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryMirrorRecordCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryMirrorRecordCollection.java index f2e2c670fa8..e2fab199df6 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryMirrorRecordCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryMirrorRecordCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryMirrorRecordSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryMirrorRecordSummary.java index c11edbd76f8..40ccd10f526 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryMirrorRecordSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryMirrorRecordSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryNotificationPreference.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryNotificationPreference.java index 0238b41081d..37fdb8bb68c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryNotificationPreference.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryNotificationPreference.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryObject.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryObject.java index 4381d126e2f..188cbb20e5b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryObject.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryPathCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryPathCollection.java index 0fc32ac49b1..e36bf2ff0b5 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryPathCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryPathCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryPathCommitDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryPathCommitDetails.java new file mode 100644 index 00000000000..281a438c53f --- /dev/null +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryPathCommitDetails.java @@ -0,0 +1,230 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.devops.model; + +/** + * Details about the last commit that modified a repository path.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20210630") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = RepositoryPathCommitDetails.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class RepositoryPathCommitDetails + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({"commitId", "message", "author", "timeUpdated"}) + public RepositoryPathCommitDetails( + String commitId, String message, PrincipalDetails author, java.util.Date timeUpdated) { + super(); + this.commitId = commitId; + this.message = message; + this.author = author; + this.timeUpdated = timeUpdated; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** The commit hash of the last commit. */ + @com.fasterxml.jackson.annotation.JsonProperty("commitId") + private String commitId; + + /** + * The commit hash of the last commit. + * + * @param commitId the value to set + * @return this builder + */ + public Builder commitId(String commitId) { + this.commitId = commitId; + this.__explicitlySet__.add("commitId"); + return this; + } + /** The commit message of the last commit. */ + @com.fasterxml.jackson.annotation.JsonProperty("message") + private String message; + + /** + * The commit message of the last commit. + * + * @param message the value to set + * @return this builder + */ + public Builder message(String message) { + this.message = message; + this.__explicitlySet__.add("message"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("author") + private PrincipalDetails author; + + public Builder author(PrincipalDetails author) { + this.author = author; + this.__explicitlySet__.add("author"); + return this; + } + /** Timestamp when this commit was made. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeUpdated") + private java.util.Date timeUpdated; + + /** + * Timestamp when this commit was made. + * + * @param timeUpdated the value to set + * @return this builder + */ + public Builder timeUpdated(java.util.Date timeUpdated) { + this.timeUpdated = timeUpdated; + this.__explicitlySet__.add("timeUpdated"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public RepositoryPathCommitDetails build() { + RepositoryPathCommitDetails model = + new RepositoryPathCommitDetails( + this.commitId, this.message, this.author, this.timeUpdated); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(RepositoryPathCommitDetails model) { + if (model.wasPropertyExplicitlySet("commitId")) { + this.commitId(model.getCommitId()); + } + if (model.wasPropertyExplicitlySet("message")) { + this.message(model.getMessage()); + } + if (model.wasPropertyExplicitlySet("author")) { + this.author(model.getAuthor()); + } + if (model.wasPropertyExplicitlySet("timeUpdated")) { + this.timeUpdated(model.getTimeUpdated()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** The commit hash of the last commit. */ + @com.fasterxml.jackson.annotation.JsonProperty("commitId") + private final String commitId; + + /** + * The commit hash of the last commit. + * + * @return the value + */ + public String getCommitId() { + return commitId; + } + + /** The commit message of the last commit. */ + @com.fasterxml.jackson.annotation.JsonProperty("message") + private final String message; + + /** + * The commit message of the last commit. + * + * @return the value + */ + public String getMessage() { + return message; + } + + @com.fasterxml.jackson.annotation.JsonProperty("author") + private final PrincipalDetails author; + + public PrincipalDetails getAuthor() { + return author; + } + + /** Timestamp when this commit was made. */ + @com.fasterxml.jackson.annotation.JsonProperty("timeUpdated") + private final java.util.Date timeUpdated; + + /** + * Timestamp when this commit was made. + * + * @return the value + */ + public java.util.Date getTimeUpdated() { + return timeUpdated; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("RepositoryPathCommitDetails("); + sb.append("super=").append(super.toString()); + sb.append("commitId=").append(String.valueOf(this.commitId)); + sb.append(", message=").append(String.valueOf(this.message)); + sb.append(", author=").append(String.valueOf(this.author)); + sb.append(", timeUpdated=").append(String.valueOf(this.timeUpdated)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof RepositoryPathCommitDetails)) { + return false; + } + + RepositoryPathCommitDetails other = (RepositoryPathCommitDetails) o; + return java.util.Objects.equals(this.commitId, other.commitId) + && java.util.Objects.equals(this.message, other.message) + && java.util.Objects.equals(this.author, other.author) + && java.util.Objects.equals(this.timeUpdated, other.timeUpdated) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.commitId == null ? 43 : this.commitId.hashCode()); + result = (result * PRIME) + (this.message == null ? 43 : this.message.hashCode()); + result = (result * PRIME) + (this.author == null ? 43 : this.author.hashCode()); + result = (result * PRIME) + (this.timeUpdated == null ? 43 : this.timeUpdated.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryPathSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryPathSummary.java index e858c063fe2..a84d6a28ecb 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryPathSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryPathSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -30,6 +30,7 @@ public final class RepositoryPathSummary "path", "sha", "submoduleGitUrl", + "lastCommitDetails", "freeformTags", "definedTags", "systemTags" @@ -41,6 +42,7 @@ public RepositoryPathSummary( String path, String sha, String submoduleGitUrl, + RepositoryPathCommitDetails lastCommitDetails, java.util.Map freeformTags, java.util.Map> definedTags, java.util.Map> systemTags) { @@ -51,6 +53,7 @@ public RepositoryPathSummary( this.path = path; this.sha = sha; this.submoduleGitUrl = submoduleGitUrl; + this.lastCommitDetails = lastCommitDetails; this.freeformTags = freeformTags; this.definedTags = definedTags; this.systemTags = systemTags; @@ -148,6 +151,15 @@ public Builder submoduleGitUrl(String submoduleGitUrl) { this.__explicitlySet__.add("submoduleGitUrl"); return this; } + + @com.fasterxml.jackson.annotation.JsonProperty("lastCommitDetails") + private RepositoryPathCommitDetails lastCommitDetails; + + public Builder lastCommitDetails(RepositoryPathCommitDetails lastCommitDetails) { + this.lastCommitDetails = lastCommitDetails; + this.__explicitlySet__.add("lastCommitDetails"); + return this; + } /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists * for cross-compatibility only. See [Resource @@ -227,6 +239,7 @@ public RepositoryPathSummary build() { this.path, this.sha, this.submoduleGitUrl, + this.lastCommitDetails, this.freeformTags, this.definedTags, this.systemTags); @@ -256,6 +269,9 @@ public Builder copy(RepositoryPathSummary model) { if (model.wasPropertyExplicitlySet("submoduleGitUrl")) { this.submoduleGitUrl(model.getSubmoduleGitUrl()); } + if (model.wasPropertyExplicitlySet("lastCommitDetails")) { + this.lastCommitDetails(model.getLastCommitDetails()); + } if (model.wasPropertyExplicitlySet("freeformTags")) { this.freeformTags(model.getFreeformTags()); } @@ -356,6 +372,13 @@ public String getSubmoduleGitUrl() { return submoduleGitUrl; } + @com.fasterxml.jackson.annotation.JsonProperty("lastCommitDetails") + private final RepositoryPathCommitDetails lastCommitDetails; + + public RepositoryPathCommitDetails getLastCommitDetails() { + return lastCommitDetails; + } + /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for * cross-compatibility only. See [Resource @@ -436,6 +459,7 @@ public String toString(boolean includeByteArrayContents) { sb.append(", path=").append(String.valueOf(this.path)); sb.append(", sha=").append(String.valueOf(this.sha)); sb.append(", submoduleGitUrl=").append(String.valueOf(this.submoduleGitUrl)); + sb.append(", lastCommitDetails=").append(String.valueOf(this.lastCommitDetails)); sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); sb.append(", definedTags=").append(String.valueOf(this.definedTags)); sb.append(", systemTags=").append(String.valueOf(this.systemTags)); @@ -459,6 +483,7 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.path, other.path) && java.util.Objects.equals(this.sha, other.sha) && java.util.Objects.equals(this.submoduleGitUrl, other.submoduleGitUrl) + && java.util.Objects.equals(this.lastCommitDetails, other.lastCommitDetails) && java.util.Objects.equals(this.freeformTags, other.freeformTags) && java.util.Objects.equals(this.definedTags, other.definedTags) && java.util.Objects.equals(this.systemTags, other.systemTags) @@ -477,6 +502,9 @@ public int hashCode() { result = (result * PRIME) + (this.submoduleGitUrl == null ? 43 : this.submoduleGitUrl.hashCode()); + result = + (result * PRIME) + + (this.lastCommitDetails == null ? 43 : this.lastCommitDetails.hashCode()); result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); result = (result * PRIME) + (this.systemTags == null ? 43 : this.systemTags.hashCode()); diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryRef.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryRef.java index 65722aceea5..e2179234320 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryRef.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryRef.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryRefCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryRefCollection.java index e034230436d..ee64d8292de 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryRefCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryRefCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryRefSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryRefSummary.java index aab1959c7dc..444fd845319 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryRefSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryRefSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -38,6 +38,8 @@ public class RepositoryRefSummary "refName", "fullRefName", "repositoryId", + "timeCreated", + "timeUpdated", "freeformTags", "definedTags", "systemTags" @@ -46,6 +48,8 @@ protected RepositoryRefSummary( String refName, String fullRefName, String repositoryId, + java.util.Date timeCreated, + java.util.Date timeUpdated, java.util.Map freeformTags, java.util.Map> definedTags, java.util.Map> systemTags) { @@ -53,6 +57,8 @@ protected RepositoryRefSummary( this.refName = refName; this.fullRefName = fullRefName; this.repositoryId = repositoryId; + this.timeCreated = timeCreated; + this.timeUpdated = timeUpdated; this.freeformTags = freeformTags; this.definedTags = definedTags; this.systemTags = systemTags; @@ -97,6 +103,40 @@ public String getRepositoryId() { return repositoryId; } + /** + * Creation timestamp. Format defined by + * [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339). + */ + @com.fasterxml.jackson.annotation.JsonProperty("timeCreated") + private final java.util.Date timeCreated; + + /** + * Creation timestamp. Format defined by + * [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339). + * + * @return the value + */ + public java.util.Date getTimeCreated() { + return timeCreated; + } + + /** + * The time the ref was updated. Format defined by + * [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339). + */ + @com.fasterxml.jackson.annotation.JsonProperty("timeUpdated") + private final java.util.Date timeUpdated; + + /** + * The time the ref was updated. Format defined by + * [RFC3339](https://datatracker.ietf.org/doc/html/rfc3339). + * + * @return the value + */ + public java.util.Date getTimeUpdated() { + return timeUpdated; + } + /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for * cross-compatibility only. See [Resource @@ -174,6 +214,8 @@ public String toString(boolean includeByteArrayContents) { sb.append("refName=").append(String.valueOf(this.refName)); sb.append(", fullRefName=").append(String.valueOf(this.fullRefName)); sb.append(", repositoryId=").append(String.valueOf(this.repositoryId)); + sb.append(", timeCreated=").append(String.valueOf(this.timeCreated)); + sb.append(", timeUpdated=").append(String.valueOf(this.timeUpdated)); sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); sb.append(", definedTags=").append(String.valueOf(this.definedTags)); sb.append(", systemTags=").append(String.valueOf(this.systemTags)); @@ -194,6 +236,8 @@ public boolean equals(Object o) { return java.util.Objects.equals(this.refName, other.refName) && java.util.Objects.equals(this.fullRefName, other.fullRefName) && java.util.Objects.equals(this.repositoryId, other.repositoryId) + && java.util.Objects.equals(this.timeCreated, other.timeCreated) + && java.util.Objects.equals(this.timeUpdated, other.timeUpdated) && java.util.Objects.equals(this.freeformTags, other.freeformTags) && java.util.Objects.equals(this.definedTags, other.definedTags) && java.util.Objects.equals(this.systemTags, other.systemTags) @@ -207,6 +251,8 @@ public int hashCode() { result = (result * PRIME) + (this.refName == null ? 43 : this.refName.hashCode()); result = (result * PRIME) + (this.fullRefName == null ? 43 : this.fullRefName.hashCode()); result = (result * PRIME) + (this.repositoryId == null ? 43 : this.repositoryId.hashCode()); + result = (result * PRIME) + (this.timeCreated == null ? 43 : this.timeCreated.hashCode()); + result = (result * PRIME) + (this.timeUpdated == null ? 43 : this.timeUpdated.hashCode()); result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); result = (result * PRIME) + (this.systemTags == null ? 43 : this.systemTags.hashCode()); diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositorySettings.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositorySettings.java index 032ce6663c1..09f839ba406 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositorySettings.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositorySettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositorySummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositorySummary.java index 9b68fda6501..42d5bd6db05 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositorySummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositorySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryTag.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryTag.java index d4da849bcfd..c5788040395 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryTag.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryTag.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryTagSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryTagSummary.java index 27264ce4576..25b2a7e2784 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryTagSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/RepositoryTagSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -54,6 +54,24 @@ public Builder repositoryId(String repositoryId) { return this; } + @com.fasterxml.jackson.annotation.JsonProperty("timeCreated") + private java.util.Date timeCreated; + + public Builder timeCreated(java.util.Date timeCreated) { + this.timeCreated = timeCreated; + this.__explicitlySet__.add("timeCreated"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonProperty("timeUpdated") + private java.util.Date timeUpdated; + + public Builder timeUpdated(java.util.Date timeUpdated) { + this.timeUpdated = timeUpdated; + this.__explicitlySet__.add("timeUpdated"); + return this; + } + @com.fasterxml.jackson.annotation.JsonProperty("freeformTags") private java.util.Map freeformTags; @@ -106,6 +124,8 @@ public RepositoryTagSummary build() { this.refName, this.fullRefName, this.repositoryId, + this.timeCreated, + this.timeUpdated, this.freeformTags, this.definedTags, this.systemTags, @@ -127,6 +147,12 @@ public Builder copy(RepositoryTagSummary model) { if (model.wasPropertyExplicitlySet("repositoryId")) { this.repositoryId(model.getRepositoryId()); } + if (model.wasPropertyExplicitlySet("timeCreated")) { + this.timeCreated(model.getTimeCreated()); + } + if (model.wasPropertyExplicitlySet("timeUpdated")) { + this.timeUpdated(model.getTimeUpdated()); + } if (model.wasPropertyExplicitlySet("freeformTags")) { this.freeformTags(model.getFreeformTags()); } @@ -157,11 +183,21 @@ public RepositoryTagSummary( String refName, String fullRefName, String repositoryId, + java.util.Date timeCreated, + java.util.Date timeUpdated, java.util.Map freeformTags, java.util.Map> definedTags, java.util.Map> systemTags, String objectId) { - super(refName, fullRefName, repositoryId, freeformTags, definedTags, systemTags); + super( + refName, + fullRefName, + repositoryId, + timeCreated, + timeUpdated, + freeformTags, + definedTags, + systemTags); this.objectId = objectId; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ReviewPullRequestDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ReviewPullRequestDetails.java index bac717c9b1a..67ef774278b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ReviewPullRequestDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ReviewPullRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Reviewer.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Reviewer.java index 3aa795888d2..417f00b9876 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Reviewer.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Reviewer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ReviewerActivitySummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ReviewerActivitySummary.java index 9370cba065b..62b7fd0cf05 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ReviewerActivitySummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ReviewerActivitySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ServiceVnicChannel.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ServiceVnicChannel.java index 6d261f683d8..fa60a65aa33 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ServiceVnicChannel.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ServiceVnicChannel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ShapeConfig.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ShapeConfig.java index c60f06253c5..5ecd58c9250 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ShapeConfig.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ShapeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ShellDeployStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ShellDeployStage.java index 1730cb57e24..255da0d7d9b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ShellDeployStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ShellDeployStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ShellDeployStageExecutionProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ShellDeployStageExecutionProgress.java index 2d2f354ff43..3036327833b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ShellDeployStageExecutionProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ShellDeployStageExecutionProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ShellDeployStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ShellDeployStageSummary.java index ff9909d740c..7896e61d916 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ShellDeployStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ShellDeployStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SingleDeployStageDeployment.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SingleDeployStageDeployment.java index c0f9d4d9498..cc284fe4453 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SingleDeployStageDeployment.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SingleDeployStageDeployment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -194,6 +194,15 @@ public Builder systemTags(java.util.Map> s this.__explicitlySet__.add("systemTags"); return this; } + + @com.fasterxml.jackson.annotation.JsonProperty("cmUrl") + private String cmUrl; + + public Builder cmUrl(String cmUrl) { + this.cmUrl = cmUrl; + this.__explicitlySet__.add("cmUrl"); + return this; + } /** Specifies the OCID of the stage to be deployed. */ @com.fasterxml.jackson.annotation.JsonProperty("deployStageId") private String deployStageId; @@ -234,6 +243,7 @@ public SingleDeployStageDeployment build() { this.freeformTags, this.definedTags, this.systemTags, + this.cmUrl, this.deployStageId); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); @@ -297,6 +307,9 @@ public Builder copy(SingleDeployStageDeployment model) { if (model.wasPropertyExplicitlySet("systemTags")) { this.systemTags(model.getSystemTags()); } + if (model.wasPropertyExplicitlySet("cmUrl")) { + this.cmUrl(model.getCmUrl()); + } if (model.wasPropertyExplicitlySet("deployStageId")) { this.deployStageId(model.getDeployStageId()); } @@ -333,6 +346,7 @@ public SingleDeployStageDeployment( java.util.Map freeformTags, java.util.Map> definedTags, java.util.Map> systemTags, + String cmUrl, String deployStageId) { super( deployPipelineArtifacts, @@ -352,7 +366,8 @@ public SingleDeployStageDeployment( deploymentExecutionProgress, freeformTags, definedTags, - systemTags); + systemTags, + cmUrl); this.deployStageId = deployStageId; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SingleDeployStageDeploymentSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SingleDeployStageDeploymentSummary.java index e03ed62150c..9353ccd6974 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SingleDeployStageDeploymentSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SingleDeployStageDeploymentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SingleDeployStageRedeployment.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SingleDeployStageRedeployment.java index 52878c0b3e2..b563b193236 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SingleDeployStageRedeployment.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SingleDeployStageRedeployment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -194,6 +194,15 @@ public Builder systemTags(java.util.Map> s this.__explicitlySet__.add("systemTags"); return this; } + + @com.fasterxml.jackson.annotation.JsonProperty("cmUrl") + private String cmUrl; + + public Builder cmUrl(String cmUrl) { + this.cmUrl = cmUrl; + this.__explicitlySet__.add("cmUrl"); + return this; + } /** Specifies the OCID of the previous deployment to be redeployed. */ @com.fasterxml.jackson.annotation.JsonProperty("previousDeploymentId") private String previousDeploymentId; @@ -249,6 +258,7 @@ public SingleDeployStageRedeployment build() { this.freeformTags, this.definedTags, this.systemTags, + this.cmUrl, this.previousDeploymentId, this.deployStageId); for (String explicitlySetProperty : this.__explicitlySet__) { @@ -313,6 +323,9 @@ public Builder copy(SingleDeployStageRedeployment model) { if (model.wasPropertyExplicitlySet("systemTags")) { this.systemTags(model.getSystemTags()); } + if (model.wasPropertyExplicitlySet("cmUrl")) { + this.cmUrl(model.getCmUrl()); + } if (model.wasPropertyExplicitlySet("previousDeploymentId")) { this.previousDeploymentId(model.getPreviousDeploymentId()); } @@ -352,6 +365,7 @@ public SingleDeployStageRedeployment( java.util.Map freeformTags, java.util.Map> definedTags, java.util.Map> systemTags, + String cmUrl, String previousDeploymentId, String deployStageId) { super( @@ -372,7 +386,8 @@ public SingleDeployStageRedeployment( deploymentExecutionProgress, freeformTags, definedTags, - systemTags); + systemTags, + cmUrl); this.previousDeploymentId = previousDeploymentId; this.deployStageId = deployStageId; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SingleDeployStageRedeploymentSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SingleDeployStageRedeploymentSummary.java index 8e47b801c96..8ab7022974d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SingleDeployStageRedeploymentSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SingleDeployStageRedeploymentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SortOrder.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SortOrder.java index d350a89d865..e3b9a6081bc 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SortOrder.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SummarizeProjectRepositoryAnalyticsDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SummarizeProjectRepositoryAnalyticsDetails.java index 86777f6cec0..2987979067c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SummarizeProjectRepositoryAnalyticsDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SummarizeProjectRepositoryAnalyticsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SummarizeRepositoryAnalyticsDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SummarizeRepositoryAnalyticsDetails.java index 173e5ca1a27..56f4b24656b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SummarizeRepositoryAnalyticsDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SummarizeRepositoryAnalyticsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SyncRepositoryDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SyncRepositoryDetails.java index 82df0e1127f..2a3b0dffb71 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SyncRepositoryDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/SyncRepositoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TlsVerifyConfig.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TlsVerifyConfig.java index 2e7de97c7f7..67bc90c8fd0 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TlsVerifyConfig.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TlsVerifyConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Trigger.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Trigger.java index 589310d6d86..0bc6cf8d0f4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Trigger.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/Trigger.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerAction.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerAction.java index b83fd357a98..c60078e920c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerAction.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerBuildPipelineAction.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerBuildPipelineAction.java index 73531b8e8d8..2c4d3a4a34b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerBuildPipelineAction.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerBuildPipelineAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerCollection.java index d9a412b59e3..3376376462b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerCreateResult.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerCreateResult.java index eb70905bf53..7a00af4a1ae 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerCreateResult.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerCreateResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerDeploymentDryRunDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerDeploymentDryRunDetails.java index e667ec807c0..203fe92b950 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerDeploymentDryRunDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerDeploymentDryRunDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerDeploymentPipelineStageRunProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerDeploymentPipelineStageRunProgress.java index 06393b06887..050636819d3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerDeploymentPipelineStageRunProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerDeploymentPipelineStageRunProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerDeploymentStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerDeploymentStage.java index fb60e5488da..55690651177 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerDeploymentStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerDeploymentStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerDeploymentStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerDeploymentStageSummary.java index c96bf553892..034a2d6bb1d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerDeploymentStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerDeploymentStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerDryRunResult.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerDryRunResult.java index ef4dff21580..a87cd49320b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerDryRunResult.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerDryRunResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerInfo.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerInfo.java index 7bddde4b3e7..3ad24d4b1bc 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerInfo.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerSchedule.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerSchedule.java index 68b31d8e7e4..d8ae1576b66 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerSchedule.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerSchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerSummary.java index a29492ae248..ccac231d1dd 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/TriggerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateAbsoluteWaitCriteriaDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateAbsoluteWaitCriteriaDetails.java index 4ba1c21ce97..4ca5864cdde 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateAbsoluteWaitCriteriaDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateAbsoluteWaitCriteriaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateApprovalRuleDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateApprovalRuleDetails.java index ba8f16208f1..f2fc0e5ff29 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateApprovalRuleDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateApprovalRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateApprovalRuleDetailsCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateApprovalRuleDetailsCollection.java index cd3ce4b3922..19adb169648 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateApprovalRuleDetailsCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateApprovalRuleDetailsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBitbucketCloudAppPasswordConnectionDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBitbucketCloudAppPasswordConnectionDetails.java index 62461b33f2e..b94b8abd687 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBitbucketCloudAppPasswordConnectionDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBitbucketCloudAppPasswordConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBitbucketCloudTriggerDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBitbucketCloudTriggerDetails.java index 7d7f7f5981c..e1834c5cc07 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBitbucketCloudTriggerDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBitbucketCloudTriggerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBitbucketServerAccessTokenConnectionDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBitbucketServerAccessTokenConnectionDetails.java index c156a98e1c3..877f4696b27 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBitbucketServerAccessTokenConnectionDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBitbucketServerAccessTokenConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBitbucketServerTriggerDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBitbucketServerTriggerDetails.java index efd1ea8823b..1bb581f05b1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBitbucketServerTriggerDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBitbucketServerTriggerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBuildPipelineDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBuildPipelineDetails.java index 36e79bf3a94..1f7fc740e5d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBuildPipelineDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBuildPipelineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBuildPipelineStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBuildPipelineStageDetails.java index 6bd08a104bf..f16d711138f 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBuildPipelineStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBuildPipelineStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBuildRunDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBuildRunDetails.java index ff32f9d4ab4..a8ade608bcf 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBuildRunDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBuildRunDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBuildStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBuildStageDetails.java index 65ee64fe81e..24e27173fba 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBuildStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateBuildStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupBlueGreenDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupBlueGreenDeployStageDetails.java index d50f9d76e43..ab0e96f01ea 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupBlueGreenDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupBlueGreenDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupBlueGreenTrafficShiftDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupBlueGreenTrafficShiftDeployStageDetails.java index 3fea4790064..2569f0ac611 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupBlueGreenTrafficShiftDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupBlueGreenTrafficShiftDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupCanaryApprovalDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupCanaryApprovalDeployStageDetails.java index dd52158f8db..a0430f5ac29 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupCanaryApprovalDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupCanaryApprovalDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupCanaryDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupCanaryDeployStageDetails.java index 76ce08d1217..c53b93f72a7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupCanaryDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupCanaryDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupCanaryTrafficShiftDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupCanaryTrafficShiftDeployStageDetails.java index 3dc11f9f851..7cd3425f5a1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupCanaryTrafficShiftDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupCanaryTrafficShiftDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupDeployEnvironmentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupDeployEnvironmentDetails.java index 374dadade1f..eda7b73f4e4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupDeployEnvironmentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupDeployEnvironmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -65,6 +65,16 @@ public Builder definedTags( return this; } + @com.fasterxml.jackson.annotation.JsonProperty("securityAttributes") + private java.util.Map> securityAttributes; + + public Builder securityAttributes( + java.util.Map> securityAttributes) { + this.securityAttributes = securityAttributes; + this.__explicitlySet__.add("securityAttributes"); + return this; + } + @com.fasterxml.jackson.annotation.JsonProperty("computeInstanceGroupSelectors") private ComputeInstanceGroupSelectorCollection computeInstanceGroupSelectors; @@ -85,6 +95,7 @@ public UpdateComputeInstanceGroupDeployEnvironmentDetails build() { this.displayName, this.freeformTags, this.definedTags, + this.securityAttributes, this.computeInstanceGroupSelectors); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); @@ -106,6 +117,9 @@ public Builder copy(UpdateComputeInstanceGroupDeployEnvironmentDetails model) { if (model.wasPropertyExplicitlySet("definedTags")) { this.definedTags(model.getDefinedTags()); } + if (model.wasPropertyExplicitlySet("securityAttributes")) { + this.securityAttributes(model.getSecurityAttributes()); + } if (model.wasPropertyExplicitlySet("computeInstanceGroupSelectors")) { this.computeInstanceGroupSelectors(model.getComputeInstanceGroupSelectors()); } @@ -128,8 +142,9 @@ public UpdateComputeInstanceGroupDeployEnvironmentDetails( String displayName, java.util.Map freeformTags, java.util.Map> definedTags, + java.util.Map> securityAttributes, ComputeInstanceGroupSelectorCollection computeInstanceGroupSelectors) { - super(description, displayName, freeformTags, definedTags); + super(description, displayName, freeformTags, definedTags, securityAttributes); this.computeInstanceGroupSelectors = computeInstanceGroupSelectors; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupDeployStageDetails.java index fb638a4d75e..43df8cde784 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateComputeInstanceGroupDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateConnectionDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateConnectionDetails.java index 6dd60139a37..12c37351503 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateConnectionDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeliverArtifactStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeliverArtifactStageDetails.java index f263b9dcaa6..ee114ba17ac 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeliverArtifactStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeliverArtifactStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployArtifactDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployArtifactDetails.java index 3dc8645d6b8..2336f132fe8 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployArtifactDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployArtifactDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployEnvironmentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployEnvironmentDetails.java index a010254a554..0e126096f60 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployEnvironmentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployEnvironmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -37,17 +37,25 @@ public class UpdateDeployEnvironmentDetails extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { @Deprecated - @java.beans.ConstructorProperties({"description", "displayName", "freeformTags", "definedTags"}) + @java.beans.ConstructorProperties({ + "description", + "displayName", + "freeformTags", + "definedTags", + "securityAttributes" + }) protected UpdateDeployEnvironmentDetails( String description, String displayName, java.util.Map freeformTags, - java.util.Map> definedTags) { + java.util.Map> definedTags, + java.util.Map> securityAttributes) { super(); this.description = description; this.displayName = displayName; this.freeformTags = freeformTags; this.definedTags = definedTags; + this.securityAttributes = securityAttributes; } /** Optional description about the deployment environment. */ @@ -116,6 +124,29 @@ public java.util.Map> getDefinedTags() { return definedTags; } + /** + * Security attributes for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "enforce"}}}} + */ + @com.fasterxml.jackson.annotation.JsonProperty("securityAttributes") + private final java.util.Map> securityAttributes; + + /** + * Security attributes for this resource. Each key is predefined and scoped to a namespace. For + * more information, see [Resource + * Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). + * + *

Example: {@code {"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "enforce"}}}} + * + * @return the value + */ + public java.util.Map> getSecurityAttributes() { + return securityAttributes; + } + @Override public String toString() { return this.toString(true); @@ -135,6 +166,7 @@ public String toString(boolean includeByteArrayContents) { sb.append(", displayName=").append(String.valueOf(this.displayName)); sb.append(", freeformTags=").append(String.valueOf(this.freeformTags)); sb.append(", definedTags=").append(String.valueOf(this.definedTags)); + sb.append(", securityAttributes=").append(String.valueOf(this.securityAttributes)); sb.append(")"); return sb.toString(); } @@ -153,6 +185,7 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.displayName, other.displayName) && java.util.Objects.equals(this.freeformTags, other.freeformTags) && java.util.Objects.equals(this.definedTags, other.definedTags) + && java.util.Objects.equals(this.securityAttributes, other.securityAttributes) && super.equals(other); } @@ -164,6 +197,11 @@ public int hashCode() { result = (result * PRIME) + (this.displayName == null ? 43 : this.displayName.hashCode()); result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode()); result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode()); + result = + (result * PRIME) + + (this.securityAttributes == null + ? 43 + : this.securityAttributes.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployPipelineDeploymentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployPipelineDeploymentDetails.java index 073f8e4f903..3e37abc35d9 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployPipelineDeploymentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployPipelineDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployPipelineDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployPipelineDetails.java index 6fda181ffaf..9114c4fd058 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployPipelineDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployPipelineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployPipelineRedeploymentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployPipelineRedeploymentDetails.java index 34a00261e9f..5ef881acfe8 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployPipelineRedeploymentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployPipelineRedeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployStageDetails.java index 94efba3908e..8cba9f39062 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeploymentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeploymentDetails.java index 67aee1087ad..e6bc1c2cce5 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeploymentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDevopsCodeRepositoryTriggerDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDevopsCodeRepositoryTriggerDetails.java index f2d88e844f3..f2dcc67f40b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDevopsCodeRepositoryTriggerDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateDevopsCodeRepositoryTriggerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateFunctionDeployEnvironmentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateFunctionDeployEnvironmentDetails.java index 20d43281554..d878760d973 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateFunctionDeployEnvironmentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateFunctionDeployEnvironmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -63,6 +63,16 @@ public Builder definedTags( this.__explicitlySet__.add("definedTags"); return this; } + + @com.fasterxml.jackson.annotation.JsonProperty("securityAttributes") + private java.util.Map> securityAttributes; + + public Builder securityAttributes( + java.util.Map> securityAttributes) { + this.securityAttributes = securityAttributes; + this.__explicitlySet__.add("securityAttributes"); + return this; + } /** The OCID of the Function. */ @com.fasterxml.jackson.annotation.JsonProperty("functionId") private String functionId; @@ -89,6 +99,7 @@ public UpdateFunctionDeployEnvironmentDetails build() { this.displayName, this.freeformTags, this.definedTags, + this.securityAttributes, this.functionId); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); @@ -110,6 +121,9 @@ public Builder copy(UpdateFunctionDeployEnvironmentDetails model) { if (model.wasPropertyExplicitlySet("definedTags")) { this.definedTags(model.getDefinedTags()); } + if (model.wasPropertyExplicitlySet("securityAttributes")) { + this.securityAttributes(model.getSecurityAttributes()); + } if (model.wasPropertyExplicitlySet("functionId")) { this.functionId(model.getFunctionId()); } @@ -132,8 +146,9 @@ public UpdateFunctionDeployEnvironmentDetails( String displayName, java.util.Map freeformTags, java.util.Map> definedTags, + java.util.Map> securityAttributes, String functionId) { - super(description, displayName, freeformTags, definedTags); + super(description, displayName, freeformTags, definedTags, securityAttributes); this.functionId = functionId; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateFunctionDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateFunctionDeployStageDetails.java index 0d52dcd96ca..42098b72040 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateFunctionDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateFunctionDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGithubAccessTokenConnectionDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGithubAccessTokenConnectionDetails.java index f6aaadbb02e..2e9093f8016 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGithubAccessTokenConnectionDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGithubAccessTokenConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGithubTriggerDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGithubTriggerDetails.java index b21e108407b..1b6de1562f4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGithubTriggerDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGithubTriggerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGitlabAccessTokenConnectionDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGitlabAccessTokenConnectionDetails.java index a305c7739ea..c406adfad91 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGitlabAccessTokenConnectionDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGitlabAccessTokenConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGitlabServerAccessTokenConnectionDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGitlabServerAccessTokenConnectionDetails.java index 8077571ada9..3c5182d2f2d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGitlabServerAccessTokenConnectionDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGitlabServerAccessTokenConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGitlabServerTriggerDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGitlabServerTriggerDetails.java index 41fbcd4cf14..2f93803e143 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGitlabServerTriggerDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGitlabServerTriggerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGitlabTriggerDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGitlabTriggerDetails.java index f904a4fdb2b..00284ec381a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGitlabTriggerDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateGitlabTriggerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateInvokeFunctionDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateInvokeFunctionDeployStageDetails.java index e8515fd7344..1696a637440 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateInvokeFunctionDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateInvokeFunctionDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateLoadBalancerTrafficShiftDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateLoadBalancerTrafficShiftDeployStageDetails.java index 6c5d945216e..4d0d085eb7c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateLoadBalancerTrafficShiftDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateLoadBalancerTrafficShiftDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateManualApprovalDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateManualApprovalDeployStageDetails.java index 27d1ea16abe..1489ed508dd 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateManualApprovalDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateManualApprovalDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeBlueGreenDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeBlueGreenDeployStageDetails.java index 7eda9906084..c5c23f13dd0 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeBlueGreenDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeBlueGreenDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeBlueGreenTrafficShiftDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeBlueGreenTrafficShiftDeployStageDetails.java index ab283c10cd6..03ecfa390b7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeBlueGreenTrafficShiftDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeBlueGreenTrafficShiftDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeCanaryApprovalDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeCanaryApprovalDeployStageDetails.java index f1d9a04dd26..77027dfe5a4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeCanaryApprovalDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeCanaryApprovalDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeCanaryDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeCanaryDeployStageDetails.java index ed2d7531f56..a7282cb460f 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeCanaryDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeCanaryDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeCanaryTrafficShiftDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeCanaryTrafficShiftDeployStageDetails.java index a4db8ed50b5..66bf034b0ef 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeCanaryTrafficShiftDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeCanaryTrafficShiftDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeClusterDeployEnvironmentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeClusterDeployEnvironmentDetails.java index 6fc6cb7759d..85df4b39aba 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeClusterDeployEnvironmentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeClusterDeployEnvironmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; @@ -63,6 +63,16 @@ public Builder definedTags( this.__explicitlySet__.add("definedTags"); return this; } + + @com.fasterxml.jackson.annotation.JsonProperty("securityAttributes") + private java.util.Map> securityAttributes; + + public Builder securityAttributes( + java.util.Map> securityAttributes) { + this.securityAttributes = securityAttributes; + this.__explicitlySet__.add("securityAttributes"); + return this; + } /** The OCID of the Kubernetes cluster. */ @com.fasterxml.jackson.annotation.JsonProperty("clusterId") private String clusterId; @@ -98,6 +108,7 @@ public UpdateOkeClusterDeployEnvironmentDetails build() { this.displayName, this.freeformTags, this.definedTags, + this.securityAttributes, this.clusterId, this.networkChannel); for (String explicitlySetProperty : this.__explicitlySet__) { @@ -120,6 +131,9 @@ public Builder copy(UpdateOkeClusterDeployEnvironmentDetails model) { if (model.wasPropertyExplicitlySet("definedTags")) { this.definedTags(model.getDefinedTags()); } + if (model.wasPropertyExplicitlySet("securityAttributes")) { + this.securityAttributes(model.getSecurityAttributes()); + } if (model.wasPropertyExplicitlySet("clusterId")) { this.clusterId(model.getClusterId()); } @@ -145,9 +159,10 @@ public UpdateOkeClusterDeployEnvironmentDetails( String displayName, java.util.Map freeformTags, java.util.Map> definedTags, + java.util.Map> securityAttributes, String clusterId, NetworkChannel networkChannel) { - super(description, displayName, freeformTags, definedTags); + super(description, displayName, freeformTags, definedTags, securityAttributes); this.clusterId = clusterId; this.networkChannel = networkChannel; } diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeDeployStageDetails.java index 42a05d6bdda..4131f9f30a5 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeHelmChartDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeHelmChartDeployStageDetails.java index 87244dac954..80a99578a3b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeHelmChartDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateOkeHelmChartDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateProjectDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateProjectDetails.java index b20bf4adfdc..c7afa48571f 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateProjectDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateProjectDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateProjectNotificationPreferenceDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateProjectNotificationPreferenceDetails.java index aca3bcaba38..a9dd249b8bb 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateProjectNotificationPreferenceDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateProjectNotificationPreferenceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateProjectRepositorySettingsDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateProjectRepositorySettingsDetails.java index aae42b8af0b..fd76a6b5ba0 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateProjectRepositorySettingsDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateProjectRepositorySettingsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdatePullRequestCommentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdatePullRequestCommentDetails.java index fa0437256cd..900cd0209ef 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdatePullRequestCommentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdatePullRequestCommentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdatePullRequestDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdatePullRequestDetails.java index 0897d1b4133..7db969bfea7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdatePullRequestDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdatePullRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdatePullRequestNotificationPreferenceDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdatePullRequestNotificationPreferenceDetails.java index 31c9e768bcd..ec17ea9f543 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdatePullRequestNotificationPreferenceDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdatePullRequestNotificationPreferenceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateRepositoryDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateRepositoryDetails.java index 87a21770f68..0aa6775e5e2 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateRepositoryDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateRepositoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateRepositoryNotificationPreferenceDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateRepositoryNotificationPreferenceDetails.java index 44b7bdf416c..a45b44de8e1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateRepositoryNotificationPreferenceDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateRepositoryNotificationPreferenceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateRepositorySettingsDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateRepositorySettingsDetails.java index 6f97982f018..0b1e330e48b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateRepositorySettingsDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateRepositorySettingsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateReviewerDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateReviewerDetails.java index 3ae7cb1daf9..669c1f5f169 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateReviewerDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateReviewerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateShellDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateShellDeployStageDetails.java index a45aa8ea2e9..6dc25f7ebeb 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateShellDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateShellDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateSingleDeployStageDeploymentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateSingleDeployStageDeploymentDetails.java index d66469e3504..c19ba50a66e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateSingleDeployStageDeploymentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateSingleDeployStageDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateSingleDeployStageRedeploymentDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateSingleDeployStageRedeploymentDetails.java index ae35fdff9ea..a888e61bd5c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateSingleDeployStageRedeploymentDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateSingleDeployStageRedeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateTriggerDeploymentStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateTriggerDeploymentStageDetails.java index 7a899a7501a..fdea929576f 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateTriggerDeploymentStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateTriggerDeploymentStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateTriggerDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateTriggerDetails.java index e8aaf6adf14..5efcaff8a46 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateTriggerDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateTriggerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateVbsAccessTokenConnectionDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateVbsAccessTokenConnectionDetails.java index 873f8fcefcc..b0161aad1b8 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateVbsAccessTokenConnectionDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateVbsAccessTokenConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateVbsTriggerDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateVbsTriggerDetails.java index 19ae0c611e9..78712c88d28 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateVbsTriggerDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateVbsTriggerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateWaitCriteriaDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateWaitCriteriaDetails.java index 2eb2688b9f3..b7c256a34ba 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateWaitCriteriaDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateWaitCriteriaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateWaitDeployStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateWaitDeployStageDetails.java index 6f1a786ce11..56a18ba43c4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateWaitDeployStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateWaitDeployStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateWaitStageDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateWaitStageDetails.java index 82869c19bb2..b4632101400 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateWaitStageDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/UpdateWaitStageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ValidateMergePullRequestDetails.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ValidateMergePullRequestDetails.java index 2a486bba9dc..49ee9abc0ff 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ValidateMergePullRequestDetails.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ValidateMergePullRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ValueArtifactContent.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ValueArtifactContent.java index 2b522c59f6b..31b29f1cf04 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ValueArtifactContent.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ValueArtifactContent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ValueArtifactContentCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ValueArtifactContentCollection.java index bc444bcf8c3..3a691f90b83 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ValueArtifactContentCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/ValueArtifactContentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VaultSecretVerificationKeySource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VaultSecretVerificationKeySource.java index a686f482133..24d976140a9 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VaultSecretVerificationKeySource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VaultSecretVerificationKeySource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsAccessTokenConnection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsAccessTokenConnection.java index 18bfeb4f27d..e0a47137dec 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsAccessTokenConnection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsAccessTokenConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsAccessTokenConnectionSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsAccessTokenConnectionSummary.java index e4604bcf97e..602f9b91eb0 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsAccessTokenConnectionSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsAccessTokenConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsBuildRunSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsBuildRunSource.java index ef76e25bdfa..b1b0df0a445 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsBuildRunSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsBuildRunSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsBuildSource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsBuildSource.java index 99923087fc5..453679ab9e5 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsBuildSource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsBuildSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsFilter.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsFilter.java index 07e37182e05..077cef7be10 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsFilter.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsFilterAttributes.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsFilterAttributes.java index 185905bf958..a789a462a52 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsFilterAttributes.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsFilterAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsFilterExclusionAttributes.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsFilterExclusionAttributes.java index f5f2903a9df..065aaf7de44 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsFilterExclusionAttributes.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsFilterExclusionAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsTrigger.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsTrigger.java index f6daefdba57..271890de1d5 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsTrigger.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsTrigger.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsTriggerCreateResult.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsTriggerCreateResult.java index c2913b4394e..4a227c38f84 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsTriggerCreateResult.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsTriggerCreateResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsTriggerSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsTriggerSummary.java index 6127c53b28a..afa9c73cdcf 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsTriggerSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VbsTriggerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VerificationKeySource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VerificationKeySource.java index 5c126522c80..a663e6036ac 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VerificationKeySource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VerificationKeySource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VulnerabilityAuditSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VulnerabilityAuditSummary.java index 088364366af..5a203c6c771 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VulnerabilityAuditSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VulnerabilityAuditSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VulnerabilityAuditSummaryCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VulnerabilityAuditSummaryCollection.java index b8ba4fbe0ee..a873b382493 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VulnerabilityAuditSummaryCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/VulnerabilityAuditSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitCriteria.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitCriteria.java index fcb5328443d..adcc59890a9 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitCriteria.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitCriteria.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitCriteriaSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitCriteriaSummary.java index 5f7e818625b..b6ae991ad98 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitCriteriaSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitCriteriaSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitDeployStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitDeployStage.java index fe9de4985da..bd944168bf1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitDeployStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitDeployStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitDeployStageExecutionProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitDeployStageExecutionProgress.java index a7ff83b5da9..f4c4a9fa178 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitDeployStageExecutionProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitDeployStageExecutionProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitDeployStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitDeployStageSummary.java index beb9571561a..120e14049c1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitDeployStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitDeployStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitStage.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitStage.java index 47cd8e34f94..36e5eaee15f 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitStage.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitStage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitStageRunProgress.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitStageRunProgress.java index 6cbb38b7a8e..6e9e3a41a72 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitStageRunProgress.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitStageRunProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitStageSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitStageSummary.java index 8323575bd2b..22bbcf4730f 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitStageSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WaitStageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequest.java index d79182d058b..bd6f915ce50 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestCollection.java index 8a6ba141d1d..c3dcf7c38df 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestError.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestError.java index e024f2de45f..d6bf3df6de7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestError.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestErrorCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestErrorCollection.java index ba30fae9183..7c35cc2c486 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestErrorCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestLogEntry.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestLogEntry.java index 0f78bd1702e..0376e99d3b8 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestLogEntry.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestLogEntryCollection.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestLogEntryCollection.java index 9925efc22f0..b69a3f6e5cc 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestLogEntryCollection.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestResource.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestResource.java index 928be10441c..c60c36b17af 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestResource.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestSummary.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestSummary.java index 5a68eaf5a84..e97112f49b1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestSummary.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.model; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ApproveDeploymentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ApproveDeploymentRequest.java index cbd8f5d7111..339e54b0a7c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ApproveDeploymentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ApproveDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CancelBuildRunRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CancelBuildRunRequest.java index b34bad2cb73..81cd05e0450 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CancelBuildRunRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CancelBuildRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CancelDeploymentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CancelDeploymentRequest.java index 2de667a7461..3f8a3175bf4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CancelDeploymentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CancelDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CancelScheduledCascadingProjectDeletionRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CancelScheduledCascadingProjectDeletionRequest.java index 1a2cd33a7fb..6f32d6a6bc1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CancelScheduledCascadingProjectDeletionRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CancelScheduledCascadingProjectDeletionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ChangeProjectCompartmentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ChangeProjectCompartmentRequest.java index 8057cf2ca8f..36d1af530f4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ChangeProjectCompartmentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ChangeProjectCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateBuildPipelineRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateBuildPipelineRequest.java index f04743838f9..a0c74870ad5 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateBuildPipelineRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateBuildPipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateBuildPipelineStageRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateBuildPipelineStageRequest.java index 576309d732f..7eb04465be7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateBuildPipelineStageRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateBuildPipelineStageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateBuildRunRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateBuildRunRequest.java index 36f72ed7004..b23f4ab09c2 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateBuildRunRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateBuildRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateConnectionRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateConnectionRequest.java index 3fc72cd757e..ca2d27e2cc9 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateConnectionRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateDeployArtifactRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateDeployArtifactRequest.java index 6ff27cfe26c..30f66be7f3a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateDeployArtifactRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateDeployArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateDeployEnvironmentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateDeployEnvironmentRequest.java index b1245238cd3..00c14608f01 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateDeployEnvironmentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateDeployEnvironmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateDeployPipelineRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateDeployPipelineRequest.java index 232059a2fc4..824143bda49 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateDeployPipelineRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateDeployPipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateDeployStageRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateDeployStageRequest.java index 9a57a867b66..de2348e9420 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateDeployStageRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateDeployStageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateDeploymentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateDeploymentRequest.java index 20a02de1dde..bc6b8909a4b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateDeploymentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateOrUpdateGitRefRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateOrUpdateGitRefRequest.java index ba4ce996e6e..38279faf0dc 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateOrUpdateGitRefRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateOrUpdateGitRefRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateOrUpdateProtectedBranchRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateOrUpdateProtectedBranchRequest.java index d906dfb6a15..aa8d4ea9959 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateOrUpdateProtectedBranchRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateOrUpdateProtectedBranchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateProjectRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateProjectRequest.java index 27d081d050f..40c18ca00c9 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateProjectRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreatePullRequestAttachmentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreatePullRequestAttachmentRequest.java index 156db2505b5..51f781e505a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreatePullRequestAttachmentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreatePullRequestAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreatePullRequestCommentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreatePullRequestCommentRequest.java index 436b18e239f..ab9365844b7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreatePullRequestCommentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreatePullRequestCommentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreatePullRequestRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreatePullRequestRequest.java index c235164e356..1059c81cc56 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreatePullRequestRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreatePullRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateRepositoryRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateRepositoryRequest.java index 55fe0259bc6..149f22ebeca 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateRepositoryRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateRepositoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateTriggerRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateTriggerRequest.java index 9d40f727a4d..e961ccd0da0 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateTriggerRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/CreateTriggerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeclinePullRequestRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeclinePullRequestRequest.java index ee6781616a9..37d3bda034d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeclinePullRequestRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeclinePullRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteBuildPipelineRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteBuildPipelineRequest.java index 5d44d21a604..a06119114f5 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteBuildPipelineRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteBuildPipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteBuildPipelineStageRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteBuildPipelineStageRequest.java index 7b184f209ae..9f05129de1d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteBuildPipelineStageRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteBuildPipelineStageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteConnectionRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteConnectionRequest.java index 6738114b679..0e8cc7e9a6a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteConnectionRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteDeployArtifactRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteDeployArtifactRequest.java index 57217e0ff2b..b3c0c47f27a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteDeployArtifactRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteDeployArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteDeployEnvironmentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteDeployEnvironmentRequest.java index 4f58c795db4..df0e1afa8bd 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteDeployEnvironmentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteDeployEnvironmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteDeployPipelineRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteDeployPipelineRequest.java index a504e429de0..2feb5f21c84 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteDeployPipelineRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteDeployPipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteDeployStageRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteDeployStageRequest.java index 08e8b8f3037..1cc7c579e16 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteDeployStageRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteDeployStageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteGitRefRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteGitRefRequest.java index 07f6198fc32..7011dcc52b4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteGitRefRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteGitRefRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteProjectRepositorySettingsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteProjectRepositorySettingsRequest.java index 6646b500f90..c366f5b37d2 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteProjectRepositorySettingsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteProjectRepositorySettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteProjectRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteProjectRequest.java index 74bde5dfe0a..80cec761f21 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteProjectRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteProtectedBranchRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteProtectedBranchRequest.java index 69e7ac537d7..7adcd38222a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteProtectedBranchRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteProtectedBranchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeletePullRequestAttachmentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeletePullRequestAttachmentRequest.java index d32d9c8ca68..9ecd6dbcc07 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeletePullRequestAttachmentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeletePullRequestAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeletePullRequestCommentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeletePullRequestCommentRequest.java index f6b61019534..0838c44a8ca 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeletePullRequestCommentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeletePullRequestCommentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeletePullRequestRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeletePullRequestRequest.java index b1df64e3eec..74a39296b06 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeletePullRequestRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeletePullRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteRefRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteRefRequest.java index 16c39cdd664..1c20db12fe5 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteRefRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteRefRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteRepositoryRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteRepositoryRequest.java index 22458830749..4dcfdb7f311 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteRepositoryRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteRepositoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteRepositorySettingsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteRepositorySettingsRequest.java index 3729bdd5f25..a5b5595dba6 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteRepositorySettingsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteRepositorySettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteTriggerRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteTriggerRequest.java index 09ff58d6308..888ded3e7fa 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteTriggerRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/DeleteTriggerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetBuildPipelineRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetBuildPipelineRequest.java index 968822cb43b..66e384e1497 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetBuildPipelineRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetBuildPipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetBuildPipelineStageRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetBuildPipelineStageRequest.java index ee005d95359..9c383ef9bf3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetBuildPipelineStageRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetBuildPipelineStageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetBuildRunRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetBuildRunRequest.java index 4ef42fe3ad3..f90437db831 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetBuildRunRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetBuildRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetCommitDiffRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetCommitDiffRequest.java index a0ff81ec133..df43dc70c6a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetCommitDiffRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetCommitDiffRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetCommitRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetCommitRequest.java index 88945e8c654..f2cb57c2da0 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetCommitRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetCommitRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetConnectionRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetConnectionRequest.java index f138d060776..c0b29a8cb91 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetConnectionRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetDeployArtifactRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetDeployArtifactRequest.java index 566fb3543b7..a3b7bbf9364 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetDeployArtifactRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetDeployArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetDeployEnvironmentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetDeployEnvironmentRequest.java index 4b6522457be..69b4e802d85 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetDeployEnvironmentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetDeployEnvironmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetDeployPipelineRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetDeployPipelineRequest.java index 3bbbaf8295a..144fd47bfd2 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetDeployPipelineRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetDeployPipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetDeployStageRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetDeployStageRequest.java index c1295005264..7a0cb22540a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetDeployStageRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetDeployStageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetDeploymentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetDeploymentRequest.java index fc122c68172..d6b6bf5d105 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetDeploymentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetFileDiffRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetFileDiffRequest.java index d17d231e30e..91f9d11c4af 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetFileDiffRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetFileDiffRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetMirrorRecordRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetMirrorRecordRequest.java index b217251f8eb..994e77823ff 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetMirrorRecordRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetMirrorRecordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetObjectContentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetObjectContentRequest.java index 67d5b99e035..da2980969a8 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetObjectContentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetObjectContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetObjectRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetObjectRequest.java index 0f9e581e6b8..41a8590aef2 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetObjectRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetObjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetProjectNotificationPreferenceRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetProjectNotificationPreferenceRequest.java index 55d95ba64f1..dd378a8f930 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetProjectNotificationPreferenceRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetProjectNotificationPreferenceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetProjectRepositorySettingsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetProjectRepositorySettingsRequest.java index 20d325a4354..8a4b1b20fcd 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetProjectRepositorySettingsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetProjectRepositorySettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetProjectRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetProjectRequest.java index 83294f0fece..4bb6d1fb8e3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetProjectRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestAttachmentContentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestAttachmentContentRequest.java index 7a5770fe969..f5119efec30 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestAttachmentContentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestAttachmentContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestAttachmentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestAttachmentRequest.java index f33b4af7e68..2eb23d79968 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestAttachmentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestCommentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestCommentRequest.java index 51c4d3f604e..ad81cc2c7c3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestCommentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestCommentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestNotificationPreferenceRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestNotificationPreferenceRequest.java index c0d2bfbe5ec..65721d283ab 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestNotificationPreferenceRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestNotificationPreferenceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestRequest.java index beb29ef8477..10df457cc4f 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetPullRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRefRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRefRequest.java index 735cf64d499..5f1ac26389c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRefRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRefRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepoFileDiffRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepoFileDiffRequest.java index 90bc41b3d5a..f7c100b117b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepoFileDiffRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepoFileDiffRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepoFileLinesRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepoFileLinesRequest.java index 66ebc1bc62a..a408bdd7f40 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepoFileLinesRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepoFileLinesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepositoryArchiveContentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepositoryArchiveContentRequest.java index 7aadacd741c..c41458784f2 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepositoryArchiveContentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepositoryArchiveContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepositoryFileLinesRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepositoryFileLinesRequest.java index 78c96773b00..1c3257392c2 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepositoryFileLinesRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepositoryFileLinesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepositoryNotificationPreferenceRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepositoryNotificationPreferenceRequest.java index 0a551051543..cce1a244f53 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepositoryNotificationPreferenceRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepositoryNotificationPreferenceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepositoryRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepositoryRequest.java index 8a18b468944..72043161563 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepositoryRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepositoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepositorySettingsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepositorySettingsRequest.java index 8f18b8a2e74..d2f9d664ed2 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepositorySettingsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetRepositorySettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetTriggerRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetTriggerRequest.java index c17cf2104bd..ae9a0bedb51 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetTriggerRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetTriggerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetWorkRequestRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetWorkRequestRequest.java index 640d60ce009..8588a583373 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetWorkRequestRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/LikePullRequestCommentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/LikePullRequestCommentRequest.java index 7aa20c28d11..3304e506413 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/LikePullRequestCommentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/LikePullRequestCommentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListAuthorsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListAuthorsRequest.java index e38f168e6e7..8dc8696d67c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListAuthorsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListAuthorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListBuildPipelineStagesRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListBuildPipelineStagesRequest.java index 52674d5db0a..28293165211 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListBuildPipelineStagesRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListBuildPipelineStagesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListBuildPipelinesRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListBuildPipelinesRequest.java index fcf3ee5287b..a7579dbdd33 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListBuildPipelinesRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListBuildPipelinesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListBuildRunSnapshotsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListBuildRunSnapshotsRequest.java index 4a550cb4821..5b97b77f938 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListBuildRunSnapshotsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListBuildRunSnapshotsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListBuildRunsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListBuildRunsRequest.java index 071a87f0bf1..715e65c08f0 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListBuildRunsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListBuildRunsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListCommitDiffsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListCommitDiffsRequest.java index 19920b73b33..7411f9aac48 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListCommitDiffsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListCommitDiffsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListCommitsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListCommitsRequest.java index a63d1509228..b31c14dda74 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListCommitsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListCommitsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListConnectionsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListConnectionsRequest.java index 1ed5932f1fb..07b759f6b57 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListConnectionsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListConnectionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListDeployArtifactsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListDeployArtifactsRequest.java index 850a14a2abc..fa7c8260851 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListDeployArtifactsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListDeployArtifactsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListDeployEnvironmentsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListDeployEnvironmentsRequest.java index a3145e6b6dc..6fee0c64e09 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListDeployEnvironmentsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListDeployEnvironmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListDeployPipelinesRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListDeployPipelinesRequest.java index 44d4f6fd54a..67e401c25f0 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListDeployPipelinesRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListDeployPipelinesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListDeployStagesRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListDeployStagesRequest.java index 94fa016dac7..b2c3ac05bde 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListDeployStagesRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListDeployStagesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListDeploymentsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListDeploymentsRequest.java index 467d250736e..b71df28c02c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListDeploymentsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListDeploymentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListForkSyncStatusesRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListForkSyncStatusesRequest.java index e5051d54e54..0e04020a72c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListForkSyncStatusesRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListForkSyncStatusesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListMirrorRecordsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListMirrorRecordsRequest.java index 51eb9a0149b..e3d39ffe363 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListMirrorRecordsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListMirrorRecordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPathsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPathsRequest.java index 848549bccc0..1eb395ca5c9 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPathsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPathsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; @@ -35,10 +35,10 @@ public String getRepositoryId() { public String getRef() { return ref; } - /** Flag to determine if files must be retrived recursively. Flag is False by default. */ + /** Flag to determine if files must be retrieved recursively. Flag is False by default. */ private Boolean pathsInSubtree; - /** Flag to determine if files must be retrived recursively. Flag is False by default. */ + /** Flag to determine if files must be retrieved recursively. Flag is False by default. */ public Boolean getPathsInSubtree() { return pathsInSubtree; } @@ -196,11 +196,11 @@ public Builder ref(String ref) { return this; } - /** Flag to determine if files must be retrived recursively. Flag is False by default. */ + /** Flag to determine if files must be retrieved recursively. Flag is False by default. */ private Boolean pathsInSubtree = null; /** - * Flag to determine if files must be retrived recursively. Flag is False by default. + * Flag to determine if files must be retrieved recursively. Flag is False by default. * * @param pathsInSubtree the value to set * @return this builder instance diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListProjectCommitAnalyticsAuthorsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListProjectCommitAnalyticsAuthorsRequest.java index d0bcb62a2b6..4800e29635b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListProjectCommitAnalyticsAuthorsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListProjectCommitAnalyticsAuthorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListProjectsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListProjectsRequest.java index 0eef8a2d7a7..364dac66ab0 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListProjectsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListProjectsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListProtectedBranchesRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListProtectedBranchesRequest.java index e8b2764ac43..512bd0fdc26 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListProtectedBranchesRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListProtectedBranchesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestActivitiesRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestActivitiesRequest.java index 0ee16e8d827..738d69748ac 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestActivitiesRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestActivitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestAttachmentsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestAttachmentsRequest.java index 066aa64457d..a16cfb93757 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestAttachmentsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestAttachmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestAuthorsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestAuthorsRequest.java index c480568de79..58da23bfb11 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestAuthorsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestAuthorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestCommentsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestCommentsRequest.java index 8af9b901507..348ca6cf1bb 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestCommentsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestCommentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestCommitsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestCommitsRequest.java deleted file mode 100644 index 58cc6a1690b..00000000000 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestCommitsRequest.java +++ /dev/null @@ -1,270 +0,0 @@ -/** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. - * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. - */ -package com.oracle.bmc.devops.requests; - -import com.oracle.bmc.devops.model.*; -/** - * Example: Click here to see how to use - * ListPullRequestCommitsRequest. - */ -@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20210630") -public class ListPullRequestCommitsRequest - extends com.oracle.bmc.requests.BmcRequest { - - /** unique PullRequest identifier */ - private String pullRequestId; - - /** unique PullRequest identifier */ - public String getPullRequestId() { - return pullRequestId; - } - /** The maximum number of items to return. */ - private Integer limit; - - /** The maximum number of items to return. */ - public Integer getLimit() { - return limit; - } - /** - * The page token representing the page at which to start retrieving results. This is usually - * retrieved from a previous list call. - */ - private String page; - - /** - * The page token representing the page at which to start retrieving results. This is usually - * retrieved from a previous list call. - */ - public String getPage() { - return page; - } - /** - * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. - */ - private String opcRequestId; - - /** - * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. - */ - public String getOpcRequestId() { - return opcRequestId; - } - - public static class Builder - implements com.oracle.bmc.requests.BmcRequest.Builder< - ListPullRequestCommitsRequest, java.lang.Void> { - private com.oracle.bmc.http.client.RequestInterceptor invocationCallback = null; - private com.oracle.bmc.retrier.RetryConfiguration retryConfiguration = null; - - /** unique PullRequest identifier */ - private String pullRequestId = null; - - /** - * unique PullRequest identifier - * - * @param pullRequestId the value to set - * @return this builder instance - */ - public Builder pullRequestId(String pullRequestId) { - this.pullRequestId = pullRequestId; - return this; - } - - /** The maximum number of items to return. */ - private Integer limit = null; - - /** - * The maximum number of items to return. - * - * @param limit the value to set - * @return this builder instance - */ - public Builder limit(Integer limit) { - this.limit = limit; - return this; - } - - /** - * The page token representing the page at which to start retrieving results. This is - * usually retrieved from a previous list call. - */ - private String page = null; - - /** - * The page token representing the page at which to start retrieving results. This is - * usually retrieved from a previous list call. - * - * @param page the value to set - * @return this builder instance - */ - public Builder page(String page) { - this.page = page; - return this; - } - - /** - * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. - */ - private String opcRequestId = null; - - /** - * Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a - * particular request, provide the request ID. - * - * @param opcRequestId the value to set - * @return this builder instance - */ - public Builder opcRequestId(String opcRequestId) { - this.opcRequestId = opcRequestId; - return this; - } - - /** - * Set the invocation callback for the request to be built. - * - * @param invocationCallback the invocation callback to be set for the request - * @return this builder instance - */ - public Builder invocationCallback( - com.oracle.bmc.http.client.RequestInterceptor invocationCallback) { - this.invocationCallback = invocationCallback; - return this; - } - - /** - * Set the retry configuration for the request to be built. - * - * @param retryConfiguration the retry configuration to be used for the request - * @return this builder instance - */ - public Builder retryConfiguration( - com.oracle.bmc.retrier.RetryConfiguration retryConfiguration) { - this.retryConfiguration = retryConfiguration; - return this; - } - - /** - * Copy method to populate the builder with values from the given instance. - * - * @return this builder instance - */ - public Builder copy(ListPullRequestCommitsRequest o) { - pullRequestId(o.getPullRequestId()); - limit(o.getLimit()); - page(o.getPage()); - opcRequestId(o.getOpcRequestId()); - invocationCallback(o.getInvocationCallback()); - retryConfiguration(o.getRetryConfiguration()); - return this; - } - - /** - * Build the instance of ListPullRequestCommitsRequest as configured by this builder - * - *

Note that this method takes calls to {@link - * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, - * while the method {@link Builder#buildWithoutInvocationCallback} does not. - * - *

This is the preferred method to build an instance. - * - * @return instance of ListPullRequestCommitsRequest - */ - public ListPullRequestCommitsRequest build() { - ListPullRequestCommitsRequest request = buildWithoutInvocationCallback(); - request.setInvocationCallback(invocationCallback); - request.setRetryConfiguration(retryConfiguration); - return request; - } - - /** - * Build the instance of ListPullRequestCommitsRequest as configured by this builder - * - *

Note that this method does not take calls to {@link - * Builder#invocationCallback(com.oracle.bmc.http.client.RequestInterceptor)} into account, - * while the method {@link Builder#build} does - * - * @return instance of ListPullRequestCommitsRequest - */ - public ListPullRequestCommitsRequest buildWithoutInvocationCallback() { - ListPullRequestCommitsRequest request = new ListPullRequestCommitsRequest(); - request.pullRequestId = pullRequestId; - request.limit = limit; - request.page = page; - request.opcRequestId = opcRequestId; - return request; - // new ListPullRequestCommitsRequest(pullRequestId, limit, page, opcRequestId); - } - } - - /** - * Return an instance of {@link Builder} that allows you to modify request properties. - * - * @return instance of {@link Builder} that allows you to modify request properties. - */ - public Builder toBuilder() { - return new Builder() - .pullRequestId(pullRequestId) - .limit(limit) - .page(page) - .opcRequestId(opcRequestId); - } - - /** - * Return a new builder for this request object. - * - * @return builder for the request object - */ - public static Builder builder() { - return new Builder(); - } - - @Override - public String toString() { - java.lang.StringBuilder sb = new java.lang.StringBuilder(); - sb.append("("); - sb.append("super=").append(super.toString()); - sb.append(",pullRequestId=").append(String.valueOf(this.pullRequestId)); - sb.append(",limit=").append(String.valueOf(this.limit)); - sb.append(",page=").append(String.valueOf(this.page)); - sb.append(",opcRequestId=").append(String.valueOf(this.opcRequestId)); - sb.append(")"); - return sb.toString(); - } - - @Override - public boolean equals(Object o) { - if (this == o) { - return true; - } - if (!(o instanceof ListPullRequestCommitsRequest)) { - return false; - } - - ListPullRequestCommitsRequest other = (ListPullRequestCommitsRequest) o; - return super.equals(o) - && java.util.Objects.equals(this.pullRequestId, other.pullRequestId) - && java.util.Objects.equals(this.limit, other.limit) - && java.util.Objects.equals(this.page, other.page) - && java.util.Objects.equals(this.opcRequestId, other.opcRequestId); - } - - @Override - public int hashCode() { - final int PRIME = 59; - int result = super.hashCode(); - result = - (result * PRIME) - + (this.pullRequestId == null ? 43 : this.pullRequestId.hashCode()); - result = (result * PRIME) + (this.limit == null ? 43 : this.limit.hashCode()); - result = (result * PRIME) + (this.page == null ? 43 : this.page.hashCode()); - result = (result * PRIME) + (this.opcRequestId == null ? 43 : this.opcRequestId.hashCode()); - return result; - } -} diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestsRequest.java index a233ba11b12..acbe0cf6a13 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListPullRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListRefsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListRefsRequest.java index e73db972686..b8bea1725a5 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListRefsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListRefsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; @@ -126,6 +126,7 @@ public com.oracle.bmc.devops.model.SortOrder getSortOrder() { public enum SortBy implements com.oracle.bmc.http.internal.BmcEnum { RefType("refType"), RefName("refName"), + TimeUpdated("timeUpdated"), ; private final String value; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListRepositoriesRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListRepositoriesRequest.java index e8c304c2ae0..b3163aa16f3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListRepositoriesRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListRepositoriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListRepositoryCommitAnalyticsAuthorsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListRepositoryCommitAnalyticsAuthorsRequest.java index af688c78f79..ad45516d35a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListRepositoryCommitAnalyticsAuthorsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListRepositoryCommitAnalyticsAuthorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListTriggersRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListTriggersRequest.java index 327ed010201..af90f8648e3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListTriggersRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListTriggersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListWorkRequestErrorsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListWorkRequestErrorsRequest.java index 8b9d0fad014..012f5a13c78 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListWorkRequestLogsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListWorkRequestLogsRequest.java index 1fdcf3f32f6..6687c0c8c1e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListWorkRequestLogsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListWorkRequestsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListWorkRequestsRequest.java index 365ce49d82c..c51ba90e0af 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListWorkRequestsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/MergePullRequestRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/MergePullRequestRequest.java index 26cf69d7910..e8c1d747dcc 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/MergePullRequestRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/MergePullRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/MirrorRepositoryRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/MirrorRepositoryRequest.java index f5725fd6c03..b03748209a3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/MirrorRepositoryRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/MirrorRepositoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/PatchPullRequestRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/PatchPullRequestRequest.java index 552edb48bdf..61ce325ccce 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/PatchPullRequestRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/PatchPullRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/PutRepositoryRefRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/PutRepositoryRefRequest.java index 14994107e17..8bd3b1d3731 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/PutRepositoryRefRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/PutRepositoryRefRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ReopenPullRequestRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ReopenPullRequestRequest.java index f31d6aa9a59..8e88bd567dd 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ReopenPullRequestRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ReopenPullRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ReviewPullRequestRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ReviewPullRequestRequest.java index 4e669328585..6e33ceb1931 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ReviewPullRequestRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ReviewPullRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ScheduleCascadingProjectDeletionRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ScheduleCascadingProjectDeletionRequest.java index 3838313e76e..258ac0cf986 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ScheduleCascadingProjectDeletionRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ScheduleCascadingProjectDeletionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/SummarizeProjectRepositoryAnalyticsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/SummarizeProjectRepositoryAnalyticsRequest.java index 9dc6896fb2f..7b68bddd460 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/SummarizeProjectRepositoryAnalyticsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/SummarizeProjectRepositoryAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/SummarizeRepositoryAnalyticsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/SummarizeRepositoryAnalyticsRequest.java index feed58f8ad0..558e1dd4d08 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/SummarizeRepositoryAnalyticsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/SummarizeRepositoryAnalyticsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/SyncRepositoryRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/SyncRepositoryRequest.java index e642e5a3cb5..48595b4d63b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/SyncRepositoryRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/SyncRepositoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/TriggerDeploymentDryRunRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/TriggerDeploymentDryRunRequest.java index 44202f84be7..20f2cc42aba 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/TriggerDeploymentDryRunRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/TriggerDeploymentDryRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UnlikePullRequestCommentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UnlikePullRequestCommentRequest.java index f1a8b8538a2..1fca01b81fd 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UnlikePullRequestCommentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UnlikePullRequestCommentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UnsubscribePullRequestRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UnsubscribePullRequestRequest.java index 06a293f8e4e..0e998d123be 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UnsubscribePullRequestRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UnsubscribePullRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateBuildPipelineRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateBuildPipelineRequest.java index f8c12773e55..f549bc16f6a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateBuildPipelineRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateBuildPipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateBuildPipelineStageRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateBuildPipelineStageRequest.java index e5dd8be8e82..0286a7efeb1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateBuildPipelineStageRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateBuildPipelineStageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateBuildRunRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateBuildRunRequest.java index 7bcebcb8594..8ff10ad9a4d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateBuildRunRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateBuildRunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateConnectionRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateConnectionRequest.java index 80bb2c4da90..bbf53348a97 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateConnectionRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateDeployArtifactRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateDeployArtifactRequest.java index 4f128812f22..4e679fd2efc 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateDeployArtifactRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateDeployArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateDeployEnvironmentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateDeployEnvironmentRequest.java index eff835c4599..d486416cbdc 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateDeployEnvironmentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateDeployEnvironmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateDeployPipelineRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateDeployPipelineRequest.java index 941b31048bc..8296e38e99e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateDeployPipelineRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateDeployPipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateDeployStageRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateDeployStageRequest.java index 452c9bd7fb0..bbbb5ebe321 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateDeployStageRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateDeployStageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateDeploymentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateDeploymentRequest.java index f2e8e0fe072..5b490c7eade 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateDeploymentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateProjectNotificationPreferenceRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateProjectNotificationPreferenceRequest.java index 8d3971d47bd..27d3a50cb73 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateProjectNotificationPreferenceRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateProjectNotificationPreferenceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateProjectRepositorySettingsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateProjectRepositorySettingsRequest.java index 257aa4c9fa3..f2ee498f2d1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateProjectRepositorySettingsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateProjectRepositorySettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateProjectRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateProjectRequest.java index 9ea978dd7b2..c9e37432d25 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateProjectRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateProjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdatePullRequestCommentRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdatePullRequestCommentRequest.java index ea848596527..d4a4a722267 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdatePullRequestCommentRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdatePullRequestCommentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdatePullRequestNotificationPreferenceRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdatePullRequestNotificationPreferenceRequest.java index a1cb9c70d53..09355c953a1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdatePullRequestNotificationPreferenceRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdatePullRequestNotificationPreferenceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdatePullRequestRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdatePullRequestRequest.java index 8c4936db20b..daeea3bc241 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdatePullRequestRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdatePullRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateRepositoryNotificationPreferenceRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateRepositoryNotificationPreferenceRequest.java index 8def8ccd9c6..e87ba58abac 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateRepositoryNotificationPreferenceRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateRepositoryNotificationPreferenceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateRepositoryRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateRepositoryRequest.java index f4bf325ebc1..8fba3d7ec17 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateRepositoryRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateRepositoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateRepositorySettingsRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateRepositorySettingsRequest.java index 5fcf80ef11b..bde766dd71b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateRepositorySettingsRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateRepositorySettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateTriggerRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateTriggerRequest.java index dd160761590..69f31c37618 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateTriggerRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/UpdateTriggerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ValidateConnectionRequest.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ValidateConnectionRequest.java index 906bcd0ee9a..5ff61120e03 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ValidateConnectionRequest.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/requests/ValidateConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.requests; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ApproveDeploymentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ApproveDeploymentResponse.java index 97b528a9a7c..e09a87d8fc9 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ApproveDeploymentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ApproveDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CancelBuildRunResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CancelBuildRunResponse.java index 68dc86978ed..f711f03894e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CancelBuildRunResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CancelBuildRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CancelDeploymentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CancelDeploymentResponse.java index 354a64cf296..1d50b8460e7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CancelDeploymentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CancelDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CancelScheduledCascadingProjectDeletionResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CancelScheduledCascadingProjectDeletionResponse.java index a57cd2060f2..d7706bd5741 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CancelScheduledCascadingProjectDeletionResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CancelScheduledCascadingProjectDeletionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ChangeProjectCompartmentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ChangeProjectCompartmentResponse.java index 14ff8ef3fc9..20c6c5dd999 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ChangeProjectCompartmentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ChangeProjectCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateBuildPipelineResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateBuildPipelineResponse.java index 2d3d7e76a60..b2275bfade1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateBuildPipelineResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateBuildPipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateBuildPipelineStageResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateBuildPipelineStageResponse.java index 617d7ca0a86..7011e6e87b1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateBuildPipelineStageResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateBuildPipelineStageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateBuildRunResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateBuildRunResponse.java index c373fb84338..1c878ff2531 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateBuildRunResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateBuildRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateConnectionResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateConnectionResponse.java index 88ddb2813b3..04a3ebcb3a8 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateConnectionResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateDeployArtifactResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateDeployArtifactResponse.java index dde80efdcc4..8b5d7b3748d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateDeployArtifactResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateDeployArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateDeployEnvironmentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateDeployEnvironmentResponse.java index 6217abda434..aa0646cac69 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateDeployEnvironmentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateDeployEnvironmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateDeployPipelineResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateDeployPipelineResponse.java index 9afd954b4d2..848f3564767 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateDeployPipelineResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateDeployPipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateDeployStageResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateDeployStageResponse.java index 79e4e9e4967..9699c883fb4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateDeployStageResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateDeployStageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateDeploymentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateDeploymentResponse.java index abf225ccd39..b57409eb3b1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateDeploymentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateOrUpdateGitRefResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateOrUpdateGitRefResponse.java index 06e4107110d..09f0735d395 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateOrUpdateGitRefResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateOrUpdateGitRefResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateOrUpdateProtectedBranchResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateOrUpdateProtectedBranchResponse.java index ea619597c73..c2417630125 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateOrUpdateProtectedBranchResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateOrUpdateProtectedBranchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateProjectResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateProjectResponse.java index d836b0f9574..3453d906cb7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateProjectResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreatePullRequestAttachmentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreatePullRequestAttachmentResponse.java index d3ba08b502a..a5706138435 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreatePullRequestAttachmentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreatePullRequestAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreatePullRequestCommentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreatePullRequestCommentResponse.java index bfc9f4b5a76..584c6b96ff8 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreatePullRequestCommentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreatePullRequestCommentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreatePullRequestResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreatePullRequestResponse.java index c9916327813..b36bab8c971 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreatePullRequestResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreatePullRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateRepositoryResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateRepositoryResponse.java index 44b0fced9c4..bf68b0b7dc5 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateRepositoryResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateRepositoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateTriggerResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateTriggerResponse.java index 0e4235fab72..8c8cf524d71 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateTriggerResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/CreateTriggerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeclinePullRequestResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeclinePullRequestResponse.java index 84ee530aff0..0064f1b2283 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeclinePullRequestResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeclinePullRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteBuildPipelineResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteBuildPipelineResponse.java index 580596fad07..67e0f4f30e2 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteBuildPipelineResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteBuildPipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteBuildPipelineStageResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteBuildPipelineStageResponse.java index 5099dc7439b..4fa993dd3dc 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteBuildPipelineStageResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteBuildPipelineStageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteConnectionResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteConnectionResponse.java index 4a7774d1946..6237e5ab892 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteConnectionResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteDeployArtifactResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteDeployArtifactResponse.java index be5a0f484f0..64cae8f0a45 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteDeployArtifactResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteDeployArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteDeployEnvironmentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteDeployEnvironmentResponse.java index 741d8020b50..916f14ff621 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteDeployEnvironmentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteDeployEnvironmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteDeployPipelineResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteDeployPipelineResponse.java index d95d2789025..82a165b1af6 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteDeployPipelineResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteDeployPipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteDeployStageResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteDeployStageResponse.java index d1ba70d4db9..ab20ec65b40 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteDeployStageResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteDeployStageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteGitRefResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteGitRefResponse.java index 1bc41af3bbe..7e0ca9a714d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteGitRefResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteGitRefResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteProjectRepositorySettingsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteProjectRepositorySettingsResponse.java index 52ba6f6c519..a3f24910d2f 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteProjectRepositorySettingsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteProjectRepositorySettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteProjectResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteProjectResponse.java index 2c5bfe69f1a..ef32261e82c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteProjectResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteProtectedBranchResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteProtectedBranchResponse.java index c96246fc55f..5d44d54e855 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteProtectedBranchResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteProtectedBranchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeletePullRequestAttachmentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeletePullRequestAttachmentResponse.java index 5110905ae2d..5623a976399 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeletePullRequestAttachmentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeletePullRequestAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeletePullRequestCommentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeletePullRequestCommentResponse.java index c3859ef8ce0..d61221b09cd 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeletePullRequestCommentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeletePullRequestCommentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeletePullRequestResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeletePullRequestResponse.java index 4a12fcc19ef..a89206788ed 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeletePullRequestResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeletePullRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteRefResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteRefResponse.java index e47afe476d3..9f052f8096e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteRefResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteRefResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteRepositoryResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteRepositoryResponse.java index bf4c036dd77..3945755833e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteRepositoryResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteRepositoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteRepositorySettingsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteRepositorySettingsResponse.java index 185befd0710..4c06e71f03d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteRepositorySettingsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteRepositorySettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteTriggerResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteTriggerResponse.java index 15ba06110ab..1a90751cdca 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteTriggerResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/DeleteTriggerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetBuildPipelineResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetBuildPipelineResponse.java index 5b567aa8347..07cff86175d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetBuildPipelineResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetBuildPipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetBuildPipelineStageResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetBuildPipelineStageResponse.java index 0e3744ab434..33c0a026ba7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetBuildPipelineStageResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetBuildPipelineStageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetBuildRunResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetBuildRunResponse.java index 6683dbb364c..d9396b79987 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetBuildRunResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetBuildRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetCommitDiffResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetCommitDiffResponse.java index a86d82c894b..c3f0719ec2e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetCommitDiffResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetCommitDiffResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetCommitResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetCommitResponse.java index 3438933220e..654bc9ea6cb 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetCommitResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetCommitResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetConnectionResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetConnectionResponse.java index 4fdee617b5e..df1efde8952 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetConnectionResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetDeployArtifactResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetDeployArtifactResponse.java index aaa4ee6e925..59177047d28 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetDeployArtifactResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetDeployArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetDeployEnvironmentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetDeployEnvironmentResponse.java index 4f921e69c00..ae0f4ee404d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetDeployEnvironmentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetDeployEnvironmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetDeployPipelineResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetDeployPipelineResponse.java index 603c3aaaae3..e735a830fec 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetDeployPipelineResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetDeployPipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetDeployStageResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetDeployStageResponse.java index e3f1c5fe78a..225b0dd716a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetDeployStageResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetDeployStageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetDeploymentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetDeploymentResponse.java index 808f19b5af2..2f5fb2897f9 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetDeploymentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetFileDiffResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetFileDiffResponse.java index 330387c28e6..6dc88d0742b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetFileDiffResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetFileDiffResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetMirrorRecordResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetMirrorRecordResponse.java index a0eb6bfbcc7..89b8b3f8790 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetMirrorRecordResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetMirrorRecordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetObjectContentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetObjectContentResponse.java index 01f2553b01a..0873fc32d31 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetObjectContentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetObjectContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetObjectResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetObjectResponse.java index 7c105f5a0ac..2dff2ccd1d9 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetObjectResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetObjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetProjectNotificationPreferenceResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetProjectNotificationPreferenceResponse.java index fde8e49db45..b4e3382b473 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetProjectNotificationPreferenceResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetProjectNotificationPreferenceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetProjectRepositorySettingsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetProjectRepositorySettingsResponse.java index 9069736c937..c214050f96d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetProjectRepositorySettingsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetProjectRepositorySettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetProjectResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetProjectResponse.java index e82ae4824d4..deba288e20a 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetProjectResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestAttachmentContentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestAttachmentContentResponse.java index fb41f51d98c..f25feda164b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestAttachmentContentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestAttachmentContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestAttachmentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestAttachmentResponse.java index 3f9baa55e86..c703ea765f6 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestAttachmentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestCommentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestCommentResponse.java index 7bce8b97d61..6f06f72eaea 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestCommentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestCommentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestNotificationPreferenceResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestNotificationPreferenceResponse.java index 52f5d8ea0fe..89cf291f1e7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestNotificationPreferenceResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestNotificationPreferenceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestResponse.java index cc2818cb332..3656882e4b3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetPullRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRefResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRefResponse.java index b6b0dcf6ddb..1d59a027568 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRefResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRefResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepoFileDiffResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepoFileDiffResponse.java index f97b76eecce..b53ce1e4302 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepoFileDiffResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepoFileDiffResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepoFileLinesResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepoFileLinesResponse.java index 9c25139eaca..61a03ee9748 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepoFileLinesResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepoFileLinesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepositoryArchiveContentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepositoryArchiveContentResponse.java index b22f7f51340..83191de8e15 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepositoryArchiveContentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepositoryArchiveContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepositoryFileLinesResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepositoryFileLinesResponse.java index 066594ccb93..8b8e52a8daa 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepositoryFileLinesResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepositoryFileLinesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepositoryNotificationPreferenceResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepositoryNotificationPreferenceResponse.java index 09a70740f53..10d56f9893e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepositoryNotificationPreferenceResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepositoryNotificationPreferenceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepositoryResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepositoryResponse.java index 900005fd58a..7f6a3f200f9 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepositoryResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepositoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepositorySettingsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepositorySettingsResponse.java index 548fb1d44c8..3c849052410 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepositorySettingsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetRepositorySettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetTriggerResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetTriggerResponse.java index d0c87eb93c6..24042f477f5 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetTriggerResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetTriggerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetWorkRequestResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetWorkRequestResponse.java index e5a01f23cda..ef56b56a402 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetWorkRequestResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/LikePullRequestCommentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/LikePullRequestCommentResponse.java index fd8066a0684..60ec36e4a1c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/LikePullRequestCommentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/LikePullRequestCommentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListAuthorsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListAuthorsResponse.java index f01a43297a1..dabe03a9ae4 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListAuthorsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListAuthorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListBuildPipelineStagesResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListBuildPipelineStagesResponse.java index c8f396c0825..f2a77c98d99 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListBuildPipelineStagesResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListBuildPipelineStagesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListBuildPipelinesResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListBuildPipelinesResponse.java index 0aa8114855a..5d97273073d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListBuildPipelinesResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListBuildPipelinesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListBuildRunSnapshotsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListBuildRunSnapshotsResponse.java index 6a066964218..ac08f4a7b9e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListBuildRunSnapshotsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListBuildRunSnapshotsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListBuildRunsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListBuildRunsResponse.java index bc91cb4b67f..d18914d36cc 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListBuildRunsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListBuildRunsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListCommitDiffsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListCommitDiffsResponse.java index 1fea1ef0896..5d331d6be13 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListCommitDiffsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListCommitDiffsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListCommitsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListCommitsResponse.java index 4d051876a3b..efac09e50af 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListCommitsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListCommitsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListConnectionsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListConnectionsResponse.java index 1dc82ad988d..5ce1123fb34 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListConnectionsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListConnectionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListDeployArtifactsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListDeployArtifactsResponse.java index 6887da949f5..341ad909da7 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListDeployArtifactsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListDeployArtifactsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListDeployEnvironmentsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListDeployEnvironmentsResponse.java index f3855e87946..443b4daa78e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListDeployEnvironmentsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListDeployEnvironmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListDeployPipelinesResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListDeployPipelinesResponse.java index c6125774ad2..8d27b053253 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListDeployPipelinesResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListDeployPipelinesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListDeployStagesResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListDeployStagesResponse.java index ad8f5d6f902..8a685801683 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListDeployStagesResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListDeployStagesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListDeploymentsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListDeploymentsResponse.java index 3d35fedc5be..ab52fd87cfa 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListDeploymentsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListDeploymentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListForkSyncStatusesResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListForkSyncStatusesResponse.java index 35ccde23698..499299fc5db 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListForkSyncStatusesResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListForkSyncStatusesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListMirrorRecordsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListMirrorRecordsResponse.java index c633393f7fe..c3d840c1d17 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListMirrorRecordsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListMirrorRecordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPathsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPathsResponse.java index 482e15609b7..0b950721dd2 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPathsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPathsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListProjectCommitAnalyticsAuthorsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListProjectCommitAnalyticsAuthorsResponse.java index 727a8d303db..145291626c1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListProjectCommitAnalyticsAuthorsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListProjectCommitAnalyticsAuthorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListProjectsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListProjectsResponse.java index 9f449c917e2..dc33107a3dd 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListProjectsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListProjectsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListProtectedBranchesResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListProtectedBranchesResponse.java index 7d62a35977c..8144b62ab13 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListProtectedBranchesResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListProtectedBranchesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestActivitiesResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestActivitiesResponse.java index a22ec35b4aa..6ef509caded 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestActivitiesResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestActivitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestAttachmentsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestAttachmentsResponse.java index 700d68f7d6a..f839b7cbc09 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestAttachmentsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestAttachmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestAuthorsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestAuthorsResponse.java index f153b32490c..ddaa28c156f 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestAuthorsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestAuthorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestCommentsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestCommentsResponse.java index dfe98b70ede..d7e075fb72e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestCommentsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestCommentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestsResponse.java index 92de4594293..bc4e25a409d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListPullRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListRefsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListRefsResponse.java index 9f808ddf02b..f622c7ab5f6 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListRefsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListRefsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListRepositoriesResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListRepositoriesResponse.java index a975e227b8b..4958b0ae620 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListRepositoriesResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListRepositoriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListRepositoryCommitAnalyticsAuthorsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListRepositoryCommitAnalyticsAuthorsResponse.java index 0336afe7c4e..e4ecf3a7254 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListRepositoryCommitAnalyticsAuthorsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListRepositoryCommitAnalyticsAuthorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListTriggersResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListTriggersResponse.java index d9ff7e3a760..7eeff9f5128 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListTriggersResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListTriggersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListWorkRequestErrorsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListWorkRequestErrorsResponse.java index 199dc419194..3ba9263b3a0 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListWorkRequestLogsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListWorkRequestLogsResponse.java index 2c9f82a9f4f..6167de00942 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListWorkRequestLogsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListWorkRequestsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListWorkRequestsResponse.java index 7877a932d84..b8a0d0e1a05 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListWorkRequestsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/MergePullRequestResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/MergePullRequestResponse.java index 63c3416a528..236a5867a38 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/MergePullRequestResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/MergePullRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/MirrorRepositoryResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/MirrorRepositoryResponse.java index 8431a981ad9..4a83a18ef76 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/MirrorRepositoryResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/MirrorRepositoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/PatchPullRequestResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/PatchPullRequestResponse.java index b259aee2c41..7b91b9485d5 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/PatchPullRequestResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/PatchPullRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/PutRepositoryRefResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/PutRepositoryRefResponse.java index c194760b28a..a7a5c03f4f3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/PutRepositoryRefResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/PutRepositoryRefResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ReopenPullRequestResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ReopenPullRequestResponse.java index 1e7ca7b67fb..0db8f6fdaa5 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ReopenPullRequestResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ReopenPullRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ReviewPullRequestResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ReviewPullRequestResponse.java index f9d9c4b8256..e520ab33507 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ReviewPullRequestResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ReviewPullRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ScheduleCascadingProjectDeletionResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ScheduleCascadingProjectDeletionResponse.java index 0488148836d..f8485bb5404 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ScheduleCascadingProjectDeletionResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ScheduleCascadingProjectDeletionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/SummarizeProjectRepositoryAnalyticsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/SummarizeProjectRepositoryAnalyticsResponse.java index 0bfc272368c..c2641bb0d6b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/SummarizeProjectRepositoryAnalyticsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/SummarizeProjectRepositoryAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/SummarizeRepositoryAnalyticsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/SummarizeRepositoryAnalyticsResponse.java index 813ff8c7c16..73a0547506c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/SummarizeRepositoryAnalyticsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/SummarizeRepositoryAnalyticsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/SyncRepositoryResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/SyncRepositoryResponse.java index 5903eb41428..72ce2b6d905 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/SyncRepositoryResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/SyncRepositoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/TriggerDeploymentDryRunResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/TriggerDeploymentDryRunResponse.java index d6c3d8450b6..1d6a56a0988 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/TriggerDeploymentDryRunResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/TriggerDeploymentDryRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UnlikePullRequestCommentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UnlikePullRequestCommentResponse.java index b4f9213a194..b86b8e6144b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UnlikePullRequestCommentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UnlikePullRequestCommentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UnsubscribePullRequestResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UnsubscribePullRequestResponse.java index c15615a6657..a0766c4bdb3 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UnsubscribePullRequestResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UnsubscribePullRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateBuildPipelineResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateBuildPipelineResponse.java index 0a6e2723309..175ce0a051e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateBuildPipelineResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateBuildPipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateBuildPipelineStageResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateBuildPipelineStageResponse.java index ada3c937899..95da2fb35da 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateBuildPipelineStageResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateBuildPipelineStageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateBuildRunResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateBuildRunResponse.java index e9833785aad..b63534ce2eb 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateBuildRunResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateBuildRunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateConnectionResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateConnectionResponse.java index 5c6ad02aed9..90644bcaace 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateConnectionResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateDeployArtifactResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateDeployArtifactResponse.java index d287ffbb2f1..f5d09b1656d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateDeployArtifactResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateDeployArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateDeployEnvironmentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateDeployEnvironmentResponse.java index 0042928b3a4..a0e96623d7c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateDeployEnvironmentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateDeployEnvironmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateDeployPipelineResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateDeployPipelineResponse.java index 3589be98526..4828a4ddc4f 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateDeployPipelineResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateDeployPipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateDeployStageResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateDeployStageResponse.java index 68c8c7eb4aa..e2da10cff7b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateDeployStageResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateDeployStageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateDeploymentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateDeploymentResponse.java index 1a4338f10a2..260c817eaba 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateDeploymentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateProjectNotificationPreferenceResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateProjectNotificationPreferenceResponse.java index bdd61a465d2..4eaa1ded72e 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateProjectNotificationPreferenceResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateProjectNotificationPreferenceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateProjectRepositorySettingsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateProjectRepositorySettingsResponse.java index 83fbfd3caa5..f7b9484d992 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateProjectRepositorySettingsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateProjectRepositorySettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateProjectResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateProjectResponse.java index 719ae206ba1..3fb7ce05ebf 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateProjectResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateProjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdatePullRequestCommentResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdatePullRequestCommentResponse.java index 8593d7dfc67..6fca5cf31b1 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdatePullRequestCommentResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdatePullRequestCommentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdatePullRequestNotificationPreferenceResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdatePullRequestNotificationPreferenceResponse.java index 378e51ee074..26eb136ade2 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdatePullRequestNotificationPreferenceResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdatePullRequestNotificationPreferenceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdatePullRequestResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdatePullRequestResponse.java index ed2482c56f8..c67934d0527 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdatePullRequestResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdatePullRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateRepositoryNotificationPreferenceResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateRepositoryNotificationPreferenceResponse.java index 8cfbe0cfb16..393926c338b 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateRepositoryNotificationPreferenceResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateRepositoryNotificationPreferenceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateRepositoryResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateRepositoryResponse.java index f7aab2469c6..0a1e0f68e6c 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateRepositoryResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateRepositoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateRepositorySettingsResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateRepositorySettingsResponse.java index 08509edb612..0c09a03e657 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateRepositorySettingsResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateRepositorySettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateTriggerResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateTriggerResponse.java index 9a0d8b60990..c3c8bdf98d6 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateTriggerResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/UpdateTriggerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ValidateConnectionResponse.java b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ValidateConnectionResponse.java index 89ae94909e5..3389637298d 100644 --- a/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ValidateConnectionResponse.java +++ b/bmc-devops/src/main/java/com/oracle/bmc/devops/responses/ValidateConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.devops.responses; diff --git a/bmc-devops/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-devops/reflect-config.json b/bmc-devops/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-devops/reflect-config.json index 268b3622d70..e960282dd6c 100644 --- a/bmc-devops/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-devops/reflect-config.json +++ b/bmc-devops/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-devops/reflect-config.json @@ -1070,6 +1070,20 @@ "allDeclaredMethods": true, "allDeclaredConstructors": true }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.devops.model.CommitMessageSettings", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.devops.model.CommitMessageSettings$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, { "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, "name": "com.oracle.bmc.devops.model.ComputeInstanceGroupBlueGreenDeployStage", @@ -5422,20 +5436,6 @@ "allDeclaredMethods": true, "allDeclaredConstructors": true }, - { - "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, - "name": "com.oracle.bmc.devops.model.PullRequestChangeSummaryMetrics", - "allDeclaredFields": true, - "allDeclaredMethods": true, - "queryAllDeclaredConstructors": true - }, - { - "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, - "name": "com.oracle.bmc.devops.model.PullRequestChangeSummaryMetrics$Builder", - "allDeclaredFields": true, - "allDeclaredMethods": true, - "allDeclaredConstructors": true - }, { "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, "name": "com.oracle.bmc.devops.model.PullRequestCollection", @@ -5524,34 +5524,6 @@ "allDeclaredMethods": true, "allDeclaredConstructors": true }, - { - "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, - "name": "com.oracle.bmc.devops.model.PullRequestFileChangeCollection", - "allDeclaredFields": true, - "allDeclaredMethods": true, - "queryAllDeclaredConstructors": true - }, - { - "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, - "name": "com.oracle.bmc.devops.model.PullRequestFileChangeCollection$Builder", - "allDeclaredFields": true, - "allDeclaredMethods": true, - "allDeclaredConstructors": true - }, - { - "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, - "name": "com.oracle.bmc.devops.model.PullRequestFileChangeSummary", - "allDeclaredFields": true, - "allDeclaredMethods": true, - "queryAllDeclaredConstructors": true - }, - { - "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, - "name": "com.oracle.bmc.devops.model.PullRequestFileChangeSummary$Builder", - "allDeclaredFields": true, - "allDeclaredMethods": true, - "allDeclaredConstructors": true - }, { "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, "name": "com.oracle.bmc.devops.model.PullRequestLifecycleActivitySummary", @@ -5967,6 +5939,20 @@ "allDeclaredMethods": true, "allDeclaredConstructors": true }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.devops.model.RepositoryPathCommitDetails", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.devops.model.RepositoryPathCommitDetails$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, { "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, "name": "com.oracle.bmc.devops.model.RepositoryPathSummary", diff --git a/bmc-devops/src/main/resources/com/oracle/bmc/devops/client.properties b/bmc-devops/src/main/resources/com/oracle/bmc/devops/client.properties index 1f0fcb87e04..f7528738386 100644 --- a/bmc-devops/src/main/resources/com/oracle/bmc/devops/client.properties +++ b/bmc-devops/src/main/resources/com/oracle/bmc/devops/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-dif/pom.xml b/bmc-dif/pom.xml index 78a4cf79175..a0e1cd10883 100644 --- a/bmc-dif/pom.xml +++ b/bmc-dif/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-dif @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/Stack.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/Stack.java index 698a7f46ae5..837d8d28228 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/Stack.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/Stack.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/StackAsync.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/StackAsync.java index 81156465fd8..bcab1c0ecf8 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/StackAsync.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/StackAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/StackAsyncClient.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/StackAsyncClient.java index df3dfb542ec..f8bdf101c87 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/StackAsyncClient.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/StackAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/StackClient.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/StackClient.java index 6ae3210c67c..9c71499e1f0 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/StackClient.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/StackClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/StackPaginators.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/StackPaginators.java index a014dd5df61..9d337e063a0 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/StackPaginators.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/StackPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/StackWaiters.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/StackWaiters.java index 264bf4bec29..4965ed94cea 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/StackWaiters.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/StackWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ActionType.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ActionType.java index 7103c7afbe2..3bf77639616 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ActionType.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AdbArtifactsDetail.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AdbArtifactsDetail.java index 4d60c867f21..4ebf01e1d49 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AdbArtifactsDetail.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AdbArtifactsDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AdbDetail.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AdbDetail.java index 87b2e86382e..63db034c613 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AdbDetail.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AdbDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AdbUpdateDetail.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AdbUpdateDetail.java index 6843658f84e..1ee8570e061 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AdbUpdateDetail.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AdbUpdateDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AddServiceDetails.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AddServiceDetails.java index 02044e10777..198e080200a 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AddServiceDetails.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AddServiceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AdditionalDetails.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AdditionalDetails.java index a604b0eeb96..521816d5b1f 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AdditionalDetails.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AdditionalDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AssignedConnectionDetails.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AssignedConnectionDetails.java index 73b08ff76e5..bfe31fb2a59 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AssignedConnectionDetails.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AssignedConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AutoTiering.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AutoTiering.java index cc6af36517d..97847d2e580 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AutoTiering.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/AutoTiering.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ChangeStackCompartmentDetails.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ChangeStackCompartmentDetails.java index 9c55293bc38..d4d84e1b8ba 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ChangeStackCompartmentDetails.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ChangeStackCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ClusterType.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ClusterType.java index 6f2b666546e..e95a49e77a6 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ClusterType.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ClusterType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/CreateStackDetails.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/CreateStackDetails.java index ee4bd646cd0..f8458a566ad 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/CreateStackDetails.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/CreateStackDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DataflowArtifactsDetail.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DataflowArtifactsDetail.java index 7440a256171..85dfbf45237 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DataflowArtifactsDetail.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DataflowArtifactsDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DataflowConnectionDetails.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DataflowConnectionDetails.java index 3c6a43fbe2e..c615d9ced76 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DataflowConnectionDetails.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DataflowConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DataflowConnections.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DataflowConnections.java index c55a61fa1fd..c516be7d032 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DataflowConnections.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DataflowConnections.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DataflowDetail.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DataflowDetail.java index a4b0f5ba819..62050e5d41c 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DataflowDetail.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DataflowDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DataflowUpdateDetail.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DataflowUpdateDetail.java index 25f92716308..d013cfb1523 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DataflowUpdateDetail.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DataflowUpdateDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DbCredentialsDetail.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DbCredentialsDetail.java index f63017fe297..eabee410fdf 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DbCredentialsDetail.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DbCredentialsDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DbWorkload.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DbWorkload.java index 265d165d26e..8b76e59cd0b 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DbWorkload.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DbWorkload.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DeployArtifactsDetails.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DeployArtifactsDetails.java index afcc48b729f..dc73bd3593b 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DeployArtifactsDetails.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DeployArtifactsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DifDependencyDetails.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DifDependencyDetails.java index 841f89d2032..5e6690f31e0 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DifDependencyDetails.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/DifDependencyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/EndpointAdditional.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/EndpointAdditional.java index 91aa7f613ff..3fd51d6bb01 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/EndpointAdditional.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/EndpointAdditional.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/EndpointDetails.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/EndpointDetails.java index 6a3d4347937..c3804da4d64 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/EndpointDetails.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/EndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GenAiDetail.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GenAiDetail.java index 1c3a604e16f..94afdc2dbb6 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GenAiDetail.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GenAiDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GenAiUpdateDetail.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GenAiUpdateDetail.java index c101090cb6b..449bbf64294 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GenAiUpdateDetail.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GenAiUpdateDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsArtifactsDetail.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsArtifactsDetail.java index 6314977f3ce..f13ca331344 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsArtifactsDetail.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsArtifactsDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsConnectionDetails.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsConnectionDetails.java index ed472dfb47b..6081bd44f2c 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsConnectionDetails.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsDetail.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsDetail.java index e8aeacbfdc6..dee28514d36 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsDetail.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsSourceDetail.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsSourceDetail.java index 2d05efb40b0..31edd9ccae2 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsSourceDetail.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsSourceDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsTargetDetail.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsTargetDetail.java index 851b56a9fbe..9a29f46510d 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsTargetDetail.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsTargetDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsUpdateDetail.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsUpdateDetail.java index 308d0482ee2..c796cdd5044 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsUpdateDetail.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsUpdateDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsUserDetail.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsUserDetail.java index 6a6a534a549..1bb9ca79cd7 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsUserDetail.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/GgcsUserDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ObjectStorageDetail.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ObjectStorageDetail.java index e4b3e4a4613..0a1e2d29fb0 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ObjectStorageDetail.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ObjectStorageDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ObjectStorageUpdateDetail.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ObjectStorageUpdateDetail.java index 1645141309a..ade410f4e30 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ObjectStorageUpdateDetail.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ObjectStorageUpdateDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ObjectVersioning.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ObjectVersioning.java index 65bce57be86..94f9177be9d 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ObjectVersioning.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ObjectVersioning.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/OperationStatus.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/OperationStatus.java index 0a1757b983d..a6e91569a33 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/OperationStatus.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/OperationType.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/OperationType.java index 6953e027380..e35a5af12c8 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/OperationType.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/Service.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/Service.java index 00e93a21b25..9652a36ebae 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/Service.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/Service.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ServiceDetailResponse.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ServiceDetailResponse.java index 8e6be46b85c..fe4606603e3 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ServiceDetailResponse.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ServiceDetailResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ShapeConfig.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ShapeConfig.java index 1b5c0a017fb..ae29a30df35 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ShapeConfig.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/ShapeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/SortOrder.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/SortOrder.java index 3ca3ac847df..a03fa9f4578 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/SortOrder.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/Stack.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/Stack.java index 40b3fd8c990..c8f20f1d41a 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/Stack.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/Stack.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/StackCollection.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/StackCollection.java index e0e5eceba30..1bc49df6545 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/StackCollection.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/StackCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/StackSummary.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/StackSummary.java index 3d5ba4935d2..07b868a0837 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/StackSummary.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/StackSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/StackTemplate.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/StackTemplate.java index ea76f7c6236..f8fbb51b750 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/StackTemplate.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/StackTemplate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/StorageTier.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/StorageTier.java index 7f25fe67b65..8724a0e3a68 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/StorageTier.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/StorageTier.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/UpdateDataflowConnections.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/UpdateDataflowConnections.java index f2057bec56b..9b2b3d3b0d5 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/UpdateDataflowConnections.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/UpdateDataflowConnections.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/UpdateStackDetails.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/UpdateStackDetails.java index 0ef3464c00d..bc5d3ae1088 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/UpdateStackDetails.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/UpdateStackDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequest.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequest.java index d2bd5b8b2f7..5c339b25fcc 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequest.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestError.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestError.java index 51c6d290757..33acf3411bc 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestError.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestErrorCollection.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestErrorCollection.java index ef352107729..59dbc436786 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestErrorCollection.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestLogEntry.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestLogEntry.java index 726f1a50eb1..178192af4f8 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestLogEntry.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestLogEntryCollection.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestLogEntryCollection.java index cca91a4d614..a5f9b923a95 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestLogEntryCollection.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestResource.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestResource.java index e623ab3bfca..fc4cd13ae89 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestResource.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestResourceMetadataKey.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestResourceMetadataKey.java index 3d64e30f872..4d506579fe8 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestResourceMetadataKey.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestSummary.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestSummary.java index 46f36ea643b..95a990531e0 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestSummary.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestSummaryCollection.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestSummaryCollection.java index 7095cd716f1..fecd81602ed 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestSummaryCollection.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkflowAction.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkflowAction.java index 8935d92c5fe..6c577d762fa 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkflowAction.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/model/WorkflowAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.model; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/AddServiceRequest.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/AddServiceRequest.java index 0df223f0d4a..9c9304b9f3d 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/AddServiceRequest.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/AddServiceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.requests; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/CancelWorkRequestRequest.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/CancelWorkRequestRequest.java index 419e1c27d1c..7255d1ec0c7 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/CancelWorkRequestRequest.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.requests; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/ChangeStackCompartmentRequest.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/ChangeStackCompartmentRequest.java index 6d9d6076d8b..863bea1d533 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/ChangeStackCompartmentRequest.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/ChangeStackCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.requests; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/CreateStackRequest.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/CreateStackRequest.java index ca7eb535bb8..7d605a1e2a2 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/CreateStackRequest.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/CreateStackRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.requests; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/DeleteStackRequest.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/DeleteStackRequest.java index 52a6e7a8c63..c266cbe8c57 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/DeleteStackRequest.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/DeleteStackRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.requests; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/DeployArtifactsRequest.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/DeployArtifactsRequest.java index 05167af0f88..056c3b45357 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/DeployArtifactsRequest.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/DeployArtifactsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.requests; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/GetStackRequest.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/GetStackRequest.java index e4d39db0209..3015f9e2c89 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/GetStackRequest.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/GetStackRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.requests; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/GetWorkRequestRequest.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/GetWorkRequestRequest.java index 4aac3119b16..3fb5703fb8b 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/GetWorkRequestRequest.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.requests; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/ListStacksRequest.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/ListStacksRequest.java index 7dca4a00a0e..4db702987dd 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/ListStacksRequest.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/ListStacksRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.requests; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/ListWorkRequestErrorsRequest.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/ListWorkRequestErrorsRequest.java index 0b39de6968c..2001123bf2e 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.requests; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/ListWorkRequestLogsRequest.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/ListWorkRequestLogsRequest.java index 1e1d1cee185..b37cb39d231 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/ListWorkRequestLogsRequest.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.requests; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/ListWorkRequestsRequest.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/ListWorkRequestsRequest.java index 59c37ddaaf6..c8d5cd81614 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/ListWorkRequestsRequest.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.requests; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/UpdateStackRequest.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/UpdateStackRequest.java index 37045360f2a..cc248f9f11e 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/UpdateStackRequest.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/requests/UpdateStackRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.requests; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/AddServiceResponse.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/AddServiceResponse.java index e4b2814425d..dae81f81b4e 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/AddServiceResponse.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/AddServiceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.responses; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/CancelWorkRequestResponse.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/CancelWorkRequestResponse.java index 6b14a9e9bf5..61edd3b0956 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/CancelWorkRequestResponse.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.responses; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/ChangeStackCompartmentResponse.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/ChangeStackCompartmentResponse.java index 46c304c111e..c9c5976f7ef 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/ChangeStackCompartmentResponse.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/ChangeStackCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.responses; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/CreateStackResponse.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/CreateStackResponse.java index 99c94bc2755..97ce3b71a6f 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/CreateStackResponse.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/CreateStackResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.responses; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/DeleteStackResponse.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/DeleteStackResponse.java index 79c1afd936e..32dffa1460e 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/DeleteStackResponse.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/DeleteStackResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.responses; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/DeployArtifactsResponse.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/DeployArtifactsResponse.java index 8fd56cf590a..db4bb88981b 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/DeployArtifactsResponse.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/DeployArtifactsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.responses; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/GetStackResponse.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/GetStackResponse.java index 372d8a781f5..4a14c1621f9 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/GetStackResponse.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/GetStackResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.responses; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/GetWorkRequestResponse.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/GetWorkRequestResponse.java index 2e6348f3c09..24a6e7fe521 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/GetWorkRequestResponse.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.responses; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/ListStacksResponse.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/ListStacksResponse.java index 699f2d77119..565a587aed6 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/ListStacksResponse.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/ListStacksResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.responses; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/ListWorkRequestErrorsResponse.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/ListWorkRequestErrorsResponse.java index 5e747e05e93..a2e741a02a0 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.responses; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/ListWorkRequestLogsResponse.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/ListWorkRequestLogsResponse.java index 8bcc1582139..66665f16158 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/ListWorkRequestLogsResponse.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.responses; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/ListWorkRequestsResponse.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/ListWorkRequestsResponse.java index e469a297c39..853e351a35f 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/ListWorkRequestsResponse.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.responses; diff --git a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/UpdateStackResponse.java b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/UpdateStackResponse.java index 184532faf0b..98d9cca070c 100644 --- a/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/UpdateStackResponse.java +++ b/bmc-dif/src/main/java/com/oracle/bmc/dif/responses/UpdateStackResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dif.responses; diff --git a/bmc-dif/src/main/resources/com/oracle/bmc/dif/client.properties b/bmc-dif/src/main/resources/com/oracle/bmc/dif/client.properties index cc44fdc13e0..20594949217 100644 --- a/bmc-dif/src/main/resources/com/oracle/bmc/dif/client.properties +++ b/bmc-dif/src/main/resources/com/oracle/bmc/dif/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-disasterrecovery/pom.xml b/bmc-disasterrecovery/pom.xml index abc8aac5837..10ea7700a5c 100644 --- a/bmc-disasterrecovery/pom.xml +++ b/bmc-disasterrecovery/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-disasterrecovery @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecovery.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecovery.java index 90c22638898..c64dd2804fe 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecovery.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecovery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecoveryAsync.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecoveryAsync.java index c705b6eaf80..a30502f3b22 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecoveryAsync.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecoveryAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecoveryAsyncClient.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecoveryAsyncClient.java index 0467eccd9a3..38262beae7d 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecoveryAsyncClient.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecoveryAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecoveryClient.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecoveryClient.java index 56cc9b4aac7..779b90cfbd6 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecoveryClient.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecoveryClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecoveryPaginators.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecoveryPaginators.java index ed77cf19dc5..d681ad6aa24 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecoveryPaginators.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecoveryPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecoveryWaiters.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecoveryWaiters.java index f42cbf584d9..cf47528f814 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecoveryWaiters.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/DisasterRecoveryWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ActionType.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ActionType.java index 43ffb2eb49a..c2085cd7496 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ActionType.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AssociateDrProtectionGroupDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AssociateDrProtectionGroupDetails.java index ebf152bd86a..2584ec562f6 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AssociateDrProtectionGroupDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AssociateDrProtectionGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfiguration.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfiguration.java index 8df2b3aab06..8dc03e1ca11 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfiguration.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationCollection.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationCollection.java index 14db11ec36d..d729d323609 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationCollection.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationLifecycleState.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationLifecycleState.java index 2161042a548..452049f410d 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationLifecycleState.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationLifecycleSubState.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationLifecycleSubState.java index 72ddf0f0c15..db9bb52b90c 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationLifecycleSubState.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationLifecycleSubState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationMember.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationMember.java index 4763194c285..f24bb903f7a 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationMember.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationMember.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationMemberAutonomousContainerDatabase.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationMemberAutonomousContainerDatabase.java index 48d2d635d74..b328c63eaff 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationMemberAutonomousContainerDatabase.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationMemberAutonomousContainerDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationMemberAutonomousDatabase.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationMemberAutonomousDatabase.java index ddfa809259b..d6f34e99b19 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationMemberAutonomousDatabase.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationMemberAutonomousDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationMemberDatabase.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationMemberDatabase.java index b45a49daa90..1179318d238 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationMemberDatabase.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationMemberDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationMemberType.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationMemberType.java index 9d1c678b42b..3a3b2a46a54 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationMemberType.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationMemberType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationSummary.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationSummary.java index 60aff9f5093..de15e5d6986 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationSummary.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrConfigurationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrPlanExecutionSubmissionStatus.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrPlanExecutionSubmissionStatus.java index 24f55a6d311..d6adadabaee 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrPlanExecutionSubmissionStatus.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticDrPlanExecutionSubmissionStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticExecutionDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticExecutionDetails.java index caf0252eef1..022bc46b110 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticExecutionDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutomaticExecutionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutonomousContainerDatabaseSnapshotStandbyConnectionStringType.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutonomousContainerDatabaseSnapshotStandbyConnectionStringType.java index 4cd4371e4c9..7eba09d1fc5 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutonomousContainerDatabaseSnapshotStandbyConnectionStringType.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutonomousContainerDatabaseSnapshotStandbyConnectionStringType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutonomousDatabaseStandbyTypeForDrDrills.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutonomousDatabaseStandbyTypeForDrDrills.java index 8e72b0a4530..c2ba3d03a80 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutonomousDatabaseStandbyTypeForDrDrills.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/AutonomousDatabaseStandbyTypeForDrDrills.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/BlockVolumeAttachmentDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/BlockVolumeAttachmentDetails.java index 7cb1e5954c2..9d7531839ff 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/BlockVolumeAttachmentDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/BlockVolumeAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/BlockVolumeMountDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/BlockVolumeMountDetails.java index 58f3c9a92db..d367b5b2e10 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/BlockVolumeMountDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/BlockVolumeMountDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CancelDrPlanExecutionDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CancelDrPlanExecutionDetails.java index 406343ed57a..eddd43444e1 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CancelDrPlanExecutionDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CancelDrPlanExecutionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ChangeDrProtectionGroupCompartmentDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ChangeDrProtectionGroupCompartmentDetails.java index 70b09c8d03e..4252b33d10a 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ChangeDrProtectionGroupCompartmentDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ChangeDrProtectionGroupCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceMovableFileSystemOperation.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceMovableFileSystemOperation.java index faa6be306e1..d100c5e072d 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceMovableFileSystemOperation.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceMovableFileSystemOperation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceMovableVnicMapping.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceMovableVnicMapping.java index f9e557050dd..6a27ae7094e 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceMovableVnicMapping.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceMovableVnicMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceMovableVnicMappingDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceMovableVnicMappingDetails.java index 31a1116ba50..8b0f295bebe 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceMovableVnicMappingDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceMovableVnicMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceNonMovableBlockVolumeAttachAndMountOperationsDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceNonMovableBlockVolumeAttachAndMountOperationsDetails.java index d26dc2d11a6..796aa73bd63 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceNonMovableBlockVolumeAttachAndMountOperationsDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceNonMovableBlockVolumeAttachAndMountOperationsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceNonMovableBlockVolumeAttachOperationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceNonMovableBlockVolumeAttachOperationDetails.java index 293c05fe806..a25c03713ac 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceNonMovableBlockVolumeAttachOperationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceNonMovableBlockVolumeAttachOperationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceNonMovableBlockVolumeMountOperationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceNonMovableBlockVolumeMountOperationDetails.java index 3bb85c64a55..dec6146a20d 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceNonMovableBlockVolumeMountOperationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceNonMovableBlockVolumeMountOperationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceNonMovableBlockVolumeOperation.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceNonMovableBlockVolumeOperation.java index 55a900de07c..6f44473e12d 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceNonMovableBlockVolumeOperation.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceNonMovableBlockVolumeOperation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceNonMovableFileSystemOperation.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceNonMovableFileSystemOperation.java index 88846a8801f..cb863609885 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceNonMovableFileSystemOperation.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceNonMovableFileSystemOperation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceVnicMapping.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceVnicMapping.java index c3082276cd1..30322a3b4da 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceVnicMapping.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceVnicMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceVnicMappingDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceVnicMappingDetails.java index 446fc28c037..7621279b309 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceVnicMappingDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ComputeInstanceVnicMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateAutomaticDrConfigurationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateAutomaticDrConfigurationDetails.java index 322c250c9c6..3004bc4e8f4 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateAutomaticDrConfigurationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateAutomaticDrConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateAutomaticDrConfigurationMemberAutonomousContainerDatabaseDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateAutomaticDrConfigurationMemberAutonomousContainerDatabaseDetails.java index d1940861b1c..4ebe11210fd 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateAutomaticDrConfigurationMemberAutonomousContainerDatabaseDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateAutomaticDrConfigurationMemberAutonomousContainerDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateAutomaticDrConfigurationMemberAutonomousDatabaseDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateAutomaticDrConfigurationMemberAutonomousDatabaseDetails.java index 5d4efe45434..2270d635c58 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateAutomaticDrConfigurationMemberAutonomousDatabaseDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateAutomaticDrConfigurationMemberAutonomousDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateAutomaticDrConfigurationMemberDatabaseDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateAutomaticDrConfigurationMemberDatabaseDetails.java index 1af59ebde03..dd72d4aa70b 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateAutomaticDrConfigurationMemberDatabaseDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateAutomaticDrConfigurationMemberDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateAutomaticDrConfigurationMemberDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateAutomaticDrConfigurationMemberDetails.java index 2292416c5cd..42ae6cacbc5 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateAutomaticDrConfigurationMemberDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateAutomaticDrConfigurationMemberDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateBlockVolumeAttachmentDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateBlockVolumeAttachmentDetails.java index 60dc14355b2..6fd9f46828c 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateBlockVolumeAttachmentDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateBlockVolumeAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateBlockVolumeMountDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateBlockVolumeMountDetails.java index d57cd39b51d..336e1bf0cf3 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateBlockVolumeMountDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateBlockVolumeMountDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceMovableFileSystemOperationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceMovableFileSystemOperationDetails.java index 0a7932a5609..8f50d696025 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceMovableFileSystemOperationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceMovableFileSystemOperationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceNonMovableBlockVolumeAttachAndMountOperationsDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceNonMovableBlockVolumeAttachAndMountOperationsDetails.java index 790429781b6..0f298a5fcff 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceNonMovableBlockVolumeAttachAndMountOperationsDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceNonMovableBlockVolumeAttachAndMountOperationsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceNonMovableBlockVolumeAttachOperationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceNonMovableBlockVolumeAttachOperationDetails.java index 7b8e23f3c56..c46f46c97a7 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceNonMovableBlockVolumeAttachOperationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceNonMovableBlockVolumeAttachOperationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceNonMovableBlockVolumeMountOperationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceNonMovableBlockVolumeMountOperationDetails.java index 13f35e6691d..3eca518f008 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceNonMovableBlockVolumeMountOperationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceNonMovableBlockVolumeMountOperationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceNonMovableBlockVolumeOperationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceNonMovableBlockVolumeOperationDetails.java index 01e0af5ecdd..0641cdb9644 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceNonMovableBlockVolumeOperationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceNonMovableBlockVolumeOperationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceNonMovableFileSystemOperationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceNonMovableFileSystemOperationDetails.java index fb708a21ccd..7e0c95e3cfe 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceNonMovableFileSystemOperationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateComputeInstanceNonMovableFileSystemOperationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrPlanDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrPlanDetails.java index 57d102dd5f2..b39f4974db1 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrPlanDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrPlanDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrPlanExecutionDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrPlanExecutionDetails.java index b131031b5f8..ff2c4661ce0 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrPlanExecutionDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrPlanExecutionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupDetails.java index f1dfa41f193..486c441fd80 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberAutonomousContainerDatabaseDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberAutonomousContainerDatabaseDetails.java index dff8cd1b5be..39fc6297021 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberAutonomousContainerDatabaseDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberAutonomousContainerDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberAutonomousDatabaseDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberAutonomousDatabaseDetails.java index cddbcb5e458..c6546ced9cf 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberAutonomousDatabaseDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberAutonomousDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberComputeInstanceDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberComputeInstanceDetails.java index 668f2e324be..43da920f141 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberComputeInstanceDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberComputeInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberComputeInstanceMovableDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberComputeInstanceMovableDetails.java index 1777e7fe2f2..25ea4e04a03 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberComputeInstanceMovableDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberComputeInstanceMovableDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberComputeInstanceNonMovableDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberComputeInstanceNonMovableDetails.java index f6cc0daae1d..2c2b7a1e926 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberComputeInstanceNonMovableDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberComputeInstanceNonMovableDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberDatabaseDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberDatabaseDetails.java index f8644c28339..a259a35530d 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberDatabaseDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberDetails.java index cba940b233d..fd5897c8972 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberFileSystemDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberFileSystemDetails.java index 6be8fc64213..94782ba5ae5 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberFileSystemDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberFileSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberIntegrationInstanceDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberIntegrationInstanceDetails.java index f04d980102c..e0df7de4649 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberIntegrationInstanceDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberIntegrationInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberLoadBalancerDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberLoadBalancerDetails.java index 685c51ab1f6..1e0de16bf87 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberLoadBalancerDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberLoadBalancerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberMySqlDbSystemDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberMySqlDbSystemDetails.java index dd9f3af8cf5..82da7a6bcea 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberMySqlDbSystemDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberMySqlDbSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberNetworkLoadBalancerDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberNetworkLoadBalancerDetails.java index a70da85b0c9..2b6019403b8 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberNetworkLoadBalancerDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberNetworkLoadBalancerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberObjectStorageBucketDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberObjectStorageBucketDetails.java index 3bde67761fa..648dbddb5e9 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberObjectStorageBucketDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberObjectStorageBucketDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberOkeClusterDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberOkeClusterDetails.java index b80027eebd3..da1a6876cc1 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberOkeClusterDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberOkeClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberVolumeGroupDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberVolumeGroupDetails.java index 65ec6478e14..deea0798da0 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberVolumeGroupDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateDrProtectionGroupMemberVolumeGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateFileSystemMountDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateFileSystemMountDetails.java index 100cb6eae40..3840bb77a29 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateFileSystemMountDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateFileSystemMountDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateFileSystemUnmountDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateFileSystemUnmountDetails.java index 2f94c97aaf3..06a223d537f 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateFileSystemUnmountDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateFileSystemUnmountDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateMySqlDbSystemAdminUserDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateMySqlDbSystemAdminUserDetails.java index e2c53b1ec62..ea1395b9744 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateMySqlDbSystemAdminUserDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateMySqlDbSystemAdminUserDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateMySqlDbSystemReplicationUserDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateMySqlDbSystemReplicationUserDetails.java index 454f441f562..8141ed9a6ef 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateMySqlDbSystemReplicationUserDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateMySqlDbSystemReplicationUserDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateObjectStorageLogLocationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateObjectStorageLogLocationDetails.java index c3d8fc6e62a..af3361f151f 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateObjectStorageLogLocationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateObjectStorageLogLocationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeBackupLocationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeBackupLocationDetails.java index c84834c952b..efd05a5fe45 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeBackupLocationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeBackupLocationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterBackupConfigDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterBackupConfigDetails.java index 46cd0856daf..d50c29e1fbc 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterBackupConfigDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterBackupConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterLoadBalancerMappingDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterLoadBalancerMappingDetails.java index d08ef29d2f7..0ea32edde16 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterLoadBalancerMappingDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterLoadBalancerMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterManagedNodePoolConfigurationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterManagedNodePoolConfigurationDetails.java index a056165d33f..7d931c77872 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterManagedNodePoolConfigurationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterManagedNodePoolConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterNetworkLoadBalancerMappingDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterNetworkLoadBalancerMappingDetails.java index 2bd489bec91..57faa384cfc 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterNetworkLoadBalancerMappingDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterNetworkLoadBalancerMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterResourceModifierMappingDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterResourceModifierMappingDetails.java index ec024da9996..feb8cdfb579 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterResourceModifierMappingDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterResourceModifierMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterVaultMappingDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterVaultMappingDetails.java index b11ec776d7f..5321806c90b 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterVaultMappingDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterVaultMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterVirtualNodePoolConfigurationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterVirtualNodePoolConfigurationDetails.java index df0522d78c2..2c61c7575a7 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterVirtualNodePoolConfigurationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateOkeClusterVirtualNodePoolConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateSourceVolumeToDestinationEncryptionKeyMappingDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateSourceVolumeToDestinationEncryptionKeyMappingDetails.java index fe4abd7a19a..1b38a1321e9 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateSourceVolumeToDestinationEncryptionKeyMappingDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateSourceVolumeToDestinationEncryptionKeyMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateVaultAndEncryptionKeyDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateVaultAndEncryptionKeyDetails.java index 26b41f11d39..83b1221d712 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateVaultAndEncryptionKeyDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/CreateVaultAndEncryptionKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DisassociateDrProtectionGroupDefaultDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DisassociateDrProtectionGroupDefaultDetails.java index 724010b934d..2d5b575dd2a 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DisassociateDrProtectionGroupDefaultDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DisassociateDrProtectionGroupDefaultDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DisassociateDrProtectionGroupDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DisassociateDrProtectionGroupDetails.java index c2c5e6cd0e4..4749e4c6515 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DisassociateDrProtectionGroupDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DisassociateDrProtectionGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlan.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlan.java index 6dea069f4b3..9f4f9d10bc2 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlan.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlan.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanCollection.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanCollection.java index b6de6e84980..af9592a1ea0 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanCollection.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecution.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecution.java index bc78192a561..ae59d44d022 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecution.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecution.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionCollection.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionCollection.java index 16f70173d40..f83813099e0 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionCollection.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionControlDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionControlDetails.java index f3a286b6253..f037d32531c 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionControlDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionControlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionFailedStepStatusCounts.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionFailedStepStatusCounts.java index 36cc6484555..4447bf5d786 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionFailedStepStatusCounts.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionFailedStepStatusCounts.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionLifecycleState.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionLifecycleState.java index 67a86b34ba3..d8da498d199 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionLifecycleState.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionOptionDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionOptionDetails.java index d3b3d8ceb5d..e0f49ec2a9c 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionOptionDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionOptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionOptions.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionOptions.java index 48d07c114d6..41f73b3a93d 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionOptions.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionRemainingStepStatusCounts.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionRemainingStepStatusCounts.java index 76334050eaa..526e43e9e16 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionRemainingStepStatusCounts.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionRemainingStepStatusCounts.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionSkippedStepStatusCounts.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionSkippedStepStatusCounts.java index b80c1d0a01e..d9c2d640f5a 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionSkippedStepStatusCounts.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionSkippedStepStatusCounts.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionStepStatusCounts.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionStepStatusCounts.java index 3408192d2d7..37bf2fa1e23 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionStepStatusCounts.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionStepStatusCounts.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionSuccessfulStepStatusCounts.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionSuccessfulStepStatusCounts.java index 95349803349..88ed233b8d6 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionSuccessfulStepStatusCounts.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionSuccessfulStepStatusCounts.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionSummary.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionSummary.java index 752a2b3951f..73ea8792522 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionSummary.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionType.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionType.java index 41024c7bbf1..1c2ab4ba654 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionType.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionWarningStepStatusCounts.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionWarningStepStatusCounts.java index 772db7e0648..02e5d4f05f1 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionWarningStepStatusCounts.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanExecutionWarningStepStatusCounts.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanGroup.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanGroup.java index 5f8156154b7..74b0faf5131 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanGroup.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanGroupExecution.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanGroupExecution.java index 78bc757609b..1bdfdd3f10a 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanGroupExecution.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanGroupExecution.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanGroupExecutionStatus.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanGroupExecutionStatus.java index 9feab376808..a5dff7fe460 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanGroupExecutionStatus.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanGroupExecutionStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanGroupRefreshStatus.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanGroupRefreshStatus.java index f1122a0fe6f..fcce66a54de 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanGroupRefreshStatus.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanGroupRefreshStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanGroupType.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanGroupType.java index 923b006186b..6850de1879e 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanGroupType.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanGroupType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanLifecycleState.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanLifecycleState.java index 1b48356fb45..132b704ec67 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanLifecycleState.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanLifecycleSubState.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanLifecycleSubState.java index 43e0fd707e1..d81a7ff6cf5 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanLifecycleSubState.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanLifecycleSubState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStep.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStep.java index 9394410c9a9..0b5e2a4e4e8 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStep.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStep.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStepErrorMode.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStepErrorMode.java index 169aa3064e7..20a02eb3866 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStepErrorMode.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStepErrorMode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStepExecution.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStepExecution.java index d2d06b49d80..696c4716873 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStepExecution.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStepExecution.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStepExecutionStatus.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStepExecutionStatus.java index a87693466a1..83e2dfe10ca 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStepExecutionStatus.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStepExecutionStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStepRefreshStatus.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStepRefreshStatus.java index 5f6c15216b5..08a565450c8 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStepRefreshStatus.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStepRefreshStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStepType.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStepType.java index 02f9ac33157..ed1cedb7223 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStepType.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanStepType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanSummary.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanSummary.java index d8375813133..68d0369de40 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanSummary.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanType.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanType.java index 2fa9efa9fde..37c5fcd99ae 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanType.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanUserDefinedStep.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanUserDefinedStep.java index 38b5b2d35d6..6482bcffcb5 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanUserDefinedStep.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrPlanUserDefinedStep.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroup.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroup.java index c6a641a8d90..238eeaa2fc1 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroup.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupAuthType.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupAuthType.java index d3b61c3c34a..0625834f866 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupAuthType.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupAuthType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupCollection.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupCollection.java index 5111672d779..2ca9f5b89f5 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupCollection.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupLifecycleState.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupLifecycleState.java index 4d7a2d44d1f..27fe784a2cb 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupLifecycleState.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupLifecycleSubState.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupLifecycleSubState.java index 21045f2572c..701e87284db 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupLifecycleSubState.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupLifecycleSubState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMember.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMember.java index eee04bc47d6..e4544eb02e8 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMember.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMember.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberAutonomousContainerDatabase.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberAutonomousContainerDatabase.java index 605cb3a2c4c..a38be166a3e 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberAutonomousContainerDatabase.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberAutonomousContainerDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberAutonomousDatabase.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberAutonomousDatabase.java index 1f222546ed3..73e4e12df9f 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberAutonomousDatabase.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberAutonomousDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberComputeInstance.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberComputeInstance.java index c09a2378e02..20bdf30a81c 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberComputeInstance.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberComputeInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberComputeInstanceMovable.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberComputeInstanceMovable.java index 314228700e5..90a172927ff 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberComputeInstanceMovable.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberComputeInstanceMovable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberComputeInstanceNonMovable.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberComputeInstanceNonMovable.java index e82247927a2..91ea7722c43 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberComputeInstanceNonMovable.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberComputeInstanceNonMovable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberDatabase.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberDatabase.java index 63dbb2893f6..50b964216ba 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberDatabase.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberFileSystem.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberFileSystem.java index 065b69a5b72..980a538f98f 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberFileSystem.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberFileSystem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberIntegrationInstance.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberIntegrationInstance.java index 57d558a2959..68fc4defe26 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberIntegrationInstance.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberIntegrationInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberLoadBalancer.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberLoadBalancer.java index acaa126c09b..adb5534bcbd 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberLoadBalancer.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberLoadBalancer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberMySqlDbSystem.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberMySqlDbSystem.java index 081ef9df5bd..611770a4394 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberMySqlDbSystem.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberMySqlDbSystem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberNetworkLoadBalancer.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberNetworkLoadBalancer.java index db4614fb4cf..0cfd570a208 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberNetworkLoadBalancer.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberNetworkLoadBalancer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberObjectStorageBucket.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberObjectStorageBucket.java index 0f8979c69fe..5258e7a378f 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberObjectStorageBucket.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberObjectStorageBucket.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberOkeCluster.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberOkeCluster.java index d3006a8fa5e..959689fbc0a 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberOkeCluster.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberOkeCluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberType.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberType.java index 347266b98fe..de5d830e956 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberType.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberVolumeGroup.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberVolumeGroup.java index 9bfe6057105..ec1dc68bf69 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberVolumeGroup.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupMemberVolumeGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupRole.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupRole.java index a1995da6fb8..92786ff217e 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupRole.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupRole.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupSummary.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupSummary.java index 5d0f599608e..ad4e068654a 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupSummary.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/DrProtectionGroupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FailoverExecutionOptionDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FailoverExecutionOptionDetails.java index 863be4060bd..d68d82e03d0 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FailoverExecutionOptionDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FailoverExecutionOptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FailoverExecutionOptions.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FailoverExecutionOptions.java index de9bfd3a170..9f771847e7b 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FailoverExecutionOptions.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FailoverExecutionOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FailoverPrecheckExecutionOptionDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FailoverPrecheckExecutionOptionDetails.java index 6e1eb32bea1..796b1976047 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FailoverPrecheckExecutionOptionDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FailoverPrecheckExecutionOptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FailoverPrecheckExecutionOptions.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FailoverPrecheckExecutionOptions.java index baefa0b7a2d..e5f8f8b754b 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FailoverPrecheckExecutionOptions.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FailoverPrecheckExecutionOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FileSystemExportMapping.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FileSystemExportMapping.java index 2d349beeb6b..9cece91f2e7 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FileSystemExportMapping.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FileSystemExportMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FileSystemExportMappingDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FileSystemExportMappingDetails.java index 0e1ee2cfd01..1e58a4af4b1 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FileSystemExportMappingDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FileSystemExportMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FileSystemMountDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FileSystemMountDetails.java index e33ce0f294a..5d227acf619 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FileSystemMountDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FileSystemMountDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FileSystemUnmountDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FileSystemUnmountDetails.java index 096105a40e8..99383de1d4d 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FileSystemUnmountDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/FileSystemUnmountDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/IgnoreDrPlanExecutionDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/IgnoreDrPlanExecutionDetails.java index a848de4acfe..6aab11fdc5f 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/IgnoreDrPlanExecutionDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/IgnoreDrPlanExecutionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/InvokeFunctionPrecheckStep.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/InvokeFunctionPrecheckStep.java index e0e9e332aa2..593e2a0aed8 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/InvokeFunctionPrecheckStep.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/InvokeFunctionPrecheckStep.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/InvokeFunctionStep.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/InvokeFunctionStep.java index 4684a5be24c..bc560efbd9f 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/InvokeFunctionStep.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/InvokeFunctionStep.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/InvokeFunctionUserDefinedCustomPrecheckStep.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/InvokeFunctionUserDefinedCustomPrecheckStep.java index 4e8f762b248..354d6b57adf 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/InvokeFunctionUserDefinedCustomPrecheckStep.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/InvokeFunctionUserDefinedCustomPrecheckStep.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/LoadBalancerBackendSetMapping.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/LoadBalancerBackendSetMapping.java index 49594da76db..cdc768889a3 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/LoadBalancerBackendSetMapping.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/LoadBalancerBackendSetMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/LoadBalancerBackendSetMappingDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/LoadBalancerBackendSetMappingDetails.java index d5cbf85899e..393515baccd 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/LoadBalancerBackendSetMappingDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/LoadBalancerBackendSetMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/LocalScriptPrecheckStep.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/LocalScriptPrecheckStep.java index 53e09f6d584..d6c0ab36db5 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/LocalScriptPrecheckStep.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/LocalScriptPrecheckStep.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/MySqlDbSystemAdminUserDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/MySqlDbSystemAdminUserDetails.java index cc99dd1beb4..fa407ae58d0 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/MySqlDbSystemAdminUserDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/MySqlDbSystemAdminUserDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/MySqlDbSystemReplicationUserDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/MySqlDbSystemReplicationUserDetails.java index e42530105c5..85ac6e73dd0 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/MySqlDbSystemReplicationUserDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/MySqlDbSystemReplicationUserDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/NetworkLoadBalancerBackendSetMapping.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/NetworkLoadBalancerBackendSetMapping.java index eed2844f5cb..a9c721195f8 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/NetworkLoadBalancerBackendSetMapping.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/NetworkLoadBalancerBackendSetMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/NetworkLoadBalancerBackendSetMappingDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/NetworkLoadBalancerBackendSetMappingDetails.java index 3d008811803..88fa5082895 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/NetworkLoadBalancerBackendSetMappingDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/NetworkLoadBalancerBackendSetMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ObjectStorageLogLocation.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ObjectStorageLogLocation.java index 7d7e486f0ff..a4d44a7c8ea 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ObjectStorageLogLocation.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ObjectStorageLogLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ObjectStorageScriptLocation.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ObjectStorageScriptLocation.java index 62d116b5228..2d5b3602ffd 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ObjectStorageScriptLocation.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ObjectStorageScriptLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ObjectStoreScriptPrecheckStep.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ObjectStoreScriptPrecheckStep.java index 1af7c2cfd1a..426d0625c62 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ObjectStoreScriptPrecheckStep.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ObjectStoreScriptPrecheckStep.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeBackupLocation.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeBackupLocation.java index a4ede5de103..d778b89883b 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeBackupLocation.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeBackupLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterBackupConfig.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterBackupConfig.java index 41526899b07..8239a7bf2c7 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterBackupConfig.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterBackupConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterImageReplication.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterImageReplication.java index 6c8cf4c7ad5..b676770f0ee 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterImageReplication.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterImageReplication.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterLoadBalancerMapping.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterLoadBalancerMapping.java index 9cd7a8ff803..5745a8b2b1c 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterLoadBalancerMapping.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterLoadBalancerMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterManagedNodePoolConfiguration.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterManagedNodePoolConfiguration.java index 3471d88d9b8..f96106aaa6b 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterManagedNodePoolConfiguration.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterManagedNodePoolConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterNetworkLoadBalancerMapping.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterNetworkLoadBalancerMapping.java index 235233c959e..b4a80a647fa 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterNetworkLoadBalancerMapping.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterNetworkLoadBalancerMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterResourceModifierMapping.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterResourceModifierMapping.java index 4be08a053d7..439dcb3a0dc 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterResourceModifierMapping.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterResourceModifierMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterVaultMapping.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterVaultMapping.java index fefd80fb1b5..ad42688a980 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterVaultMapping.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterVaultMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterVirtualNodePoolConfiguration.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterVirtualNodePoolConfiguration.java index 0e724fecb53..2fc43b1f2b2 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterVirtualNodePoolConfiguration.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OkeClusterVirtualNodePoolConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OperationStatus.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OperationStatus.java index 8ddce561da6..ad3440e6498 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OperationStatus.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OperationType.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OperationType.java index 59f01cbc597..2340036e9b3 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OperationType.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/PauseDrPlanExecutionDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/PauseDrPlanExecutionDetails.java index 0abd05b3392..c920bb6fa51 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/PauseDrPlanExecutionDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/PauseDrPlanExecutionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RefreshDrPlanDefaultDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RefreshDrPlanDefaultDetails.java index 3f5982d1f09..bc3ac915056 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RefreshDrPlanDefaultDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RefreshDrPlanDefaultDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RefreshDrPlanDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RefreshDrPlanDetails.java index 373f0f03622..6c43a363c79 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RefreshDrPlanDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RefreshDrPlanDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ResumeDrPlanExecutionDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ResumeDrPlanExecutionDetails.java index 6e779d421bf..9e0ce753260 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ResumeDrPlanExecutionDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/ResumeDrPlanExecutionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RetryDrPlanExecutionDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RetryDrPlanExecutionDetails.java index 727bdc07883..0720ad88562 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RetryDrPlanExecutionDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RetryDrPlanExecutionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RunLocalScriptUserDefinedCustomPrecheckStep.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RunLocalScriptUserDefinedCustomPrecheckStep.java index ad8514629c4..f691eb90ee8 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RunLocalScriptUserDefinedCustomPrecheckStep.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RunLocalScriptUserDefinedCustomPrecheckStep.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RunLocalScriptUserDefinedStep.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RunLocalScriptUserDefinedStep.java index 4815632259e..f9fbaa08a44 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RunLocalScriptUserDefinedStep.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RunLocalScriptUserDefinedStep.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RunObjectStoreScriptUserDefinedCustomPrecheckStep.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RunObjectStoreScriptUserDefinedCustomPrecheckStep.java index af691b8dc21..2f0e3d6accc 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RunObjectStoreScriptUserDefinedCustomPrecheckStep.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RunObjectStoreScriptUserDefinedCustomPrecheckStep.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RunObjectStoreScriptUserDefinedStep.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RunObjectStoreScriptUserDefinedStep.java index 48c28679d4b..e829b4cc990 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RunObjectStoreScriptUserDefinedStep.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/RunObjectStoreScriptUserDefinedStep.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SortOrder.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SortOrder.java index 72e7a85b59f..89ffcbf8008 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SortOrder.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SourceVolumeToDestinationEncryptionKeyMapping.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SourceVolumeToDestinationEncryptionKeyMapping.java index 35c59d037ac..03f6fc2b2c3 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SourceVolumeToDestinationEncryptionKeyMapping.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SourceVolumeToDestinationEncryptionKeyMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StartDrillExecutionOptionDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StartDrillExecutionOptionDetails.java index b1384e991aa..ffc80610b54 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StartDrillExecutionOptionDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StartDrillExecutionOptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StartDrillExecutionOptions.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StartDrillExecutionOptions.java index cc93a0eadc3..74d9ae10483 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StartDrillExecutionOptions.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StartDrillExecutionOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StartDrillPrecheckExecutionOptionDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StartDrillPrecheckExecutionOptionDetails.java index b6af309080f..f552c3b90fd 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StartDrillPrecheckExecutionOptionDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StartDrillPrecheckExecutionOptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StartDrillPrecheckExecutionOptions.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StartDrillPrecheckExecutionOptions.java index 0c5e8041b9b..409b52a006d 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StartDrillPrecheckExecutionOptions.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StartDrillPrecheckExecutionOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StopDrillExecutionOptionDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StopDrillExecutionOptionDetails.java index 56d8c4000d5..2ad7cfba2c1 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StopDrillExecutionOptionDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StopDrillExecutionOptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StopDrillExecutionOptions.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StopDrillExecutionOptions.java index e2906c67efc..6698afd5074 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StopDrillExecutionOptions.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StopDrillExecutionOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StopDrillPrecheckExecutionOptionDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StopDrillPrecheckExecutionOptionDetails.java index cca9bb2c25e..1230581fae0 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StopDrillPrecheckExecutionOptionDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StopDrillPrecheckExecutionOptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StopDrillPrecheckExecutionOptions.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StopDrillPrecheckExecutionOptions.java index 4a98287c75b..2a6262898ff 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StopDrillPrecheckExecutionOptions.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/StopDrillPrecheckExecutionOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SwitchoverExecutionOptionDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SwitchoverExecutionOptionDetails.java index 0965ee74801..11b7e00d0b2 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SwitchoverExecutionOptionDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SwitchoverExecutionOptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SwitchoverExecutionOptions.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SwitchoverExecutionOptions.java index 1cbf243d2c0..c185aa803b7 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SwitchoverExecutionOptions.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SwitchoverExecutionOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SwitchoverPrecheckExecutionOptionDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SwitchoverPrecheckExecutionOptionDetails.java index 97b69f9b940..ab114737c34 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SwitchoverPrecheckExecutionOptionDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SwitchoverPrecheckExecutionOptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SwitchoverPrecheckExecutionOptions.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SwitchoverPrecheckExecutionOptions.java index a4ad741fbb3..276b159acda 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SwitchoverPrecheckExecutionOptions.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/SwitchoverPrecheckExecutionOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateAutomaticDrConfigurationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateAutomaticDrConfigurationDetails.java index 7d6992fce10..62b3b843b9b 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateAutomaticDrConfigurationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateAutomaticDrConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateAutomaticDrConfigurationMemberAutonomousContainerDatabaseDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateAutomaticDrConfigurationMemberAutonomousContainerDatabaseDetails.java index ec6bb58e12d..5d5f772c8e8 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateAutomaticDrConfigurationMemberAutonomousContainerDatabaseDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateAutomaticDrConfigurationMemberAutonomousContainerDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateAutomaticDrConfigurationMemberAutonomousDatabaseDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateAutomaticDrConfigurationMemberAutonomousDatabaseDetails.java index 55ca2510c4a..ceaaa863c41 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateAutomaticDrConfigurationMemberAutonomousDatabaseDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateAutomaticDrConfigurationMemberAutonomousDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateAutomaticDrConfigurationMemberDatabaseDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateAutomaticDrConfigurationMemberDatabaseDetails.java index beae4ad75bc..09f3f086c47 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateAutomaticDrConfigurationMemberDatabaseDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateAutomaticDrConfigurationMemberDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateAutomaticDrConfigurationMemberDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateAutomaticDrConfigurationMemberDetails.java index 4f9354fdabb..64b69690e04 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateAutomaticDrConfigurationMemberDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateAutomaticDrConfigurationMemberDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateBlockVolumeAttachmentDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateBlockVolumeAttachmentDetails.java index 9c458c1c5cf..d8287278467 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateBlockVolumeAttachmentDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateBlockVolumeAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateBlockVolumeMountDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateBlockVolumeMountDetails.java index babfd713326..2782b253004 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateBlockVolumeMountDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateBlockVolumeMountDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceMovableFileSystemOperationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceMovableFileSystemOperationDetails.java index cc91ef9682b..9e53760e512 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceMovableFileSystemOperationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceMovableFileSystemOperationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceNonMovableBlockVolumeAttachAndMountOperationsDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceNonMovableBlockVolumeAttachAndMountOperationsDetails.java index cbac5561563..01e502912a2 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceNonMovableBlockVolumeAttachAndMountOperationsDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceNonMovableBlockVolumeAttachAndMountOperationsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceNonMovableBlockVolumeAttachOperationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceNonMovableBlockVolumeAttachOperationDetails.java index a67426fd8ed..93eb7cdbbfe 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceNonMovableBlockVolumeAttachOperationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceNonMovableBlockVolumeAttachOperationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceNonMovableBlockVolumeMountOperationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceNonMovableBlockVolumeMountOperationDetails.java index 465f1bd1c5c..8c243c83676 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceNonMovableBlockVolumeMountOperationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceNonMovableBlockVolumeMountOperationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceNonMovableBlockVolumeOperationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceNonMovableBlockVolumeOperationDetails.java index 425fbacac60..34e3a254089 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceNonMovableBlockVolumeOperationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceNonMovableBlockVolumeOperationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceNonMovableFileSystemOperationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceNonMovableFileSystemOperationDetails.java index 8b7c53806d2..cb45644dcaf 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceNonMovableFileSystemOperationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateComputeInstanceNonMovableFileSystemOperationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrPlanDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrPlanDetails.java index 0cca061dade..1ccf74a93a3 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrPlanDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrPlanDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrPlanExecutionDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrPlanExecutionDetails.java index 58d88688789..8a1baa08003 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrPlanExecutionDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrPlanExecutionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrPlanGroupDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrPlanGroupDetails.java index 20414b96193..ec0d0879aa4 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrPlanGroupDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrPlanGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrPlanStepDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrPlanStepDetails.java index b2e0252ffa1..d475d1f397f 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrPlanStepDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrPlanStepDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrPlanUserDefinedStepDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrPlanUserDefinedStepDetails.java index d98c6f25e2c..020523ae69a 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrPlanUserDefinedStepDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrPlanUserDefinedStepDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupDetails.java index 6004e276bb3..84bc286476c 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberAutonomousContainerDatabaseDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberAutonomousContainerDatabaseDetails.java index f1a20f2de9d..c86dda63964 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberAutonomousContainerDatabaseDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberAutonomousContainerDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberAutonomousDatabaseDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberAutonomousDatabaseDetails.java index 94c49336aae..508cd8e9d5d 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberAutonomousDatabaseDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberAutonomousDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberComputeInstanceDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberComputeInstanceDetails.java index 34bb5e5f39d..5d409084b4f 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberComputeInstanceDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberComputeInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberComputeInstanceMovableDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberComputeInstanceMovableDetails.java index 3b79d1b4118..1cfd8830e82 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberComputeInstanceMovableDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberComputeInstanceMovableDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberComputeInstanceNonMovableDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberComputeInstanceNonMovableDetails.java index e61220d948b..d7e340bb01b 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberComputeInstanceNonMovableDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberComputeInstanceNonMovableDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberDatabaseDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberDatabaseDetails.java index 3612a9456f8..7bcea32cb5b 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberDatabaseDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberDetails.java index a0f9de58270..2b2389a14ba 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberFileSystemDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberFileSystemDetails.java index ece0b87812d..9d579cef46f 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberFileSystemDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberFileSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberIntegrationInstanceDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberIntegrationInstanceDetails.java index a8fb39b2555..52b7cf42309 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberIntegrationInstanceDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberIntegrationInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberLoadBalancerDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberLoadBalancerDetails.java index 3ceb8d71b0d..dab327eda3a 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberLoadBalancerDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberLoadBalancerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberMySqlDbSystemDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberMySqlDbSystemDetails.java index e2165db6fe8..632133f384d 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberMySqlDbSystemDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberMySqlDbSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberNetworkLoadBalancerDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberNetworkLoadBalancerDetails.java index f472eef138a..eb5b96436a4 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberNetworkLoadBalancerDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberNetworkLoadBalancerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberObjectStorageBucketDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberObjectStorageBucketDetails.java index 734a9b6f0bd..43ab13c927c 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberObjectStorageBucketDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberObjectStorageBucketDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberOkeClusterDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberOkeClusterDetails.java index 11266868932..bcdcf628ac4 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberOkeClusterDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberOkeClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberVolumeGroupDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberVolumeGroupDetails.java index 373a7d7c477..ba4e8ffd1d2 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberVolumeGroupDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupMemberVolumeGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupRoleDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupRoleDetails.java index a0399ab07a5..df0e24bb085 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupRoleDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateDrProtectionGroupRoleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateFileSystemMountDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateFileSystemMountDetails.java index cbaee83493a..c3846d9f712 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateFileSystemMountDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateFileSystemMountDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateFileSystemUnmountDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateFileSystemUnmountDetails.java index f21a4e7b2c0..5de4145b83b 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateFileSystemUnmountDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateFileSystemUnmountDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateInvokeFunctionPrecheckStepDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateInvokeFunctionPrecheckStepDetails.java index 555878aed95..9264878342e 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateInvokeFunctionPrecheckStepDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateInvokeFunctionPrecheckStepDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateInvokeFunctionUserDefinedCustomPrecheckStepDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateInvokeFunctionUserDefinedCustomPrecheckStepDetails.java index 13d6d128392..7ebb133b691 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateInvokeFunctionUserDefinedCustomPrecheckStepDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateInvokeFunctionUserDefinedCustomPrecheckStepDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateInvokeFunctionUserDefinedStepDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateInvokeFunctionUserDefinedStepDetails.java index 1479de7e48b..ce58a8d4c9c 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateInvokeFunctionUserDefinedStepDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateInvokeFunctionUserDefinedStepDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateLocalScriptPrecheckStepDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateLocalScriptPrecheckStepDetails.java index b98b6b7cf96..910371e449f 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateLocalScriptPrecheckStepDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateLocalScriptPrecheckStepDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateMySqlDbSystemAdminUserDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateMySqlDbSystemAdminUserDetails.java index ccbf1532ddb..5f6b3bc351b 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateMySqlDbSystemAdminUserDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateMySqlDbSystemAdminUserDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateMySqlDbSystemReplicationUserDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateMySqlDbSystemReplicationUserDetails.java index 84079a6cce8..f7f0746e045 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateMySqlDbSystemReplicationUserDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateMySqlDbSystemReplicationUserDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateObjectStorageLogLocationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateObjectStorageLogLocationDetails.java index e3b83a1e379..97d55a79fe9 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateObjectStorageLogLocationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateObjectStorageLogLocationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateObjectStorageScriptLocationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateObjectStorageScriptLocationDetails.java index 96f986d97d7..00ecae9392e 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateObjectStorageScriptLocationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateObjectStorageScriptLocationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateObjectStoreScriptPrecheckStepDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateObjectStoreScriptPrecheckStepDetails.java index 9becc7f8066..f00e119318b 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateObjectStoreScriptPrecheckStepDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateObjectStoreScriptPrecheckStepDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeBackupLocationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeBackupLocationDetails.java index d85897c2cc2..61665d99dc4 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeBackupLocationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeBackupLocationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterBackupConfigDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterBackupConfigDetails.java index a0c2072793e..9a83e9e8c59 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterBackupConfigDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterBackupConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterLoadBalancerMappingDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterLoadBalancerMappingDetails.java index c8d4b5f4170..693bc08543b 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterLoadBalancerMappingDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterLoadBalancerMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterManagedNodePoolConfigurationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterManagedNodePoolConfigurationDetails.java index ee48e650f1c..c3dd3a4033a 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterManagedNodePoolConfigurationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterManagedNodePoolConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterNetworkLoadBalancerMappingDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterNetworkLoadBalancerMappingDetails.java index d6106fe60c5..385c0b6f83f 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterNetworkLoadBalancerMappingDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterNetworkLoadBalancerMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterResourceModifierMappingDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterResourceModifierMappingDetails.java index f5aa4e9b290..3bce3f8c873 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterResourceModifierMappingDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterResourceModifierMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterVaultMappingDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterVaultMappingDetails.java index 97799c56f1d..b1c61c2bb18 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterVaultMappingDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterVaultMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterVirtualNodePoolConfigurationDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterVirtualNodePoolConfigurationDetails.java index 16230226747..9756d65197a 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterVirtualNodePoolConfigurationDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateOkeClusterVirtualNodePoolConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateRunLocalScriptUserDefinedCustomPrecheckStepDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateRunLocalScriptUserDefinedCustomPrecheckStepDetails.java index 4df9767fe4f..838d3a3307b 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateRunLocalScriptUserDefinedCustomPrecheckStepDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateRunLocalScriptUserDefinedCustomPrecheckStepDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateRunLocalScriptUserDefinedStepDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateRunLocalScriptUserDefinedStepDetails.java index eee5bfa5600..023fee8837a 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateRunLocalScriptUserDefinedStepDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateRunLocalScriptUserDefinedStepDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateRunObjectStoreScriptUserDefinedCustomPrecheckStepDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateRunObjectStoreScriptUserDefinedCustomPrecheckStepDetails.java index 5f2765f4b94..b40618909fd 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateRunObjectStoreScriptUserDefinedCustomPrecheckStepDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateRunObjectStoreScriptUserDefinedCustomPrecheckStepDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateRunObjectStoreScriptUserDefinedStepDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateRunObjectStoreScriptUserDefinedStepDetails.java index 3c75722d6b1..c65a6433812 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateRunObjectStoreScriptUserDefinedStepDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateRunObjectStoreScriptUserDefinedStepDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateSourceVolumeToDestinationEncryptionKeyMappingDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateSourceVolumeToDestinationEncryptionKeyMappingDetails.java index 9fbbfcb4fcb..39339f4e1b3 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateSourceVolumeToDestinationEncryptionKeyMappingDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateSourceVolumeToDestinationEncryptionKeyMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateVaultAndEncryptionKeyDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateVaultAndEncryptionKeyDetails.java index 91682c88cf0..27aeca3ea6b 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateVaultAndEncryptionKeyDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/UpdateVaultAndEncryptionKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/VaultAndEncryptionKey.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/VaultAndEncryptionKey.java index b1d5c9eb535..b7de866e0df 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/VaultAndEncryptionKey.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/VaultAndEncryptionKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/VerifyDrPlanDefaultDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/VerifyDrPlanDefaultDetails.java index 6e793520b83..8b0336a2ccb 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/VerifyDrPlanDefaultDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/VerifyDrPlanDefaultDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/VerifyDrPlanDetails.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/VerifyDrPlanDetails.java index daf234133c6..83877478b8e 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/VerifyDrPlanDetails.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/VerifyDrPlanDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequest.java index 1ad749e6a2b..035259b3b66 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestError.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestError.java index 6df40ba3097..f1cd1ea216f 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestError.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestErrorCollection.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestErrorCollection.java index 3288e7516a2..5cb30d47078 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestErrorCollection.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestLogEntry.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestLogEntry.java index 2eeb0d69697..45aaf3a43a9 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestLogEntry.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestLogEntryCollection.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestLogEntryCollection.java index 859957f99f7..4cf1af510b2 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestLogEntryCollection.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestResource.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestResource.java index 4444215625d..46a29e61c4d 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestResource.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestSummary.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestSummary.java index ae4c4dc171d..11360e7093e 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestSummary.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestSummaryCollection.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestSummaryCollection.java index fca8dfef8bf..e29473a2481 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestSummaryCollection.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.model; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/AssociateDrProtectionGroupRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/AssociateDrProtectionGroupRequest.java index 19ef3ec41ea..73eb7959c7b 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/AssociateDrProtectionGroupRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/AssociateDrProtectionGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CancelDrPlanExecutionRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CancelDrPlanExecutionRequest.java index adc604e44f1..50e45a08970 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CancelDrPlanExecutionRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CancelDrPlanExecutionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CancelWorkRequestRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CancelWorkRequestRequest.java index f586ef2f468..9f17d52d2d2 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CancelWorkRequestRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ChangeDrProtectionGroupCompartmentRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ChangeDrProtectionGroupCompartmentRequest.java index 546502f73ba..ebf2c230093 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ChangeDrProtectionGroupCompartmentRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ChangeDrProtectionGroupCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CreateAutomaticDrConfigurationRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CreateAutomaticDrConfigurationRequest.java index ae60a45f361..ff327742b4a 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CreateAutomaticDrConfigurationRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CreateAutomaticDrConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CreateDrPlanExecutionRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CreateDrPlanExecutionRequest.java index d2a8586ef0f..ab343a2445a 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CreateDrPlanExecutionRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CreateDrPlanExecutionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CreateDrPlanRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CreateDrPlanRequest.java index 99eb9f80672..892f8bee7df 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CreateDrPlanRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CreateDrPlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CreateDrProtectionGroupRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CreateDrProtectionGroupRequest.java index d4ba5f599e4..2afbb3f4d0a 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CreateDrProtectionGroupRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/CreateDrProtectionGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/DeleteAutomaticDrConfigurationRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/DeleteAutomaticDrConfigurationRequest.java index 1e67ade476b..62b1a400ba4 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/DeleteAutomaticDrConfigurationRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/DeleteAutomaticDrConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/DeleteDrPlanExecutionRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/DeleteDrPlanExecutionRequest.java index 6b16ad817d2..ea2e9ca65cf 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/DeleteDrPlanExecutionRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/DeleteDrPlanExecutionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/DeleteDrPlanRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/DeleteDrPlanRequest.java index b0a98104d1b..1b7081864f8 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/DeleteDrPlanRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/DeleteDrPlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/DeleteDrProtectionGroupRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/DeleteDrProtectionGroupRequest.java index 41d585c76b9..e5cec7ab76c 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/DeleteDrProtectionGroupRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/DeleteDrProtectionGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/DisassociateDrProtectionGroupRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/DisassociateDrProtectionGroupRequest.java index 66e9d402b02..19ece7ce2b5 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/DisassociateDrProtectionGroupRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/DisassociateDrProtectionGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/GetAutomaticDrConfigurationRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/GetAutomaticDrConfigurationRequest.java index c42b2e6a029..bffb88501e9 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/GetAutomaticDrConfigurationRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/GetAutomaticDrConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/GetDrPlanExecutionRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/GetDrPlanExecutionRequest.java index 944ddba3eb2..30d15d0a0d9 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/GetDrPlanExecutionRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/GetDrPlanExecutionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/GetDrPlanRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/GetDrPlanRequest.java index 4dd2bcb2a55..bdc4f62df67 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/GetDrPlanRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/GetDrPlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/GetDrProtectionGroupRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/GetDrProtectionGroupRequest.java index 37e2db46318..14446347133 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/GetDrProtectionGroupRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/GetDrProtectionGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/GetWorkRequestRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/GetWorkRequestRequest.java index 3d9ff81177c..68b7cf4a509 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/GetWorkRequestRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/IgnoreDrPlanExecutionRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/IgnoreDrPlanExecutionRequest.java index eee347373d5..7ad22343fef 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/IgnoreDrPlanExecutionRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/IgnoreDrPlanExecutionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListAutomaticDrConfigurationsRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListAutomaticDrConfigurationsRequest.java index 438a3c81ee1..8bd367f7e4d 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListAutomaticDrConfigurationsRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListAutomaticDrConfigurationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListDrPlanExecutionsRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListDrPlanExecutionsRequest.java index 494c3c21e37..b7507975ab6 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListDrPlanExecutionsRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListDrPlanExecutionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListDrPlansRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListDrPlansRequest.java index 4a911d5e14d..9530c90fc8d 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListDrPlansRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListDrPlansRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListDrProtectionGroupsRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListDrProtectionGroupsRequest.java index 2edfcff4fce..71aafe61473 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListDrProtectionGroupsRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListDrProtectionGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListWorkRequestErrorsRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListWorkRequestErrorsRequest.java index 26725e90d01..8f02341ebf0 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListWorkRequestLogsRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListWorkRequestLogsRequest.java index 886f7925477..c9c5f5c52b5 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListWorkRequestLogsRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListWorkRequestsRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListWorkRequestsRequest.java index 31f6bd681a6..933aa2c898c 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListWorkRequestsRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/PauseDrPlanExecutionRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/PauseDrPlanExecutionRequest.java index 58574c4fe71..ded29a2e469 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/PauseDrPlanExecutionRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/PauseDrPlanExecutionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/RefreshDrPlanRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/RefreshDrPlanRequest.java index 1c32f1c93f5..e56afccd731 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/RefreshDrPlanRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/RefreshDrPlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ResumeDrPlanExecutionRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ResumeDrPlanExecutionRequest.java index f2ae9542a0d..3de7faa2533 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ResumeDrPlanExecutionRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/ResumeDrPlanExecutionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/RetryDrPlanExecutionRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/RetryDrPlanExecutionRequest.java index 650ddde95ff..757b9feecdf 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/RetryDrPlanExecutionRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/RetryDrPlanExecutionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/UpdateAutomaticDrConfigurationRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/UpdateAutomaticDrConfigurationRequest.java index 196c936bbe8..b36a32bb9a8 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/UpdateAutomaticDrConfigurationRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/UpdateAutomaticDrConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/UpdateDrPlanExecutionRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/UpdateDrPlanExecutionRequest.java index 6bc048703eb..4840d6a2a36 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/UpdateDrPlanExecutionRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/UpdateDrPlanExecutionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/UpdateDrPlanRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/UpdateDrPlanRequest.java index 92a025d2016..3399d96c4a9 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/UpdateDrPlanRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/UpdateDrPlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/UpdateDrProtectionGroupRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/UpdateDrProtectionGroupRequest.java index 2b703cbcab1..ae9058f155a 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/UpdateDrProtectionGroupRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/UpdateDrProtectionGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/UpdateDrProtectionGroupRoleRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/UpdateDrProtectionGroupRoleRequest.java index 2235fdd9067..ad3c10b666c 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/UpdateDrProtectionGroupRoleRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/UpdateDrProtectionGroupRoleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/VerifyDrPlanRequest.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/VerifyDrPlanRequest.java index 4dbcd92364b..f796e146990 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/VerifyDrPlanRequest.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/requests/VerifyDrPlanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.requests; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/AssociateDrProtectionGroupResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/AssociateDrProtectionGroupResponse.java index 43f3a2a517e..7a215870d8f 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/AssociateDrProtectionGroupResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/AssociateDrProtectionGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CancelDrPlanExecutionResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CancelDrPlanExecutionResponse.java index d425277d1aa..da7276120b3 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CancelDrPlanExecutionResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CancelDrPlanExecutionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CancelWorkRequestResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CancelWorkRequestResponse.java index 0fd19d4bfcd..5656dd9b35e 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CancelWorkRequestResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ChangeDrProtectionGroupCompartmentResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ChangeDrProtectionGroupCompartmentResponse.java index a1030928009..1d48f7dc691 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ChangeDrProtectionGroupCompartmentResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ChangeDrProtectionGroupCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CreateAutomaticDrConfigurationResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CreateAutomaticDrConfigurationResponse.java index 546674d1014..953c261f4d7 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CreateAutomaticDrConfigurationResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CreateAutomaticDrConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CreateDrPlanExecutionResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CreateDrPlanExecutionResponse.java index eeb313abe6a..d24e0bcdb99 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CreateDrPlanExecutionResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CreateDrPlanExecutionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CreateDrPlanResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CreateDrPlanResponse.java index de079d2836e..9bc8b0e0560 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CreateDrPlanResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CreateDrPlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CreateDrProtectionGroupResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CreateDrProtectionGroupResponse.java index b3a25f7c238..b28e133ad76 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CreateDrProtectionGroupResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/CreateDrProtectionGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/DeleteAutomaticDrConfigurationResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/DeleteAutomaticDrConfigurationResponse.java index f805df31dd8..d9f04f437a2 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/DeleteAutomaticDrConfigurationResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/DeleteAutomaticDrConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/DeleteDrPlanExecutionResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/DeleteDrPlanExecutionResponse.java index bf7229cfd17..4a42279deb6 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/DeleteDrPlanExecutionResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/DeleteDrPlanExecutionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/DeleteDrPlanResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/DeleteDrPlanResponse.java index f48ad21499b..b32771fc097 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/DeleteDrPlanResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/DeleteDrPlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/DeleteDrProtectionGroupResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/DeleteDrProtectionGroupResponse.java index ea71ff2e250..fb34b68cf2d 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/DeleteDrProtectionGroupResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/DeleteDrProtectionGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/DisassociateDrProtectionGroupResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/DisassociateDrProtectionGroupResponse.java index 40c5e99e02c..c805354864e 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/DisassociateDrProtectionGroupResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/DisassociateDrProtectionGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/GetAutomaticDrConfigurationResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/GetAutomaticDrConfigurationResponse.java index e08a5927398..83e8d52db1d 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/GetAutomaticDrConfigurationResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/GetAutomaticDrConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/GetDrPlanExecutionResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/GetDrPlanExecutionResponse.java index 7d03ba6daff..f936cee3f5d 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/GetDrPlanExecutionResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/GetDrPlanExecutionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/GetDrPlanResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/GetDrPlanResponse.java index 9e5bf3e5b16..ed6cfcab665 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/GetDrPlanResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/GetDrPlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/GetDrProtectionGroupResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/GetDrProtectionGroupResponse.java index 3e4eed425c2..2dc0df69dc4 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/GetDrProtectionGroupResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/GetDrProtectionGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/GetWorkRequestResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/GetWorkRequestResponse.java index 20493ab435a..ad17b2dbc4b 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/GetWorkRequestResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/IgnoreDrPlanExecutionResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/IgnoreDrPlanExecutionResponse.java index f02c80d6aef..6399daf5e34 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/IgnoreDrPlanExecutionResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/IgnoreDrPlanExecutionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListAutomaticDrConfigurationsResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListAutomaticDrConfigurationsResponse.java index b8ea6717ded..aad1e32b504 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListAutomaticDrConfigurationsResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListAutomaticDrConfigurationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListDrPlanExecutionsResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListDrPlanExecutionsResponse.java index 073e9021cb0..5670802969d 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListDrPlanExecutionsResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListDrPlanExecutionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListDrPlansResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListDrPlansResponse.java index 164c930248c..ad1d2fb0cbf 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListDrPlansResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListDrPlansResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListDrProtectionGroupsResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListDrProtectionGroupsResponse.java index 2628472b3c7..69568c20562 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListDrProtectionGroupsResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListDrProtectionGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListWorkRequestErrorsResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListWorkRequestErrorsResponse.java index cb6367f05a9..c04285a3ae6 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListWorkRequestLogsResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListWorkRequestLogsResponse.java index 0395f9e4938..6feed05f69e 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListWorkRequestLogsResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListWorkRequestsResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListWorkRequestsResponse.java index dc493e30159..2d94c428da1 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListWorkRequestsResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/PauseDrPlanExecutionResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/PauseDrPlanExecutionResponse.java index cb531437103..5d412c048b3 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/PauseDrPlanExecutionResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/PauseDrPlanExecutionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/RefreshDrPlanResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/RefreshDrPlanResponse.java index 1a5c010f057..13de6781044 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/RefreshDrPlanResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/RefreshDrPlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ResumeDrPlanExecutionResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ResumeDrPlanExecutionResponse.java index c9e81f5518a..485021baa7f 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ResumeDrPlanExecutionResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/ResumeDrPlanExecutionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/RetryDrPlanExecutionResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/RetryDrPlanExecutionResponse.java index 60117a0a46c..ed7b3226a1a 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/RetryDrPlanExecutionResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/RetryDrPlanExecutionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/UpdateAutomaticDrConfigurationResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/UpdateAutomaticDrConfigurationResponse.java index 4c87302e0d6..75e62f56e28 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/UpdateAutomaticDrConfigurationResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/UpdateAutomaticDrConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/UpdateDrPlanExecutionResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/UpdateDrPlanExecutionResponse.java index 88db29e35c8..f76208f9ea7 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/UpdateDrPlanExecutionResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/UpdateDrPlanExecutionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/UpdateDrPlanResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/UpdateDrPlanResponse.java index 440ba64fcb0..c3df428486b 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/UpdateDrPlanResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/UpdateDrPlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/UpdateDrProtectionGroupResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/UpdateDrProtectionGroupResponse.java index c75d5899ebd..cc643cea90d 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/UpdateDrProtectionGroupResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/UpdateDrProtectionGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/UpdateDrProtectionGroupRoleResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/UpdateDrProtectionGroupRoleResponse.java index a77dc33c8bc..c5567266ac9 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/UpdateDrProtectionGroupRoleResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/UpdateDrProtectionGroupRoleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/VerifyDrPlanResponse.java b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/VerifyDrPlanResponse.java index 93ef65e91a0..9bf1520bcf3 100644 --- a/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/VerifyDrPlanResponse.java +++ b/bmc-disasterrecovery/src/main/java/com/oracle/bmc/disasterrecovery/responses/VerifyDrPlanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.disasterrecovery.responses; diff --git a/bmc-disasterrecovery/src/main/resources/com/oracle/bmc/disasterrecovery/client.properties b/bmc-disasterrecovery/src/main/resources/com/oracle/bmc/disasterrecovery/client.properties index 8293816e6d8..82a3a0dc005 100644 --- a/bmc-disasterrecovery/src/main/resources/com/oracle/bmc/disasterrecovery/client.properties +++ b/bmc-disasterrecovery/src/main/resources/com/oracle/bmc/disasterrecovery/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-distributeddatabase/pom.xml b/bmc-distributeddatabase/pom.xml index f6cca0b7f07..dbe9fedd0ab 100644 --- a/bmc-distributeddatabase/pom.xml +++ b/bmc-distributeddatabase/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-distributeddatabase @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbService.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbService.java index a946971a42e..9c960da0111 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbService.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbService.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbServiceAsync.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbServiceAsync.java index 0d53b595f55..0eb037d9e46 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbServiceAsync.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbServiceAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbServiceAsyncClient.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbServiceAsyncClient.java index 6a12ea2d639..0777f4bf655 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbServiceAsyncClient.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbServiceAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbServiceClient.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbServiceClient.java index 3a78b6819b2..68e78057072 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbServiceClient.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbServiceClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbServicePaginators.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbServicePaginators.java index acfab1468e8..acd800633f2 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbServicePaginators.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbServicePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbServiceWaiters.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbServiceWaiters.java index a2e752400ca..02cdc43ef09 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbServiceWaiters.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedAutonomousDbServiceWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointService.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointService.java index bbd3c10e528..f431643fde6 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointService.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointService.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointServiceAsync.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointServiceAsync.java index 9ceead877b4..56371a05886 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointServiceAsync.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointServiceAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointServiceAsyncClient.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointServiceAsyncClient.java index 145277a6bf1..7fdc17c7852 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointServiceAsyncClient.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointServiceAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointServiceClient.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointServiceClient.java index c60e13238a5..91db3fbc06f 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointServiceClient.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointServiceClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointServicePaginators.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointServicePaginators.java index bf0ea1d750f..74db2a1c21d 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointServicePaginators.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointServicePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointServiceWaiters.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointServiceWaiters.java index ef3be801b18..9d8964e28f9 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointServiceWaiters.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbPrivateEndpointServiceWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbService.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbService.java index 3be8f9ef524..38858502679 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbService.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbService.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbServiceAsync.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbServiceAsync.java index e4e88c27d43..e8514356682 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbServiceAsync.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbServiceAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbServiceAsyncClient.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbServiceAsyncClient.java index e30a8207557..c940b8dd7d5 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbServiceAsyncClient.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbServiceAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbServiceClient.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbServiceClient.java index abea02f6c57..6e943b838a0 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbServiceClient.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbServiceClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbServicePaginators.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbServicePaginators.java index adb8fbc1df9..bcbd21d083d 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbServicePaginators.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbServicePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbServiceWaiters.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbServiceWaiters.java index c3e4a28ab54..14b7d565760 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbServiceWaiters.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbServiceWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestService.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestService.java index 70dd4616ad7..7f13b18c242 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestService.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestService.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestServiceAsync.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestServiceAsync.java index 3793d01c06b..16afb1e0bc3 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestServiceAsync.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestServiceAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestServiceAsyncClient.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestServiceAsyncClient.java index 13192918213..599412cc66d 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestServiceAsyncClient.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestServiceAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestServiceClient.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestServiceClient.java index f1a6d140167..88595ea7f4a 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestServiceClient.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestServiceClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestServicePaginators.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestServicePaginators.java index b5958639aa7..d4fb3b8c9fe 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestServicePaginators.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestServicePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestServiceWaiters.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestServiceWaiters.java index 5c5e1d4ec6a..f5cfcab7af5 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestServiceWaiters.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/DistributedDbWorkRequestServiceWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ActionType.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ActionType.java index e100a77457c..fcabe86ff48 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ActionType.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/AddDistributedAutonomousDatabaseGdsControlNodeDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/AddDistributedAutonomousDatabaseGdsControlNodeDetails.java index 04c3976be61..c8e94bc6705 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/AddDistributedAutonomousDatabaseGdsControlNodeDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/AddDistributedAutonomousDatabaseGdsControlNodeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/AddDistributedDatabaseGdsControlNodeDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/AddDistributedDatabaseGdsControlNodeDetails.java index ec484f365f4..8f98d3089c3 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/AddDistributedDatabaseGdsControlNodeDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/AddDistributedDatabaseGdsControlNodeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CatalogPeerWithDedicatedInfra.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CatalogPeerWithDedicatedInfra.java index 9fbe9082dd6..75d458cf2ec 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CatalogPeerWithDedicatedInfra.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CatalogPeerWithDedicatedInfra.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CatalogPeerWithExadbXs.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CatalogPeerWithExadbXs.java index a9877e8f71a..af7d8533e44 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CatalogPeerWithExadbXs.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CatalogPeerWithExadbXs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ChangeDistributedAutonomousDatabaseCompartmentDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ChangeDistributedAutonomousDatabaseCompartmentDetails.java index 7e62b9f79ec..969eee704ba 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ChangeDistributedAutonomousDatabaseCompartmentDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ChangeDistributedAutonomousDatabaseCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ChangeDistributedAutonomousDbBackupConfigDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ChangeDistributedAutonomousDbBackupConfigDetails.java index 5c8686f8e7f..c5be58a1d27 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ChangeDistributedAutonomousDbBackupConfigDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ChangeDistributedAutonomousDbBackupConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ChangeDistributedDatabaseCompartmentDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ChangeDistributedDatabaseCompartmentDetails.java index eae23c9e5c8..84665da8cdf 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ChangeDistributedDatabaseCompartmentDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ChangeDistributedDatabaseCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ChangeDistributedDatabasePrivateEndpointCompartmentDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ChangeDistributedDatabasePrivateEndpointCompartmentDetails.java index ec573c5e4b1..0f323824d40 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ChangeDistributedDatabasePrivateEndpointCompartmentDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ChangeDistributedDatabasePrivateEndpointCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ChangeDistributedDbBackupConfigDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ChangeDistributedDbBackupConfigDetails.java index 8c6a604314c..9c5479b1087 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ChangeDistributedDbBackupConfigDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ChangeDistributedDbBackupConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ConfigureDistributedAutonomousDatabaseGsmsDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ConfigureDistributedAutonomousDatabaseGsmsDetails.java index d0145d51f2a..e791ccff98c 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ConfigureDistributedAutonomousDatabaseGsmsDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ConfigureDistributedAutonomousDatabaseGsmsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ConfigureDistributedDatabaseGsmsDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ConfigureDistributedDatabaseGsmsDetails.java index a7a5006eeff..124a930b0ef 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ConfigureDistributedDatabaseGsmsDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ConfigureDistributedDatabaseGsmsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateCatalogPeerWithDedicatedInfraDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateCatalogPeerWithDedicatedInfraDetails.java index 1d274ab0f6d..74a704a75af 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateCatalogPeerWithDedicatedInfraDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateCatalogPeerWithDedicatedInfraDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateCatalogPeerWithExadbXsDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateCatalogPeerWithExadbXsDetails.java index e503bbacac1..bf30a357dde 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateCatalogPeerWithExadbXsDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateCatalogPeerWithExadbXsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedAutonomousDatabaseCatalogDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedAutonomousDatabaseCatalogDetails.java index c88d5238a6d..cec9849a713 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedAutonomousDatabaseCatalogDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedAutonomousDatabaseCatalogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedAutonomousDatabaseCatalogWithDedicatedInfraDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedAutonomousDatabaseCatalogWithDedicatedInfraDetails.java index 7a538f58d5d..281c8a40018 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedAutonomousDatabaseCatalogWithDedicatedInfraDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedAutonomousDatabaseCatalogWithDedicatedInfraDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedAutonomousDatabaseDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedAutonomousDatabaseDetails.java index 27eecf9d922..6833b6623cc 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedAutonomousDatabaseDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedAutonomousDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedAutonomousDatabaseShardDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedAutonomousDatabaseShardDetails.java index 3ff902d6fb7..7ce641983f0 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedAutonomousDatabaseShardDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedAutonomousDatabaseShardDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedAutonomousDatabaseShardWithDedicatedInfraDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedAutonomousDatabaseShardWithDedicatedInfraDetails.java index 8c6b8d11e7c..7d120e17e3d 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedAutonomousDatabaseShardWithDedicatedInfraDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedAutonomousDatabaseShardWithDedicatedInfraDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabaseCatalogDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabaseCatalogDetails.java index 45880a4bdb7..31d1920198f 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabaseCatalogDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabaseCatalogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabaseCatalogWithExadbXsDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabaseCatalogWithExadbXsDetails.java index cdb200ea88e..b8403c6d922 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabaseCatalogWithExadbXsDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabaseCatalogWithExadbXsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabaseDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabaseDetails.java index a41ea138c29..da08e16d50a 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabaseDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabasePrivateEndpointDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabasePrivateEndpointDetails.java index d40ed458bc9..125668ca9d3 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabasePrivateEndpointDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabasePrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabaseShardDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabaseShardDetails.java index d98e04575bd..060e71fdb92 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabaseShardDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabaseShardDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabaseShardWithExadbXsDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabaseShardWithExadbXsDetails.java index 111a9869fbe..ad827e6ff5f 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabaseShardWithExadbXsDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateDistributedDatabaseShardWithExadbXsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateShardPeerWithDedicatedInfraDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateShardPeerWithDedicatedInfraDetails.java index 365c00deb6e..974029b5aba 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateShardPeerWithDedicatedInfraDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateShardPeerWithDedicatedInfraDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateShardPeerWithExadbXsDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateShardPeerWithExadbXsDetails.java index f2a349884f2..e25540483f3 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateShardPeerWithExadbXsDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/CreateShardPeerWithExadbXsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabase.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabase.java index c9a021a7af0..75e6f56eb4f 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabase.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseAssociatedWithPrivateEndpoint.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseAssociatedWithPrivateEndpoint.java index f333c85a854..8442ff82f69 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseAssociatedWithPrivateEndpoint.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseAssociatedWithPrivateEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseCatalog.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseCatalog.java index 8882366ab49..463f02496c6 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseCatalog.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseCatalog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseCatalogWithDedicatedInfra.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseCatalogWithDedicatedInfra.java index 5300eed958a..30d27c57c06 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseCatalogWithDedicatedInfra.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseCatalogWithDedicatedInfra.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseCollection.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseCollection.java index 1f2d55e789a..5bf74dd69ac 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseCollection.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseConnectionString.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseConnectionString.java index 207f77e9349..20a153d0e28 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseConnectionString.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseConnectionString.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseGsm.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseGsm.java index 40f7d3bf556..ac53e9641d9 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseGsm.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseGsm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseGsmImage.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseGsmImage.java index e4e23b619f3..d601decf5c2 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseGsmImage.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseGsmImage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseShard.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseShard.java index fc2139d6101..fc3b9629177 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseShard.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseShard.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseShardWithDedicatedInfra.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseShardWithDedicatedInfra.java index 768b9cdd8bd..d9943f46584 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseShardWithDedicatedInfra.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseShardWithDedicatedInfra.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseSummary.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseSummary.java index 72caf26d530..fb6504a9505 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseSummary.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDatabaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDbBackupConfig.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDbBackupConfig.java index 4ea405c84e7..c28a997d660 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDbBackupConfig.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDbBackupConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDbBackupDestination.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDbBackupDestination.java index 26786c23e1c..23f6157c75b 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDbBackupDestination.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDbBackupDestination.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDbMetadata.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDbMetadata.java index 5e97b4ecfb2..1b1bde88eaa 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDbMetadata.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDbMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDbProtectionMode.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDbProtectionMode.java index 1e21f36ed6b..36957cdf39b 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDbProtectionMode.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedAutonomousDbProtectionMode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabase.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabase.java index a2c82f81071..7d62b792531 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabase.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseAssociatedWithPrivateEndpoint.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseAssociatedWithPrivateEndpoint.java index da4a77ba811..1a87a2e1c5b 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseAssociatedWithPrivateEndpoint.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseAssociatedWithPrivateEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseCatalog.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseCatalog.java index cfbfc2da5d7..aad4e4cfadb 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseCatalog.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseCatalog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseCatalogWithExadbXs.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseCatalogWithExadbXs.java index 728182c050b..d2fbe23598f 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseCatalogWithExadbXs.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseCatalogWithExadbXs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseCollection.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseCollection.java index 4c0d093ccda..d954c9bd746 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseCollection.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseGsm.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseGsm.java index 3b8298df7b9..bed560078be 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseGsm.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseGsm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabasePrivateEndpoint.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabasePrivateEndpoint.java index 44015199919..0522e3cb6d7 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabasePrivateEndpoint.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabasePrivateEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabasePrivateEndpointCollection.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabasePrivateEndpointCollection.java index ce14d761493..1b9c7677e34 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabasePrivateEndpointCollection.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabasePrivateEndpointCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabasePrivateEndpointSummary.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabasePrivateEndpointSummary.java index 8e6521f20a1..0951a55da88 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabasePrivateEndpointSummary.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabasePrivateEndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseShard.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseShard.java index 4b4dd3f2895..8a8ecb2cd01 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseShard.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseShard.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseShardWithExadbXs.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseShardWithExadbXs.java index 7408befc310..3657fec6f31 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseShardWithExadbXs.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseShardWithExadbXs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseSummary.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseSummary.java index 979ca404dad..cf2f1e7ddf3 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseSummary.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDatabaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbBackupConfig.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbBackupConfig.java index 4c823c98bd5..614a126bc83 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbBackupConfig.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbBackupConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbBackupDestination.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbBackupDestination.java index 465ff1e4002..5e8df811ec3 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbBackupDestination.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbBackupDestination.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbConnectionString.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbConnectionString.java index 2518b1ab107..8ed71b54775 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbConnectionString.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbConnectionString.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbGsmImage.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbGsmImage.java index e1299f2204a..961c65b890d 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbGsmImage.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbGsmImage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbMetadata.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbMetadata.java index b7d8c60de17..67e7bd0b45e 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbMetadata.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbProtectionMode.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbProtectionMode.java index 93f02297847..cdaee4d1ba9 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbProtectionMode.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbProtectionMode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbTransportType.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbTransportType.java index f9a0f10ee7c..81734848bfe 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbTransportType.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/DistributedDbTransportType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/GenerateDistributedAutonomousDatabaseWalletDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/GenerateDistributedAutonomousDatabaseWalletDetails.java index 1364d18b7a5..392287301aa 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/GenerateDistributedAutonomousDatabaseWalletDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/GenerateDistributedAutonomousDatabaseWalletDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/GenerateDistributedDatabaseWalletDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/GenerateDistributedDatabaseWalletDetails.java index c28093e38e5..ff5f87ee12a 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/GenerateDistributedDatabaseWalletDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/GenerateDistributedDatabaseWalletDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/OperationStatus.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/OperationStatus.java index dcca79f0edd..eb19ab9a1d7 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/OperationStatus.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/OperationType.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/OperationType.java index f5ac00077d8..95fbd82d157 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/OperationType.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchDistributedAutonomousDatabaseDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchDistributedAutonomousDatabaseDetails.java index f3b2a1bddac..5904a4cbca7 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchDistributedAutonomousDatabaseDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchDistributedAutonomousDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchDistributedDatabaseDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchDistributedDatabaseDetails.java index 37a45b347f4..dd155ce945b 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchDistributedDatabaseDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchDistributedDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchInsertInstruction.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchInsertInstruction.java index 1b49980f433..1a12a7039d4 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchInsertInstruction.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchInsertInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchInstruction.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchInstruction.java index c5274a52531..679e0f5fce2 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchInstruction.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchMergeInstruction.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchMergeInstruction.java index a6e9d2c72a4..ba46c36bf93 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchMergeInstruction.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchMergeInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchRemoveInstruction.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchRemoveInstruction.java index e63b09ac1c1..a5188244eb6 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchRemoveInstruction.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/PatchRemoveInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ShardPeerWithDedicatedInfra.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ShardPeerWithDedicatedInfra.java index ca3499c669b..295f5356eef 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ShardPeerWithDedicatedInfra.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ShardPeerWithDedicatedInfra.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ShardPeerWithExadbXs.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ShardPeerWithExadbXs.java index 64f30fc355f..2546a4d6ad1 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ShardPeerWithExadbXs.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/ShardPeerWithExadbXs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/SortOrder.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/SortOrder.java index cfeef016930..e6ebc9f19ed 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/SortOrder.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/UpdateDistributedAutonomousDatabaseDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/UpdateDistributedAutonomousDatabaseDetails.java index 1ba65fcce76..db273512fcf 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/UpdateDistributedAutonomousDatabaseDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/UpdateDistributedAutonomousDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/UpdateDistributedDatabaseDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/UpdateDistributedDatabaseDetails.java index f58875d73d8..95e1a5afa37 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/UpdateDistributedDatabaseDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/UpdateDistributedDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/UpdateDistributedDatabasePrivateEndpointDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/UpdateDistributedDatabasePrivateEndpointDetails.java index 293c833190b..17e831802f8 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/UpdateDistributedDatabasePrivateEndpointDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/UpdateDistributedDatabasePrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/UploadDistributedAutonomousDatabaseSignedCertificateAndGenerateWalletDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/UploadDistributedAutonomousDatabaseSignedCertificateAndGenerateWalletDetails.java index 4c0ef0d2c1f..32175032062 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/UploadDistributedAutonomousDatabaseSignedCertificateAndGenerateWalletDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/UploadDistributedAutonomousDatabaseSignedCertificateAndGenerateWalletDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/UploadDistributedDatabaseSignedCertificateAndGenerateWalletDetails.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/UploadDistributedDatabaseSignedCertificateAndGenerateWalletDetails.java index 1a8ce2f2570..e0cf801b012 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/UploadDistributedDatabaseSignedCertificateAndGenerateWalletDetails.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/UploadDistributedDatabaseSignedCertificateAndGenerateWalletDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequest.java index c9f125d17d2..1a254c9dc6a 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestError.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestError.java index a2a37922b76..0c8d68e2930 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestError.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestErrorCollection.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestErrorCollection.java index 44d306e6f10..86fdfe80270 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestErrorCollection.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestLogEntry.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestLogEntry.java index d27ef908884..5eb1c946d95 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestLogEntry.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestLogEntryCollection.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestLogEntryCollection.java index b80eda5a0ba..b896ee2763b 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestLogEntryCollection.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestResource.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestResource.java index e5d11e5d24c..f7ae30b8b75 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestResource.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestResourceMetadataKey.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestResourceMetadataKey.java index 57613c62a0e..94dc2b618b8 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestResourceMetadataKey.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestSummary.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestSummary.java index 7806b516f96..0c4c3245746 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestSummary.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestSummaryCollection.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestSummaryCollection.java index 51213f2ac1f..c5b9c6f7105 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestSummaryCollection.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.model; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/AddDistributedAutonomousDatabaseGdsControlNodeRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/AddDistributedAutonomousDatabaseGdsControlNodeRequest.java index f8764713f7c..ca68aa2d60e 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/AddDistributedAutonomousDatabaseGdsControlNodeRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/AddDistributedAutonomousDatabaseGdsControlNodeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/AddDistributedDatabaseGdsControlNodeRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/AddDistributedDatabaseGdsControlNodeRequest.java index 4828e5be599..bc3b91177de 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/AddDistributedDatabaseGdsControlNodeRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/AddDistributedDatabaseGdsControlNodeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ChangeDistributedAutonomousDatabaseCompartmentRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ChangeDistributedAutonomousDatabaseCompartmentRequest.java index 309e95aa615..6ed3c92ebae 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ChangeDistributedAutonomousDatabaseCompartmentRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ChangeDistributedAutonomousDatabaseCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ChangeDistributedAutonomousDbBackupConfigRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ChangeDistributedAutonomousDbBackupConfigRequest.java index 7d0a1c99eb8..a32c0b59c87 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ChangeDistributedAutonomousDbBackupConfigRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ChangeDistributedAutonomousDbBackupConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ChangeDistributedDatabaseCompartmentRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ChangeDistributedDatabaseCompartmentRequest.java index 208dfc0fe18..5a34905b648 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ChangeDistributedDatabaseCompartmentRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ChangeDistributedDatabaseCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ChangeDistributedDatabasePrivateEndpointCompartmentRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ChangeDistributedDatabasePrivateEndpointCompartmentRequest.java index 9f23ae866c2..641f7a08264 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ChangeDistributedDatabasePrivateEndpointCompartmentRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ChangeDistributedDatabasePrivateEndpointCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ChangeDistributedDbBackupConfigRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ChangeDistributedDbBackupConfigRequest.java index 3b249a22544..7c9a945b145 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ChangeDistributedDbBackupConfigRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ChangeDistributedDbBackupConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ConfigureDistributedAutonomousDatabaseGsmsRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ConfigureDistributedAutonomousDatabaseGsmsRequest.java index ad7ab216a5d..50691da909d 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ConfigureDistributedAutonomousDatabaseGsmsRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ConfigureDistributedAutonomousDatabaseGsmsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ConfigureDistributedAutonomousDatabaseShardingRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ConfigureDistributedAutonomousDatabaseShardingRequest.java index 74926347756..064d0dea570 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ConfigureDistributedAutonomousDatabaseShardingRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ConfigureDistributedAutonomousDatabaseShardingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ConfigureDistributedDatabaseGsmsRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ConfigureDistributedDatabaseGsmsRequest.java index 2faa22cf00b..88ec252ead9 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ConfigureDistributedDatabaseGsmsRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ConfigureDistributedDatabaseGsmsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ConfigureDistributedDatabaseShardingRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ConfigureDistributedDatabaseShardingRequest.java index 3317a059fc1..9bb82bd3cc4 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ConfigureDistributedDatabaseShardingRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ConfigureDistributedDatabaseShardingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/CreateDistributedAutonomousDatabaseRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/CreateDistributedAutonomousDatabaseRequest.java index 32d3570c2c4..91b0a698738 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/CreateDistributedAutonomousDatabaseRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/CreateDistributedAutonomousDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/CreateDistributedDatabasePrivateEndpointRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/CreateDistributedDatabasePrivateEndpointRequest.java index c17dced8e05..28193fca83d 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/CreateDistributedDatabasePrivateEndpointRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/CreateDistributedDatabasePrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/CreateDistributedDatabaseRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/CreateDistributedDatabaseRequest.java index 3e66ff1fc19..ddcc0c25b04 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/CreateDistributedDatabaseRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/CreateDistributedDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/DeleteDistributedAutonomousDatabaseRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/DeleteDistributedAutonomousDatabaseRequest.java index f6d62504b4e..43a75084a55 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/DeleteDistributedAutonomousDatabaseRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/DeleteDistributedAutonomousDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/DeleteDistributedDatabasePrivateEndpointRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/DeleteDistributedDatabasePrivateEndpointRequest.java index 76cc91a412c..836ed5a314a 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/DeleteDistributedDatabasePrivateEndpointRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/DeleteDistributedDatabasePrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/DeleteDistributedDatabaseRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/DeleteDistributedDatabaseRequest.java index 8bf63b655cd..814e9ee889f 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/DeleteDistributedDatabaseRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/DeleteDistributedDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/DownloadDistributedAutonomousDatabaseGsmCertificateSigningRequestRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/DownloadDistributedAutonomousDatabaseGsmCertificateSigningRequestRequest.java index df424e6b975..b8fe6b13fb4 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/DownloadDistributedAutonomousDatabaseGsmCertificateSigningRequestRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/DownloadDistributedAutonomousDatabaseGsmCertificateSigningRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/DownloadDistributedDatabaseGsmCertificateSigningRequestRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/DownloadDistributedDatabaseGsmCertificateSigningRequestRequest.java index 3265efac6b7..d6e7ae7ed66 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/DownloadDistributedDatabaseGsmCertificateSigningRequestRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/DownloadDistributedDatabaseGsmCertificateSigningRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GenerateDistributedAutonomousDatabaseGsmCertificateSigningRequestRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GenerateDistributedAutonomousDatabaseGsmCertificateSigningRequestRequest.java index 4794addbedd..b41136b4610 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GenerateDistributedAutonomousDatabaseGsmCertificateSigningRequestRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GenerateDistributedAutonomousDatabaseGsmCertificateSigningRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GenerateDistributedAutonomousDatabaseWalletRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GenerateDistributedAutonomousDatabaseWalletRequest.java index 457c336fc6b..fd103da32e3 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GenerateDistributedAutonomousDatabaseWalletRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GenerateDistributedAutonomousDatabaseWalletRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GenerateDistributedDatabaseGsmCertificateSigningRequestRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GenerateDistributedDatabaseGsmCertificateSigningRequestRequest.java index fef8ea36872..95adfa76053 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GenerateDistributedDatabaseGsmCertificateSigningRequestRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GenerateDistributedDatabaseGsmCertificateSigningRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GenerateDistributedDatabaseWalletRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GenerateDistributedDatabaseWalletRequest.java index c590c1079a5..dabbae1b62c 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GenerateDistributedDatabaseWalletRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GenerateDistributedDatabaseWalletRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GetDistributedAutonomousDatabaseRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GetDistributedAutonomousDatabaseRequest.java index 386ea1e4d6b..faf54789ceb 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GetDistributedAutonomousDatabaseRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GetDistributedAutonomousDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GetDistributedDatabasePrivateEndpointRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GetDistributedDatabasePrivateEndpointRequest.java index 072f74c94af..e5b94d2d9be 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GetDistributedDatabasePrivateEndpointRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GetDistributedDatabasePrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GetDistributedDatabaseRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GetDistributedDatabaseRequest.java index 82b427658e8..a35d56a8cd4 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GetDistributedDatabaseRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GetDistributedDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GetWorkRequestRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GetWorkRequestRequest.java index 93047d69334..ff189352acc 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GetWorkRequestRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListDistributedAutonomousDatabasesRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListDistributedAutonomousDatabasesRequest.java index 5a4f048496d..fc1d7d7b678 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListDistributedAutonomousDatabasesRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListDistributedAutonomousDatabasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListDistributedDatabasePrivateEndpointsRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListDistributedDatabasePrivateEndpointsRequest.java index b972f2b01df..f755750ab51 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListDistributedDatabasePrivateEndpointsRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListDistributedDatabasePrivateEndpointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListDistributedDatabasesRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListDistributedDatabasesRequest.java index 0c106d65142..9dd4233b297 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListDistributedDatabasesRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListDistributedDatabasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListWorkRequestErrorsRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListWorkRequestErrorsRequest.java index 19fd922e57f..56e88dda852 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListWorkRequestLogsRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListWorkRequestLogsRequest.java index 44e3a55d3fa..98a26dc6273 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListWorkRequestLogsRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListWorkRequestsRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListWorkRequestsRequest.java index e4f61af010a..a8d6b801f12 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListWorkRequestsRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/PatchDistributedAutonomousDatabaseRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/PatchDistributedAutonomousDatabaseRequest.java index cde9a8d4b38..5197655816c 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/PatchDistributedAutonomousDatabaseRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/PatchDistributedAutonomousDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/PatchDistributedDatabaseRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/PatchDistributedDatabaseRequest.java index 591e31523c6..c8252c6b9fa 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/PatchDistributedDatabaseRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/PatchDistributedDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ReinstateProxyInstanceRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ReinstateProxyInstanceRequest.java index 0aded8619f9..96ddcb1f25b 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ReinstateProxyInstanceRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ReinstateProxyInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/RotateDistributedAutonomousDatabasePasswordsRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/RotateDistributedAutonomousDatabasePasswordsRequest.java index 72ccf1fd449..c05360b258b 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/RotateDistributedAutonomousDatabasePasswordsRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/RotateDistributedAutonomousDatabasePasswordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/RotateDistributedDatabasePasswordsRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/RotateDistributedDatabasePasswordsRequest.java index e90b62420c1..12270b128b2 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/RotateDistributedDatabasePasswordsRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/RotateDistributedDatabasePasswordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/StartDistributedAutonomousDatabaseRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/StartDistributedAutonomousDatabaseRequest.java index 161832cea05..097492c4a05 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/StartDistributedAutonomousDatabaseRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/StartDistributedAutonomousDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/StartDistributedDatabaseRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/StartDistributedDatabaseRequest.java index f2a42ac631e..77433040127 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/StartDistributedDatabaseRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/StartDistributedDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/StopDistributedAutonomousDatabaseRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/StopDistributedAutonomousDatabaseRequest.java index cdbb87557a3..36e013366e7 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/StopDistributedAutonomousDatabaseRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/StopDistributedAutonomousDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/StopDistributedDatabaseRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/StopDistributedDatabaseRequest.java index c7c74086b14..f51914db760 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/StopDistributedDatabaseRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/StopDistributedDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/UpdateDistributedAutonomousDatabaseRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/UpdateDistributedAutonomousDatabaseRequest.java index 5046473a3dd..01bc16d2cf6 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/UpdateDistributedAutonomousDatabaseRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/UpdateDistributedAutonomousDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/UpdateDistributedDatabasePrivateEndpointRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/UpdateDistributedDatabasePrivateEndpointRequest.java index 6ef00f65179..990acfefdd1 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/UpdateDistributedDatabasePrivateEndpointRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/UpdateDistributedDatabasePrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/UpdateDistributedDatabaseRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/UpdateDistributedDatabaseRequest.java index 8c7377ddac7..3f2009bcb0d 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/UpdateDistributedDatabaseRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/UpdateDistributedDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/UploadDistributedAutonomousDatabaseSignedCertificateAndGenerateWalletRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/UploadDistributedAutonomousDatabaseSignedCertificateAndGenerateWalletRequest.java index 69b77436cf5..884f00bb182 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/UploadDistributedAutonomousDatabaseSignedCertificateAndGenerateWalletRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/UploadDistributedAutonomousDatabaseSignedCertificateAndGenerateWalletRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/UploadDistributedDatabaseSignedCertificateAndGenerateWalletRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/UploadDistributedDatabaseSignedCertificateAndGenerateWalletRequest.java index 617c99bb600..dc8741500fa 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/UploadDistributedDatabaseSignedCertificateAndGenerateWalletRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/UploadDistributedDatabaseSignedCertificateAndGenerateWalletRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ValidateDistributedAutonomousDatabaseNetworkRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ValidateDistributedAutonomousDatabaseNetworkRequest.java index 530a943db8a..ae8f4984545 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ValidateDistributedAutonomousDatabaseNetworkRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ValidateDistributedAutonomousDatabaseNetworkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ValidateDistributedDatabaseNetworkRequest.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ValidateDistributedDatabaseNetworkRequest.java index 2f6162b15a2..31ee47e2573 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ValidateDistributedDatabaseNetworkRequest.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/requests/ValidateDistributedDatabaseNetworkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.requests; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/AddDistributedAutonomousDatabaseGdsControlNodeResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/AddDistributedAutonomousDatabaseGdsControlNodeResponse.java index 04d83dde376..499e266da86 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/AddDistributedAutonomousDatabaseGdsControlNodeResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/AddDistributedAutonomousDatabaseGdsControlNodeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/AddDistributedDatabaseGdsControlNodeResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/AddDistributedDatabaseGdsControlNodeResponse.java index 7b1a9282991..64d096f906b 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/AddDistributedDatabaseGdsControlNodeResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/AddDistributedDatabaseGdsControlNodeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ChangeDistributedAutonomousDatabaseCompartmentResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ChangeDistributedAutonomousDatabaseCompartmentResponse.java index 2e6eeb20e3b..9548dfc1cb3 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ChangeDistributedAutonomousDatabaseCompartmentResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ChangeDistributedAutonomousDatabaseCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ChangeDistributedAutonomousDbBackupConfigResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ChangeDistributedAutonomousDbBackupConfigResponse.java index b05a8d3f8be..95b260bb7c1 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ChangeDistributedAutonomousDbBackupConfigResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ChangeDistributedAutonomousDbBackupConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ChangeDistributedDatabaseCompartmentResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ChangeDistributedDatabaseCompartmentResponse.java index 1b19549a3e9..2bbc224344f 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ChangeDistributedDatabaseCompartmentResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ChangeDistributedDatabaseCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ChangeDistributedDatabasePrivateEndpointCompartmentResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ChangeDistributedDatabasePrivateEndpointCompartmentResponse.java index 025fd8bda5e..95eb40e8b06 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ChangeDistributedDatabasePrivateEndpointCompartmentResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ChangeDistributedDatabasePrivateEndpointCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ChangeDistributedDbBackupConfigResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ChangeDistributedDbBackupConfigResponse.java index bf01f12be5e..6a59a90a6f9 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ChangeDistributedDbBackupConfigResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ChangeDistributedDbBackupConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ConfigureDistributedAutonomousDatabaseGsmsResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ConfigureDistributedAutonomousDatabaseGsmsResponse.java index 05e140b2e29..8afc1588dc7 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ConfigureDistributedAutonomousDatabaseGsmsResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ConfigureDistributedAutonomousDatabaseGsmsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ConfigureDistributedAutonomousDatabaseShardingResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ConfigureDistributedAutonomousDatabaseShardingResponse.java index 14bbcd9704d..58e66c4b18c 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ConfigureDistributedAutonomousDatabaseShardingResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ConfigureDistributedAutonomousDatabaseShardingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ConfigureDistributedDatabaseGsmsResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ConfigureDistributedDatabaseGsmsResponse.java index 7be19a829bf..aa900557577 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ConfigureDistributedDatabaseGsmsResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ConfigureDistributedDatabaseGsmsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ConfigureDistributedDatabaseShardingResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ConfigureDistributedDatabaseShardingResponse.java index 961e47d1237..59d3a5fd056 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ConfigureDistributedDatabaseShardingResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ConfigureDistributedDatabaseShardingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/CreateDistributedAutonomousDatabaseResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/CreateDistributedAutonomousDatabaseResponse.java index 2736eaec2d5..9d5b2895604 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/CreateDistributedAutonomousDatabaseResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/CreateDistributedAutonomousDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/CreateDistributedDatabasePrivateEndpointResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/CreateDistributedDatabasePrivateEndpointResponse.java index 81bd4a04d62..48ad39ceb12 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/CreateDistributedDatabasePrivateEndpointResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/CreateDistributedDatabasePrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/CreateDistributedDatabaseResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/CreateDistributedDatabaseResponse.java index d98b4f9da85..ebcd91f07b4 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/CreateDistributedDatabaseResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/CreateDistributedDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/DeleteDistributedAutonomousDatabaseResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/DeleteDistributedAutonomousDatabaseResponse.java index f918ffcefb8..de24ff54567 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/DeleteDistributedAutonomousDatabaseResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/DeleteDistributedAutonomousDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/DeleteDistributedDatabasePrivateEndpointResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/DeleteDistributedDatabasePrivateEndpointResponse.java index ac5c4ca5c93..88b29f4c450 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/DeleteDistributedDatabasePrivateEndpointResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/DeleteDistributedDatabasePrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/DeleteDistributedDatabaseResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/DeleteDistributedDatabaseResponse.java index ca10e6de9e3..42fdf9a6e84 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/DeleteDistributedDatabaseResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/DeleteDistributedDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/DownloadDistributedAutonomousDatabaseGsmCertificateSigningRequestResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/DownloadDistributedAutonomousDatabaseGsmCertificateSigningRequestResponse.java index cf32159a7fa..1850c1729a1 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/DownloadDistributedAutonomousDatabaseGsmCertificateSigningRequestResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/DownloadDistributedAutonomousDatabaseGsmCertificateSigningRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/DownloadDistributedDatabaseGsmCertificateSigningRequestResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/DownloadDistributedDatabaseGsmCertificateSigningRequestResponse.java index 664dfc60c3f..4bb4133bc74 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/DownloadDistributedDatabaseGsmCertificateSigningRequestResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/DownloadDistributedDatabaseGsmCertificateSigningRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GenerateDistributedAutonomousDatabaseGsmCertificateSigningRequestResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GenerateDistributedAutonomousDatabaseGsmCertificateSigningRequestResponse.java index 5bb37e78a3c..259ef102b7e 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GenerateDistributedAutonomousDatabaseGsmCertificateSigningRequestResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GenerateDistributedAutonomousDatabaseGsmCertificateSigningRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GenerateDistributedAutonomousDatabaseWalletResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GenerateDistributedAutonomousDatabaseWalletResponse.java index e4306dbb768..440f3fbbda2 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GenerateDistributedAutonomousDatabaseWalletResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GenerateDistributedAutonomousDatabaseWalletResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GenerateDistributedDatabaseGsmCertificateSigningRequestResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GenerateDistributedDatabaseGsmCertificateSigningRequestResponse.java index 87d56bc52e2..63a4d446aab 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GenerateDistributedDatabaseGsmCertificateSigningRequestResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GenerateDistributedDatabaseGsmCertificateSigningRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GenerateDistributedDatabaseWalletResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GenerateDistributedDatabaseWalletResponse.java index 5b9117d26be..2731f36f8c6 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GenerateDistributedDatabaseWalletResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GenerateDistributedDatabaseWalletResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GetDistributedAutonomousDatabaseResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GetDistributedAutonomousDatabaseResponse.java index f121eb46356..9325ff64e5c 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GetDistributedAutonomousDatabaseResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GetDistributedAutonomousDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GetDistributedDatabasePrivateEndpointResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GetDistributedDatabasePrivateEndpointResponse.java index 0cfbc9fbec1..6c20d48c249 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GetDistributedDatabasePrivateEndpointResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GetDistributedDatabasePrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GetDistributedDatabaseResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GetDistributedDatabaseResponse.java index 3d9f96fab0a..3e4fe37b577 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GetDistributedDatabaseResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GetDistributedDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GetWorkRequestResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GetWorkRequestResponse.java index 6ea204389de..bbd793a15d5 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GetWorkRequestResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListDistributedAutonomousDatabasesResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListDistributedAutonomousDatabasesResponse.java index 841885f92c2..9b559e11000 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListDistributedAutonomousDatabasesResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListDistributedAutonomousDatabasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListDistributedDatabasePrivateEndpointsResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListDistributedDatabasePrivateEndpointsResponse.java index 4cb3059a01e..42868683045 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListDistributedDatabasePrivateEndpointsResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListDistributedDatabasePrivateEndpointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListDistributedDatabasesResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListDistributedDatabasesResponse.java index 55e8b7ad753..ff9f4ef8080 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListDistributedDatabasesResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListDistributedDatabasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListWorkRequestErrorsResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListWorkRequestErrorsResponse.java index 5d39e47545e..63962640a64 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListWorkRequestLogsResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListWorkRequestLogsResponse.java index a9b37b18b79..9dfabffb843 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListWorkRequestLogsResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListWorkRequestsResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListWorkRequestsResponse.java index 244e2d0ba81..3011c5cdc3d 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListWorkRequestsResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/PatchDistributedAutonomousDatabaseResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/PatchDistributedAutonomousDatabaseResponse.java index 227662843bb..a56105a00f9 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/PatchDistributedAutonomousDatabaseResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/PatchDistributedAutonomousDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/PatchDistributedDatabaseResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/PatchDistributedDatabaseResponse.java index 7f7121c8d4c..c1dea3df686 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/PatchDistributedDatabaseResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/PatchDistributedDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ReinstateProxyInstanceResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ReinstateProxyInstanceResponse.java index 29cc725632c..8c1079ab16a 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ReinstateProxyInstanceResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ReinstateProxyInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/RotateDistributedAutonomousDatabasePasswordsResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/RotateDistributedAutonomousDatabasePasswordsResponse.java index cee0659d537..924c2248a5a 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/RotateDistributedAutonomousDatabasePasswordsResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/RotateDistributedAutonomousDatabasePasswordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/RotateDistributedDatabasePasswordsResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/RotateDistributedDatabasePasswordsResponse.java index 41772d018d0..8feec76186e 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/RotateDistributedDatabasePasswordsResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/RotateDistributedDatabasePasswordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/StartDistributedAutonomousDatabaseResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/StartDistributedAutonomousDatabaseResponse.java index 00f6d6a480c..f452efa6093 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/StartDistributedAutonomousDatabaseResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/StartDistributedAutonomousDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/StartDistributedDatabaseResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/StartDistributedDatabaseResponse.java index a492623b517..503f2d37f7a 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/StartDistributedDatabaseResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/StartDistributedDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/StopDistributedAutonomousDatabaseResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/StopDistributedAutonomousDatabaseResponse.java index 9cf02ca7859..9064cd44a41 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/StopDistributedAutonomousDatabaseResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/StopDistributedAutonomousDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/StopDistributedDatabaseResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/StopDistributedDatabaseResponse.java index 4c997a0126c..a22d6263453 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/StopDistributedDatabaseResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/StopDistributedDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/UpdateDistributedAutonomousDatabaseResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/UpdateDistributedAutonomousDatabaseResponse.java index 5b6877f277c..0e92f4f0e24 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/UpdateDistributedAutonomousDatabaseResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/UpdateDistributedAutonomousDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/UpdateDistributedDatabasePrivateEndpointResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/UpdateDistributedDatabasePrivateEndpointResponse.java index 2a5870515f2..cb8e1eb0871 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/UpdateDistributedDatabasePrivateEndpointResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/UpdateDistributedDatabasePrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/UpdateDistributedDatabaseResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/UpdateDistributedDatabaseResponse.java index 4e1c72796e1..3496873b11b 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/UpdateDistributedDatabaseResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/UpdateDistributedDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/UploadDistributedAutonomousDatabaseSignedCertificateAndGenerateWalletResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/UploadDistributedAutonomousDatabaseSignedCertificateAndGenerateWalletResponse.java index f2f6ec16279..d72642f274b 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/UploadDistributedAutonomousDatabaseSignedCertificateAndGenerateWalletResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/UploadDistributedAutonomousDatabaseSignedCertificateAndGenerateWalletResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/UploadDistributedDatabaseSignedCertificateAndGenerateWalletResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/UploadDistributedDatabaseSignedCertificateAndGenerateWalletResponse.java index 7645ae25544..c1e5e09cf67 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/UploadDistributedDatabaseSignedCertificateAndGenerateWalletResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/UploadDistributedDatabaseSignedCertificateAndGenerateWalletResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ValidateDistributedAutonomousDatabaseNetworkResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ValidateDistributedAutonomousDatabaseNetworkResponse.java index 01e251dec32..6fb9294a0f2 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ValidateDistributedAutonomousDatabaseNetworkResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ValidateDistributedAutonomousDatabaseNetworkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ValidateDistributedDatabaseNetworkResponse.java b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ValidateDistributedDatabaseNetworkResponse.java index 4c1cc96696f..a864607cf58 100644 --- a/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ValidateDistributedDatabaseNetworkResponse.java +++ b/bmc-distributeddatabase/src/main/java/com/oracle/bmc/distributeddatabase/responses/ValidateDistributedDatabaseNetworkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.distributeddatabase.responses; diff --git a/bmc-distributeddatabase/src/main/resources/com/oracle/bmc/distributeddatabase/client.properties b/bmc-distributeddatabase/src/main/resources/com/oracle/bmc/distributeddatabase/client.properties index 4f407dddf3a..749a2873bba 100644 --- a/bmc-distributeddatabase/src/main/resources/com/oracle/bmc/distributeddatabase/client.properties +++ b/bmc-distributeddatabase/src/main/resources/com/oracle/bmc/distributeddatabase/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-dns/pom.xml b/bmc-dns/pom.xml index 19fd7581006..09992959251 100644 --- a/bmc-dns/pom.xml +++ b/bmc-dns/pom.xml @@ -5,7 +5,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml @@ -18,12 +18,12 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 com.oracle.oci.sdk oci-java-sdk-workrequests - 3.77.2 + 3.78.0 diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/Dns.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/Dns.java index 21dfa5d90e7..c7edf8cc4d5 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/Dns.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/Dns.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/DnsAsync.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/DnsAsync.java index 17b43988a44..e1174e4198e 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/DnsAsync.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/DnsAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/DnsAsyncClient.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/DnsAsyncClient.java index 7256ea74a20..cbf37bd5b05 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/DnsAsyncClient.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/DnsAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/DnsClient.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/DnsClient.java index e44f8db97f2..04e0f31ec44 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/DnsClient.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/DnsClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/DnsPaginators.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/DnsPaginators.java index 791500fc82d..6912c1f0450 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/DnsPaginators.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/DnsPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/DnsWaiters.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/DnsWaiters.java index 80fb72acfba..88ab654a97e 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/DnsWaiters.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/DnsWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/AttachedView.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/AttachedView.java index 3230020add8..21f99c3d61a 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/AttachedView.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/AttachedView.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/AttachedViewDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/AttachedViewDetails.java index 8a9728b0af0..66f69e2acb3 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/AttachedViewDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/AttachedViewDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ChangeResolverCompartmentDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ChangeResolverCompartmentDetails.java index 3fe9c82b52f..c1c94d7a807 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ChangeResolverCompartmentDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ChangeResolverCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ChangeSteeringPolicyCompartmentDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ChangeSteeringPolicyCompartmentDetails.java index d8846520390..0febd3d8b9c 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ChangeSteeringPolicyCompartmentDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ChangeSteeringPolicyCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ChangeTsigKeyCompartmentDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ChangeTsigKeyCompartmentDetails.java index c85e4ca33ab..2cd29460960 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ChangeTsigKeyCompartmentDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ChangeTsigKeyCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ChangeViewCompartmentDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ChangeViewCompartmentDetails.java index 4ae3523a8df..387e1790571 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ChangeViewCompartmentDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ChangeViewCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ChangeZoneCompartmentDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ChangeZoneCompartmentDetails.java index d800be85933..f0f6804d4b5 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ChangeZoneCompartmentDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ChangeZoneCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateMigratedDynectZoneDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateMigratedDynectZoneDetails.java index 3642c04e5e4..6321b2f16ab 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateMigratedDynectZoneDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateMigratedDynectZoneDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateResolverEndpointDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateResolverEndpointDetails.java index 1eafc301dc7..b21d1a936bd 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateResolverEndpointDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateResolverEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateResolverVnicEndpointDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateResolverVnicEndpointDetails.java index 26ca4130885..135911d14d8 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateResolverVnicEndpointDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateResolverVnicEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateSteeringPolicyAttachmentDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateSteeringPolicyAttachmentDetails.java index f9f3ce18cbb..f8a71178c98 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateSteeringPolicyAttachmentDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateSteeringPolicyAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateSteeringPolicyDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateSteeringPolicyDetails.java index f10028f882b..e63c6daa023 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateSteeringPolicyDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateSteeringPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateTsigKeyDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateTsigKeyDetails.java index bc6880ff8e2..5a752cf8103 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateTsigKeyDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateTsigKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateViewDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateViewDetails.java index 54c350adbda..bbccb13d526 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateViewDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateViewDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateZoneBaseDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateZoneBaseDetails.java index 30be095ccca..77cfe1d289c 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateZoneBaseDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateZoneBaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateZoneDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateZoneDetails.java index 917584fb6ec..c443dde7744 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateZoneDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/CreateZoneDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/DnssecConfig.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/DnssecConfig.java index f0a787b1ec9..8adde2a62e0 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/DnssecConfig.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/DnssecConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/DnssecDigestType.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/DnssecDigestType.java index afe8799d37e..73fff18a6bf 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/DnssecDigestType.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/DnssecDigestType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/DnssecKeyVersionDsData.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/DnssecKeyVersionDsData.java index 6cb1c70d8a1..a4b37af01d2 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/DnssecKeyVersionDsData.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/DnssecKeyVersionDsData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/DnssecSigningAlgorithm.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/DnssecSigningAlgorithm.java index 6cf131b912a..61cae859854 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/DnssecSigningAlgorithm.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/DnssecSigningAlgorithm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/DynectMigrationDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/DynectMigrationDetails.java index 53ab94bceac..e83ed0744bd 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/DynectMigrationDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/DynectMigrationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ExternalDownstream.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ExternalDownstream.java index e2052005e8e..570a96a7123 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ExternalDownstream.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ExternalDownstream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ExternalMaster.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ExternalMaster.java index 0b3aceecee8..adb7a5fdff6 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ExternalMaster.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ExternalMaster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/KskDnssecKeyVersion.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/KskDnssecKeyVersion.java index 1d4f01a08d8..3da22b987dc 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/KskDnssecKeyVersion.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/KskDnssecKeyVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/MigrationReplacement.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/MigrationReplacement.java index 0700d6a6f57..35df075a746 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/MigrationReplacement.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/MigrationReplacement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/Nameserver.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/Nameserver.java index b4083fec882..691a90d4872 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/Nameserver.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/Nameserver.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/PatchDomainRecordsDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/PatchDomainRecordsDetails.java index 2e88077a0d3..66d60cd940f 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/PatchDomainRecordsDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/PatchDomainRecordsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/PatchRRSetDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/PatchRRSetDetails.java index 7bef4f5d527..e8bc19af7c8 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/PatchRRSetDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/PatchRRSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/PatchZoneRecordsDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/PatchZoneRecordsDetails.java index 55726320ac0..ad7872c3fa7 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/PatchZoneRecordsDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/PatchZoneRecordsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/PromoteZoneDnssecKeyVersionDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/PromoteZoneDnssecKeyVersionDetails.java index 948555ca4ab..c1ff0fcea41 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/PromoteZoneDnssecKeyVersionDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/PromoteZoneDnssecKeyVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/RRSet.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/RRSet.java index 9b1666c7e72..a36155924f2 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/RRSet.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/RRSet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/Record.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/Record.java index 8317986b85c..e607dfe5d28 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/Record.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/Record.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/RecordCollection.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/RecordCollection.java index a8f4a2a897c..dcfd16f3ccd 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/RecordCollection.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/RecordCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/RecordDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/RecordDetails.java index 2ecaba300fc..26d01e7e053 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/RecordDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/RecordDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/RecordOperation.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/RecordOperation.java index ccadd8f4651..1b3b443d2e3 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/RecordOperation.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/RecordOperation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/Resolver.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/Resolver.java index d97a3728cd5..d3213969bf5 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/Resolver.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/Resolver.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverEndpoint.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverEndpoint.java index 4966e3428b6..c40add03e8a 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverEndpoint.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverEndpointSummary.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverEndpointSummary.java index 983c01ce4da..844835f9037 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverEndpointSummary.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverEndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverForwardRule.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverForwardRule.java index d96bbe0fd56..ecbdebfd3fe 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverForwardRule.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverForwardRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverForwardRuleDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverForwardRuleDetails.java index 3c92403bc7d..c65c571de55 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverForwardRuleDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverForwardRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverRule.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverRule.java index a9cb6bfccb3..c85ec11c935 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverRule.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverRuleDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverRuleDetails.java index fb44ae63d2f..04a23ca6c67 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverRuleDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverSummary.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverSummary.java index 68789a29c37..1bc4edea0e4 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverSummary.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverVnicEndpoint.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverVnicEndpoint.java index 5a13b0d3b0d..aa662c135f6 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverVnicEndpoint.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverVnicEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverVnicEndpointSummary.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverVnicEndpointSummary.java index ee05cced8ed..c8564f96e4b 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverVnicEndpointSummary.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ResolverVnicEndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/Scope.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/Scope.java index 0fca9f58a55..7ac9472a630 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/Scope.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/Scope.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SortOrder.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SortOrder.java index d4fcf45bd35..1dc561dc840 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SortOrder.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/StageZoneDnssecKeyVersionDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/StageZoneDnssecKeyVersionDetails.java index f23a97c6ec4..0703a8f366c 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/StageZoneDnssecKeyVersionDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/StageZoneDnssecKeyVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicy.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicy.java index 0db32c386f0..1bae28baf60 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicy.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyAnswer.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyAnswer.java index da6743e2277..23480f55581 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyAnswer.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyAnswer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyAttachment.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyAttachment.java index 0f1eb705751..a8dcbbe8e4f 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyAttachment.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyAttachmentSummary.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyAttachmentSummary.java index fc62c2f4b78..84e94e1fecc 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyAttachmentSummary.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyAttachmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyFilterAnswerData.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyFilterAnswerData.java index a327b40a5a4..e4d0162165a 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyFilterAnswerData.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyFilterAnswerData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyFilterRule.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyFilterRule.java index 37e477c0ce6..3bb434ae6a2 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyFilterRule.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyFilterRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyFilterRuleCase.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyFilterRuleCase.java index 053995c6a1a..71bf6f0448f 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyFilterRuleCase.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyFilterRuleCase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyHealthRule.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyHealthRule.java index 4bf673f02c9..d1c47c1e709 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyHealthRule.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyHealthRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyHealthRuleCase.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyHealthRuleCase.java index ce665723f40..4c1df32830d 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyHealthRuleCase.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyHealthRuleCase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyLimitRule.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyLimitRule.java index 872ffe326f1..b40279f5f8a 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyLimitRule.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyLimitRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyLimitRuleCase.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyLimitRuleCase.java index 765d9923ab8..fbb102f418f 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyLimitRuleCase.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyLimitRuleCase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyPriorityAnswerData.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyPriorityAnswerData.java index 91a6710512e..b223e0218f8 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyPriorityAnswerData.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyPriorityAnswerData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyPriorityRule.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyPriorityRule.java index c334f6a6ea5..10715fb5b5b 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyPriorityRule.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyPriorityRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyPriorityRuleCase.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyPriorityRuleCase.java index 1e1e622c243..82e4ac61508 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyPriorityRuleCase.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyPriorityRuleCase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyRule.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyRule.java index ac5429a3fd5..8e855e30218 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyRule.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicySummary.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicySummary.java index 9f541d76ec6..ffd9b275b8d 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicySummary.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyWeightedAnswerData.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyWeightedAnswerData.java index b62328a46f2..844fb4d869f 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyWeightedAnswerData.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyWeightedAnswerData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyWeightedRule.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyWeightedRule.java index 936e138cae0..934cba06e3d 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyWeightedRule.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyWeightedRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyWeightedRuleCase.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyWeightedRuleCase.java index aa3c69e6593..594589071a0 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyWeightedRuleCase.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/SteeringPolicyWeightedRuleCase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/TsigKey.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/TsigKey.java index f0da5667a9a..09006cd4614 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/TsigKey.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/TsigKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/TsigKeySummary.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/TsigKeySummary.java index 60abb68984f..7d043bb9e93 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/TsigKeySummary.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/TsigKeySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateDomainRecordsDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateDomainRecordsDetails.java index 3c487f01fce..04c130ec1eb 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateDomainRecordsDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateDomainRecordsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateRRSetDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateRRSetDetails.java index 6eace0a003c..ccb465abfbb 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateRRSetDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateRRSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateResolverDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateResolverDetails.java index eae6f65c702..942e74c055a 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateResolverDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateResolverDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateResolverEndpointDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateResolverEndpointDetails.java index 67975d4fc45..e75ae432e6a 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateResolverEndpointDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateResolverEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateResolverVnicEndpointDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateResolverVnicEndpointDetails.java index 88daae56282..635a61abfe2 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateResolverVnicEndpointDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateResolverVnicEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateSteeringPolicyAttachmentDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateSteeringPolicyAttachmentDetails.java index ce4fd290ae4..e971720618e 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateSteeringPolicyAttachmentDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateSteeringPolicyAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateSteeringPolicyDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateSteeringPolicyDetails.java index 658296af5e3..6df40ac650d 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateSteeringPolicyDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateSteeringPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateTsigKeyDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateTsigKeyDetails.java index f9d1fead7ba..d367962d171 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateTsigKeyDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateTsigKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateViewDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateViewDetails.java index 963788a5660..3cd8b92d6ba 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateViewDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateViewDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateZoneDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateZoneDetails.java index 3106e75a907..c13172d0d8f 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateZoneDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateZoneDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateZoneRecordsDetails.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateZoneRecordsDetails.java index ae42b1f3781..083d2957041 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateZoneRecordsDetails.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/UpdateZoneRecordsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/View.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/View.java index 6f17d28788d..004e9df31cf 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/View.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/View.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ViewSummary.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ViewSummary.java index 0555e1455b8..c1331d990d3 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ViewSummary.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ViewSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/Zone.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/Zone.java index f282350b701..1ed0b2b6a82 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/Zone.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/Zone.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ZoneDnssecState.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ZoneDnssecState.java index cb9ebb3bd8c..134a0ae4d1e 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ZoneDnssecState.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ZoneDnssecState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ZoneSummary.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ZoneSummary.java index 2c676a28cb7..128e1dcf0fe 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ZoneSummary.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ZoneSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ZoneTransferServer.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ZoneTransferServer.java index a1a2677c419..247dc08d514 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ZoneTransferServer.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ZoneTransferServer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ZskDnssecKeyVersion.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ZskDnssecKeyVersion.java index de9a74eec61..a84d3b56e9e 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ZskDnssecKeyVersion.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/model/ZskDnssecKeyVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.model; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ChangeResolverCompartmentRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ChangeResolverCompartmentRequest.java index e8b2569e7e6..ee57733733c 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ChangeResolverCompartmentRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ChangeResolverCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ChangeSteeringPolicyCompartmentRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ChangeSteeringPolicyCompartmentRequest.java index 4e04052b940..7b452b6526f 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ChangeSteeringPolicyCompartmentRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ChangeSteeringPolicyCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ChangeTsigKeyCompartmentRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ChangeTsigKeyCompartmentRequest.java index f37a1f19177..f844d1dc2e8 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ChangeTsigKeyCompartmentRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ChangeTsigKeyCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ChangeViewCompartmentRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ChangeViewCompartmentRequest.java index 47299c1e0a0..815b827dbfd 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ChangeViewCompartmentRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ChangeViewCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ChangeZoneCompartmentRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ChangeZoneCompartmentRequest.java index e7c9dd7f024..ac7b1cfe200 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ChangeZoneCompartmentRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ChangeZoneCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateResolverEndpointRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateResolverEndpointRequest.java index 22b3339b629..6ee0b3cc999 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateResolverEndpointRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateResolverEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateSteeringPolicyAttachmentRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateSteeringPolicyAttachmentRequest.java index 40c73008725..c1fee1166e3 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateSteeringPolicyAttachmentRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateSteeringPolicyAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateSteeringPolicyRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateSteeringPolicyRequest.java index 94bfa6f4ab7..03cf704ca34 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateSteeringPolicyRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateSteeringPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateTsigKeyRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateTsigKeyRequest.java index 54ee1187beb..b4c1854fce0 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateTsigKeyRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateTsigKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateViewRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateViewRequest.java index 997342c6457..7768b968962 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateViewRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateViewRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateZoneFromZoneFileRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateZoneFromZoneFileRequest.java index a50286be650..0f23d3008b7 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateZoneFromZoneFileRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateZoneFromZoneFileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateZoneRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateZoneRequest.java index 49d2f2c960b..464b8097ae7 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateZoneRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/CreateZoneRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteDomainRecordsRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteDomainRecordsRequest.java index 76ebf4ab582..efbbc8decf7 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteDomainRecordsRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteDomainRecordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteRRSetRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteRRSetRequest.java index 235c560fcad..afb39a49a08 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteRRSetRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteRRSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteResolverEndpointRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteResolverEndpointRequest.java index bfc73517fd1..81d2b8f78f4 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteResolverEndpointRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteResolverEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteSteeringPolicyAttachmentRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteSteeringPolicyAttachmentRequest.java index 92b84d17e51..b4867d776c8 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteSteeringPolicyAttachmentRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteSteeringPolicyAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteSteeringPolicyRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteSteeringPolicyRequest.java index a7d3060a2fc..9aa28b88acf 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteSteeringPolicyRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteSteeringPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteTsigKeyRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteTsigKeyRequest.java index ed46a876088..65df0f875a1 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteTsigKeyRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteTsigKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteViewRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteViewRequest.java index 7dfc9cc78a3..363de655cb3 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteViewRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteViewRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteZoneRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteZoneRequest.java index 803032b1f6d..6d47402fa5f 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteZoneRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/DeleteZoneRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetDomainRecordsRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetDomainRecordsRequest.java index 61be291c425..842863756cc 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetDomainRecordsRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetDomainRecordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetRRSetRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetRRSetRequest.java index cf43d85fa6c..90d430d3b83 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetRRSetRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetRRSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetResolverEndpointRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetResolverEndpointRequest.java index 0b3e0d615f9..b27530d1d23 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetResolverEndpointRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetResolverEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetResolverRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetResolverRequest.java index 0e8ac3155cc..c5a856e61f6 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetResolverRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetResolverRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetSteeringPolicyAttachmentRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetSteeringPolicyAttachmentRequest.java index 6d4ff1bc1eb..1ee3528f6ca 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetSteeringPolicyAttachmentRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetSteeringPolicyAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetSteeringPolicyRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetSteeringPolicyRequest.java index c5a5d8bf715..2a78c22a0dc 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetSteeringPolicyRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetSteeringPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetTsigKeyRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetTsigKeyRequest.java index 8655e6db619..452162d0de8 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetTsigKeyRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetTsigKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetViewRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetViewRequest.java index 07cf7334900..63afd1a1bed 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetViewRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetViewRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetZoneContentRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetZoneContentRequest.java index 6918efbf789..01cce58e8a5 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetZoneContentRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetZoneContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetZoneRecordsRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetZoneRecordsRequest.java index 85460e4cd8f..23687797207 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetZoneRecordsRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetZoneRecordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetZoneRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetZoneRequest.java index 1994c1f9380..7430cbfc1e1 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetZoneRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/GetZoneRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListResolverEndpointsRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListResolverEndpointsRequest.java index ee305a75416..b20643b2e4c 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListResolverEndpointsRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListResolverEndpointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListResolversRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListResolversRequest.java index c25a66eb409..34382ffe101 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListResolversRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListResolversRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListSteeringPoliciesRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListSteeringPoliciesRequest.java index cb1b37c9042..d5b05562e33 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListSteeringPoliciesRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListSteeringPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListSteeringPolicyAttachmentsRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListSteeringPolicyAttachmentsRequest.java index 5f2807a90b0..0656a538f5d 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListSteeringPolicyAttachmentsRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListSteeringPolicyAttachmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListTsigKeysRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListTsigKeysRequest.java index 515a4160f3a..c2022162471 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListTsigKeysRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListTsigKeysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListViewsRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListViewsRequest.java index a72f623e7b8..52c39982514 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListViewsRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListViewsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListZoneTransferServersRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListZoneTransferServersRequest.java index f005bf1e385..c67f4867c1c 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListZoneTransferServersRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListZoneTransferServersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListZonesRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListZonesRequest.java index fe29e634027..1846d58cd31 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListZonesRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/ListZonesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/PatchDomainRecordsRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/PatchDomainRecordsRequest.java index 786848d0f1a..dc90dd4f4c6 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/PatchDomainRecordsRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/PatchDomainRecordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/PatchRRSetRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/PatchRRSetRequest.java index 8cb163b1f0e..7ab1dc29f52 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/PatchRRSetRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/PatchRRSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/PatchZoneRecordsRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/PatchZoneRecordsRequest.java index 1ae0e5f0258..41204ad6ece 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/PatchZoneRecordsRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/PatchZoneRecordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/PromoteZoneDnssecKeyVersionRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/PromoteZoneDnssecKeyVersionRequest.java index 7f40674dd2a..2fc01c6938f 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/PromoteZoneDnssecKeyVersionRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/PromoteZoneDnssecKeyVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/StageZoneDnssecKeyVersionRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/StageZoneDnssecKeyVersionRequest.java index 081d72a9f98..0984e846d53 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/StageZoneDnssecKeyVersionRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/StageZoneDnssecKeyVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateDomainRecordsRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateDomainRecordsRequest.java index 0ca41e4d0e1..141b02ae6f7 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateDomainRecordsRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateDomainRecordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateRRSetRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateRRSetRequest.java index 0a47c56a06f..998adc54ac9 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateRRSetRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateRRSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateResolverEndpointRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateResolverEndpointRequest.java index e0a1eae4d17..da069de4f7a 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateResolverEndpointRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateResolverEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateResolverRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateResolverRequest.java index 67282b350a2..b1781f890b9 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateResolverRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateResolverRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateSteeringPolicyAttachmentRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateSteeringPolicyAttachmentRequest.java index 21dc81fd56a..6cda0f81830 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateSteeringPolicyAttachmentRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateSteeringPolicyAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateSteeringPolicyRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateSteeringPolicyRequest.java index 42333516375..e824a0ee4de 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateSteeringPolicyRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateSteeringPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateTsigKeyRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateTsigKeyRequest.java index 90db599b36b..a9e9525c4ce 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateTsigKeyRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateTsigKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateViewRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateViewRequest.java index 9fa56dcaddf..5d68a0f395c 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateViewRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateViewRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateZoneRecordsRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateZoneRecordsRequest.java index 6fae1069c04..aed6446b956 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateZoneRecordsRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateZoneRecordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateZoneRequest.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateZoneRequest.java index b6857d51260..541acfc10ce 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateZoneRequest.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/requests/UpdateZoneRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.requests; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ChangeResolverCompartmentResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ChangeResolverCompartmentResponse.java index f08dabd1f6a..15c6d15320c 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ChangeResolverCompartmentResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ChangeResolverCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ChangeSteeringPolicyCompartmentResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ChangeSteeringPolicyCompartmentResponse.java index a5da54ad4d4..1a51a02eb82 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ChangeSteeringPolicyCompartmentResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ChangeSteeringPolicyCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ChangeTsigKeyCompartmentResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ChangeTsigKeyCompartmentResponse.java index 6b24cf384db..174d800897d 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ChangeTsigKeyCompartmentResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ChangeTsigKeyCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ChangeViewCompartmentResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ChangeViewCompartmentResponse.java index 780a1d4643c..3de76daee0d 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ChangeViewCompartmentResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ChangeViewCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ChangeZoneCompartmentResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ChangeZoneCompartmentResponse.java index 22a78fcdecb..d18157f13a8 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ChangeZoneCompartmentResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ChangeZoneCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateResolverEndpointResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateResolverEndpointResponse.java index 290056aac83..8bb07a6155a 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateResolverEndpointResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateResolverEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateSteeringPolicyAttachmentResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateSteeringPolicyAttachmentResponse.java index a5967fbc16e..551cef66fd7 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateSteeringPolicyAttachmentResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateSteeringPolicyAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateSteeringPolicyResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateSteeringPolicyResponse.java index fb6458c671f..03ef32ef240 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateSteeringPolicyResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateSteeringPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateTsigKeyResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateTsigKeyResponse.java index 7b7a3f639de..36ac47b945f 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateTsigKeyResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateTsigKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateViewResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateViewResponse.java index 0755df83502..a43698ae82f 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateViewResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateViewResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateZoneFromZoneFileResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateZoneFromZoneFileResponse.java index 6c5d7531395..fc1f0c6ef24 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateZoneFromZoneFileResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateZoneFromZoneFileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateZoneResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateZoneResponse.java index 2a095561063..71170a75a1c 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateZoneResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/CreateZoneResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteDomainRecordsResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteDomainRecordsResponse.java index 1fc926add1b..911e40103b4 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteDomainRecordsResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteDomainRecordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteRRSetResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteRRSetResponse.java index 8ac75ac32d0..4c4e9298c43 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteRRSetResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteRRSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteResolverEndpointResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteResolverEndpointResponse.java index 64fb3513246..34a9ca44774 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteResolverEndpointResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteResolverEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteSteeringPolicyAttachmentResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteSteeringPolicyAttachmentResponse.java index d11f943c9f5..85303d3ea10 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteSteeringPolicyAttachmentResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteSteeringPolicyAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteSteeringPolicyResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteSteeringPolicyResponse.java index 3ff2cf6b915..a0c4334fa93 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteSteeringPolicyResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteSteeringPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteTsigKeyResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteTsigKeyResponse.java index 1e9703b221b..2e32c046f97 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteTsigKeyResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteTsigKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteViewResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteViewResponse.java index a7b884f0c7d..5528b975dd6 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteViewResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteViewResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteZoneResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteZoneResponse.java index f5d5ed03c86..6d1484fa269 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteZoneResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/DeleteZoneResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetDomainRecordsResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetDomainRecordsResponse.java index e2fd95b50e6..faefdaa3ecc 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetDomainRecordsResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetDomainRecordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetRRSetResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetRRSetResponse.java index 6b3343b58a8..f71d2225715 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetRRSetResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetRRSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetResolverEndpointResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetResolverEndpointResponse.java index 514a76bcf11..d8ada3eb158 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetResolverEndpointResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetResolverEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetResolverResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetResolverResponse.java index bfff9cb55dc..ff57241e669 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetResolverResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetResolverResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetSteeringPolicyAttachmentResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetSteeringPolicyAttachmentResponse.java index e59ba16a37e..dd1bc20737c 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetSteeringPolicyAttachmentResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetSteeringPolicyAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetSteeringPolicyResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetSteeringPolicyResponse.java index 0ba1a74451f..fdfefdeacdc 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetSteeringPolicyResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetSteeringPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetTsigKeyResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetTsigKeyResponse.java index c3b59ef97ba..65f034f9320 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetTsigKeyResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetTsigKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetViewResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetViewResponse.java index cde8e9405dc..8957e4cbdec 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetViewResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetViewResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetZoneContentResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetZoneContentResponse.java index a3e770a7281..8687f763d3e 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetZoneContentResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetZoneContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetZoneRecordsResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetZoneRecordsResponse.java index 8a308a87fc6..9056f98d57d 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetZoneRecordsResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetZoneRecordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetZoneResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetZoneResponse.java index 52ed936a10e..235ebc4ef94 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetZoneResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/GetZoneResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListResolverEndpointsResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListResolverEndpointsResponse.java index f83ea6e29bd..4588b8a215a 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListResolverEndpointsResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListResolverEndpointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListResolversResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListResolversResponse.java index 01b91c5eb2c..66eb14c9d06 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListResolversResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListResolversResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListSteeringPoliciesResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListSteeringPoliciesResponse.java index a952ff865cc..9698a700fe9 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListSteeringPoliciesResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListSteeringPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListSteeringPolicyAttachmentsResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListSteeringPolicyAttachmentsResponse.java index 4d272097d5b..2eede4d6e4c 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListSteeringPolicyAttachmentsResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListSteeringPolicyAttachmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListTsigKeysResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListTsigKeysResponse.java index e40a17d9774..26b632c047f 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListTsigKeysResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListTsigKeysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListViewsResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListViewsResponse.java index a21336a3f41..7b81b7350e3 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListViewsResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListViewsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListZoneTransferServersResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListZoneTransferServersResponse.java index c7e7fdcd7ee..b30dcd85086 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListZoneTransferServersResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListZoneTransferServersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListZonesResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListZonesResponse.java index f8fee55ff38..b1ab0b34de5 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListZonesResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/ListZonesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/PatchDomainRecordsResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/PatchDomainRecordsResponse.java index 17ea006c0a6..3a2f2eb26f6 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/PatchDomainRecordsResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/PatchDomainRecordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/PatchRRSetResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/PatchRRSetResponse.java index 8d98dd3d44f..4b06d4e3f41 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/PatchRRSetResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/PatchRRSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/PatchZoneRecordsResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/PatchZoneRecordsResponse.java index 16c05775246..94ddea96909 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/PatchZoneRecordsResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/PatchZoneRecordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/PromoteZoneDnssecKeyVersionResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/PromoteZoneDnssecKeyVersionResponse.java index d2cf64b5ac7..a2c61beaa0b 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/PromoteZoneDnssecKeyVersionResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/PromoteZoneDnssecKeyVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/StageZoneDnssecKeyVersionResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/StageZoneDnssecKeyVersionResponse.java index b0c60462446..a6c1a26dce9 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/StageZoneDnssecKeyVersionResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/StageZoneDnssecKeyVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateDomainRecordsResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateDomainRecordsResponse.java index bd557b62090..915b42038ba 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateDomainRecordsResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateDomainRecordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateRRSetResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateRRSetResponse.java index 5dce04b2313..a53cb4b727f 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateRRSetResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateRRSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateResolverEndpointResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateResolverEndpointResponse.java index 44dbc4aa3ec..df5960137e4 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateResolverEndpointResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateResolverEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateResolverResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateResolverResponse.java index 91bfc8d2ace..591bf6791d4 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateResolverResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateResolverResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateSteeringPolicyAttachmentResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateSteeringPolicyAttachmentResponse.java index 1f5f3c0e3ea..c19da6f72ec 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateSteeringPolicyAttachmentResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateSteeringPolicyAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateSteeringPolicyResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateSteeringPolicyResponse.java index 1c8dbad1ced..3ae03c47137 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateSteeringPolicyResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateSteeringPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateTsigKeyResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateTsigKeyResponse.java index 6f6700755b3..546bd3272eb 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateTsigKeyResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateTsigKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateViewResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateViewResponse.java index 869dd9858de..14d677aa675 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateViewResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateViewResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateZoneRecordsResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateZoneRecordsResponse.java index e3fc78c33cd..ab0892be0f6 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateZoneRecordsResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateZoneRecordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateZoneResponse.java b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateZoneResponse.java index 8605bac29ac..125345d883e 100644 --- a/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateZoneResponse.java +++ b/bmc-dns/src/main/java/com/oracle/bmc/dns/responses/UpdateZoneResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.dns.responses; diff --git a/bmc-dns/src/main/resources/com/oracle/bmc/dns/client.properties b/bmc-dns/src/main/resources/com/oracle/bmc/dns/client.properties index 21f55a1c57e..16549998561 100644 --- a/bmc-dns/src/main/resources/com/oracle/bmc/dns/client.properties +++ b/bmc-dns/src/main/resources/com/oracle/bmc/dns/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-email/pom.xml b/bmc-email/pom.xml index f8d2d9d49e6..976e657a4f1 100644 --- a/bmc-email/pom.xml +++ b/bmc-email/pom.xml @@ -5,7 +5,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml @@ -18,7 +18,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/Email.java b/bmc-email/src/main/java/com/oracle/bmc/email/Email.java index 1fc15c17013..dd4bcab6ad7 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/Email.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/Email.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/EmailAsync.java b/bmc-email/src/main/java/com/oracle/bmc/email/EmailAsync.java index 34ca4947884..6099b3d3574 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/EmailAsync.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/EmailAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/EmailAsyncClient.java b/bmc-email/src/main/java/com/oracle/bmc/email/EmailAsyncClient.java index a9471339121..1f91bbe0640 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/EmailAsyncClient.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/EmailAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/EmailClient.java b/bmc-email/src/main/java/com/oracle/bmc/email/EmailClient.java index e6aabf4932f..e2f480cce0a 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/EmailClient.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/EmailClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/EmailPaginators.java b/bmc-email/src/main/java/com/oracle/bmc/email/EmailPaginators.java index ccea98a9ed9..04d72917212 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/EmailPaginators.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/EmailPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/EmailWaiters.java b/bmc-email/src/main/java/com/oracle/bmc/email/EmailWaiters.java index c6a27c6b804..1dd6857c997 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/EmailWaiters.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/EmailWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/ActionType.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/ActionType.java index 6afff2dd368..f26644ead30 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/ActionType.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/AddEmailOutboundIpDetails.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/AddEmailOutboundIpDetails.java index b0363ae482c..e5d0cfc1bc8 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/AddEmailOutboundIpDetails.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/AddEmailOutboundIpDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/AddLockDetails.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/AddLockDetails.java index 7f2e4e7d374..74338e74002 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/AddLockDetails.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/AddLockDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/ChangeEmailDomainCompartmentDetails.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/ChangeEmailDomainCompartmentDetails.java index d04638a224e..7eae8a93eb7 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/ChangeEmailDomainCompartmentDetails.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/ChangeEmailDomainCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/ChangeEmailIpPoolCompartmentDetails.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/ChangeEmailIpPoolCompartmentDetails.java index d61c340bdcd..fe3faf5c4bb 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/ChangeEmailIpPoolCompartmentDetails.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/ChangeEmailIpPoolCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/ChangeSenderCompartmentDetails.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/ChangeSenderCompartmentDetails.java index 93b67546eb6..7912c3d631d 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/ChangeSenderCompartmentDetails.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/ChangeSenderCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/Configuration.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/Configuration.java index fa58b1ba5e8..cd07e9c9f54 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/Configuration.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/Configuration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateDkimDetails.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateDkimDetails.java index a2a80fcd5fa..2d7d00027b1 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateDkimDetails.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateDkimDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateEmailDomainDetails.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateEmailDomainDetails.java index 280b81e432b..b69dcefb855 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateEmailDomainDetails.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateEmailDomainDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateEmailIpPoolDetails.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateEmailIpPoolDetails.java index 28c34f29f39..9638d5e4336 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateEmailIpPoolDetails.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateEmailIpPoolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateEmailReturnPathDetails.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateEmailReturnPathDetails.java index 94f768f508d..cb7a9cb5c7e 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateEmailReturnPathDetails.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateEmailReturnPathDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateSenderDetails.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateSenderDetails.java index b761b8f037a..ad281419887 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateSenderDetails.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateSenderDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateSuppressionDetails.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateSuppressionDetails.java index 70283cb6bb6..aaf5f57e9df 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateSuppressionDetails.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/CreateSuppressionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/Dkim.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/Dkim.java index 5af19cd2eb4..e89a89b4168 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/Dkim.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/Dkim.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/DkimCollection.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/DkimCollection.java index fef9f177027..07790e5ad3d 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/DkimCollection.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/DkimCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/DkimSummary.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/DkimSummary.java index 0dca03507b3..f7d8c4ff615 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/DkimSummary.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/DkimSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/DomainVerificationStatusType.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/DomainVerificationStatusType.java index d876e7dde49..1eae9fd310e 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/DomainVerificationStatusType.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/DomainVerificationStatusType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailDomain.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailDomain.java index 4aa270ffd91..a64e1f769ac 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailDomain.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailDomain.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailDomainCollection.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailDomainCollection.java index 95fdba06ef9..d6a23dfb907 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailDomainCollection.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailDomainCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailDomainSummary.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailDomainSummary.java index d6d4e28d536..38679e64b21 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailDomainSummary.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailDomainSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailIpPool.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailIpPool.java index 4473dda83ec..ca18d4a01d0 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailIpPool.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailIpPool.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailIpPoolCollection.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailIpPoolCollection.java index 225a89ecd5d..f18f5db43a4 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailIpPoolCollection.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailIpPoolCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailIpPoolSummary.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailIpPoolSummary.java index 8c921a167a5..c522b488ef9 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailIpPoolSummary.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailIpPoolSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailOutboundIpCollection.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailOutboundIpCollection.java index a8b4ff56ef3..ab8fd7f2529 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailOutboundIpCollection.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailOutboundIpCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailOutboundIpSummary.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailOutboundIpSummary.java index 2dd027a3851..86e2d6b9bcf 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailOutboundIpSummary.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailOutboundIpSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailReturnPath.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailReturnPath.java index 30170a627c4..79c61f9a2dc 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailReturnPath.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailReturnPath.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailReturnPathCollection.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailReturnPathCollection.java index 39f39c4217d..6f11cc80697 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailReturnPathCollection.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailReturnPathCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailReturnPathSummary.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailReturnPathSummary.java index 3738e74535a..c2086a5bb0f 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailReturnPathSummary.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/EmailReturnPathSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/OperationStatus.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/OperationStatus.java index 929e94dbbe1..4bf0c749d60 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/OperationStatus.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/OperationType.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/OperationType.java index 43802ca8bde..b90540edc7f 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/OperationType.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/RemoveEmailOutboundIpDetails.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/RemoveEmailOutboundIpDetails.java index b06c42ac151..f08db85c578 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/RemoveEmailOutboundIpDetails.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/RemoveEmailOutboundIpDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/RemoveLockDetails.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/RemoveLockDetails.java index c24437ed542..ded99e8850f 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/RemoveLockDetails.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/RemoveLockDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/ResourceLock.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/ResourceLock.java index cb52f6208d6..f701f63a70d 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/ResourceLock.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/ResourceLock.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/Sender.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/Sender.java index 24cb46536cc..47e9aa37fd2 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/Sender.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/Sender.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/SenderSummary.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/SenderSummary.java index 74f1a4441f4..f0af09bcadd 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/SenderSummary.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/SenderSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/SortOrder.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/SortOrder.java index e46e04898f7..2a5c933b04f 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/SortOrder.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/Suppression.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/Suppression.java index 944ce18574c..04df6bfa584 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/Suppression.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/Suppression.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/SuppressionReason.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/SuppressionReason.java index 024dfe3579f..09d64848a1a 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/SuppressionReason.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/SuppressionReason.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/SuppressionSummary.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/SuppressionSummary.java index 31f455cb849..3fcd404cad2 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/SuppressionSummary.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/SuppressionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/UpdateDkimDetails.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/UpdateDkimDetails.java index 2471435ce71..ea9aecf593a 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/UpdateDkimDetails.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/UpdateDkimDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/UpdateEmailDomainDetails.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/UpdateEmailDomainDetails.java index 047b5e0badd..87425c0099a 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/UpdateEmailDomainDetails.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/UpdateEmailDomainDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/UpdateEmailIpPoolDetails.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/UpdateEmailIpPoolDetails.java index c3fe5ee1a74..93345cc437d 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/UpdateEmailIpPoolDetails.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/UpdateEmailIpPoolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/UpdateEmailReturnPathDetails.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/UpdateEmailReturnPathDetails.java index bf3956d3652..fb43ce9e662 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/UpdateEmailReturnPathDetails.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/UpdateEmailReturnPathDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/UpdateSenderDetails.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/UpdateSenderDetails.java index 678cf767729..5b36a2c2300 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/UpdateSenderDetails.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/UpdateSenderDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequest.java index 0931c10e64a..b2db4fe2716 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestError.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestError.java index 2f2f5604361..a6810205f7f 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestError.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestErrorCollection.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestErrorCollection.java index 8c79731c050..89a4d0df269 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestErrorCollection.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestLogEntry.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestLogEntry.java index 2fef3eeaf99..29f6c1ce09d 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestLogEntry.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestLogEntryCollection.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestLogEntryCollection.java index a454b2cd733..39ab4316306 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestLogEntryCollection.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestResource.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestResource.java index 73e3f192c1a..a545e562608 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestResource.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestSummary.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestSummary.java index a422ce995ba..d65c5a74c66 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestSummary.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestSummaryCollection.java b/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestSummaryCollection.java index 8fe7b93d588..3cf5c5388c7 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestSummaryCollection.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.model; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/AddEmailDomainLockRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/AddEmailDomainLockRequest.java index d5d461d8a6d..0788bc070d3 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/AddEmailDomainLockRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/AddEmailDomainLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/AddEmailIpPoolLockRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/AddEmailIpPoolLockRequest.java index aa22b1789e7..276657771e3 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/AddEmailIpPoolLockRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/AddEmailIpPoolLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/AddEmailOutboundIpRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/AddEmailOutboundIpRequest.java index 136ca6b7af2..42ea3b35865 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/AddEmailOutboundIpRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/AddEmailOutboundIpRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/AddReturnPathLockRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/AddReturnPathLockRequest.java index 3c94c371eab..6bd4dd2d2d2 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/AddReturnPathLockRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/AddReturnPathLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/AddSenderLockRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/AddSenderLockRequest.java index 3d019e486bb..50961da26ed 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/AddSenderLockRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/AddSenderLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ChangeEmailDomainCompartmentRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ChangeEmailDomainCompartmentRequest.java index 2c7cf01eb09..b2a06dcf242 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ChangeEmailDomainCompartmentRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ChangeEmailDomainCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ChangeEmailIpPoolCompartmentRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ChangeEmailIpPoolCompartmentRequest.java index 7a5bec5c8de..9e9770f4ae6 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ChangeEmailIpPoolCompartmentRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ChangeEmailIpPoolCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ChangeSenderCompartmentRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ChangeSenderCompartmentRequest.java index f67d942ba37..a2583295081 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ChangeSenderCompartmentRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ChangeSenderCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateDkimRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateDkimRequest.java index ad46c46421c..8a44b404f6f 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateDkimRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateDkimRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateEmailDomainRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateEmailDomainRequest.java index 04e2d8fdd46..078f6fff04d 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateEmailDomainRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateEmailDomainRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateEmailIpPoolRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateEmailIpPoolRequest.java index 12dee4e4798..b4c89a9b0a3 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateEmailIpPoolRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateEmailIpPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateEmailReturnPathRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateEmailReturnPathRequest.java index 05c618768b5..2550e11801d 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateEmailReturnPathRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateEmailReturnPathRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateSenderRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateSenderRequest.java index f4e12728f33..97a2e36c192 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateSenderRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateSenderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateSuppressionRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateSuppressionRequest.java index f78fc7432b2..6af3d3c68ec 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateSuppressionRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/CreateSuppressionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteDkimRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteDkimRequest.java index c48f93827db..a327dc9e96d 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteDkimRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteDkimRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteEmailDomainRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteEmailDomainRequest.java index 5401c35d282..75d66634c56 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteEmailDomainRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteEmailDomainRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteEmailIpPoolRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteEmailIpPoolRequest.java index b257e2edeff..3beb4ca0421 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteEmailIpPoolRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteEmailIpPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteEmailReturnPathRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteEmailReturnPathRequest.java index ad77c055b05..12c4dddb68d 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteEmailReturnPathRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteEmailReturnPathRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteSenderRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteSenderRequest.java index e77c9973071..6336eeea920 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteSenderRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteSenderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteSuppressionRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteSuppressionRequest.java index 297ad5887e4..702c857c66d 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteSuppressionRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/DeleteSuppressionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetDkimRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetDkimRequest.java index dfbacd62ca0..8427adef6f3 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetDkimRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetDkimRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetEmailConfigurationRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetEmailConfigurationRequest.java index 16203002863..c8802fa2042 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetEmailConfigurationRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetEmailConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetEmailDomainRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetEmailDomainRequest.java index 68eb41115ff..f24e7950404 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetEmailDomainRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetEmailDomainRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetEmailIpPoolRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetEmailIpPoolRequest.java index 74d3055e3b0..b0fc040730a 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetEmailIpPoolRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetEmailIpPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetEmailReturnPathRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetEmailReturnPathRequest.java index 461c278c87c..24039fb3381 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetEmailReturnPathRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetEmailReturnPathRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetSenderRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetSenderRequest.java index d257c6448d5..19456c0c21d 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetSenderRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetSenderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetSuppressionRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetSuppressionRequest.java index 4524851a3e2..1012e749ae1 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetSuppressionRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetSuppressionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetWorkRequestRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetWorkRequestRequest.java index f18ca08e87f..90f0496a7f7 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetWorkRequestRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListDkimsRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListDkimsRequest.java index 66d91b4ff10..8e6e7a07821 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListDkimsRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListDkimsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListEmailDomainsRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListEmailDomainsRequest.java index d0e35d0b145..76154e233f3 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListEmailDomainsRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListEmailDomainsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListEmailIpPoolsRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListEmailIpPoolsRequest.java index b684563a54a..4e35d037306 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListEmailIpPoolsRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListEmailIpPoolsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListEmailOutboundIpsRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListEmailOutboundIpsRequest.java index 375b34d812e..501e1afa8ff 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListEmailOutboundIpsRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListEmailOutboundIpsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListEmailReturnPathsRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListEmailReturnPathsRequest.java index cfb174c49c9..5fb6e57797c 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListEmailReturnPathsRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListEmailReturnPathsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListSendersRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListSendersRequest.java index b549d6a0e39..24227746625 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListSendersRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListSendersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListSuppressionsRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListSuppressionsRequest.java index 34a264c8f69..26ff883484f 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListSuppressionsRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListSuppressionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListWorkRequestErrorsRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListWorkRequestErrorsRequest.java index 31c5b68dab4..dccb60193e2 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListWorkRequestLogsRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListWorkRequestLogsRequest.java index 15b0cf434d5..31a583b9d60 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListWorkRequestLogsRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListWorkRequestsRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListWorkRequestsRequest.java index 81a4e6b1ed0..c0d59535423 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListWorkRequestsRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/RemoveEmailDomainLockRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/RemoveEmailDomainLockRequest.java index f737b3ea774..fd161720590 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/RemoveEmailDomainLockRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/RemoveEmailDomainLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/RemoveEmailIpPoolLockRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/RemoveEmailIpPoolLockRequest.java index 69f5c92ab47..c0b6a81bdc2 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/RemoveEmailIpPoolLockRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/RemoveEmailIpPoolLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/RemoveEmailOutboundIpRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/RemoveEmailOutboundIpRequest.java index c2e1a50ce49..a9e8e4abe1c 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/RemoveEmailOutboundIpRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/RemoveEmailOutboundIpRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/RemoveReturnPathLockRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/RemoveReturnPathLockRequest.java index 1d8efbd4053..958bb42dbcb 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/RemoveReturnPathLockRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/RemoveReturnPathLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/RemoveSenderLockRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/RemoveSenderLockRequest.java index 681b1e9cb07..e1560f8cc39 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/RemoveSenderLockRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/RemoveSenderLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/UpdateDkimRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/UpdateDkimRequest.java index 1983e5dcde7..1244ec4cd52 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/UpdateDkimRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/UpdateDkimRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/UpdateEmailDomainRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/UpdateEmailDomainRequest.java index e3d37586993..df8ec9ab193 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/UpdateEmailDomainRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/UpdateEmailDomainRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/UpdateEmailIpPoolRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/UpdateEmailIpPoolRequest.java index 67f631643f6..3a539686eab 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/UpdateEmailIpPoolRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/UpdateEmailIpPoolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/UpdateEmailReturnPathRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/UpdateEmailReturnPathRequest.java index 97f3cf3e023..04cbe16bcda 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/UpdateEmailReturnPathRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/UpdateEmailReturnPathRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/requests/UpdateSenderRequest.java b/bmc-email/src/main/java/com/oracle/bmc/email/requests/UpdateSenderRequest.java index cbce53b860d..53afd4dc07b 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/requests/UpdateSenderRequest.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/requests/UpdateSenderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.requests; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/AddEmailDomainLockResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/AddEmailDomainLockResponse.java index 8d735d393c6..24fc9b35837 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/AddEmailDomainLockResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/AddEmailDomainLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/AddEmailIpPoolLockResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/AddEmailIpPoolLockResponse.java index ceb2b174f49..f079b1aa277 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/AddEmailIpPoolLockResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/AddEmailIpPoolLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/AddEmailOutboundIpResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/AddEmailOutboundIpResponse.java index bd2be679b0a..7f9f93ade98 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/AddEmailOutboundIpResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/AddEmailOutboundIpResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/AddReturnPathLockResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/AddReturnPathLockResponse.java index ea486e744f8..ffc8c3e68c1 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/AddReturnPathLockResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/AddReturnPathLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/AddSenderLockResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/AddSenderLockResponse.java index 4732fee6d4d..5d025e3a11b 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/AddSenderLockResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/AddSenderLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ChangeEmailDomainCompartmentResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ChangeEmailDomainCompartmentResponse.java index aa73ccb161f..f78a1114ca7 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ChangeEmailDomainCompartmentResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ChangeEmailDomainCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ChangeEmailIpPoolCompartmentResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ChangeEmailIpPoolCompartmentResponse.java index 26b43cc6d8e..c4f3a87981d 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ChangeEmailIpPoolCompartmentResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ChangeEmailIpPoolCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ChangeSenderCompartmentResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ChangeSenderCompartmentResponse.java index c53d2f9062f..b1cf2b0dcfd 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ChangeSenderCompartmentResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ChangeSenderCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateDkimResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateDkimResponse.java index 43d7d166036..0c2b0178191 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateDkimResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateDkimResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateEmailDomainResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateEmailDomainResponse.java index b9fc8787d87..d63bd65de2c 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateEmailDomainResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateEmailDomainResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateEmailIpPoolResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateEmailIpPoolResponse.java index 71e32be16a8..85415c2797d 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateEmailIpPoolResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateEmailIpPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateEmailReturnPathResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateEmailReturnPathResponse.java index 80ebc5bd5b2..3b8104e12ad 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateEmailReturnPathResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateEmailReturnPathResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateSenderResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateSenderResponse.java index 95e37484259..4d9c7336b8e 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateSenderResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateSenderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateSuppressionResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateSuppressionResponse.java index d8991797dbc..4c0ab564640 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateSuppressionResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/CreateSuppressionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteDkimResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteDkimResponse.java index 58cc3b88aa4..ad01ebc496f 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteDkimResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteDkimResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteEmailDomainResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteEmailDomainResponse.java index 4925bed886c..d60a7e4ec64 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteEmailDomainResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteEmailDomainResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteEmailIpPoolResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteEmailIpPoolResponse.java index 36a0cfeefce..4e43718c815 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteEmailIpPoolResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteEmailIpPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteEmailReturnPathResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteEmailReturnPathResponse.java index 96e060a5649..2ca97715b0a 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteEmailReturnPathResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteEmailReturnPathResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteSenderResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteSenderResponse.java index bb4c459f37a..b85fdcbc332 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteSenderResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteSenderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteSuppressionResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteSuppressionResponse.java index 7a6573e58df..d5cc602fad1 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteSuppressionResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/DeleteSuppressionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetDkimResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetDkimResponse.java index d80f5a88a2e..6810246dd56 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetDkimResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetDkimResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetEmailConfigurationResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetEmailConfigurationResponse.java index e8a6e9983f5..e462a025e26 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetEmailConfigurationResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetEmailConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetEmailDomainResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetEmailDomainResponse.java index ede6c58297c..154d53123e0 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetEmailDomainResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetEmailDomainResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetEmailIpPoolResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetEmailIpPoolResponse.java index e6d675d0b21..c821b0cb9ef 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetEmailIpPoolResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetEmailIpPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetEmailReturnPathResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetEmailReturnPathResponse.java index 55755fbe083..fcffec11fc8 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetEmailReturnPathResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetEmailReturnPathResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetSenderResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetSenderResponse.java index ac122073a61..844da660963 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetSenderResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetSenderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetSuppressionResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetSuppressionResponse.java index 7c396de4dc3..e41d6dbd4e2 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetSuppressionResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetSuppressionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetWorkRequestResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetWorkRequestResponse.java index cb9cda024ae..a63cbcd4fd3 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetWorkRequestResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListDkimsResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListDkimsResponse.java index cb0c963559d..99e86efa071 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListDkimsResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListDkimsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListEmailDomainsResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListEmailDomainsResponse.java index d7df6eca1a0..773ae7a3c41 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListEmailDomainsResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListEmailDomainsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListEmailIpPoolsResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListEmailIpPoolsResponse.java index 85d42a8800f..d29678f263b 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListEmailIpPoolsResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListEmailIpPoolsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListEmailOutboundIpsResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListEmailOutboundIpsResponse.java index 91ecd55a726..d9eb38302e6 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListEmailOutboundIpsResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListEmailOutboundIpsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListEmailReturnPathsResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListEmailReturnPathsResponse.java index e3038298f11..5393450048c 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListEmailReturnPathsResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListEmailReturnPathsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListSendersResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListSendersResponse.java index fbe951eafc7..65eaa6b769d 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListSendersResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListSendersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListSuppressionsResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListSuppressionsResponse.java index 7f4c3e15305..7602d6b07db 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListSuppressionsResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListSuppressionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListWorkRequestErrorsResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListWorkRequestErrorsResponse.java index 0f5f0a41c25..164ac6fce46 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListWorkRequestLogsResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListWorkRequestLogsResponse.java index 15662c9c998..525ca05bc24 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListWorkRequestLogsResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListWorkRequestsResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListWorkRequestsResponse.java index 4ece77025cc..5532d41e85b 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListWorkRequestsResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/RemoveEmailDomainLockResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/RemoveEmailDomainLockResponse.java index b7cb89b46fd..1ea064317f9 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/RemoveEmailDomainLockResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/RemoveEmailDomainLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/RemoveEmailIpPoolLockResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/RemoveEmailIpPoolLockResponse.java index 20141a3ba16..9f5af0ad5c3 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/RemoveEmailIpPoolLockResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/RemoveEmailIpPoolLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/RemoveEmailOutboundIpResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/RemoveEmailOutboundIpResponse.java index 865e8eeaf71..b116a6877ed 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/RemoveEmailOutboundIpResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/RemoveEmailOutboundIpResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/RemoveReturnPathLockResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/RemoveReturnPathLockResponse.java index 3f18734e835..518989c27bf 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/RemoveReturnPathLockResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/RemoveReturnPathLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/RemoveSenderLockResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/RemoveSenderLockResponse.java index be91d12330d..4c120c6ed2e 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/RemoveSenderLockResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/RemoveSenderLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/UpdateDkimResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/UpdateDkimResponse.java index bf34661f884..5a9a2561e27 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/UpdateDkimResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/UpdateDkimResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/UpdateEmailDomainResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/UpdateEmailDomainResponse.java index f3b9531cff4..8b4645a79b5 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/UpdateEmailDomainResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/UpdateEmailDomainResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/UpdateEmailIpPoolResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/UpdateEmailIpPoolResponse.java index 809cd7d890c..666f40a994d 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/UpdateEmailIpPoolResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/UpdateEmailIpPoolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/UpdateEmailReturnPathResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/UpdateEmailReturnPathResponse.java index 1d3c677ad88..d309602d7fb 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/UpdateEmailReturnPathResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/UpdateEmailReturnPathResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/java/com/oracle/bmc/email/responses/UpdateSenderResponse.java b/bmc-email/src/main/java/com/oracle/bmc/email/responses/UpdateSenderResponse.java index fce4cb426dc..dcfaa79d7fb 100644 --- a/bmc-email/src/main/java/com/oracle/bmc/email/responses/UpdateSenderResponse.java +++ b/bmc-email/src/main/java/com/oracle/bmc/email/responses/UpdateSenderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.email.responses; diff --git a/bmc-email/src/main/resources/com/oracle/bmc/email/client.properties b/bmc-email/src/main/resources/com/oracle/bmc/email/client.properties index bc5099f02bf..57b0b2b56a3 100644 --- a/bmc-email/src/main/resources/com/oracle/bmc/email/client.properties +++ b/bmc-email/src/main/resources/com/oracle/bmc/email/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-emaildataplane/pom.xml b/bmc-emaildataplane/pom.xml index b306e07bd3e..a9819165f0f 100644 --- a/bmc-emaildataplane/pom.xml +++ b/bmc-emaildataplane/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-emaildataplane @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/EmailDP.java b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/EmailDP.java index 081b26759f2..2d4f582cf86 100644 --- a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/EmailDP.java +++ b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/EmailDP.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emaildataplane; diff --git a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/EmailDPAsync.java b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/EmailDPAsync.java index 16e9465e2db..c866b3da23c 100644 --- a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/EmailDPAsync.java +++ b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/EmailDPAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emaildataplane; diff --git a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/EmailDPAsyncClient.java b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/EmailDPAsyncClient.java index b48be87b671..1f59a818f6b 100644 --- a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/EmailDPAsyncClient.java +++ b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/EmailDPAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emaildataplane; diff --git a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/EmailDPClient.java b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/EmailDPClient.java index 06267d9f1d3..d6a21e7f143 100644 --- a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/EmailDPClient.java +++ b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/EmailDPClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emaildataplane; diff --git a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/EmailAddress.java b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/EmailAddress.java index 658218301d8..4019afdf85e 100644 --- a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/EmailAddress.java +++ b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/EmailAddress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emaildataplane.model; diff --git a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/EmailRawSubmittedResponse.java b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/EmailRawSubmittedResponse.java index 1c469076774..c62b3eff24d 100644 --- a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/EmailRawSubmittedResponse.java +++ b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/EmailRawSubmittedResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emaildataplane.model; diff --git a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/EmailSubmittedResponse.java b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/EmailSubmittedResponse.java index 0ca4ea24f06..d9106c76011 100644 --- a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/EmailSubmittedResponse.java +++ b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/EmailSubmittedResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emaildataplane.model; diff --git a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/Recipients.java b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/Recipients.java index 6852d4ab6df..b3228bf1bfa 100644 --- a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/Recipients.java +++ b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/Recipients.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emaildataplane.model; diff --git a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/Sender.java b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/Sender.java index 86be225c6e7..c84f1a6e37b 100644 --- a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/Sender.java +++ b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/Sender.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emaildataplane.model; diff --git a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/SubmitEmailDetails.java b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/SubmitEmailDetails.java index fac3c7464c6..82a6bdf1f62 100644 --- a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/SubmitEmailDetails.java +++ b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/model/SubmitEmailDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emaildataplane.model; diff --git a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/requests/SubmitEmailRequest.java b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/requests/SubmitEmailRequest.java index 39fd4ddfc52..d3f51630cde 100644 --- a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/requests/SubmitEmailRequest.java +++ b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/requests/SubmitEmailRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emaildataplane.requests; diff --git a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/requests/SubmitRawEmailRequest.java b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/requests/SubmitRawEmailRequest.java index becceacb094..ed4ba04304a 100644 --- a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/requests/SubmitRawEmailRequest.java +++ b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/requests/SubmitRawEmailRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emaildataplane.requests; diff --git a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/responses/SubmitEmailResponse.java b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/responses/SubmitEmailResponse.java index 340cee71505..19e8d688e06 100644 --- a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/responses/SubmitEmailResponse.java +++ b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/responses/SubmitEmailResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emaildataplane.responses; diff --git a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/responses/SubmitRawEmailResponse.java b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/responses/SubmitRawEmailResponse.java index 73c49c049dc..753b94a3cee 100644 --- a/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/responses/SubmitRawEmailResponse.java +++ b/bmc-emaildataplane/src/main/java/com/oracle/bmc/emaildataplane/responses/SubmitRawEmailResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emaildataplane.responses; diff --git a/bmc-emaildataplane/src/main/resources/com/oracle/bmc/emaildataplane/client.properties b/bmc-emaildataplane/src/main/resources/com/oracle/bmc/emaildataplane/client.properties index 800905d3653..24a154da071 100644 --- a/bmc-emaildataplane/src/main/resources/com/oracle/bmc/emaildataplane/client.properties +++ b/bmc-emaildataplane/src/main/resources/com/oracle/bmc/emaildataplane/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-emwarehouse/pom.xml b/bmc-emwarehouse/pom.xml index 69c4685d924..0c46e652d83 100644 --- a/bmc-emwarehouse/pom.xml +++ b/bmc-emwarehouse/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-emwarehouse @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehouse.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehouse.java index 335ebd143ef..350ab6243cd 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehouse.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehouse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehouseAsync.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehouseAsync.java index 1da07cf8301..826cabb87e1 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehouseAsync.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehouseAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehouseAsyncClient.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehouseAsyncClient.java index 28cd89a069e..256ac93cbbc 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehouseAsyncClient.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehouseAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehouseClient.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehouseClient.java index b2108680ed3..4fc518da601 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehouseClient.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehouseClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehousePaginators.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehousePaginators.java index 414afb66f49..78faff93c78 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehousePaginators.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehousePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehouseWaiters.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehouseWaiters.java index 4d94cc62b8e..f66bd94fb52 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehouseWaiters.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/EmWarehouseWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/ActionType.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/ActionType.java index ff80114648e..6293cf418f0 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/ActionType.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/ChangeEmWarehouseCompartmentDetails.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/ChangeEmWarehouseCompartmentDetails.java index ac8237453e6..2aa978bb0b4 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/ChangeEmWarehouseCompartmentDetails.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/ChangeEmWarehouseCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/CreateEmWarehouseDetails.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/CreateEmWarehouseDetails.java index eb50085b636..8d8715f5e0b 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/CreateEmWarehouseDetails.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/CreateEmWarehouseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EmInstancesDetails.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EmInstancesDetails.java index d78aaadabfa..ee07c06a711 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EmInstancesDetails.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EmInstancesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EmWarehouse.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EmWarehouse.java index 3b6adb9a090..e460f395fe5 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EmWarehouse.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EmWarehouse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EmWarehouseCollection.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EmWarehouseCollection.java index 3cbfbbe74e1..1dfc811053f 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EmWarehouseCollection.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EmWarehouseCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EmWarehouseSummary.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EmWarehouseSummary.java index 864bffa1013..71c72350050 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EmWarehouseSummary.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EmWarehouseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EtlRunCollection.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EtlRunCollection.java index 572e8cecf4a..21e50847b8e 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EtlRunCollection.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EtlRunCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EtlRunSummary.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EtlRunSummary.java index f38d6eff244..fb703a5bc22 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EtlRunSummary.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/EtlRunSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/OperationStatus.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/OperationStatus.java index 1c5e7080338..255d9ed9aad 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/OperationStatus.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/OperationType.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/OperationType.java index 5eb4f575410..0ad4e853eaa 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/OperationType.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/ResourceUsage.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/ResourceUsage.java index 92f5e3770b5..54196b67e62 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/ResourceUsage.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/ResourceUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/SortOrder.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/SortOrder.java index b413d62cfb5..f07fc696ea0 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/SortOrder.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/UpdateEmWarehouseDetails.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/UpdateEmWarehouseDetails.java index 0908b63e8c8..5712c489642 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/UpdateEmWarehouseDetails.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/UpdateEmWarehouseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequest.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequest.java index e94229c1ac5..df8c9bad823 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequest.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestError.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestError.java index d127a70f557..2627df013ec 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestError.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestErrorCollection.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestErrorCollection.java index 269d2febbdb..3c2a9c6f374 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestErrorCollection.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestLogEntry.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestLogEntry.java index 3d9ede2b123..fdb106b027e 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestLogEntry.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestLogEntryCollection.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestLogEntryCollection.java index a2b06aa1987..443d31dd4f0 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestLogEntryCollection.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestResource.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestResource.java index 76d84e2d8aa..1189df60dab 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestResource.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestResourceMetadataKey.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestResourceMetadataKey.java index 734fb84cce4..3bb8fcd2a6f 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestResourceMetadataKey.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestSummary.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestSummary.java index dbf01a6d6c2..ad07ef54979 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestSummary.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestSummaryCollection.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestSummaryCollection.java index 0e4497c9993..d47bd169744 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestSummaryCollection.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.model; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/CancelWorkRequestRequest.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/CancelWorkRequestRequest.java index 48e6c2eda05..85cabdbdf5d 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/CancelWorkRequestRequest.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.requests; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ChangeEmWarehouseCompartmentRequest.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ChangeEmWarehouseCompartmentRequest.java index 36a9b1d889e..bbdbe7cf819 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ChangeEmWarehouseCompartmentRequest.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ChangeEmWarehouseCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.requests; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/CreateEmWarehouseRequest.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/CreateEmWarehouseRequest.java index faf1988aa1f..ee54f19181a 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/CreateEmWarehouseRequest.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/CreateEmWarehouseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.requests; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/DeleteEmWarehouseRequest.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/DeleteEmWarehouseRequest.java index 0174e949af1..db54175e031 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/DeleteEmWarehouseRequest.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/DeleteEmWarehouseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.requests; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/GetEmWarehouseRequest.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/GetEmWarehouseRequest.java index b421018fe5d..0b099b32b48 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/GetEmWarehouseRequest.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/GetEmWarehouseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.requests; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/GetEmWarehouseResourceUsageRequest.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/GetEmWarehouseResourceUsageRequest.java index 080a76f7e12..25ea0345786 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/GetEmWarehouseResourceUsageRequest.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/GetEmWarehouseResourceUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.requests; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/GetWorkRequestRequest.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/GetWorkRequestRequest.java index 428780b934c..cd99a2edd5e 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/GetWorkRequestRequest.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.requests; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ListEmWarehousesRequest.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ListEmWarehousesRequest.java index 2ee6f1e86a7..0ca665b2a14 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ListEmWarehousesRequest.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ListEmWarehousesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.requests; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ListEtlRunsRequest.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ListEtlRunsRequest.java index af0ca4d4f5e..a8982f0527b 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ListEtlRunsRequest.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ListEtlRunsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.requests; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ListWorkRequestErrorsRequest.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ListWorkRequestErrorsRequest.java index 1058071fae1..105f2139353 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.requests; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ListWorkRequestLogsRequest.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ListWorkRequestLogsRequest.java index 24dab8982f5..f13885cc435 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ListWorkRequestLogsRequest.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.requests; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ListWorkRequestsRequest.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ListWorkRequestsRequest.java index 7b4ef4432cb..000da7c0239 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ListWorkRequestsRequest.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.requests; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/UpdateEmWarehouseRequest.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/UpdateEmWarehouseRequest.java index e2248b159b7..81ddc09a6c4 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/UpdateEmWarehouseRequest.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/requests/UpdateEmWarehouseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.requests; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/CancelWorkRequestResponse.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/CancelWorkRequestResponse.java index 8ffb59eb820..b32b8245cd4 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/CancelWorkRequestResponse.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.responses; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ChangeEmWarehouseCompartmentResponse.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ChangeEmWarehouseCompartmentResponse.java index 056905f464d..9aef5dfc12b 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ChangeEmWarehouseCompartmentResponse.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ChangeEmWarehouseCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.responses; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/CreateEmWarehouseResponse.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/CreateEmWarehouseResponse.java index 3ebe02387fd..998d1c219d6 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/CreateEmWarehouseResponse.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/CreateEmWarehouseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.responses; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/DeleteEmWarehouseResponse.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/DeleteEmWarehouseResponse.java index 697511109a3..0ed425b1106 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/DeleteEmWarehouseResponse.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/DeleteEmWarehouseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.responses; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/GetEmWarehouseResourceUsageResponse.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/GetEmWarehouseResourceUsageResponse.java index c31f160b47a..1fcedc39ae7 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/GetEmWarehouseResourceUsageResponse.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/GetEmWarehouseResourceUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.responses; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/GetEmWarehouseResponse.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/GetEmWarehouseResponse.java index 79b6887dc7e..a0b827a9f31 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/GetEmWarehouseResponse.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/GetEmWarehouseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.responses; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/GetWorkRequestResponse.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/GetWorkRequestResponse.java index e2a4225382e..ae70b96f693 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/GetWorkRequestResponse.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.responses; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ListEmWarehousesResponse.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ListEmWarehousesResponse.java index 8ed8ed5bb6f..a71cc14b48c 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ListEmWarehousesResponse.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ListEmWarehousesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.responses; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ListEtlRunsResponse.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ListEtlRunsResponse.java index 81a249733db..0337052d8a9 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ListEtlRunsResponse.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ListEtlRunsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.responses; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ListWorkRequestErrorsResponse.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ListWorkRequestErrorsResponse.java index 3d634c130a0..24295335bc7 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.responses; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ListWorkRequestLogsResponse.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ListWorkRequestLogsResponse.java index a63fdf382e1..7d91211458e 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ListWorkRequestLogsResponse.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.responses; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ListWorkRequestsResponse.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ListWorkRequestsResponse.java index 523f6054eb4..71c6eebd2df 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ListWorkRequestsResponse.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.responses; diff --git a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/UpdateEmWarehouseResponse.java b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/UpdateEmWarehouseResponse.java index 839f436aeaa..b13f4d304e8 100644 --- a/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/UpdateEmWarehouseResponse.java +++ b/bmc-emwarehouse/src/main/java/com/oracle/bmc/emwarehouse/responses/UpdateEmWarehouseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.emwarehouse.responses; diff --git a/bmc-emwarehouse/src/main/resources/com/oracle/bmc/emwarehouse/client.properties b/bmc-emwarehouse/src/main/resources/com/oracle/bmc/emwarehouse/client.properties index 0f7dff15c13..422d75b703a 100644 --- a/bmc-emwarehouse/src/main/resources/com/oracle/bmc/emwarehouse/client.properties +++ b/bmc-emwarehouse/src/main/resources/com/oracle/bmc/emwarehouse/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-encryption/pom.xml b/bmc-encryption/pom.xml index 642732492c0..b18c26a44f6 100644 --- a/bmc-encryption/pom.xml +++ b/bmc-encryption/pom.xml @@ -5,7 +5,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml @@ -18,17 +18,17 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 com.oracle.oci.sdk oci-java-sdk-common-httpclient - 3.77.2 + 3.78.0 com.oracle.oci.sdk oci-java-sdk-keymanagement - 3.77.2 + 3.78.0 com.fasterxml.jackson.core @@ -43,7 +43,7 @@ com.oracle.oci.sdk oci-java-sdk-common-httpclient-jersey - 3.77.2 + 3.78.0 test diff --git a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/KmsMasterKey.java b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/KmsMasterKey.java index e8964c0a073..44102b44559 100644 --- a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/KmsMasterKey.java +++ b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/KmsMasterKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.encryption; diff --git a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/KmsMasterKeyProvider.java b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/KmsMasterKeyProvider.java index 835070bbddb..709016f3e9a 100644 --- a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/KmsMasterKeyProvider.java +++ b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/KmsMasterKeyProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.encryption; diff --git a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/MasterKey.java b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/MasterKey.java index 6ed9f181abf..6f87424cefa 100644 --- a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/MasterKey.java +++ b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/MasterKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.encryption; diff --git a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/MasterKeyProvider.java b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/MasterKeyProvider.java index 81996588671..3e7cefd75e3 100644 --- a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/MasterKeyProvider.java +++ b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/MasterKeyProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.encryption; diff --git a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/OciCrypto.java b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/OciCrypto.java index 166626e28cb..23a07ec7d5e 100644 --- a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/OciCrypto.java +++ b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/OciCrypto.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.encryption; diff --git a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/OciCryptoInputStream.java b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/OciCryptoInputStream.java index a62f9f9373d..f46f7f607b6 100644 --- a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/OciCryptoInputStream.java +++ b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/OciCryptoInputStream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.encryption; diff --git a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/OciCryptoResult.java b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/OciCryptoResult.java index 5a5845bef8d..4c544632219 100644 --- a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/OciCryptoResult.java +++ b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/OciCryptoResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.encryption; diff --git a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/CipherHandler.java b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/CipherHandler.java index be1492d5c93..9ca5fc77bad 100644 --- a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/CipherHandler.java +++ b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/CipherHandler.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.encryption.internal; diff --git a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/CryptoAlgorithm.java b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/CryptoAlgorithm.java index 66e41a7f429..6e2ae41d412 100644 --- a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/CryptoAlgorithm.java +++ b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/CryptoAlgorithm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.encryption.internal; diff --git a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/DataKey.java b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/DataKey.java index bb1d2ec31f5..6064d25afb9 100644 --- a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/DataKey.java +++ b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/DataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.encryption.internal; diff --git a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/DecryptionHandler.java b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/DecryptionHandler.java index 8e3598e69d0..492e1c13553 100644 --- a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/DecryptionHandler.java +++ b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/DecryptionHandler.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.encryption.internal; diff --git a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/DecryptionStream.java b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/DecryptionStream.java index 4a98273697f..b68254d3cc0 100644 --- a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/DecryptionStream.java +++ b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/DecryptionStream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.encryption.internal; diff --git a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/EncryptionHandler.java b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/EncryptionHandler.java index 5952eb43e6c..ad68c7d248a 100644 --- a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/EncryptionHandler.java +++ b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/EncryptionHandler.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.encryption.internal; diff --git a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/EncryptionHeader.java b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/EncryptionHeader.java index a2f9ec18733..4c4142b3503 100644 --- a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/EncryptionHeader.java +++ b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/EncryptionHeader.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.encryption.internal; diff --git a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/EncryptionKey.java b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/EncryptionKey.java index 5818571aca8..53ac7c49e66 100644 --- a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/EncryptionKey.java +++ b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/EncryptionKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.encryption.internal; diff --git a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/EncryptionStream.java b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/EncryptionStream.java index 368e9550c59..b1982ea1e10 100644 --- a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/EncryptionStream.java +++ b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/EncryptionStream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.encryption.internal; diff --git a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/SerializeHeader.java b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/SerializeHeader.java index 761e64c3f4c..f685fc23908 100644 --- a/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/SerializeHeader.java +++ b/bmc-encryption/src/main/java/com/oracle/bmc/encryption/internal/SerializeHeader.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.encryption.internal; diff --git a/bmc-encryption/src/test/java/com/oracle/bmc/encryption/internal/SerializeHeaderTest.java b/bmc-encryption/src/test/java/com/oracle/bmc/encryption/internal/SerializeHeaderTest.java index d21078a02af..6579f6acbbe 100644 --- a/bmc-encryption/src/test/java/com/oracle/bmc/encryption/internal/SerializeHeaderTest.java +++ b/bmc-encryption/src/test/java/com/oracle/bmc/encryption/internal/SerializeHeaderTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.encryption.internal; diff --git a/bmc-enforcer-rules/pom.xml b/bmc-enforcer-rules/pom.xml index 32b38c936ad..927ebdf3fd0 100644 --- a/bmc-enforcer-rules/pom.xml +++ b/bmc-enforcer-rules/pom.xml @@ -6,7 +6,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 oci-java-sdk-enforcer-rules diff --git a/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/ArtifactMatcher.java b/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/ArtifactMatcher.java index 2ce8f1d1fbe..35c920f07fd 100644 --- a/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/ArtifactMatcher.java +++ b/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/ArtifactMatcher.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.enforcer.rule; diff --git a/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/ArtifactUtils.java b/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/ArtifactUtils.java index d3e14701619..21f3879239d 100644 --- a/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/ArtifactUtils.java +++ b/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/ArtifactUtils.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.enforcer.rule; diff --git a/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/NewObjectMapperDefinitionDeniedRule.java b/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/NewObjectMapperDefinitionDeniedRule.java index 319ffbbed37..2efa27eca22 100644 --- a/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/NewObjectMapperDefinitionDeniedRule.java +++ b/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/NewObjectMapperDefinitionDeniedRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.enforcer.rule; diff --git a/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/NoMixedOciJavaSdkVersionsException.java b/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/NoMixedOciJavaSdkVersionsException.java index 6144eaa355e..56eef5b1954 100644 --- a/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/NoMixedOciJavaSdkVersionsException.java +++ b/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/NoMixedOciJavaSdkVersionsException.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.enforcer.rule; diff --git a/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/NoMixedOciJavaSdkVersionsRule.java b/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/NoMixedOciJavaSdkVersionsRule.java index 12edb845b20..e38f92e3c82 100644 --- a/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/NoMixedOciJavaSdkVersionsRule.java +++ b/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/NoMixedOciJavaSdkVersionsRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.enforcer.rule; diff --git a/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/NoMultipleTransportLayersRule.java b/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/NoMultipleTransportLayersRule.java index b346f6265e0..c6fceed59c0 100644 --- a/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/NoMultipleTransportLayersRule.java +++ b/bmc-enforcer-rules/src/main/java/com/oracle/bmc/enforcer/rule/NoMultipleTransportLayersRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.enforcer.rule; diff --git a/bmc-enforcer-rules/src/test/java/com/oracle/bmc/enforcer/rule/NoMixedOciJavaSdkVersionsRuleTest.java b/bmc-enforcer-rules/src/test/java/com/oracle/bmc/enforcer/rule/NoMixedOciJavaSdkVersionsRuleTest.java index 5cbbb9b886e..205a8014457 100644 --- a/bmc-enforcer-rules/src/test/java/com/oracle/bmc/enforcer/rule/NoMixedOciJavaSdkVersionsRuleTest.java +++ b/bmc-enforcer-rules/src/test/java/com/oracle/bmc/enforcer/rule/NoMixedOciJavaSdkVersionsRuleTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.enforcer.rule; diff --git a/bmc-events/pom.xml b/bmc-events/pom.xml index 7b752bc94f9..71b8ef3cc07 100644 --- a/bmc-events/pom.xml +++ b/bmc-events/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-events @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/Events.java b/bmc-events/src/main/java/com/oracle/bmc/events/Events.java index 66c18b05123..d55b0823918 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/Events.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/Events.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/EventsAsync.java b/bmc-events/src/main/java/com/oracle/bmc/events/EventsAsync.java index 8e9d27bbe96..c6fa7dfd664 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/EventsAsync.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/EventsAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/EventsAsyncClient.java b/bmc-events/src/main/java/com/oracle/bmc/events/EventsAsyncClient.java index 3c682a9213c..8f501504b55 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/EventsAsyncClient.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/EventsAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/EventsClient.java b/bmc-events/src/main/java/com/oracle/bmc/events/EventsClient.java index c9ce77bde3b..30c7a4aa125 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/EventsClient.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/EventsClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/EventsPaginators.java b/bmc-events/src/main/java/com/oracle/bmc/events/EventsPaginators.java index a9ed2c55597..ddfbf7b0f9f 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/EventsPaginators.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/EventsPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/EventsWaiters.java b/bmc-events/src/main/java/com/oracle/bmc/events/EventsWaiters.java index c2bcf82823f..ab397f8e3dd 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/EventsWaiters.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/EventsWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/model/Action.java b/bmc-events/src/main/java/com/oracle/bmc/events/model/Action.java index 5884bb314a5..0cdec91c2e4 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/model/Action.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/model/Action.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.model; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/model/ActionDetails.java b/bmc-events/src/main/java/com/oracle/bmc/events/model/ActionDetails.java index e0c1eee2c83..4cc1332c454 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/model/ActionDetails.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/model/ActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.model; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/model/ActionDetailsList.java b/bmc-events/src/main/java/com/oracle/bmc/events/model/ActionDetailsList.java index f95d3843a1c..125f4c8fdd2 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/model/ActionDetailsList.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/model/ActionDetailsList.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.model; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/model/ActionList.java b/bmc-events/src/main/java/com/oracle/bmc/events/model/ActionList.java index 17b0623e8bf..e4ca8eee63d 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/model/ActionList.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/model/ActionList.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.model; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/model/ChangeRuleCompartmentDetails.java b/bmc-events/src/main/java/com/oracle/bmc/events/model/ChangeRuleCompartmentDetails.java index 0099fe8b29b..0bbca80b536 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/model/ChangeRuleCompartmentDetails.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/model/ChangeRuleCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.model; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/model/CreateFaaSActionDetails.java b/bmc-events/src/main/java/com/oracle/bmc/events/model/CreateFaaSActionDetails.java index 70721c0f234..af4f9b69489 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/model/CreateFaaSActionDetails.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/model/CreateFaaSActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.model; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/model/CreateNotificationServiceActionDetails.java b/bmc-events/src/main/java/com/oracle/bmc/events/model/CreateNotificationServiceActionDetails.java index 410804bad49..4f5b71938bd 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/model/CreateNotificationServiceActionDetails.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/model/CreateNotificationServiceActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.model; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/model/CreateRuleDetails.java b/bmc-events/src/main/java/com/oracle/bmc/events/model/CreateRuleDetails.java index a7354574031..cd12299e34d 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/model/CreateRuleDetails.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/model/CreateRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.model; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/model/CreateStreamingServiceActionDetails.java b/bmc-events/src/main/java/com/oracle/bmc/events/model/CreateStreamingServiceActionDetails.java index 5946510de04..926a3d5f31c 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/model/CreateStreamingServiceActionDetails.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/model/CreateStreamingServiceActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.model; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/model/FaaSAction.java b/bmc-events/src/main/java/com/oracle/bmc/events/model/FaaSAction.java index 4bb51816a5f..755f4720870 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/model/FaaSAction.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/model/FaaSAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.model; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/model/NotificationServiceAction.java b/bmc-events/src/main/java/com/oracle/bmc/events/model/NotificationServiceAction.java index 8a84543740c..f59714073ad 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/model/NotificationServiceAction.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/model/NotificationServiceAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.model; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/model/Rule.java b/bmc-events/src/main/java/com/oracle/bmc/events/model/Rule.java index cc6874934cf..2593d98b086 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/model/Rule.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/model/Rule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.model; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/model/RuleSummary.java b/bmc-events/src/main/java/com/oracle/bmc/events/model/RuleSummary.java index 1e0e57c4c56..6e9aa0de056 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/model/RuleSummary.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/model/RuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.model; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/model/StreamingServiceAction.java b/bmc-events/src/main/java/com/oracle/bmc/events/model/StreamingServiceAction.java index 89b2906cf52..335fefb47c1 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/model/StreamingServiceAction.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/model/StreamingServiceAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.model; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/model/UpdateRuleDetails.java b/bmc-events/src/main/java/com/oracle/bmc/events/model/UpdateRuleDetails.java index 2e9f767a4fa..90de0ea5c8c 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/model/UpdateRuleDetails.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/model/UpdateRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.model; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/requests/ChangeRuleCompartmentRequest.java b/bmc-events/src/main/java/com/oracle/bmc/events/requests/ChangeRuleCompartmentRequest.java index 9298448455e..233e0199ea1 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/requests/ChangeRuleCompartmentRequest.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/requests/ChangeRuleCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.requests; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/requests/CreateRuleRequest.java b/bmc-events/src/main/java/com/oracle/bmc/events/requests/CreateRuleRequest.java index ed71bb9f843..cd2655dd1f5 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/requests/CreateRuleRequest.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/requests/CreateRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.requests; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/requests/DeleteRuleRequest.java b/bmc-events/src/main/java/com/oracle/bmc/events/requests/DeleteRuleRequest.java index a8c529ec615..ba328e77827 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/requests/DeleteRuleRequest.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/requests/DeleteRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.requests; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/requests/GetRuleRequest.java b/bmc-events/src/main/java/com/oracle/bmc/events/requests/GetRuleRequest.java index 2c45b93dda2..0c9e5d4e7e3 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/requests/GetRuleRequest.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/requests/GetRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.requests; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/requests/ListRulesRequest.java b/bmc-events/src/main/java/com/oracle/bmc/events/requests/ListRulesRequest.java index 52717f28e59..6a291fb9ded 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/requests/ListRulesRequest.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/requests/ListRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.requests; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/requests/UpdateRuleRequest.java b/bmc-events/src/main/java/com/oracle/bmc/events/requests/UpdateRuleRequest.java index 2040d8d7a5e..275299476d2 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/requests/UpdateRuleRequest.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/requests/UpdateRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.requests; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/responses/ChangeRuleCompartmentResponse.java b/bmc-events/src/main/java/com/oracle/bmc/events/responses/ChangeRuleCompartmentResponse.java index 95dd274d088..babdea5862e 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/responses/ChangeRuleCompartmentResponse.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/responses/ChangeRuleCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.responses; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/responses/CreateRuleResponse.java b/bmc-events/src/main/java/com/oracle/bmc/events/responses/CreateRuleResponse.java index d6a96e06a6c..cacf625f4a9 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/responses/CreateRuleResponse.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/responses/CreateRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.responses; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/responses/DeleteRuleResponse.java b/bmc-events/src/main/java/com/oracle/bmc/events/responses/DeleteRuleResponse.java index f947d768468..e63b610ea75 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/responses/DeleteRuleResponse.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/responses/DeleteRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.responses; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/responses/GetRuleResponse.java b/bmc-events/src/main/java/com/oracle/bmc/events/responses/GetRuleResponse.java index fa0914d7f76..9f83f643060 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/responses/GetRuleResponse.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/responses/GetRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.responses; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/responses/ListRulesResponse.java b/bmc-events/src/main/java/com/oracle/bmc/events/responses/ListRulesResponse.java index 7aac1a6dab0..a323c232a14 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/responses/ListRulesResponse.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/responses/ListRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.responses; diff --git a/bmc-events/src/main/java/com/oracle/bmc/events/responses/UpdateRuleResponse.java b/bmc-events/src/main/java/com/oracle/bmc/events/responses/UpdateRuleResponse.java index 91e52ccaaa9..08c8a857826 100644 --- a/bmc-events/src/main/java/com/oracle/bmc/events/responses/UpdateRuleResponse.java +++ b/bmc-events/src/main/java/com/oracle/bmc/events/responses/UpdateRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.events.responses; diff --git a/bmc-events/src/main/resources/com/oracle/bmc/events/client.properties b/bmc-events/src/main/resources/com/oracle/bmc/events/client.properties index 41b95040562..28c0827995b 100644 --- a/bmc-events/src/main/resources/com/oracle/bmc/events/client.properties +++ b/bmc-events/src/main/resources/com/oracle/bmc/events/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-examples/native-gradle-example/gradle/wrapper/gradle-wrapper.properties b/bmc-examples/native-gradle-example/gradle/wrapper/gradle-wrapper.properties index dd09e346d43..e0c98de43b6 100644 --- a/bmc-examples/native-gradle-example/gradle/wrapper/gradle-wrapper.properties +++ b/bmc-examples/native-gradle-example/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-examples/pom.xml b/bmc-examples/pom.xml index 980e3ac7e6f..d4085f53607 100644 --- a/bmc-examples/pom.xml +++ b/bmc-examples/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-examples @@ -71,14 +71,14 @@ com.oracle.oci.sdk oci-java-sdk-bom - 3.77.2 + 3.78.0 pom import com.oracle.oci.sdk oci-java-sdk-common-httpclient-jersey - 3.77.2 + 3.78.0 pom import diff --git a/bmc-examples/src/main/java/AddCustomHeadersExample.java b/bmc-examples/src/main/java/AddCustomHeadersExample.java index e59f3503fce..5db4d5ca2ba 100644 --- a/bmc-examples/src/main/java/AddCustomHeadersExample.java +++ b/bmc-examples/src/main/java/AddCustomHeadersExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/AnnouncementsServiceExample.java b/bmc-examples/src/main/java/AnnouncementsServiceExample.java index 303dd477eed..500f97c96c5 100644 --- a/bmc-examples/src/main/java/AnnouncementsServiceExample.java +++ b/bmc-examples/src/main/java/AnnouncementsServiceExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ApacheConnectorPropertiesExample.java b/bmc-examples/src/main/java/ApacheConnectorPropertiesExample.java index 0c34d3bbb89..f3e50b44504 100644 --- a/bmc-examples/src/main/java/ApacheConnectorPropertiesExample.java +++ b/bmc-examples/src/main/java/ApacheConnectorPropertiesExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ApiGatewayExample.java b/bmc-examples/src/main/java/ApiGatewayExample.java index 4dc230f3d19..289a8c0a4a9 100644 --- a/bmc-examples/src/main/java/ApiGatewayExample.java +++ b/bmc-examples/src/main/java/ApiGatewayExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.util.ArrayList; diff --git a/bmc-examples/src/main/java/AuthenticationPolicyExample.java b/bmc-examples/src/main/java/AuthenticationPolicyExample.java index 0926b55695f..7aa8c91511a 100644 --- a/bmc-examples/src/main/java/AuthenticationPolicyExample.java +++ b/bmc-examples/src/main/java/AuthenticationPolicyExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/AutoScalingExample.java b/bmc-examples/src/main/java/AutoScalingExample.java index 96eba74d53d..46266c7a7e5 100644 --- a/bmc-examples/src/main/java/AutoScalingExample.java +++ b/bmc-examples/src/main/java/AutoScalingExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/AutonomousContainerDatabaseExample.java b/bmc-examples/src/main/java/AutonomousContainerDatabaseExample.java index c869020d052..a6820ab0da4 100644 --- a/bmc-examples/src/main/java/AutonomousContainerDatabaseExample.java +++ b/bmc-examples/src/main/java/AutonomousContainerDatabaseExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/AutonomousDataWarehouseExample.java b/bmc-examples/src/main/java/AutonomousDataWarehouseExample.java index 9bb5bd3aa76..38f846a7b78 100644 --- a/bmc-examples/src/main/java/AutonomousDataWarehouseExample.java +++ b/bmc-examples/src/main/java/AutonomousDataWarehouseExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/AutonomousDatabaseBackupExample.java b/bmc-examples/src/main/java/AutonomousDatabaseBackupExample.java index b13169f06c4..267ca8b9f1f 100644 --- a/bmc-examples/src/main/java/AutonomousDatabaseBackupExample.java +++ b/bmc-examples/src/main/java/AutonomousDatabaseBackupExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/AutonomousDatabaseCrossRegionDisasterRecoveryExample.java b/bmc-examples/src/main/java/AutonomousDatabaseCrossRegionDisasterRecoveryExample.java index 429c11accc9..5a97a3be6e2 100644 --- a/bmc-examples/src/main/java/AutonomousDatabaseCrossRegionDisasterRecoveryExample.java +++ b/bmc-examples/src/main/java/AutonomousDatabaseCrossRegionDisasterRecoveryExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/AutonomousDatabaseKMSExample.java b/bmc-examples/src/main/java/AutonomousDatabaseKMSExample.java index 400d6a794b6..44d155d82a3 100644 --- a/bmc-examples/src/main/java/AutonomousDatabaseKMSExample.java +++ b/bmc-examples/src/main/java/AutonomousDatabaseKMSExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/AutonomousDatabasePrivateEndpointExample.java b/bmc-examples/src/main/java/AutonomousDatabasePrivateEndpointExample.java index a836bbdc52e..3dadf681604 100644 --- a/bmc-examples/src/main/java/AutonomousDatabasePrivateEndpointExample.java +++ b/bmc-examples/src/main/java/AutonomousDatabasePrivateEndpointExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/AutonomousDatabaseResourcePoolExample.java b/bmc-examples/src/main/java/AutonomousDatabaseResourcePoolExample.java index 9076fde466a..904209c59d9 100644 --- a/bmc-examples/src/main/java/AutonomousDatabaseResourcePoolExample.java +++ b/bmc-examples/src/main/java/AutonomousDatabaseResourcePoolExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/AutonomousDatabaseSecretIdExample.java b/bmc-examples/src/main/java/AutonomousDatabaseSecretIdExample.java index a46b59e65d5..62438a93270 100644 --- a/bmc-examples/src/main/java/AutonomousDatabaseSecretIdExample.java +++ b/bmc-examples/src/main/java/AutonomousDatabaseSecretIdExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/AutonomousDedicatedDatabaseExample.java b/bmc-examples/src/main/java/AutonomousDedicatedDatabaseExample.java index d95152761c3..4a49cebaedd 100644 --- a/bmc-examples/src/main/java/AutonomousDedicatedDatabaseExample.java +++ b/bmc-examples/src/main/java/AutonomousDedicatedDatabaseExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/AutonomousTransactionProcessingSharedExample.java b/bmc-examples/src/main/java/AutonomousTransactionProcessingSharedExample.java index 0ab8b17ff7c..fa8ef356dd8 100644 --- a/bmc-examples/src/main/java/AutonomousTransactionProcessingSharedExample.java +++ b/bmc-examples/src/main/java/AutonomousTransactionProcessingSharedExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/BackupDestinationExample.java b/bmc-examples/src/main/java/BackupDestinationExample.java index 9b4aca75dd5..336655a4c35 100644 --- a/bmc-examples/src/main/java/BackupDestinationExample.java +++ b/bmc-examples/src/main/java/BackupDestinationExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/BackupDestinationHelper.java b/bmc-examples/src/main/java/BackupDestinationHelper.java index 59d77b0d2af..7fb5d8e1c99 100644 --- a/bmc-examples/src/main/java/BackupDestinationHelper.java +++ b/bmc-examples/src/main/java/BackupDestinationHelper.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.database.model.BackupDestinationDetails; diff --git a/bmc-examples/src/main/java/BackupRetentionWindowExample.java b/bmc-examples/src/main/java/BackupRetentionWindowExample.java index 6cd1450cdee..9e279a80a38 100644 --- a/bmc-examples/src/main/java/BackupRetentionWindowExample.java +++ b/bmc-examples/src/main/java/BackupRetentionWindowExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/BudgetExample.java b/bmc-examples/src/main/java/BudgetExample.java index c9a158ab4a8..1e8005165da 100644 --- a/bmc-examples/src/main/java/BudgetExample.java +++ b/bmc-examples/src/main/java/BudgetExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/CatalogImageListingResourceVersionsExample.java b/bmc-examples/src/main/java/CatalogImageListingResourceVersionsExample.java index 42604198ab8..3e69502ad02 100644 --- a/bmc-examples/src/main/java/CatalogImageListingResourceVersionsExample.java +++ b/bmc-examples/src/main/java/CatalogImageListingResourceVersionsExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ChangeInstanceCompartmentExample.java b/bmc-examples/src/main/java/ChangeInstanceCompartmentExample.java index 31d2248e866..36c50aff447 100644 --- a/bmc-examples/src/main/java/ChangeInstanceCompartmentExample.java +++ b/bmc-examples/src/main/java/ChangeInstanceCompartmentExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ChangeLoadBalancerCompartmentExample.java b/bmc-examples/src/main/java/ChangeLoadBalancerCompartmentExample.java index 484f7715f71..cb9c973eed4 100644 --- a/bmc-examples/src/main/java/ChangeLoadBalancerCompartmentExample.java +++ b/bmc-examples/src/main/java/ChangeLoadBalancerCompartmentExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ChangeNatGatewayCompartmentExample.java b/bmc-examples/src/main/java/ChangeNatGatewayCompartmentExample.java index b2dbe69d6c5..8aa497e5756 100644 --- a/bmc-examples/src/main/java/ChangeNatGatewayCompartmentExample.java +++ b/bmc-examples/src/main/java/ChangeNatGatewayCompartmentExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ChangeServiceGatewayCompartmentExample.java b/bmc-examples/src/main/java/ChangeServiceGatewayCompartmentExample.java index 349dce6521d..e699927300a 100644 --- a/bmc-examples/src/main/java/ChangeServiceGatewayCompartmentExample.java +++ b/bmc-examples/src/main/java/ChangeServiceGatewayCompartmentExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ChangeTagNamespaceCompartmentExample.java b/bmc-examples/src/main/java/ChangeTagNamespaceCompartmentExample.java index 7b3ee76d9f7..00c9ce619d4 100644 --- a/bmc-examples/src/main/java/ChangeTagNamespaceCompartmentExample.java +++ b/bmc-examples/src/main/java/ChangeTagNamespaceCompartmentExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/CircuitBreakerExample.java b/bmc-examples/src/main/java/CircuitBreakerExample.java index 80b0e53c224..e0c2ffa9a84 100644 --- a/bmc-examples/src/main/java/CircuitBreakerExample.java +++ b/bmc-examples/src/main/java/CircuitBreakerExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ClientConfiguration; diff --git a/bmc-examples/src/main/java/ClientBuilderExample.java b/bmc-examples/src/main/java/ClientBuilderExample.java index 86a6f4c4b28..409545aacc4 100644 --- a/bmc-examples/src/main/java/ClientBuilderExample.java +++ b/bmc-examples/src/main/java/ClientBuilderExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ClientConfigurationTimeoutExample.java b/bmc-examples/src/main/java/ClientConfigurationTimeoutExample.java index 345e9be51b9..e2cf222353e 100644 --- a/bmc-examples/src/main/java/ClientConfigurationTimeoutExample.java +++ b/bmc-examples/src/main/java/ClientConfigurationTimeoutExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ClientConfiguration; diff --git a/bmc-examples/src/main/java/CloudGuardExample.java b/bmc-examples/src/main/java/CloudGuardExample.java index 3a15b4b413e..aac757b4c62 100644 --- a/bmc-examples/src/main/java/CloudGuardExample.java +++ b/bmc-examples/src/main/java/CloudGuardExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.auth.AuthenticationDetailsProvider; diff --git a/bmc-examples/src/main/java/ClusterNetworkExample.java b/bmc-examples/src/main/java/ClusterNetworkExample.java index c082b15212d..8cd4163840c 100644 --- a/bmc-examples/src/main/java/ClusterNetworkExample.java +++ b/bmc-examples/src/main/java/ClusterNetworkExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ContainerEngineClusterExample.java b/bmc-examples/src/main/java/ContainerEngineClusterExample.java index 88fadb50215..3583ac1c5fb 100644 --- a/bmc-examples/src/main/java/ContainerEngineClusterExample.java +++ b/bmc-examples/src/main/java/ContainerEngineClusterExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ContainerEngineNodePoolExample.java b/bmc-examples/src/main/java/ContainerEngineNodePoolExample.java index b0c6e10c4e2..196a23d3253 100644 --- a/bmc-examples/src/main/java/ContainerEngineNodePoolExample.java +++ b/bmc-examples/src/main/java/ContainerEngineNodePoolExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ContainerImageSigningExample.java b/bmc-examples/src/main/java/ContainerImageSigningExample.java index 75db43c7bfd..bf06b3192d9 100644 --- a/bmc-examples/src/main/java/ContainerImageSigningExample.java +++ b/bmc-examples/src/main/java/ContainerImageSigningExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/CopyObjectExample.java b/bmc-examples/src/main/java/CopyObjectExample.java index d7ffa292dd1..7aa7dbd4600 100644 --- a/bmc-examples/src/main/java/CopyObjectExample.java +++ b/bmc-examples/src/main/java/CopyObjectExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/CopySubnetResourcesFromVcnExample.java b/bmc-examples/src/main/java/CopySubnetResourcesFromVcnExample.java index 1866fc44c38..40f5c5f6412 100644 --- a/bmc-examples/src/main/java/CopySubnetResourcesFromVcnExample.java +++ b/bmc-examples/src/main/java/CopySubnetResourcesFromVcnExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.util.Collections; diff --git a/bmc-examples/src/main/java/CopyVolumeBackupExample.java b/bmc-examples/src/main/java/CopyVolumeBackupExample.java index d86a9ae95bf..b6934045796 100644 --- a/bmc-examples/src/main/java/CopyVolumeBackupExample.java +++ b/bmc-examples/src/main/java/CopyVolumeBackupExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.Region; diff --git a/bmc-examples/src/main/java/CreateDbHomeBackupDestinationExample.java b/bmc-examples/src/main/java/CreateDbHomeBackupDestinationExample.java index e2a0dd9df4d..de052d3e5e6 100644 --- a/bmc-examples/src/main/java/CreateDbHomeBackupDestinationExample.java +++ b/bmc-examples/src/main/java/CreateDbHomeBackupDestinationExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/CreateInstanceExample.java b/bmc-examples/src/main/java/CreateInstanceExample.java index 47afc94ffd1..6332609ba53 100644 --- a/bmc-examples/src/main/java/CreateInstanceExample.java +++ b/bmc-examples/src/main/java/CreateInstanceExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.nio.file.Files; diff --git a/bmc-examples/src/main/java/CreateIpv6Example.java b/bmc-examples/src/main/java/CreateIpv6Example.java index 3a7402e3011..4c942581d93 100644 --- a/bmc-examples/src/main/java/CreateIpv6Example.java +++ b/bmc-examples/src/main/java/CreateIpv6Example.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/CreateIpv6LoadBalancerExample.java b/bmc-examples/src/main/java/CreateIpv6LoadBalancerExample.java index 0fe065bc664..79c55cde107 100644 --- a/bmc-examples/src/main/java/CreateIpv6LoadBalancerExample.java +++ b/bmc-examples/src/main/java/CreateIpv6LoadBalancerExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/CreateLoadBalancerBackendSetExample.java b/bmc-examples/src/main/java/CreateLoadBalancerBackendSetExample.java index ac93d274bd2..02b2f893a27 100644 --- a/bmc-examples/src/main/java/CreateLoadBalancerBackendSetExample.java +++ b/bmc-examples/src/main/java/CreateLoadBalancerBackendSetExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/CreateLoadBalancerRuleSetExample.java b/bmc-examples/src/main/java/CreateLoadBalancerRuleSetExample.java index 43e7fcd9fe6..1beb2c042e1 100644 --- a/bmc-examples/src/main/java/CreateLoadBalancerRuleSetExample.java +++ b/bmc-examples/src/main/java/CreateLoadBalancerRuleSetExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/CreateLoadBalancerSSLCipherExample.java b/bmc-examples/src/main/java/CreateLoadBalancerSSLCipherExample.java index 11230d55a0a..b65a84e3008 100644 --- a/bmc-examples/src/main/java/CreateLoadBalancerSSLCipherExample.java +++ b/bmc-examples/src/main/java/CreateLoadBalancerSSLCipherExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.auth.AuthenticationDetailsProvider; diff --git a/bmc-examples/src/main/java/CreateServiceGatewayExample.java b/bmc-examples/src/main/java/CreateServiceGatewayExample.java index 2b5524f53df..9dbf8e3532c 100644 --- a/bmc-examples/src/main/java/CreateServiceGatewayExample.java +++ b/bmc-examples/src/main/java/CreateServiceGatewayExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/DRGAttachmentExample.java b/bmc-examples/src/main/java/DRGAttachmentExample.java index ba4abc5c0fb..426911fbe04 100644 --- a/bmc-examples/src/main/java/DRGAttachmentExample.java +++ b/bmc-examples/src/main/java/DRGAttachmentExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/DRGRouteDistributionExample.java b/bmc-examples/src/main/java/DRGRouteDistributionExample.java index 824cf4c1699..e928d0a17dc 100644 --- a/bmc-examples/src/main/java/DRGRouteDistributionExample.java +++ b/bmc-examples/src/main/java/DRGRouteDistributionExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/DRGRouteTableExample.java b/bmc-examples/src/main/java/DRGRouteTableExample.java index ee7073667c1..011753ddf42 100644 --- a/bmc-examples/src/main/java/DRGRouteTableExample.java +++ b/bmc-examples/src/main/java/DRGRouteTableExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/DataIntegrationExportExample.java b/bmc-examples/src/main/java/DataIntegrationExportExample.java index 5e219f1e5a6..c596990cdf0 100644 --- a/bmc-examples/src/main/java/DataIntegrationExportExample.java +++ b/bmc-examples/src/main/java/DataIntegrationExportExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.io.IOException; diff --git a/bmc-examples/src/main/java/DataIntegrationImportExample.java b/bmc-examples/src/main/java/DataIntegrationImportExample.java index a2eda766182..616cc7afd0f 100644 --- a/bmc-examples/src/main/java/DataIntegrationImportExample.java +++ b/bmc-examples/src/main/java/DataIntegrationImportExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.io.IOException; diff --git a/bmc-examples/src/main/java/DataLabelingAnnotationExample.java b/bmc-examples/src/main/java/DataLabelingAnnotationExample.java index 9bc516ea105..788250a0f61 100644 --- a/bmc-examples/src/main/java/DataLabelingAnnotationExample.java +++ b/bmc-examples/src/main/java/DataLabelingAnnotationExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.io.IOException; diff --git a/bmc-examples/src/main/java/DataLabelingDatasetExample.java b/bmc-examples/src/main/java/DataLabelingDatasetExample.java index 6b0a0bd91cb..cc097bac087 100644 --- a/bmc-examples/src/main/java/DataLabelingDatasetExample.java +++ b/bmc-examples/src/main/java/DataLabelingDatasetExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.io.IOException; diff --git a/bmc-examples/src/main/java/DataLabelingDatasetGenerationAndSnaphotExample.java b/bmc-examples/src/main/java/DataLabelingDatasetGenerationAndSnaphotExample.java index bbfb1ae274a..0bf2d9e88df 100644 --- a/bmc-examples/src/main/java/DataLabelingDatasetGenerationAndSnaphotExample.java +++ b/bmc-examples/src/main/java/DataLabelingDatasetGenerationAndSnaphotExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.io.IOException; diff --git a/bmc-examples/src/main/java/DataLabelingLabelExample.java b/bmc-examples/src/main/java/DataLabelingLabelExample.java index 3167e12c4c9..400372430cc 100644 --- a/bmc-examples/src/main/java/DataLabelingLabelExample.java +++ b/bmc-examples/src/main/java/DataLabelingLabelExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.io.IOException; diff --git a/bmc-examples/src/main/java/DataLabelingRecordExample.java b/bmc-examples/src/main/java/DataLabelingRecordExample.java index fa920f94d4c..b03683dcb0a 100644 --- a/bmc-examples/src/main/java/DataLabelingRecordExample.java +++ b/bmc-examples/src/main/java/DataLabelingRecordExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.io.IOException; diff --git a/bmc-examples/src/main/java/DataSafeRestAPIClientExample.java b/bmc-examples/src/main/java/DataSafeRestAPIClientExample.java index 6882eb101c6..91a33be848c 100644 --- a/bmc-examples/src/main/java/DataSafeRestAPIClientExample.java +++ b/bmc-examples/src/main/java/DataSafeRestAPIClientExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/DatabaseExampleHelper.java b/bmc-examples/src/main/java/DatabaseExampleHelper.java index de9e849a420..2292ed50034 100644 --- a/bmc-examples/src/main/java/DatabaseExampleHelper.java +++ b/bmc-examples/src/main/java/DatabaseExampleHelper.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.core.VirtualNetwork; diff --git a/bmc-examples/src/main/java/DataflowExample.java b/bmc-examples/src/main/java/DataflowExample.java index 3a41eddd104..b179acdaf9d 100644 --- a/bmc-examples/src/main/java/DataflowExample.java +++ b/bmc-examples/src/main/java/DataflowExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/DeleteCompartmentExample.java b/bmc-examples/src/main/java/DeleteCompartmentExample.java index 6fcb41f3ac2..17224d3db68 100644 --- a/bmc-examples/src/main/java/DeleteCompartmentExample.java +++ b/bmc-examples/src/main/java/DeleteCompartmentExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/DeleteTagExample.java b/bmc-examples/src/main/java/DeleteTagExample.java index 7fc6fbbef7f..62323a74415 100644 --- a/bmc-examples/src/main/java/DeleteTagExample.java +++ b/bmc-examples/src/main/java/DeleteTagExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/DeleteTagNamespaceExample.java b/bmc-examples/src/main/java/DeleteTagNamespaceExample.java index eab198f00b2..252da41bc79 100644 --- a/bmc-examples/src/main/java/DeleteTagNamespaceExample.java +++ b/bmc-examples/src/main/java/DeleteTagNamespaceExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/DisablingCircuitBreakerExample.java b/bmc-examples/src/main/java/DisablingCircuitBreakerExample.java index e00521a9586..91a43aa2757 100644 --- a/bmc-examples/src/main/java/DisablingCircuitBreakerExample.java +++ b/bmc-examples/src/main/java/DisablingCircuitBreakerExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ClientConfiguration; diff --git a/bmc-examples/src/main/java/DnsExample.java b/bmc-examples/src/main/java/DnsExample.java index ce6204e88ef..16e46efdce2 100644 --- a/bmc-examples/src/main/java/DnsExample.java +++ b/bmc-examples/src/main/java/DnsExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/DnsTrafficManagementLoadBalanceExample.java b/bmc-examples/src/main/java/DnsTrafficManagementLoadBalanceExample.java index ad738daaf9f..10a672a092a 100644 --- a/bmc-examples/src/main/java/DnsTrafficManagementLoadBalanceExample.java +++ b/bmc-examples/src/main/java/DnsTrafficManagementLoadBalanceExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/DownloadManagerExample.java b/bmc-examples/src/main/java/DownloadManagerExample.java index 783e663b1bd..cacb3c47fc9 100644 --- a/bmc-examples/src/main/java/DownloadManagerExample.java +++ b/bmc-examples/src/main/java/DownloadManagerExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.io.File; diff --git a/bmc-examples/src/main/java/EmailServiceExample.java b/bmc-examples/src/main/java/EmailServiceExample.java index 077b75d4c06..928e3e2db43 100644 --- a/bmc-examples/src/main/java/EmailServiceExample.java +++ b/bmc-examples/src/main/java/EmailServiceExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.Region; diff --git a/bmc-examples/src/main/java/EventsServiceExample.java b/bmc-examples/src/main/java/EventsServiceExample.java index 607e5f2d42f..bcebec9a258 100644 --- a/bmc-examples/src/main/java/EventsServiceExample.java +++ b/bmc-examples/src/main/java/EventsServiceExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/FastConnectCrossConnectExample.java b/bmc-examples/src/main/java/FastConnectCrossConnectExample.java index 16951aafc29..119267f1984 100644 --- a/bmc-examples/src/main/java/FastConnectCrossConnectExample.java +++ b/bmc-examples/src/main/java/FastConnectCrossConnectExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/FastConnectCrossConnectGroupExample.java b/bmc-examples/src/main/java/FastConnectCrossConnectGroupExample.java index 397cb04beb5..140e52cbaa5 100644 --- a/bmc-examples/src/main/java/FastConnectCrossConnectGroupExample.java +++ b/bmc-examples/src/main/java/FastConnectCrossConnectGroupExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/FastConnectVirtualCircuitExample.java b/bmc-examples/src/main/java/FastConnectVirtualCircuitExample.java index 1dd9ef00c12..f87f3291293 100644 --- a/bmc-examples/src/main/java/FastConnectVirtualCircuitExample.java +++ b/bmc-examples/src/main/java/FastConnectVirtualCircuitExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/FastConnectVirtualCircuitWithIpv6Example.java b/bmc-examples/src/main/java/FastConnectVirtualCircuitWithIpv6Example.java index e34f9c482e4..7a774a7d95a 100644 --- a/bmc-examples/src/main/java/FastConnectVirtualCircuitWithIpv6Example.java +++ b/bmc-examples/src/main/java/FastConnectVirtualCircuitWithIpv6Example.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/FileStorageServiceExample.java b/bmc-examples/src/main/java/FileStorageServiceExample.java index faeec616c75..052fc6e585d 100644 --- a/bmc-examples/src/main/java/FileStorageServiceExample.java +++ b/bmc-examples/src/main/java/FileStorageServiceExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/FunctionsEphemeralResourcePrincipalAuthenticationDetailsProviderExample.java b/bmc-examples/src/main/java/FunctionsEphemeralResourcePrincipalAuthenticationDetailsProviderExample.java index 5c6fb2ee394..473e01cee55 100644 --- a/bmc-examples/src/main/java/FunctionsEphemeralResourcePrincipalAuthenticationDetailsProviderExample.java +++ b/bmc-examples/src/main/java/FunctionsEphemeralResourcePrincipalAuthenticationDetailsProviderExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.auth.ResourcePrincipalAuthenticationDetailsProvider; diff --git a/bmc-examples/src/main/java/GetAndUpdateExadataIORMExample.java b/bmc-examples/src/main/java/GetAndUpdateExadataIORMExample.java index e116031b372..72e0bb79900 100644 --- a/bmc-examples/src/main/java/GetAndUpdateExadataIORMExample.java +++ b/bmc-examples/src/main/java/GetAndUpdateExadataIORMExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/GetDatabaseExample.java b/bmc-examples/src/main/java/GetDatabaseExample.java index 9c4401f80ea..d9828530ea1 100644 --- a/bmc-examples/src/main/java/GetDatabaseExample.java +++ b/bmc-examples/src/main/java/GetDatabaseExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/GetImageLatestVersionExample.java b/bmc-examples/src/main/java/GetImageLatestVersionExample.java index 6790fe4885f..58f8a3ee526 100644 --- a/bmc-examples/src/main/java/GetImageLatestVersionExample.java +++ b/bmc-examples/src/main/java/GetImageLatestVersionExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.util.List; diff --git a/bmc-examples/src/main/java/GetInstancePublicIpExample.java b/bmc-examples/src/main/java/GetInstancePublicIpExample.java index cec4adf9358..60f1cec6b83 100644 --- a/bmc-examples/src/main/java/GetInstancePublicIpExample.java +++ b/bmc-examples/src/main/java/GetInstancePublicIpExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.util.ArrayList; diff --git a/bmc-examples/src/main/java/GetWorkRequestExample.java b/bmc-examples/src/main/java/GetWorkRequestExample.java index 6321f8df4a1..9c6b488474a 100644 --- a/bmc-examples/src/main/java/GetWorkRequestExample.java +++ b/bmc-examples/src/main/java/GetWorkRequestExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/HealthChecksExample.java b/bmc-examples/src/main/java/HealthChecksExample.java index fdde2b4a4ce..78bf1e05291 100644 --- a/bmc-examples/src/main/java/HealthChecksExample.java +++ b/bmc-examples/src/main/java/HealthChecksExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/HttpProxyExample.java b/bmc-examples/src/main/java/HttpProxyExample.java index 0c05b6971a5..75df4fd42ad 100644 --- a/bmc-examples/src/main/java/HttpProxyExample.java +++ b/bmc-examples/src/main/java/HttpProxyExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.net.InetSocketAddress; diff --git a/bmc-examples/src/main/java/IdentityDomainsDynamicResourceGroupExample.java b/bmc-examples/src/main/java/IdentityDomainsDynamicResourceGroupExample.java index 5df2d065414..1b1ab836cfe 100644 --- a/bmc-examples/src/main/java/IdentityDomainsDynamicResourceGroupExample.java +++ b/bmc-examples/src/main/java/IdentityDomainsDynamicResourceGroupExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.io.IOException; diff --git a/bmc-examples/src/main/java/IdentityDomainsUserExample.java b/bmc-examples/src/main/java/IdentityDomainsUserExample.java index 044d0c9ff32..4d10ecdb71b 100644 --- a/bmc-examples/src/main/java/IdentityDomainsUserExample.java +++ b/bmc-examples/src/main/java/IdentityDomainsUserExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.io.IOException; diff --git a/bmc-examples/src/main/java/InstanceConfigurationExample.java b/bmc-examples/src/main/java/InstanceConfigurationExample.java index bd971815739..85504214e50 100644 --- a/bmc-examples/src/main/java/InstanceConfigurationExample.java +++ b/bmc-examples/src/main/java/InstanceConfigurationExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/InstancePoolsExample.java b/bmc-examples/src/main/java/InstancePoolsExample.java index 13d891d971f..b52234d59f7 100644 --- a/bmc-examples/src/main/java/InstancePoolsExample.java +++ b/bmc-examples/src/main/java/InstancePoolsExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/InstancePrincipalsAuthenticationDetailsProviderExample.java b/bmc-examples/src/main/java/InstancePrincipalsAuthenticationDetailsProviderExample.java index a089c25843a..a56da83ae44 100644 --- a/bmc-examples/src/main/java/InstancePrincipalsAuthenticationDetailsProviderExample.java +++ b/bmc-examples/src/main/java/InstancePrincipalsAuthenticationDetailsProviderExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.auth.InstancePrincipalsAuthenticationDetailsProvider; diff --git a/bmc-examples/src/main/java/InstancePrincipalsAuthenticationDetailsProviderWithResteasyClientExample.java b/bmc-examples/src/main/java/InstancePrincipalsAuthenticationDetailsProviderWithResteasyClientExample.java index 1cf021a297b..59b415cc873 100644 --- a/bmc-examples/src/main/java/InstancePrincipalsAuthenticationDetailsProviderWithResteasyClientExample.java +++ b/bmc-examples/src/main/java/InstancePrincipalsAuthenticationDetailsProviderWithResteasyClientExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.auth.InstancePrincipalsAuthenticationDetailsProvider; diff --git a/bmc-examples/src/main/java/InvokeFunctionExample.java b/bmc-examples/src/main/java/InvokeFunctionExample.java index b5da72176ff..52450356bd4 100644 --- a/bmc-examples/src/main/java/InvokeFunctionExample.java +++ b/bmc-examples/src/main/java/InvokeFunctionExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/KmsExample.java b/bmc-examples/src/main/java/KmsExample.java index 7736d38f1b5..606616e2b12 100644 --- a/bmc-examples/src/main/java/KmsExample.java +++ b/bmc-examples/src/main/java/KmsExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/LaunchAutonomousExadataInfrastructureExample.java b/bmc-examples/src/main/java/LaunchAutonomousExadataInfrastructureExample.java index 3aba4dfaf69..100639883f9 100644 --- a/bmc-examples/src/main/java/LaunchAutonomousExadataInfrastructureExample.java +++ b/bmc-examples/src/main/java/LaunchAutonomousExadataInfrastructureExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/LaunchDbSystemExample.java b/bmc-examples/src/main/java/LaunchDbSystemExample.java index f21e4278f40..77ac4049506 100644 --- a/bmc-examples/src/main/java/LaunchDbSystemExample.java +++ b/bmc-examples/src/main/java/LaunchDbSystemExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/LaunchDbSystemFromBackupExample.java b/bmc-examples/src/main/java/LaunchDbSystemFromBackupExample.java index a1fb250a007..cf52018c3d9 100644 --- a/bmc-examples/src/main/java/LaunchDbSystemFromBackupExample.java +++ b/bmc-examples/src/main/java/LaunchDbSystemFromBackupExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/LaunchDbSystemWithNsgExample.java b/bmc-examples/src/main/java/LaunchDbSystemWithNsgExample.java index 4c1c6109425..e7b101828f1 100644 --- a/bmc-examples/src/main/java/LaunchDbSystemWithNsgExample.java +++ b/bmc-examples/src/main/java/LaunchDbSystemWithNsgExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/LaunchExaDbSystemWithNsgExample.java b/bmc-examples/src/main/java/LaunchExaDbSystemWithNsgExample.java index 5e40a1ab987..66dac741091 100644 --- a/bmc-examples/src/main/java/LaunchExaDbSystemWithNsgExample.java +++ b/bmc-examples/src/main/java/LaunchExaDbSystemWithNsgExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/LaunchExaDbSystemWithSparseExample.java b/bmc-examples/src/main/java/LaunchExaDbSystemWithSparseExample.java index ecac6348fa4..ddc984021a8 100644 --- a/bmc-examples/src/main/java/LaunchExaDbSystemWithSparseExample.java +++ b/bmc-examples/src/main/java/LaunchExaDbSystemWithSparseExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/LimitsExample.java b/bmc-examples/src/main/java/LimitsExample.java index d9fd495db5e..d712ab916de 100644 --- a/bmc-examples/src/main/java/LimitsExample.java +++ b/bmc-examples/src/main/java/LimitsExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ListAuditEventsExample.java b/bmc-examples/src/main/java/ListAuditEventsExample.java index be7beff9226..224aa739825 100644 --- a/bmc-examples/src/main/java/ListAuditEventsExample.java +++ b/bmc-examples/src/main/java/ListAuditEventsExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.util.Date; diff --git a/bmc-examples/src/main/java/ListCompartmentsExample.java b/bmc-examples/src/main/java/ListCompartmentsExample.java index 23b1857852c..d0a256add74 100644 --- a/bmc-examples/src/main/java/ListCompartmentsExample.java +++ b/bmc-examples/src/main/java/ListCompartmentsExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ListCostTrackingTagsExample.java b/bmc-examples/src/main/java/ListCostTrackingTagsExample.java index 4b797e5fc03..02f009abf9a 100644 --- a/bmc-examples/src/main/java/ListCostTrackingTagsExample.java +++ b/bmc-examples/src/main/java/ListCostTrackingTagsExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ListDBVersionExample.java b/bmc-examples/src/main/java/ListDBVersionExample.java index c71086cd177..df532b29f57 100644 --- a/bmc-examples/src/main/java/ListDBVersionExample.java +++ b/bmc-examples/src/main/java/ListDBVersionExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ListFaultDomainsExample.java b/bmc-examples/src/main/java/ListFaultDomainsExample.java index abb279ccfaf..0bdeb0bff13 100644 --- a/bmc-examples/src/main/java/ListFaultDomainsExample.java +++ b/bmc-examples/src/main/java/ListFaultDomainsExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ListWorkRequestsExample.java b/bmc-examples/src/main/java/ListWorkRequestsExample.java index cc9d9773d4c..a33a3153ecd 100644 --- a/bmc-examples/src/main/java/ListWorkRequestsExample.java +++ b/bmc-examples/src/main/java/ListWorkRequestsExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/LoadBalancedWebServer.java b/bmc-examples/src/main/java/LoadBalancedWebServer.java index ba23b65378d..17f7c7bbd77 100644 --- a/bmc-examples/src/main/java/LoadBalancedWebServer.java +++ b/bmc-examples/src/main/java/LoadBalancedWebServer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.io.BufferedReader; diff --git a/bmc-examples/src/main/java/MaintenanceRunExample.java b/bmc-examples/src/main/java/MaintenanceRunExample.java index dc9add04926..879f6db4d70 100644 --- a/bmc-examples/src/main/java/MaintenanceRunExample.java +++ b/bmc-examples/src/main/java/MaintenanceRunExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/MfaTotpExample.java b/bmc-examples/src/main/java/MfaTotpExample.java index 360071e1e78..f42102857ea 100644 --- a/bmc-examples/src/main/java/MfaTotpExample.java +++ b/bmc-examples/src/main/java/MfaTotpExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/MonitoringAlarmExample.java b/bmc-examples/src/main/java/MonitoringAlarmExample.java index 94524a70c66..3aaded15b69 100644 --- a/bmc-examples/src/main/java/MonitoringAlarmExample.java +++ b/bmc-examples/src/main/java/MonitoringAlarmExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/MonitoringMetricListExample.java b/bmc-examples/src/main/java/MonitoringMetricListExample.java index b6cf1ddc4b2..cd754abcbc9 100644 --- a/bmc-examples/src/main/java/MonitoringMetricListExample.java +++ b/bmc-examples/src/main/java/MonitoringMetricListExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/MonitoringMetricPostExample.java b/bmc-examples/src/main/java/MonitoringMetricPostExample.java index 012617f1bf4..f472c892209 100644 --- a/bmc-examples/src/main/java/MonitoringMetricPostExample.java +++ b/bmc-examples/src/main/java/MonitoringMetricPostExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/MonitoringMetricSummarizeExample.java b/bmc-examples/src/main/java/MonitoringMetricSummarizeExample.java index 69b988a087f..c6ca4b77418 100644 --- a/bmc-examples/src/main/java/MonitoringMetricSummarizeExample.java +++ b/bmc-examples/src/main/java/MonitoringMetricSummarizeExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/MoveCompartmentExample.java b/bmc-examples/src/main/java/MoveCompartmentExample.java index b0216edaba6..2e43e85ff33 100644 --- a/bmc-examples/src/main/java/MoveCompartmentExample.java +++ b/bmc-examples/src/main/java/MoveCompartmentExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/NatGatewayExample.java b/bmc-examples/src/main/java/NatGatewayExample.java index ab596c7a0b4..5f82fb58d94 100644 --- a/bmc-examples/src/main/java/NatGatewayExample.java +++ b/bmc-examples/src/main/java/NatGatewayExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.util.ArrayList; diff --git a/bmc-examples/src/main/java/NestedResourcePrincipalsExample.java b/bmc-examples/src/main/java/NestedResourcePrincipalsExample.java index 95637f82edb..6fa38989e14 100644 --- a/bmc-examples/src/main/java/NestedResourcePrincipalsExample.java +++ b/bmc-examples/src/main/java/NestedResourcePrincipalsExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.auth.ResourcePrincipalAuthenticationDetailsProvider; diff --git a/bmc-examples/src/main/java/NetworkSecurityGroupExample.java b/bmc-examples/src/main/java/NetworkSecurityGroupExample.java index 6069590b9fb..2df402c343b 100644 --- a/bmc-examples/src/main/java/NetworkSecurityGroupExample.java +++ b/bmc-examples/src/main/java/NetworkSecurityGroupExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/NewRegionAndRealmSupportWithoutSDKUpdate.java b/bmc-examples/src/main/java/NewRegionAndRealmSupportWithoutSDKUpdate.java index ad37a231c83..2a138ebef6b 100644 --- a/bmc-examples/src/main/java/NewRegionAndRealmSupportWithoutSDKUpdate.java +++ b/bmc-examples/src/main/java/NewRegionAndRealmSupportWithoutSDKUpdate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/NotificationExample.java b/bmc-examples/src/main/java/NotificationExample.java index 43cbcef4103..487f5ef88a0 100644 --- a/bmc-examples/src/main/java/NotificationExample.java +++ b/bmc-examples/src/main/java/NotificationExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ObjectLifecyclePolicyExample.java b/bmc-examples/src/main/java/ObjectLifecyclePolicyExample.java index 4fc2ff74ed0..247b1dcea4a 100644 --- a/bmc-examples/src/main/java/ObjectLifecyclePolicyExample.java +++ b/bmc-examples/src/main/java/ObjectLifecyclePolicyExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ObjectStorageAsyncExample.java b/bmc-examples/src/main/java/ObjectStorageAsyncExample.java index 8b0c75f0619..800987e12bc 100644 --- a/bmc-examples/src/main/java/ObjectStorageAsyncExample.java +++ b/bmc-examples/src/main/java/ObjectStorageAsyncExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.io.InputStream; diff --git a/bmc-examples/src/main/java/ObjectStorageBucketTaggingExample.java b/bmc-examples/src/main/java/ObjectStorageBucketTaggingExample.java index b2ea6bc2241..dde327ae095 100644 --- a/bmc-examples/src/main/java/ObjectStorageBucketTaggingExample.java +++ b/bmc-examples/src/main/java/ObjectStorageBucketTaggingExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ObjectStorageGetBucketExample.java b/bmc-examples/src/main/java/ObjectStorageGetBucketExample.java index c3a514fadf1..be20c8871ba 100644 --- a/bmc-examples/src/main/java/ObjectStorageGetBucketExample.java +++ b/bmc-examples/src/main/java/ObjectStorageGetBucketExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ObjectStorageGetNamespaceExample.java b/bmc-examples/src/main/java/ObjectStorageGetNamespaceExample.java index b13eef50c57..16137da25d4 100644 --- a/bmc-examples/src/main/java/ObjectStorageGetNamespaceExample.java +++ b/bmc-examples/src/main/java/ObjectStorageGetNamespaceExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ObjectStorageSyncExample.java b/bmc-examples/src/main/java/ObjectStorageSyncExample.java index d495e4f1421..a0df60196df 100644 --- a/bmc-examples/src/main/java/ObjectStorageSyncExample.java +++ b/bmc-examples/src/main/java/ObjectStorageSyncExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ObjectStorageUpdateBucketKmsKeyExample.java b/bmc-examples/src/main/java/ObjectStorageUpdateBucketKmsKeyExample.java index c81ca376fdc..29b6b10a8bc 100644 --- a/bmc-examples/src/main/java/ObjectStorageUpdateBucketKmsKeyExample.java +++ b/bmc-examples/src/main/java/ObjectStorageUpdateBucketKmsKeyExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/PaginationExample.java b/bmc-examples/src/main/java/PaginationExample.java index 61358d71a5b..be3a8fb647c 100644 --- a/bmc-examples/src/main/java/PaginationExample.java +++ b/bmc-examples/src/main/java/PaginationExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/QuotasExample.java b/bmc-examples/src/main/java/QuotasExample.java index 29c776277d2..f7a600d57af 100644 --- a/bmc-examples/src/main/java/QuotasExample.java +++ b/bmc-examples/src/main/java/QuotasExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/RawRestCallExample.java b/bmc-examples/src/main/java/RawRestCallExample.java index ed4d1e7fc77..c5d7b440008 100644 --- a/bmc-examples/src/main/java/RawRestCallExample.java +++ b/bmc-examples/src/main/java/RawRestCallExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.io.BufferedReader; diff --git a/bmc-examples/src/main/java/RealtimeSpeechExampleClient.java b/bmc-examples/src/main/java/RealtimeSpeechExampleClient.java index 3502a2f89ec..615988bc9b6 100644 --- a/bmc-examples/src/main/java/RealtimeSpeechExampleClient.java +++ b/bmc-examples/src/main/java/RealtimeSpeechExampleClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/RealtimeSpeechWhisperExampleClient.java b/bmc-examples/src/main/java/RealtimeSpeechWhisperExampleClient.java index ce850d9fa00..c0cbbc141cd 100644 --- a/bmc-examples/src/main/java/RealtimeSpeechWhisperExampleClient.java +++ b/bmc-examples/src/main/java/RealtimeSpeechWhisperExampleClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/RegisterRequestInterceptorExample.java b/bmc-examples/src/main/java/RegisterRequestInterceptorExample.java index c9898f040aa..88d529ba09d 100644 --- a/bmc-examples/src/main/java/RegisterRequestInterceptorExample.java +++ b/bmc-examples/src/main/java/RegisterRequestInterceptorExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/RemotePeeringConnectionExample.java b/bmc-examples/src/main/java/RemotePeeringConnectionExample.java index 7e82afe583e..746bd129c3a 100644 --- a/bmc-examples/src/main/java/RemotePeeringConnectionExample.java +++ b/bmc-examples/src/main/java/RemotePeeringConnectionExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ResourceManagerExample.java b/bmc-examples/src/main/java/ResourceManagerExample.java index d88f7438521..3dd78376857 100644 --- a/bmc-examples/src/main/java/ResourceManagerExample.java +++ b/bmc-examples/src/main/java/ResourceManagerExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ResourceSearchExample.java b/bmc-examples/src/main/java/ResourceSearchExample.java index dde7944c636..089e5965c26 100644 --- a/bmc-examples/src/main/java/ResourceSearchExample.java +++ b/bmc-examples/src/main/java/ResourceSearchExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ResteasyClientExample.java b/bmc-examples/src/main/java/ResteasyClientExample.java index b2cb5eccc49..b54ec94ac26 100644 --- a/bmc-examples/src/main/java/ResteasyClientExample.java +++ b/bmc-examples/src/main/java/ResteasyClientExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/ResteasyClientWithObjectStorageExample.java b/bmc-examples/src/main/java/ResteasyClientWithObjectStorageExample.java index 009b2b04f90..fe9f7d8de14 100644 --- a/bmc-examples/src/main/java/ResteasyClientWithObjectStorageExample.java +++ b/bmc-examples/src/main/java/ResteasyClientWithObjectStorageExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/RetryExample.java b/bmc-examples/src/main/java/RetryExample.java index 5513d9c9c59..ef6e1f84ee0 100644 --- a/bmc-examples/src/main/java/RetryExample.java +++ b/bmc-examples/src/main/java/RetryExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ClientConfiguration; diff --git a/bmc-examples/src/main/java/RetryOnOpenCircuitBreakerExample.java b/bmc-examples/src/main/java/RetryOnOpenCircuitBreakerExample.java index fd4b2911623..875bee55c14 100644 --- a/bmc-examples/src/main/java/RetryOnOpenCircuitBreakerExample.java +++ b/bmc-examples/src/main/java/RetryOnOpenCircuitBreakerExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ClientConfiguration; diff --git a/bmc-examples/src/main/java/SessionTokenExample.java b/bmc-examples/src/main/java/SessionTokenExample.java index efdcdb51dfd..a37e87ad8ad 100644 --- a/bmc-examples/src/main/java/SessionTokenExample.java +++ b/bmc-examples/src/main/java/SessionTokenExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.auth.AuthenticationDetailsProvider; diff --git a/bmc-examples/src/main/java/SimpleAuthenticationDetailsProviderExample.java b/bmc-examples/src/main/java/SimpleAuthenticationDetailsProviderExample.java index 6831a8dde8e..40dd08c49b0 100644 --- a/bmc-examples/src/main/java/SimpleAuthenticationDetailsProviderExample.java +++ b/bmc-examples/src/main/java/SimpleAuthenticationDetailsProviderExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.Region; diff --git a/bmc-examples/src/main/java/StreamsExample.java b/bmc-examples/src/main/java/StreamsExample.java index 4e5343352c1..f005f54c435 100644 --- a/bmc-examples/src/main/java/StreamsExample.java +++ b/bmc-examples/src/main/java/StreamsExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 static java.nio.charset.StandardCharsets.UTF_8; diff --git a/bmc-examples/src/main/java/TagDefaultExample.java b/bmc-examples/src/main/java/TagDefaultExample.java index 90d262c3270..736262b28df 100644 --- a/bmc-examples/src/main/java/TagDefaultExample.java +++ b/bmc-examples/src/main/java/TagDefaultExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/TaggingExample.java b/bmc-examples/src/main/java/TaggingExample.java index a1a896ff72d..6da1ed8097b 100644 --- a/bmc-examples/src/main/java/TaggingExample.java +++ b/bmc-examples/src/main/java/TaggingExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/UpdateDbBackupDestinationExample.java b/bmc-examples/src/main/java/UpdateDbBackupDestinationExample.java index fd41414d40d..6f10750c525 100644 --- a/bmc-examples/src/main/java/UpdateDbBackupDestinationExample.java +++ b/bmc-examples/src/main/java/UpdateDbBackupDestinationExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/UpdateInstanceExample.java b/bmc-examples/src/main/java/UpdateInstanceExample.java index a42a7421ffa..b9a34534d95 100644 --- a/bmc-examples/src/main/java/UpdateInstanceExample.java +++ b/bmc-examples/src/main/java/UpdateInstanceExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/UpdateLoadBalancerWithNsgExample.java b/bmc-examples/src/main/java/UpdateLoadBalancerWithNsgExample.java index 92b7f20f838..c06d24230a3 100644 --- a/bmc-examples/src/main/java/UpdateLoadBalancerWithNsgExample.java +++ b/bmc-examples/src/main/java/UpdateLoadBalancerWithNsgExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/UpdateUserCapabilitesExample.java b/bmc-examples/src/main/java/UpdateUserCapabilitesExample.java index b8abf573e06..2a4caf61a65 100644 --- a/bmc-examples/src/main/java/UpdateUserCapabilitesExample.java +++ b/bmc-examples/src/main/java/UpdateUserCapabilitesExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/UpdateVolumeKmsKeyIdExample.java b/bmc-examples/src/main/java/UpdateVolumeKmsKeyIdExample.java index e4cf1d6cf49..abdf887bf2d 100644 --- a/bmc-examples/src/main/java/UpdateVolumeKmsKeyIdExample.java +++ b/bmc-examples/src/main/java/UpdateVolumeKmsKeyIdExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/UploadObjectExample.java b/bmc-examples/src/main/java/UploadObjectExample.java index 4161750b85f..849588c6d4b 100644 --- a/bmc-examples/src/main/java/UploadObjectExample.java +++ b/bmc-examples/src/main/java/UploadObjectExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.io.File; diff --git a/bmc-examples/src/main/java/UseRealmSpecificEndpointsExample.java b/bmc-examples/src/main/java/UseRealmSpecificEndpointsExample.java index 45343f8a5bc..b56ae6a5be7 100644 --- a/bmc-examples/src/main/java/UseRealmSpecificEndpointsExample.java +++ b/bmc-examples/src/main/java/UseRealmSpecificEndpointsExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/UserEmailExample.java b/bmc-examples/src/main/java/UserEmailExample.java index c8ccfbf0312..f655761e562 100644 --- a/bmc-examples/src/main/java/UserEmailExample.java +++ b/bmc-examples/src/main/java/UserEmailExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/UserPasswordInfoExample.java b/bmc-examples/src/main/java/UserPasswordInfoExample.java index 749f518945f..aa51d4af2f9 100644 --- a/bmc-examples/src/main/java/UserPasswordInfoExample.java +++ b/bmc-examples/src/main/java/UserPasswordInfoExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package internal; diff --git a/bmc-examples/src/main/java/VcnTransitRouting.java b/bmc-examples/src/main/java/VcnTransitRouting.java index 481113a69c7..aeb32002d43 100644 --- a/bmc-examples/src/main/java/VcnTransitRouting.java +++ b/bmc-examples/src/main/java/VcnTransitRouting.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.util.ArrayList; diff --git a/bmc-examples/src/main/java/VmDataGuardExample.java b/bmc-examples/src/main/java/VmDataGuardExample.java index 3c359dec67c..edc537f939f 100644 --- a/bmc-examples/src/main/java/VmDataGuardExample.java +++ b/bmc-examples/src/main/java/VmDataGuardExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/VolumeAttachmentExample.java b/bmc-examples/src/main/java/VolumeAttachmentExample.java index a94aa7e62cb..7492e1a0c34 100644 --- a/bmc-examples/src/main/java/VolumeAttachmentExample.java +++ b/bmc-examples/src/main/java/VolumeAttachmentExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/VolumeAttachmentWithDeviceExample.java b/bmc-examples/src/main/java/VolumeAttachmentWithDeviceExample.java index 41968e4f0f3..1e6e1dfde16 100644 --- a/bmc-examples/src/main/java/VolumeAttachmentWithDeviceExample.java +++ b/bmc-examples/src/main/java/VolumeAttachmentWithDeviceExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 java.util.List; diff --git a/bmc-examples/src/main/java/VolumeAttachmentWithPvEncryptionInTransitExample.java b/bmc-examples/src/main/java/VolumeAttachmentWithPvEncryptionInTransitExample.java index bb7be64cf26..308092c3d3e 100644 --- a/bmc-examples/src/main/java/VolumeAttachmentWithPvEncryptionInTransitExample.java +++ b/bmc-examples/src/main/java/VolumeAttachmentWithPvEncryptionInTransitExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/VpnCpeExample.java b/bmc-examples/src/main/java/VpnCpeExample.java index afc0069a826..0840d5454fa 100644 --- a/bmc-examples/src/main/java/VpnCpeExample.java +++ b/bmc-examples/src/main/java/VpnCpeExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/VpnIPSecConnectionExample.java b/bmc-examples/src/main/java/VpnIPSecConnectionExample.java index a48294de0fa..8544e8cd8cc 100644 --- a/bmc-examples/src/main/java/VpnIPSecConnectionExample.java +++ b/bmc-examples/src/main/java/VpnIPSecConnectionExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/VpnRemotePeeringConnectionExample.java b/bmc-examples/src/main/java/VpnRemotePeeringConnectionExample.java index 2842f1f4cf0..ba837ea32c3 100644 --- a/bmc-examples/src/main/java/VpnRemotePeeringConnectionExample.java +++ b/bmc-examples/src/main/java/VpnRemotePeeringConnectionExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/WaasAddressListExample.java b/bmc-examples/src/main/java/WaasAddressListExample.java index 6b69b69127f..fe887192eab 100644 --- a/bmc-examples/src/main/java/WaasAddressListExample.java +++ b/bmc-examples/src/main/java/WaasAddressListExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/WaasCustomProtectionRuleExample.java b/bmc-examples/src/main/java/WaasCustomProtectionRuleExample.java index 352bbd731f2..dacbf5a5404 100644 --- a/bmc-examples/src/main/java/WaasCustomProtectionRuleExample.java +++ b/bmc-examples/src/main/java/WaasCustomProtectionRuleExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/WaasServiceExample.java b/bmc-examples/src/main/java/WaasServiceExample.java index 2e2e4825aec..404a52e135c 100644 --- a/bmc-examples/src/main/java/WaasServiceExample.java +++ b/bmc-examples/src/main/java/WaasServiceExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 com.oracle.bmc.ConfigFileReader; diff --git a/bmc-examples/src/main/java/client_side_encryption/ClientSideEncryptionWithSignerExample.java b/bmc-examples/src/main/java/client_side_encryption/ClientSideEncryptionWithSignerExample.java index 9abc71ebc10..f24a5977972 100644 --- a/bmc-examples/src/main/java/client_side_encryption/ClientSideEncryptionWithSignerExample.java +++ b/bmc-examples/src/main/java/client_side_encryption/ClientSideEncryptionWithSignerExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package client_side_encryption; diff --git a/bmc-examples/src/main/java/client_side_encryption/StreamEncryptionExample.java b/bmc-examples/src/main/java/client_side_encryption/StreamEncryptionExample.java index 8a01750d0fa..d99fe13636c 100644 --- a/bmc-examples/src/main/java/client_side_encryption/StreamEncryptionExample.java +++ b/bmc-examples/src/main/java/client_side_encryption/StreamEncryptionExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package client_side_encryption; diff --git a/bmc-examples/src/main/java/client_side_encryption/TextEncryptionExample.java b/bmc-examples/src/main/java/client_side_encryption/TextEncryptionExample.java index 0086a82a204..48e788f23b1 100644 --- a/bmc-examples/src/main/java/client_side_encryption/TextEncryptionExample.java +++ b/bmc-examples/src/main/java/client_side_encryption/TextEncryptionExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package client_side_encryption; diff --git a/bmc-examples/src/main/java/database_tools/DatabaseToolsADBsConnectionPublicIpExample.java b/bmc-examples/src/main/java/database_tools/DatabaseToolsADBsConnectionPublicIpExample.java index 944371b6b79..902c2201485 100644 --- a/bmc-examples/src/main/java/database_tools/DatabaseToolsADBsConnectionPublicIpExample.java +++ b/bmc-examples/src/main/java/database_tools/DatabaseToolsADBsConnectionPublicIpExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package database_tools; diff --git a/bmc-examples/src/main/java/database_tools/DatabaseToolsADBsConnectionWithPeExample.java b/bmc-examples/src/main/java/database_tools/DatabaseToolsADBsConnectionWithPeExample.java index 46d50d8d18d..bcfd4073b8c 100644 --- a/bmc-examples/src/main/java/database_tools/DatabaseToolsADBsConnectionWithPeExample.java +++ b/bmc-examples/src/main/java/database_tools/DatabaseToolsADBsConnectionWithPeExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package database_tools; diff --git a/bmc-examples/src/main/java/database_tools/DatabaseToolsDbSystemConnectionPrivateSubnetExample.java b/bmc-examples/src/main/java/database_tools/DatabaseToolsDbSystemConnectionPrivateSubnetExample.java index 4c92d92262d..0154c605468 100644 --- a/bmc-examples/src/main/java/database_tools/DatabaseToolsDbSystemConnectionPrivateSubnetExample.java +++ b/bmc-examples/src/main/java/database_tools/DatabaseToolsDbSystemConnectionPrivateSubnetExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package database_tools; diff --git a/bmc-examples/src/main/java/database_tools/DatabaseToolsGenericJdbcConnectionExample.java b/bmc-examples/src/main/java/database_tools/DatabaseToolsGenericJdbcConnectionExample.java index acd3571bd33..6a394efc486 100644 --- a/bmc-examples/src/main/java/database_tools/DatabaseToolsGenericJdbcConnectionExample.java +++ b/bmc-examples/src/main/java/database_tools/DatabaseToolsGenericJdbcConnectionExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package database_tools; diff --git a/bmc-examples/src/main/java/database_tools/DatabaseToolsMySqlConnectionPublicIpExample.java b/bmc-examples/src/main/java/database_tools/DatabaseToolsMySqlConnectionPublicIpExample.java index bfe5aac0c7e..cbfdb083822 100644 --- a/bmc-examples/src/main/java/database_tools/DatabaseToolsMySqlConnectionPublicIpExample.java +++ b/bmc-examples/src/main/java/database_tools/DatabaseToolsMySqlConnectionPublicIpExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package database_tools; diff --git a/bmc-examples/src/main/java/database_tools/DatabaseToolsMySqlDbSystemConnectionWithPeExample.java b/bmc-examples/src/main/java/database_tools/DatabaseToolsMySqlDbSystemConnectionWithPeExample.java index 0cf17f92c49..41c87e07ab0 100644 --- a/bmc-examples/src/main/java/database_tools/DatabaseToolsMySqlDbSystemConnectionWithPeExample.java +++ b/bmc-examples/src/main/java/database_tools/DatabaseToolsMySqlDbSystemConnectionWithPeExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package database_tools; diff --git a/bmc-examples/src/main/java/exacc/ExaCCDbHomeExample.java b/bmc-examples/src/main/java/exacc/ExaCCDbHomeExample.java index ebe2fbb1145..a415f465971 100644 --- a/bmc-examples/src/main/java/exacc/ExaCCDbHomeExample.java +++ b/bmc-examples/src/main/java/exacc/ExaCCDbHomeExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package exacc; diff --git a/bmc-examples/src/main/java/exacc/ExadataCloudAtCustomerResourcesExample.java b/bmc-examples/src/main/java/exacc/ExadataCloudAtCustomerResourcesExample.java index 3e898fb87e2..8053e8cbffd 100644 --- a/bmc-examples/src/main/java/exacc/ExadataCloudAtCustomerResourcesExample.java +++ b/bmc-examples/src/main/java/exacc/ExadataCloudAtCustomerResourcesExample.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package exacc; diff --git a/bmc-examples/src/main/java/shared/ExampleCompartmentHelper.java b/bmc-examples/src/main/java/shared/ExampleCompartmentHelper.java index 14ae7a4f915..8eaf52b2b87 100644 --- a/bmc-examples/src/main/java/shared/ExampleCompartmentHelper.java +++ b/bmc-examples/src/main/java/shared/ExampleCompartmentHelper.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package shared; diff --git a/bmc-examples/src/main/java/shared/ExampleComputeHelper.java b/bmc-examples/src/main/java/shared/ExampleComputeHelper.java index a1135c295db..453ff43507c 100644 --- a/bmc-examples/src/main/java/shared/ExampleComputeHelper.java +++ b/bmc-examples/src/main/java/shared/ExampleComputeHelper.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package shared; diff --git a/bmc-examples/src/main/java/shared/ExampleVcnHelper.java b/bmc-examples/src/main/java/shared/ExampleVcnHelper.java index 802c756e8f9..58a19544676 100644 --- a/bmc-examples/src/main/java/shared/ExampleVcnHelper.java +++ b/bmc-examples/src/main/java/shared/ExampleVcnHelper.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package shared; diff --git a/bmc-filestorage/pom.xml b/bmc-filestorage/pom.xml index 0be6521a3d0..19028121b00 100644 --- a/bmc-filestorage/pom.xml +++ b/bmc-filestorage/pom.xml @@ -5,7 +5,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml @@ -18,7 +18,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStorage.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStorage.java index a710c61e564..ffe59fba720 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStorage.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStorage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStorageAsync.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStorageAsync.java index 3f51154d32a..2b6745ffcdb 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStorageAsync.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStorageAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStorageAsyncClient.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStorageAsyncClient.java index a39f454d8c4..9dac5343976 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStorageAsyncClient.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStorageAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStorageClient.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStorageClient.java index 16bb4cb6770..5e4bf349e3d 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStorageClient.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStorageClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStoragePaginators.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStoragePaginators.java index 6c59b2f944e..f6e8f7efc96 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStoragePaginators.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStoragePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStorageWaiters.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStorageWaiters.java index e508b09dd8b..f06708d6884 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStorageWaiters.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/FileStorageWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ChangeFileSystemCompartmentDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ChangeFileSystemCompartmentDetails.java index b26333ab38f..7213748b954 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ChangeFileSystemCompartmentDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ChangeFileSystemCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ChangeFilesystemSnapshotPolicyCompartmentDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ChangeFilesystemSnapshotPolicyCompartmentDetails.java index d19d0b3a97d..58a5223d0ec 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ChangeFilesystemSnapshotPolicyCompartmentDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ChangeFilesystemSnapshotPolicyCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ChangeMountTargetCompartmentDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ChangeMountTargetCompartmentDetails.java index f58c52acaa8..1642a8aa43d 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ChangeMountTargetCompartmentDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ChangeMountTargetCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ChangeOutboundConnectorCompartmentDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ChangeOutboundConnectorCompartmentDetails.java index 747d474d291..821d1eb1428 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ChangeOutboundConnectorCompartmentDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ChangeOutboundConnectorCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ChangeReplicationCompartmentDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ChangeReplicationCompartmentDetails.java index ee817392dcc..7f20366acaf 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ChangeReplicationCompartmentDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ChangeReplicationCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ClientOptions.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ClientOptions.java index 34c78c0951c..edad67fb701 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ClientOptions.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ClientOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateExportDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateExportDetails.java index cfa2db47bfe..fc491b0f293 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateExportDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateExportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateFileSystemDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateFileSystemDetails.java index cedf83f5de9..06d5e0652d5 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateFileSystemDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateFileSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateFilesystemSnapshotPolicyDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateFilesystemSnapshotPolicyDetails.java index 9a6e45ccd04..8378482ef6b 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateFilesystemSnapshotPolicyDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateFilesystemSnapshotPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateKerberosDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateKerberosDetails.java index b22f309f070..85600142d60 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateKerberosDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateKerberosDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateLdapBindAccountDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateLdapBindAccountDetails.java index 72c679044b4..fdfa7c0d599 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateLdapBindAccountDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateLdapBindAccountDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateLdapIdmapDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateLdapIdmapDetails.java index 29693549349..67bd16b7af5 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateLdapIdmapDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateLdapIdmapDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateMountTargetDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateMountTargetDetails.java index af6396e7fd4..964d13cafed 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateMountTargetDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateMountTargetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateOutboundConnectorDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateOutboundConnectorDetails.java index cdc2ec44640..4227d2f580b 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateOutboundConnectorDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateOutboundConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateQuotaRuleDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateQuotaRuleDetails.java index a9afcbdda94..dbb5d9ba14e 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateQuotaRuleDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateQuotaRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateReplicationDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateReplicationDetails.java index 5105b355094..a0b15f3fcd2 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateReplicationDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateReplicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateSnapshotDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateSnapshotDetails.java index f6720facea1..3716b9c7226 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateSnapshotDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/CreateSnapshotDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/Endpoint.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/Endpoint.java index 99eed83fa50..c8ea5d46521 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/Endpoint.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/Endpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/Export.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/Export.java index 00e4fa81ab3..f38ad379713 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/Export.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/Export.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ExportSet.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ExportSet.java index 7afccb16e46..48b52dd0bab 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ExportSet.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ExportSet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ExportSetSummary.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ExportSetSummary.java index e26794eb0c7..9fac6821087 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ExportSetSummary.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ExportSetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ExportSummary.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ExportSummary.java index 28bd5fb37f9..c4ddba47e08 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ExportSummary.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ExportSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/FileSystem.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/FileSystem.java index f96a81890ab..411a110f956 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/FileSystem.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/FileSystem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/FileSystemSummary.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/FileSystemSummary.java index 390ba53b162..19c12257a02 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/FileSystemSummary.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/FileSystemSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/FilesystemSnapshotPolicy.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/FilesystemSnapshotPolicy.java index 45a12c900a7..5010ad11e44 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/FilesystemSnapshotPolicy.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/FilesystemSnapshotPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/FilesystemSnapshotPolicySummary.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/FilesystemSnapshotPolicySummary.java index 0dd2e7f58d9..5d1430b5c55 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/FilesystemSnapshotPolicySummary.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/FilesystemSnapshotPolicySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/Kerberos.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/Kerberos.java index e21270b2aab..f9a46152d6d 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/Kerberos.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/Kerberos.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/KerberosKeytabEntry.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/KerberosKeytabEntry.java index a6b4860aa7a..d459b598713 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/KerberosKeytabEntry.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/KerberosKeytabEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/KeyTabSecretDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/KeyTabSecretDetails.java index b90863a55d0..89634328235 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/KeyTabSecretDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/KeyTabSecretDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/LdapBindAccount.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/LdapBindAccount.java index 012c598c4bb..3aefd7f7b3a 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/LdapBindAccount.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/LdapBindAccount.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/LdapBindAccountSummary.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/LdapBindAccountSummary.java index edab40b79a9..f229c4bd34f 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/LdapBindAccountSummary.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/LdapBindAccountSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/LdapIdmap.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/LdapIdmap.java index e4c5ce00475..1a68d74d3cc 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/LdapIdmap.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/LdapIdmap.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/MountTarget.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/MountTarget.java index 86cde620730..8107eb99ad1 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/MountTarget.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/MountTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/MountTargetSummary.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/MountTargetSummary.java index 9c86c3d34cc..6954b50bfec 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/MountTargetSummary.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/MountTargetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/OutboundConnector.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/OutboundConnector.java index 6d98a4c2982..8045e081dd9 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/OutboundConnector.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/OutboundConnector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/OutboundConnectorSummary.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/OutboundConnectorSummary.java index 414ea35963b..a66b0ba0f22 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/OutboundConnectorSummary.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/OutboundConnectorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/QuotaRule.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/QuotaRule.java index ed54e4dcb9e..3e3b39b497e 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/QuotaRule.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/QuotaRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/QuotaRuleSummary.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/QuotaRuleSummary.java index 03923cadb2e..e4d928b6743 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/QuotaRuleSummary.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/QuotaRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/Replication.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/Replication.java index 24682b9a877..6105f37b870 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/Replication.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/Replication.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ReplicationEstimate.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ReplicationEstimate.java index 2307fdf67bc..33d002dc61d 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ReplicationEstimate.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ReplicationEstimate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ReplicationSummary.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ReplicationSummary.java index 841009d75fe..63d7f01db6f 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ReplicationSummary.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ReplicationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ReplicationTarget.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ReplicationTarget.java index 869793fdb81..16877cbdf66 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ReplicationTarget.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ReplicationTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ReplicationTargetSummary.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ReplicationTargetSummary.java index e7bf5fbc496..ab860065f36 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ReplicationTargetSummary.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ReplicationTargetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ResourceLock.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ResourceLock.java index 6ecbac3c5f9..b3a8353e96f 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ResourceLock.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ResourceLock.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ScheduleDowngradeShapeMountTargetDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ScheduleDowngradeShapeMountTargetDetails.java index d489f61f62a..bc2e46d93c4 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ScheduleDowngradeShapeMountTargetDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ScheduleDowngradeShapeMountTargetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/Snapshot.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/Snapshot.java index 9d33c591101..caef1643435 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/Snapshot.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/Snapshot.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/SnapshotSchedule.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/SnapshotSchedule.java index f6e2003d3ff..298571b4a28 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/SnapshotSchedule.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/SnapshotSchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/SnapshotSummary.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/SnapshotSummary.java index b355c024550..fa8c4bda9e1 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/SnapshotSummary.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/SnapshotSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/SourceDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/SourceDetails.java index 1ccb2cc829a..1df5b04d318 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/SourceDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/SourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ToggleQuotaRulesDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ToggleQuotaRulesDetails.java index 324202c817b..cf41e981cd8 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ToggleQuotaRulesDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ToggleQuotaRulesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateExportDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateExportDetails.java index 6337dd2d796..4e710a6b8fa 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateExportDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateExportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateExportSetDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateExportSetDetails.java index 0070629beb1..76ba9d30805 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateExportSetDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateExportSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateFileSystemDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateFileSystemDetails.java index 1a40fa2cc8f..8ce9620e82e 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateFileSystemDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateFileSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateFilesystemSnapshotPolicyDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateFilesystemSnapshotPolicyDetails.java index 30b48581036..dcb8199e508 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateFilesystemSnapshotPolicyDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateFilesystemSnapshotPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateKerberosDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateKerberosDetails.java index d7f3249c1ea..8544eed55fa 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateKerberosDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateKerberosDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateLdapIdmapDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateLdapIdmapDetails.java index 09b9f168dec..325c871f71e 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateLdapIdmapDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateLdapIdmapDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateMountTargetDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateMountTargetDetails.java index eac07f314d0..37e08b6253e 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateMountTargetDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateMountTargetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateOutboundConnectorDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateOutboundConnectorDetails.java index ba393f34913..3c6cf964eee 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateOutboundConnectorDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateOutboundConnectorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateQuotaRuleDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateQuotaRuleDetails.java index 760d029e009..092068a07b4 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateQuotaRuleDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateQuotaRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateReplicationDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateReplicationDetails.java index 9dec3cb28e5..9ab587ea8c1 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateReplicationDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateReplicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateSnapshotDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateSnapshotDetails.java index 432e6e1a93a..c172cb2d2e5 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateSnapshotDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpdateSnapshotDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpgradeShapeMountTargetDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpgradeShapeMountTargetDetails.java index 2d66e97fc1d..56eb67b2d32 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpgradeShapeMountTargetDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/UpgradeShapeMountTargetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ValidateKeyTabsDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ValidateKeyTabsDetails.java index 5970c37155e..1368c75139a 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ValidateKeyTabsDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ValidateKeyTabsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ValidateKeyTabsResponseDetails.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ValidateKeyTabsResponseDetails.java index 99e46aa61e7..2fb029e6a9b 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ValidateKeyTabsResponseDetails.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/model/ValidateKeyTabsResponseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.model; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddExportLockRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddExportLockRequest.java index 2a686c9c83f..3ee2ec2df72 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddExportLockRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddExportLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddFileSystemLockRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddFileSystemLockRequest.java index 855bafb9b1c..b9c0e63fc8f 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddFileSystemLockRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddFileSystemLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddFilesystemSnapshotPolicyLockRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddFilesystemSnapshotPolicyLockRequest.java index b78fabf66a9..cea8c47e995 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddFilesystemSnapshotPolicyLockRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddFilesystemSnapshotPolicyLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddMountTargetLockRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddMountTargetLockRequest.java index 4396ebdde9a..63ddeffb396 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddMountTargetLockRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddMountTargetLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddOutboundConnectorLockRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddOutboundConnectorLockRequest.java index 757161e19c1..ce23d13bec9 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddOutboundConnectorLockRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddOutboundConnectorLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddReplicationLockRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddReplicationLockRequest.java index a8046742ce2..8a5ca65b4ab 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddReplicationLockRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddReplicationLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddSnapshotLockRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddSnapshotLockRequest.java index 877b6388662..b9a34ae954a 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddSnapshotLockRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/AddSnapshotLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CancelDowngradeShapeMountTargetRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CancelDowngradeShapeMountTargetRequest.java index 7fe4d26a8c4..568651e9996 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CancelDowngradeShapeMountTargetRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CancelDowngradeShapeMountTargetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ChangeFileSystemCompartmentRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ChangeFileSystemCompartmentRequest.java index 5f2970d0e06..809322aa1cd 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ChangeFileSystemCompartmentRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ChangeFileSystemCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ChangeFilesystemSnapshotPolicyCompartmentRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ChangeFilesystemSnapshotPolicyCompartmentRequest.java index c91e36219ea..d3d50f7a6e2 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ChangeFilesystemSnapshotPolicyCompartmentRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ChangeFilesystemSnapshotPolicyCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ChangeMountTargetCompartmentRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ChangeMountTargetCompartmentRequest.java index 75cab236d6d..e593c36de9a 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ChangeMountTargetCompartmentRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ChangeMountTargetCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ChangeOutboundConnectorCompartmentRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ChangeOutboundConnectorCompartmentRequest.java index be79c5c5256..e59f026a219 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ChangeOutboundConnectorCompartmentRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ChangeOutboundConnectorCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ChangeReplicationCompartmentRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ChangeReplicationCompartmentRequest.java index 0ccc8473d48..f8bd302ec83 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ChangeReplicationCompartmentRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ChangeReplicationCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateExportRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateExportRequest.java index 3d3bf7b65f6..ad9a4d7653c 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateExportRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateExportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateFileSystemRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateFileSystemRequest.java index cfaa17cff81..f1d585332d3 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateFileSystemRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateFileSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateFilesystemSnapshotPolicyRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateFilesystemSnapshotPolicyRequest.java index ca91fcc7394..af84c1c500a 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateFilesystemSnapshotPolicyRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateFilesystemSnapshotPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateMountTargetRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateMountTargetRequest.java index ec69284bd67..aededc43209 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateMountTargetRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateMountTargetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateOutboundConnectorRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateOutboundConnectorRequest.java index 37e966e30f4..6fdcac9427f 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateOutboundConnectorRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateOutboundConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateQuotaRuleRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateQuotaRuleRequest.java index 5ce1590be17..02ed237ffdb 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateQuotaRuleRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateQuotaRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateReplicationRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateReplicationRequest.java index 24b0d4d6e29..26f84f41c45 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateReplicationRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateReplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateSnapshotRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateSnapshotRequest.java index e800044a899..c218c0a68ae 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateSnapshotRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/CreateSnapshotRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteExportRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteExportRequest.java index a4a569bfe03..31ca0a902d8 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteExportRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteExportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteFileSystemRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteFileSystemRequest.java index aeb26055c6b..2ec5394d181 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteFileSystemRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteFileSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteFilesystemSnapshotPolicyRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteFilesystemSnapshotPolicyRequest.java index b3a160133f9..8f7806c709f 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteFilesystemSnapshotPolicyRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteFilesystemSnapshotPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteMountTargetRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteMountTargetRequest.java index f7ab9d4c555..62ae5a330c6 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteMountTargetRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteMountTargetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteOutboundConnectorRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteOutboundConnectorRequest.java index a696b4f515e..0f7f670c69b 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteOutboundConnectorRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteOutboundConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteQuotaRuleRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteQuotaRuleRequest.java index bf598a82257..b9e9ad4087b 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteQuotaRuleRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteQuotaRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteReplicationRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteReplicationRequest.java index 50cbb8767fd..fded6e54db2 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteReplicationRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteReplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteReplicationTargetRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteReplicationTargetRequest.java index 8f75b567660..54813b5290e 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteReplicationTargetRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteReplicationTargetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteSnapshotRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteSnapshotRequest.java index 2d0cf6ad7bc..3aa0cc37273 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteSnapshotRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DeleteSnapshotRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DetachCloneRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DetachCloneRequest.java index 3589a993c16..3677270f1e8 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DetachCloneRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/DetachCloneRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/EstimateReplicationRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/EstimateReplicationRequest.java index 13f9df295c3..87e385c8477 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/EstimateReplicationRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/EstimateReplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetExportRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetExportRequest.java index d1526eb7f0e..d293e3918c9 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetExportRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetExportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetExportSetRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetExportSetRequest.java index 592ec748983..ccce29f29ca 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetExportSetRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetExportSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetFileSystemRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetFileSystemRequest.java index 43203cdcf2e..1ffe9acfd3c 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetFileSystemRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetFileSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetFilesystemSnapshotPolicyRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetFilesystemSnapshotPolicyRequest.java index 3328c817919..1810e8129b2 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetFilesystemSnapshotPolicyRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetFilesystemSnapshotPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetMountTargetRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetMountTargetRequest.java index 1057e174b57..e0d3ca63fe7 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetMountTargetRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetMountTargetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetOutboundConnectorRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetOutboundConnectorRequest.java index 5809b80675e..ea7907104ac 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetOutboundConnectorRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetOutboundConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetQuotaRuleRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetQuotaRuleRequest.java index 9f342482dda..c219ee35185 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetQuotaRuleRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetQuotaRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetReplicationRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetReplicationRequest.java index d70f1bd6032..09f006b5957 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetReplicationRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetReplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetReplicationTargetRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetReplicationTargetRequest.java index edb6a84718e..3c796f57a06 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetReplicationTargetRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetReplicationTargetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetSnapshotRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetSnapshotRequest.java index 1b83d878228..69e1919119f 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetSnapshotRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/GetSnapshotRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListExportSetsRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListExportSetsRequest.java index 52e9d31eaa6..58ff72d3352 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListExportSetsRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListExportSetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListExportsRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListExportsRequest.java index 23e6878c767..525bea428d3 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListExportsRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListExportsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListFileSystemsRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListFileSystemsRequest.java index f898d10b3dd..ded2822177e 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListFileSystemsRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListFileSystemsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListFilesystemSnapshotPoliciesRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListFilesystemSnapshotPoliciesRequest.java index d27731f7aab..b4a56d694e3 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListFilesystemSnapshotPoliciesRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListFilesystemSnapshotPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListMountTargetsRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListMountTargetsRequest.java index 9d68f6cb0b2..5439164ac87 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListMountTargetsRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListMountTargetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListOutboundConnectorsRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListOutboundConnectorsRequest.java index 3d24555c4b2..be5010160a2 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListOutboundConnectorsRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListOutboundConnectorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListQuotaRulesRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListQuotaRulesRequest.java index fa609ae830a..2d5c9c53c5e 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListQuotaRulesRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListQuotaRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListReplicationTargetsRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListReplicationTargetsRequest.java index 74262599407..1bc75703e25 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListReplicationTargetsRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListReplicationTargetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListReplicationsRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListReplicationsRequest.java index 951be9e06f9..68172650c24 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListReplicationsRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListReplicationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListSnapshotsRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListSnapshotsRequest.java index d047ba4219f..fa1f7ced8ce 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListSnapshotsRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ListSnapshotsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/PauseFilesystemSnapshotPolicyRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/PauseFilesystemSnapshotPolicyRequest.java index 923158cfdc5..0f3d1d59336 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/PauseFilesystemSnapshotPolicyRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/PauseFilesystemSnapshotPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveExportLockRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveExportLockRequest.java index 10871921f34..69f59130e4f 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveExportLockRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveExportLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveFileSystemLockRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveFileSystemLockRequest.java index b920bf5de88..e4d68466c02 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveFileSystemLockRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveFileSystemLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveFilesystemSnapshotPolicyLockRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveFilesystemSnapshotPolicyLockRequest.java index 73ca664fddf..7a7aeb3cb7e 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveFilesystemSnapshotPolicyLockRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveFilesystemSnapshotPolicyLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveMountTargetLockRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveMountTargetLockRequest.java index 114c049b155..3ce3f0fe84f 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveMountTargetLockRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveMountTargetLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveOutboundConnectorLockRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveOutboundConnectorLockRequest.java index 3b6df94a6b8..fcb26b31896 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveOutboundConnectorLockRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveOutboundConnectorLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveReplicationLockRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveReplicationLockRequest.java index 114ed7db3f9..bf1fca18755 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveReplicationLockRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveReplicationLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveSnapshotLockRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveSnapshotLockRequest.java index bb3e0d36067..7e6a774cd5c 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveSnapshotLockRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/RemoveSnapshotLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ScheduleDowngradeShapeMountTargetRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ScheduleDowngradeShapeMountTargetRequest.java index a584c3108cb..9b9f9a9897d 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ScheduleDowngradeShapeMountTargetRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ScheduleDowngradeShapeMountTargetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ToggleQuotaRulesRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ToggleQuotaRulesRequest.java index 714a9a08807..e76ad92d6c6 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ToggleQuotaRulesRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ToggleQuotaRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UnpauseFilesystemSnapshotPolicyRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UnpauseFilesystemSnapshotPolicyRequest.java index a19d10c1d9c..5c8a67ab5b1 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UnpauseFilesystemSnapshotPolicyRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UnpauseFilesystemSnapshotPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateExportRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateExportRequest.java index 1a422617e0a..7a16ff03595 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateExportRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateExportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateExportSetRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateExportSetRequest.java index 170edd44e72..35549881f94 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateExportSetRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateExportSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateFileSystemRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateFileSystemRequest.java index 7328cbff950..ad9ddd973d5 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateFileSystemRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateFileSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateFilesystemSnapshotPolicyRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateFilesystemSnapshotPolicyRequest.java index 9bdf3a09b75..7d3827d3648 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateFilesystemSnapshotPolicyRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateFilesystemSnapshotPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateMountTargetRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateMountTargetRequest.java index 0ec81e0a9e4..b9cddae77c0 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateMountTargetRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateMountTargetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateOutboundConnectorRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateOutboundConnectorRequest.java index 39ce582dee6..2176ee2b4ae 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateOutboundConnectorRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateOutboundConnectorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateQuotaRuleRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateQuotaRuleRequest.java index 187577b1798..7e692f9f26b 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateQuotaRuleRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateQuotaRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateReplicationRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateReplicationRequest.java index b677c3b1d4f..3e8a7c71736 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateReplicationRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateReplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateSnapshotRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateSnapshotRequest.java index bed1a32f7ae..9217dbeb484 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateSnapshotRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpdateSnapshotRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpgradeShapeMountTargetRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpgradeShapeMountTargetRequest.java index 31947f94719..c9fd00d38f0 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpgradeShapeMountTargetRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/UpgradeShapeMountTargetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ValidateKeyTabsRequest.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ValidateKeyTabsRequest.java index 1aabbc4feb3..466e8792bce 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ValidateKeyTabsRequest.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/requests/ValidateKeyTabsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.requests; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddExportLockResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddExportLockResponse.java index 53aa654ab05..47948e6c89c 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddExportLockResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddExportLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddFileSystemLockResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddFileSystemLockResponse.java index eed49c585b4..9032900eab2 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddFileSystemLockResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddFileSystemLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddFilesystemSnapshotPolicyLockResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddFilesystemSnapshotPolicyLockResponse.java index 58bfbd861a1..570e633057e 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddFilesystemSnapshotPolicyLockResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddFilesystemSnapshotPolicyLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddMountTargetLockResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddMountTargetLockResponse.java index 6a360c02949..6a36a621635 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddMountTargetLockResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddMountTargetLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddOutboundConnectorLockResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddOutboundConnectorLockResponse.java index 1f2c402c757..e25429bdb3c 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddOutboundConnectorLockResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddOutboundConnectorLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddReplicationLockResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddReplicationLockResponse.java index 54af17786ce..67c21df0add 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddReplicationLockResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddReplicationLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddSnapshotLockResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddSnapshotLockResponse.java index 743c7438451..af9c430b277 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddSnapshotLockResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/AddSnapshotLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CancelDowngradeShapeMountTargetResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CancelDowngradeShapeMountTargetResponse.java index 9c13d296127..10ef59e8829 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CancelDowngradeShapeMountTargetResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CancelDowngradeShapeMountTargetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ChangeFileSystemCompartmentResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ChangeFileSystemCompartmentResponse.java index b6523a96596..3b9ff335bb4 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ChangeFileSystemCompartmentResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ChangeFileSystemCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ChangeFilesystemSnapshotPolicyCompartmentResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ChangeFilesystemSnapshotPolicyCompartmentResponse.java index 6f469730c25..8323a63b203 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ChangeFilesystemSnapshotPolicyCompartmentResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ChangeFilesystemSnapshotPolicyCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ChangeMountTargetCompartmentResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ChangeMountTargetCompartmentResponse.java index 8c7e4574213..705c4e2026c 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ChangeMountTargetCompartmentResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ChangeMountTargetCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ChangeOutboundConnectorCompartmentResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ChangeOutboundConnectorCompartmentResponse.java index c5b42456877..df105f156bc 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ChangeOutboundConnectorCompartmentResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ChangeOutboundConnectorCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ChangeReplicationCompartmentResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ChangeReplicationCompartmentResponse.java index 4c041fc1a00..977f709c3ec 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ChangeReplicationCompartmentResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ChangeReplicationCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateExportResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateExportResponse.java index a8cc5e7746f..002ba6ac296 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateExportResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateExportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateFileSystemResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateFileSystemResponse.java index 84a63d53281..dd57a78d681 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateFileSystemResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateFileSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateFilesystemSnapshotPolicyResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateFilesystemSnapshotPolicyResponse.java index 1b5b8e3d27a..f44c7d59dc9 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateFilesystemSnapshotPolicyResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateFilesystemSnapshotPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateMountTargetResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateMountTargetResponse.java index 7e627a0d715..68a6d351605 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateMountTargetResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateMountTargetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateOutboundConnectorResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateOutboundConnectorResponse.java index a085228859c..064225ff41f 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateOutboundConnectorResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateOutboundConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateQuotaRuleResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateQuotaRuleResponse.java index ec9759b7fa9..91d6ec44172 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateQuotaRuleResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateQuotaRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateReplicationResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateReplicationResponse.java index 080bb71d7cf..1411a6f8644 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateReplicationResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateReplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateSnapshotResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateSnapshotResponse.java index 44d53b95f76..af4746cd88d 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateSnapshotResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/CreateSnapshotResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteExportResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteExportResponse.java index 74cacf34f32..22785ed8537 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteExportResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteExportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteFileSystemResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteFileSystemResponse.java index 24ddc725b5e..a9295a9b442 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteFileSystemResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteFileSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteFilesystemSnapshotPolicyResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteFilesystemSnapshotPolicyResponse.java index 4e64e2d03de..64372c6aaa1 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteFilesystemSnapshotPolicyResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteFilesystemSnapshotPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteMountTargetResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteMountTargetResponse.java index 204431294aa..0cd581ad485 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteMountTargetResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteMountTargetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteOutboundConnectorResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteOutboundConnectorResponse.java index 2d13f65fb69..12f8f71d278 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteOutboundConnectorResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteOutboundConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteQuotaRuleResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteQuotaRuleResponse.java index 6f5dd45c4ad..f30d6b7ad68 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteQuotaRuleResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteQuotaRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteReplicationResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteReplicationResponse.java index af5978d2c1f..75a7b8a8981 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteReplicationResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteReplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteReplicationTargetResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteReplicationTargetResponse.java index a430b446883..5907b846182 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteReplicationTargetResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteReplicationTargetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteSnapshotResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteSnapshotResponse.java index 92d850806b2..68d0bd7f947 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteSnapshotResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DeleteSnapshotResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DetachCloneResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DetachCloneResponse.java index 8c35b306ccc..36e2caedeee 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DetachCloneResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/DetachCloneResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/EstimateReplicationResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/EstimateReplicationResponse.java index 206b28a18ab..e911ae002c4 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/EstimateReplicationResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/EstimateReplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetExportResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetExportResponse.java index b209963fe16..440985aa757 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetExportResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetExportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetExportSetResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetExportSetResponse.java index d13af44e6cc..6d0c119cda0 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetExportSetResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetExportSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetFileSystemResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetFileSystemResponse.java index b9c17cc22e2..d0bbb92193f 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetFileSystemResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetFileSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetFilesystemSnapshotPolicyResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetFilesystemSnapshotPolicyResponse.java index 29e2e4ff955..8f48182556d 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetFilesystemSnapshotPolicyResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetFilesystemSnapshotPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetMountTargetResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetMountTargetResponse.java index e0751e0e4a3..d841116178c 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetMountTargetResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetMountTargetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetOutboundConnectorResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetOutboundConnectorResponse.java index 71c3600cdc1..974f13e40ae 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetOutboundConnectorResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetOutboundConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetQuotaRuleResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetQuotaRuleResponse.java index 712605cf9bb..3312b1332a9 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetQuotaRuleResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetQuotaRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetReplicationResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetReplicationResponse.java index 22517a37863..e8ad5fb1b8e 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetReplicationResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetReplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetReplicationTargetResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetReplicationTargetResponse.java index 9bb6dbb139e..713355dcd69 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetReplicationTargetResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetReplicationTargetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetSnapshotResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetSnapshotResponse.java index 4a18cb737de..e9a36c4c86f 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetSnapshotResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/GetSnapshotResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListExportSetsResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListExportSetsResponse.java index 727eda4c37e..e06d32a8573 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListExportSetsResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListExportSetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListExportsResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListExportsResponse.java index 7792334dac9..a47a7a43abd 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListExportsResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListExportsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListFileSystemsResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListFileSystemsResponse.java index 73e44a9c8ee..3460fd2990c 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListFileSystemsResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListFileSystemsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListFilesystemSnapshotPoliciesResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListFilesystemSnapshotPoliciesResponse.java index 56fb9266e70..5a0c5c96523 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListFilesystemSnapshotPoliciesResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListFilesystemSnapshotPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListMountTargetsResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListMountTargetsResponse.java index 91fb1db267e..478f3c81f08 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListMountTargetsResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListMountTargetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListOutboundConnectorsResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListOutboundConnectorsResponse.java index 452c7ffce24..40d162847bf 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListOutboundConnectorsResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListOutboundConnectorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListQuotaRulesResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListQuotaRulesResponse.java index 6b1f40a20c4..d1b85fe2bd1 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListQuotaRulesResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListQuotaRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListReplicationTargetsResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListReplicationTargetsResponse.java index abc8bd603dd..9374a7c63ca 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListReplicationTargetsResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListReplicationTargetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListReplicationsResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListReplicationsResponse.java index b2f7284be79..98e6140bb8b 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListReplicationsResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListReplicationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListSnapshotsResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListSnapshotsResponse.java index 430efdca1b5..1cfaae69f61 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListSnapshotsResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ListSnapshotsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/PauseFilesystemSnapshotPolicyResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/PauseFilesystemSnapshotPolicyResponse.java index 536df885ee6..1d93f5c9346 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/PauseFilesystemSnapshotPolicyResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/PauseFilesystemSnapshotPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveExportLockResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveExportLockResponse.java index f4f92f2cccc..cc294ae50f4 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveExportLockResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveExportLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveFileSystemLockResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveFileSystemLockResponse.java index 934a1bcdec5..4240eb7f4ad 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveFileSystemLockResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveFileSystemLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveFilesystemSnapshotPolicyLockResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveFilesystemSnapshotPolicyLockResponse.java index b69d71e67ef..fbeaf669ed8 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveFilesystemSnapshotPolicyLockResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveFilesystemSnapshotPolicyLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveMountTargetLockResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveMountTargetLockResponse.java index 412be719e2f..d18cbb9289a 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveMountTargetLockResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveMountTargetLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveOutboundConnectorLockResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveOutboundConnectorLockResponse.java index c2dba4ff4bc..50c2052af43 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveOutboundConnectorLockResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveOutboundConnectorLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveReplicationLockResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveReplicationLockResponse.java index 7c62ca0547a..50ca650a1f2 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveReplicationLockResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveReplicationLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveSnapshotLockResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveSnapshotLockResponse.java index fcbaae51046..43aab2d2cf5 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveSnapshotLockResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/RemoveSnapshotLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ScheduleDowngradeShapeMountTargetResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ScheduleDowngradeShapeMountTargetResponse.java index 095a4f84390..45ab8dc151f 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ScheduleDowngradeShapeMountTargetResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ScheduleDowngradeShapeMountTargetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ToggleQuotaRulesResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ToggleQuotaRulesResponse.java index d407fab86a2..2dd1992de29 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ToggleQuotaRulesResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ToggleQuotaRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UnpauseFilesystemSnapshotPolicyResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UnpauseFilesystemSnapshotPolicyResponse.java index 3bc95584838..4c980a21b59 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UnpauseFilesystemSnapshotPolicyResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UnpauseFilesystemSnapshotPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateExportResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateExportResponse.java index adf90704907..7eb45c0b4d2 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateExportResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateExportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateExportSetResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateExportSetResponse.java index da64ad7d5c6..34d55f3e4af 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateExportSetResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateExportSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateFileSystemResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateFileSystemResponse.java index b1b9f9e2c9b..d761bfab416 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateFileSystemResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateFileSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateFilesystemSnapshotPolicyResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateFilesystemSnapshotPolicyResponse.java index edc7d7a9a51..806135fe0fc 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateFilesystemSnapshotPolicyResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateFilesystemSnapshotPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateMountTargetResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateMountTargetResponse.java index cb214e37011..db6bc7922fb 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateMountTargetResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateMountTargetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateOutboundConnectorResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateOutboundConnectorResponse.java index 3a9fb061be4..e094cf7b3f9 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateOutboundConnectorResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateOutboundConnectorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateQuotaRuleResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateQuotaRuleResponse.java index 9c3fbd72934..469928faa44 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateQuotaRuleResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateQuotaRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateReplicationResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateReplicationResponse.java index 76b76a03a78..5ff16423f54 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateReplicationResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateReplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateSnapshotResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateSnapshotResponse.java index 1fcea69dba1..412e2c3f9cb 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateSnapshotResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpdateSnapshotResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpgradeShapeMountTargetResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpgradeShapeMountTargetResponse.java index d406f057d4b..18e9263ecbf 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpgradeShapeMountTargetResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/UpgradeShapeMountTargetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ValidateKeyTabsResponse.java b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ValidateKeyTabsResponse.java index a486a6deeb5..c179309d2c9 100644 --- a/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ValidateKeyTabsResponse.java +++ b/bmc-filestorage/src/main/java/com/oracle/bmc/filestorage/responses/ValidateKeyTabsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.filestorage.responses; diff --git a/bmc-filestorage/src/main/resources/com/oracle/bmc/filestorage/client.properties b/bmc-filestorage/src/main/resources/com/oracle/bmc/filestorage/client.properties index f1e084ec34f..3dabbe496d5 100644 --- a/bmc-filestorage/src/main/resources/com/oracle/bmc/filestorage/client.properties +++ b/bmc-filestorage/src/main/resources/com/oracle/bmc/filestorage/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-fleetappsmanagement/pom.xml b/bmc-fleetappsmanagement/pom.xml index 1b14fc0f4d1..393c957bdf2 100644 --- a/bmc-fleetappsmanagement/pom.xml +++ b/bmc-fleetappsmanagement/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-fleetappsmanagement @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagement.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagement.java index ccd0f248cb7..1328e23ca0b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagement.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdmin.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdmin.java index e3a358268df..915c19e363b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdmin.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdmin.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdminAsync.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdminAsync.java index db01a30fcf5..c5e44aee6db 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdminAsync.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdminAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdminAsyncClient.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdminAsyncClient.java index 37657541f43..b244718b429 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdminAsyncClient.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdminAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdminClient.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdminClient.java index 9db96d67bb4..86a59c2c97f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdminClient.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdminClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdminPaginators.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdminPaginators.java index fd4bf7caf56..d9b0627ad05 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdminPaginators.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdminPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdminWaiters.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdminWaiters.java index 01335ee6cd0..76d076ea13f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdminWaiters.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAdminWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAsync.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAsync.java index 99bd8cb55d5..284ad938926 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAsync.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAsyncClient.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAsyncClient.java index fe4a465156e..2e253f1eef5 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAsyncClient.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalog.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalog.java index 49d8ea7b75d..43df974520e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalog.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalogAsync.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalogAsync.java index 79d9cbec9c6..6f89159a095 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalogAsync.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalogAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalogAsyncClient.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalogAsyncClient.java index b3969a910f8..5e6cf87a56d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalogAsyncClient.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalogAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalogClient.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalogClient.java index 1e7b515ccf9..6b8e66c7915 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalogClient.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalogClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalogPaginators.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalogPaginators.java index d9ba2978463..ebd2a9c6531 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalogPaginators.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalogPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalogWaiters.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalogWaiters.java index d4d70171849..f414bcf5844 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalogWaiters.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementCatalogWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementClient.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementClient.java index 1ecc50cd035..dcc4ead4bba 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementClient.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindow.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindow.java index 843ba83f063..cdf28f8e2d4 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindow.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindow.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindowAsync.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindowAsync.java index 3a99aeb1d65..4390558732c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindowAsync.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindowAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindowAsyncClient.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindowAsyncClient.java index d1946b93c9f..12d6e420b94 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindowAsyncClient.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindowAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindowClient.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindowClient.java index 499a72bf3e4..5551b5aa8a3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindowClient.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindowClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindowPaginators.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindowPaginators.java index 033c84e686e..6d3215e2f09 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindowPaginators.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindowPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindowWaiters.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindowWaiters.java index 867d8bb6f3c..b56b38bc1d6 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindowWaiters.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementMaintenanceWindowWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperations.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperations.java index 8bbe82b333c..3a011b60b62 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperations.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperations.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperationsAsync.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperationsAsync.java index 879dd8db1ee..8196716dcd0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperationsAsync.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperationsAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperationsAsyncClient.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperationsAsyncClient.java index 022297445ba..8930e0c01be 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperationsAsyncClient.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperationsAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperationsClient.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperationsClient.java index 77933d6467d..51c90e66cd3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperationsClient.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperationsClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperationsPaginators.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperationsPaginators.java index c8475eb101d..3b8df830216 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperationsPaginators.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperationsPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperationsWaiters.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperationsWaiters.java index bb72918af3a..a182abe7d24 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperationsWaiters.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementOperationsWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementPaginators.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementPaginators.java index 8214e89a7e6..86572b37f46 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementPaginators.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvision.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvision.java index ea38ca3a2ce..d5882e22a0c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvision.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvision.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvisionAsync.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvisionAsync.java index 58c2bb7e45c..a9c4ee72c21 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvisionAsync.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvisionAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvisionAsyncClient.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvisionAsyncClient.java index 1d3642ee4a6..81ac1bfa042 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvisionAsyncClient.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvisionAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvisionClient.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvisionClient.java index 7ec72d67752..43b1ae99627 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvisionClient.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvisionClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvisionPaginators.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvisionPaginators.java index 00ad981158f..02b7805db78 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvisionPaginators.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvisionPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvisionWaiters.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvisionWaiters.java index c81acea0c62..828690918ac 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvisionWaiters.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementProvisionWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooks.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooks.java index 578e9abe955..e69b06a3415 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooks.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooks.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooksAsync.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooksAsync.java index ee5db89b750..8266552be7e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooksAsync.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooksAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooksAsyncClient.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooksAsyncClient.java index d2bb5d5e18a..6918e25c39e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooksAsyncClient.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooksAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooksClient.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooksClient.java index fdd2969ab9e..1890d24748a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooksClient.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooksClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooksPaginators.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooksPaginators.java index 500492f8924..3aeb86b1d8e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooksPaginators.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooksPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooksWaiters.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooksWaiters.java index 2dd7903602c..1bd945af1b4 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooksWaiters.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementRunbooksWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWaiters.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWaiters.java index 8fcda490edf..ba73e388776 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWaiters.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequest.java index 85f2e5a4eef..ba25a432552 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequestAsync.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequestAsync.java index 7772a7e8fa3..d853b307281 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequestAsync.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequestAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequestAsyncClient.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequestAsyncClient.java index a5c7ff8cfa4..7dd70a8fd32 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequestAsyncClient.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequestAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequestClient.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequestClient.java index 927ece96cb8..c54e91fe7ba 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequestClient.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequestClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequestPaginators.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequestPaginators.java index 2732166c59d..d3deb3bad91 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequestPaginators.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequestPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequestWaiters.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequestWaiters.java index 4adf123680f..2acb1cace40 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequestWaiters.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/FleetAppsManagementWorkRequestWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ActionGroup.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ActionGroup.java index 6c4ae73d772..ad79ca41a22 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ActionGroup.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ActionGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ActionGroupBasedUserActionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ActionGroupBasedUserActionDetails.java index 5002d70b2fc..5eb737b99fe 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ActionGroupBasedUserActionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ActionGroupBasedUserActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ActionGroupDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ActionGroupDetails.java index be975bc7120..2dcf581fd2e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ActionGroupDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ActionGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ActionType.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ActionType.java index 65f1e68e6c0..4d14e7c479d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ActionType.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ActivityResourceTarget.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ActivityResourceTarget.java index c3bca9d34d8..d0d45d0d39e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ActivityResourceTarget.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ActivityResourceTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AnnouncementCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AnnouncementCollection.java index bbb8737f744..5cbbe443902 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AnnouncementCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AnnouncementCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AnnouncementSortBy.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AnnouncementSortBy.java index a0b8adc903a..26af6a04e3a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AnnouncementSortBy.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AnnouncementSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AnnouncementSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AnnouncementSummary.java index c0a2513c096..5bf41eda831 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AnnouncementSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AnnouncementSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ApiBasedExecutionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ApiBasedExecutionDetails.java index 4c377f6fff6..2a7614d5fa5 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ApiBasedExecutionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ApiBasedExecutionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ApmDomainVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ApmDomainVariable.java index d01ac81b686..3c4b92294da 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ApmDomainVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ApmDomainVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ArrayVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ArrayVariable.java index 03ac5080769..6d6bf020234 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ArrayVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ArrayVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ArtifactDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ArtifactDetails.java index ba78321aa14..eb20e1d4048 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ArtifactDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ArtifactDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedFleetCredentialDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedFleetCredentialDetails.java index 59d81eeb7a4..5a621f661f7 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedFleetCredentialDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedFleetCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedFleetPropertyDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedFleetPropertyDetails.java index e5a26512afe..6cbd148cf28 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedFleetPropertyDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedFleetPropertyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedFleetResourceDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedFleetResourceDetails.java index e29c16f7e3d..83f6bb2cd56 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedFleetResourceDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedFleetResourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedLocalTaskDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedLocalTaskDetails.java index 1f06450d1c6..7c9896bdbf9 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedLocalTaskDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedLocalTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedSchedulerDefinition.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedSchedulerDefinition.java index 78890ef8b6c..5d12f058bb9 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedSchedulerDefinition.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedSchedulerDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedSharedTaskDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedSharedTaskDetails.java index 84ab1931dee..057b01d1bac 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedSharedTaskDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedSharedTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedTaskDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedTaskDetails.java index 4fa98de3009..49f5752bd8d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedTaskDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AssociatedTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Association.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Association.java index bb4063971fb..eff6222fe25 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Association.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Association.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousContainerDbVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousContainerDbVariable.java index b034fedf3ab..3bec3b331f0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousContainerDbVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousContainerDbVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousContainerDbVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousContainerDbVariableDependsOn.java index 2f6a5034430..86bb89daa01 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousContainerDbVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousContainerDbVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousDataBaseVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousDataBaseVariable.java index d76084e4952..9f2fb40242e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousDataBaseVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousDataBaseVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousDataBaseVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousDataBaseVariableDependsOn.java index d5bd2365e6c..a0ec038aac8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousDataBaseVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousDataBaseVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousDatabaseVersionVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousDatabaseVersionVariable.java index d5e68dbc48a..75d6fe73fb0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousDatabaseVersionVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousDatabaseVersionVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousDatabaseVersionVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousDatabaseVersionVariableDependsOn.java index 7eea173fd7d..7efb29bb0f5 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousDatabaseVersionVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AutonomousDatabaseVersionVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AvailabilityDomainVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AvailabilityDomainVariable.java index 8081951d9f4..23da4e8fef5 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AvailabilityDomainVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AvailabilityDomainVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AvailabilityDomainVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AvailabilityDomainVariableDependsOn.java index 055cb262e68..4d978dbdf34 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AvailabilityDomainVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/AvailabilityDomainVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/BaseOutput.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/BaseOutput.java index e1a184b07e9..cb742b7d155 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/BaseOutput.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/BaseOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/BaseVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/BaseVariable.java index 1f0195478ba..11b22e15df7 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/BaseVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/BaseVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/BoolOutput.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/BoolOutput.java index 9f557fb06be..2a8eef86425 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/BoolOutput.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/BoolOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/BooleanVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/BooleanVariable.java index 5bc3d392a14..c4ad5dcf634 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/BooleanVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/BooleanVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogContentDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogContentDetails.java index df968960d8c..eabd1c93e9a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogContentDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogContentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogGitResultConfig.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogGitResultConfig.java index d3f02d9cdae..33c8d6d4b54 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogGitResultConfig.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogGitResultConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogGitSourceConfig.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogGitSourceConfig.java index 0a97cc739f7..d8e5d6d3b7e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogGitSourceConfig.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogGitSourceConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogItem.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogItem.java index b29c35a2bb3..59dd8f44ed1 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogItem.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogItemCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogItemCollection.java index e1655b818e1..3b33b166a5c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogItemCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogItemCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogItemSortBy.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogItemSortBy.java index 65f0f7c0443..a4a27030e91 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogItemSortBy.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogItemSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogItemSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogItemSummary.java index 4e3fc13c3d7..d61da30f19d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogItemSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogItemSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogItemVariablesDefinition.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogItemVariablesDefinition.java index c7243df9648..0fee0d7f116 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogItemVariablesDefinition.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogItemVariablesDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogListingVersionCriteriaEnum.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogListingVersionCriteriaEnum.java index aff50e34183..bf04f9fa70f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogListingVersionCriteriaEnum.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogListingVersionCriteriaEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogMarketplaceSourceConfig.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogMarketplaceSourceConfig.java index f80cb89548e..6e579650dfb 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogMarketplaceSourceConfig.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogMarketplaceSourceConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogParResultConfig.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogParResultConfig.java index 65bf24fc8d3..6b8baaec97f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogParResultConfig.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogParResultConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogParSourceConfig.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogParSourceConfig.java index 85e7025a9ab..d846aae3488 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogParSourceConfig.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogParSourceConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogResultPayload.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogResultPayload.java index cd086d7f68c..84f47adfd5d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogResultPayload.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogResultPayload.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogSourcePayload.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogSourcePayload.java index 03c559744d7..cfa901f654a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogSourcePayload.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogSourcePayload.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogSourceTemplateConfig.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogSourceTemplateConfig.java index 04437116bf0..ec1b8a4c844 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogSourceTemplateConfig.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogSourceTemplateConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogTemplateResultConfig.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogTemplateResultConfig.java index 705248dd560..933d1ab96bf 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogTemplateResultConfig.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CatalogTemplateResultConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangeCatalogItemCompartmentDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangeCatalogItemCompartmentDetails.java index 0e12cd25d8a..ae0bc466eda 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangeCatalogItemCompartmentDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangeCatalogItemCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangeFleetCompartmentDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangeFleetCompartmentDetails.java index d45d94d309d..3822427aaa9 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangeFleetCompartmentDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangeFleetCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangePatchCompartmentDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangePatchCompartmentDetails.java index 2036a4f3e76..cc87d67cad6 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangePatchCompartmentDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangePatchCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangePlatformConfigurationCompartmentDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangePlatformConfigurationCompartmentDetails.java index bf14e1b81ea..3663b09257c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangePlatformConfigurationCompartmentDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangePlatformConfigurationCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangePropertyCompartmentDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangePropertyCompartmentDetails.java index 020e48923d9..f1edc50ad54 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangePropertyCompartmentDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangePropertyCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangeProvisionCompartmentDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangeProvisionCompartmentDetails.java index 96671fe3bb7..03534fb9038 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangeProvisionCompartmentDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangeProvisionCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangeRunbookCompartmentDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangeRunbookCompartmentDetails.java index 32b02715224..05f3c33a55e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangeRunbookCompartmentDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangeRunbookCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangeTaskRecordCompartmentDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangeTaskRecordCompartmentDetails.java index d9f18af6838..3796658cb88 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangeTaskRecordCompartmentDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ChangeTaskRecordCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CheckResourceTaggingDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CheckResourceTaggingDetails.java index 4eb7ef7ac43..32a4b6f6d23 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CheckResourceTaggingDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CheckResourceTaggingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Choice.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Choice.java index c00ecfaa09e..aecc2d5695a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Choice.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Choice.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CloneCatalogItemDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CloneCatalogItemDetails.java index 40011c164ed..2a6f05e26ec 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CloneCatalogItemDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CloneCatalogItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CloudVmClusterId.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CloudVmClusterId.java index 0f0a641abbc..75f9bb86cb7 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CloudVmClusterId.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CloudVmClusterId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ColumnMetadata.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ColumnMetadata.java index aff95ceec0b..5250a9a5e30 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ColumnMetadata.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ColumnMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompartmentVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompartmentVariable.java index bb8c97b1cc4..f4cf6ec66cc 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompartmentVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompartmentVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Compliance.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Compliance.java index 50e223b7826..8b305ed9dc1 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Compliance.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Compliance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceDetailPolicy.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceDetailPolicy.java index fed3d3dec7f..8228cd6503b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceDetailPolicy.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceDetailPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceDetailProduct.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceDetailProduct.java index 582a57c5bcb..84311e630d6 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceDetailProduct.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceDetailProduct.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceDetailResource.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceDetailResource.java index f383de1b615..93865ce039c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceDetailResource.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceDetailResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceDetailTarget.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceDetailTarget.java index 8d5acf0c2b3..1694a5997f7 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceDetailTarget.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceDetailTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceLevel.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceLevel.java index 13a949bb2d1..5dc8c7d68d0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceLevel.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceLevel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePatchDetail.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePatchDetail.java index 3e26747ea61..7653e0b0dc9 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePatchDetail.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePatchDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicy.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicy.java index f0aa0664f62..5c78af14249 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicy.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicyCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicyCollection.java index e55818a6850..36f18bd079a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicyCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicyRule.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicyRule.java index 5d66d7a8e7b..121c2bfbdea 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicyRule.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicyRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicyRuleCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicyRuleCollection.java index 7c811d79cf4..635a1c37bd0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicyRuleCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicyRuleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicyRuleSortBy.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicyRuleSortBy.java index 520e17b169e..d5ad8546b71 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicyRuleSortBy.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicyRuleSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicyRuleSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicyRuleSummary.java index 3fe35485b9e..0f52adc78b9 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicyRuleSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicyRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicySortBy.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicySortBy.java index ecb6df98733..43c93c7fedc 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicySortBy.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicySortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicySummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicySummary.java index f0a30f80108..aaa3239ecd5 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicySummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CompliancePolicySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecord.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecord.java index 75a165aa155..c990ffd8dc4 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecord.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecord.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordAggregation.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordAggregation.java index 554f60408a2..5f18749e10d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordAggregation.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordAggregationCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordAggregationCollection.java index c72c8749837..660e08fb0d8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordAggregationCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordAggregationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordCollection.java index 9e56bac084d..7086c88de2e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordDimension.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordDimension.java index f91d742fc4b..ad4f3bfa697 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordDimension.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordDimension.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordSortBy.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordSortBy.java index 4f99cb5f30f..526bd0d1f7b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordSortBy.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordSummary.java index 52e11b7f5aa..f70454e747f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRecordSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceReport.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceReport.java index e4a1e65a3f9..198bd81f293 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceReport.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceReportPatchDetail.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceReportPatchDetail.java index 629b5630ae7..e30df6e1893 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceReportPatchDetail.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceReportPatchDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceReportProduct.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceReportProduct.java index 13bd76b493e..4f118775364 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceReportProduct.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceReportProduct.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceReportResource.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceReportResource.java index 5211edd41d3..933d20a2e8d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceReportResource.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceReportResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceReportTarget.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceReportTarget.java index 108cef9515c..d53fbb315d8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceReportTarget.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceReportTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRuleSeverity.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRuleSeverity.java index 1ed08ea4b7c..1efcbe06882 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRuleSeverity.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceRuleSeverity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceState.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceState.java index dfbc47f7a52..dc2910cd0d3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceState.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComplianceState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComponentProperties.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComponentProperties.java index 663a693c524..c0b7e622d80 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComponentProperties.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ComponentProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Condition.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Condition.java index 4e68dfe5c72..3a3032303e7 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Condition.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Condition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ConfigAssociationDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ConfigAssociationDetails.java index 494c27f646c..43beaa83a56 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ConfigAssociationDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ConfigAssociationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ConfigCategoryDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ConfigCategoryDetails.java index 42eb308dbe7..821a4a03bbe 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ConfigCategoryDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ConfigCategoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ConfigFileDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ConfigFileDetails.java index ffceca56711..edf7f7d077e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ConfigFileDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ConfigFileDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ConfigureCatalogItemDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ConfigureCatalogItemDetails.java index a341739062f..cbf729e603d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ConfigureCatalogItemDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ConfigureCatalogItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ConfirmTargetsDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ConfirmTargetsDetails.java index 4296ca730db..d357b0fd823 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ConfirmTargetsDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ConfirmTargetsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ContainerClusterVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ContainerClusterVariable.java index 2117a40fc55..daa8922bf72 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ContainerClusterVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ContainerClusterVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ContainerClusterVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ContainerClusterVariableDependsOn.java index 59f190edbc5..d1c80cb281e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ContainerClusterVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ContainerClusterVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ContentDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ContentDetails.java index 94575dcc0a9..4334a772fee 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ContentDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ContentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CopyableStringOutput.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CopyableStringOutput.java index 36fe9a7cdc7..7a62d01821a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CopyableStringOutput.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CopyableStringOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateCatalogItemDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateCatalogItemDetails.java index d66b1319f6e..561ca391ede 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateCatalogItemDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateCatalogItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateCompliancePolicyRuleDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateCompliancePolicyRuleDetails.java index 617fb8c3cf6..7b83133ba31 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateCompliancePolicyRuleDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateCompliancePolicyRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateFleetCredentialDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateFleetCredentialDetails.java index a279fa2281e..be702022875 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateFleetCredentialDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateFleetCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateFleetDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateFleetDetails.java index afb13d5f6fd..c92f9bdb844 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateFleetDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateFleetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateFleetPropertyDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateFleetPropertyDetails.java index 6bc14d023f7..e19919e560f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateFleetPropertyDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateFleetPropertyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateFleetResourceDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateFleetResourceDetails.java index 9c41b533bd8..cf477534e69 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateFleetResourceDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateFleetResourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateMaintenanceWindowDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateMaintenanceWindowDetails.java index bcb2d1e5464..1aa91ff8157 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateMaintenanceWindowDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateMaintenanceWindowDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateOnboardingDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateOnboardingDetails.java index ac6ed3b36a0..224ccb1713f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateOnboardingDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateOnboardingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreatePatchDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreatePatchDetails.java index 590c1918b67..21dc8b26b32 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreatePatchDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreatePatchDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreatePlatformConfigurationDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreatePlatformConfigurationDetails.java index 18b3396ce30..61bc32f8f52 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreatePlatformConfigurationDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreatePlatformConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreatePropertyDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreatePropertyDetails.java index 06ed5ce1472..417b6cd8e8f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreatePropertyDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreatePropertyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateProvisionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateProvisionDetails.java index 02a6b915788..3787f0f8080 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateProvisionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateProvisionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateRunbookDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateRunbookDetails.java index 12362323749..850a8dd60b8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateRunbookDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateRunbookDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateRunbookVersionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateRunbookVersionDetails.java index 808cec43369..0a7076f09e1 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateRunbookVersionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateRunbookVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateSchedulerDefinitionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateSchedulerDefinitionDetails.java index 3f2add4e91f..42225df1df6 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateSchedulerDefinitionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateSchedulerDefinitionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateTaskRecordDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateTaskRecordDetails.java index b5c0855e596..8e42e8580c2 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateTaskRecordDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CreateTaskRecordDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CredentialConfigCategoryDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CredentialConfigCategoryDetails.java index 3c1f1e6a0cc..c27e832fe30 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CredentialConfigCategoryDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CredentialConfigCategoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CredentialDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CredentialDetails.java index d9dfa05b676..27e2ea6d4a5 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CredentialDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CredentialEntitySpecificDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CredentialEntitySpecificDetails.java index 269153e779a..eeb17b7c920 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CredentialEntitySpecificDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CredentialEntitySpecificDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CsvOutput.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CsvOutput.java index 5a81d6fedda..caaf2d6ee52 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CsvOutput.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CsvOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CustomSchedule.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CustomSchedule.java index 8b6186929db..a00476f0413 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CustomSchedule.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/CustomSchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DataBaseVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DataBaseVariable.java index eb4244f5694..871f5133eb7 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DataBaseVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DataBaseVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DataBaseVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DataBaseVariableDependsOn.java index c285d9ea207..b9a48ce840a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DataBaseVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DataBaseVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatabaseCdbId.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatabaseCdbId.java index 3971f487075..6f957fe984f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatabaseCdbId.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatabaseCdbId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatabaseDataGuardId.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatabaseDataGuardId.java index e39f360ea38..bcf54e84769 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatabaseDataGuardId.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatabaseDataGuardId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatabaseDataguardAssociationId.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatabaseDataguardAssociationId.java index 4a43326c5cd..7e56b5cef41 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatabaseDataguardAssociationId.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatabaseDataguardAssociationId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatabaseDbNodeId.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatabaseDbNodeId.java index 75d5cc0ffb9..55cd8059eab 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatabaseDbNodeId.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatabaseDbNodeId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatabaseExadataId.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatabaseExadataId.java index 15bbd22df30..8157fb20b6b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatabaseExadataId.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatabaseExadataId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatetimeVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatetimeVariable.java index e2e71e2a54c..16639746d4e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatetimeVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DatetimeVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbHomeVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbHomeVariable.java index 2b2177950ea..9c17eb55666 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbHomeVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbHomeVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbHomeVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbHomeVariableDependsOn.java index 49a4d1e96cb..90e32ff50d8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbHomeVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbHomeVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbHomeVersionVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbHomeVersionVariable.java index b453cbecf83..40c3d4a245b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbHomeVersionVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbHomeVersionVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbHomeVersionVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbHomeVersionVariableDependsOn.java index 0e063c8ab4d..492961fc3c9 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbHomeVersionVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbHomeVersionVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbSystemVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbSystemVariable.java index 4835016ddc6..cbe059f7ada 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbSystemVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbSystemVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbSystemVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbSystemVariableDependsOn.java index ed88df3bed8..7925a4aa4fc 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbSystemVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DbSystemVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DependentPatchDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DependentPatchDetails.java index 50af8901fcd..637525b960d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DependentPatchDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DependentPatchDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DeployedResourceDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DeployedResourceDetails.java index 38e5899a46b..f836e3f5215 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DeployedResourceDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DeployedResourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Details.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Details.java index 855269e7ff6..ee05f35b7b9 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Details.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Details.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DiscoveredTarget.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DiscoveredTarget.java index e214889aa90..98c78857183 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DiscoveredTarget.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DiscoveredTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DynamicGroupsVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DynamicGroupsVariable.java index e2b2505510d..bb58ecc8897 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DynamicGroupsVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DynamicGroupsVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DynamicGroupsVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DynamicGroupsVariableDependsOn.java index 759f76731b0..2742a60cfd3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DynamicGroupsVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DynamicGroupsVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DynamicResourceSelection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DynamicResourceSelection.java index 07024e9eb44..3daf16cf300 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DynamicResourceSelection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/DynamicResourceSelection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/EnableLatestPolicyDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/EnableLatestPolicyDetails.java index 1b8b8d84f65..a46cf9d2882 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/EnableLatestPolicyDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/EnableLatestPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/EntityExecutionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/EntityExecutionDetails.java index 3eaf52db685..78d69cc0dec 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/EntityExecutionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/EntityExecutionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/EnumVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/EnumVariable.java index 2040bc908fd..2c5110099e6 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/EnumVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/EnumVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/EnvironmentConfigCategoryDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/EnvironmentConfigCategoryDetails.java index d9aab698abe..4fba862f44b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/EnvironmentConfigCategoryDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/EnvironmentConfigCategoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/EnvironmentFleetDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/EnvironmentFleetDetails.java index b7e8c0215fe..2d34a56a2da 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/EnvironmentFleetDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/EnvironmentFleetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Execution.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Execution.java index 88426c9832d..688c8869d9d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Execution.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Execution.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExecutionCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExecutionCollection.java index b35a496d8ca..bdf76af6898 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExecutionCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExecutionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExecutionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExecutionDetails.java index 58298e1cb25..79d9f03698e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExecutionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExecutionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExecutionSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExecutionSummary.java index d000e8c0b64..a8346138b7a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExecutionSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExecutionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExecutionWorkflowDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExecutionWorkflowDetails.java index 94f563eabb3..7114550c01a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExecutionWorkflowDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExecutionWorkflowDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExportComplianceReportDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExportComplianceReportDetails.java index 7c443f4f780..9121e528fc8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExportComplianceReportDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExportComplianceReportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExportRunbookDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExportRunbookDetails.java index 62caab05a2f..9c53d969dfe 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExportRunbookDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExportRunbookDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExportRunbookVersionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExportRunbookVersionDetails.java index 058567b5d97..a83fd753232 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExportRunbookVersionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ExportRunbookVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FaultDomainVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FaultDomainVariable.java index ab24ea1e0c6..fadbd871040 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FaultDomainVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FaultDomainVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FaultDomainVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FaultDomainVariableDependsOn.java index 58821870653..fd0ba916212 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FaultDomainVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FaultDomainVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileInputArgument.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileInputArgument.java index d300dbb6b7b..c3a6ee84638 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileInputArgument.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileInputArgument.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileStorageExportSetId.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileStorageExportSetId.java index 2f5ce6cf962..6d21fd8929e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileStorageExportSetId.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileStorageExportSetId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileStorageFilesystemId.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileStorageFilesystemId.java index acd4f5ba770..0f9b0819649 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileStorageFilesystemId.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileStorageFilesystemId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileStorageMountTargetId.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileStorageMountTargetId.java index 3af81d8fa9b..9dea3fefd4d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileStorageMountTargetId.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileStorageMountTargetId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileTaskArgument.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileTaskArgument.java index 383e0d451c4..66398ca7c55 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileTaskArgument.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileTaskArgument.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileVariable.java index 476d0bc6e0f..871217e2527 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FileVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Filter.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Filter.java index 467f536d598..12efa8cd724 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Filter.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Filter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FindRunbookExportDependencyDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FindRunbookExportDependencyDetails.java index 56b8465aeb4..1d6df32305d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FindRunbookExportDependencyDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FindRunbookExportDependencyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FindRunbookImportDependencyDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FindRunbookImportDependencyDetails.java index 20ef9f5e860..f3aa570ccf4 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FindRunbookImportDependencyDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FindRunbookImportDependencyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Fleet.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Fleet.java index 49a79f0acc7..c59decefbf4 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Fleet.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Fleet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetBasedActionGroup.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetBasedActionGroup.java index 16751acf54a..5c08b1ea92f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetBasedActionGroup.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetBasedActionGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetBasedActionGroupDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetBasedActionGroupDetails.java index 1a60ecf3fac..f6bf4de4189 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetBasedActionGroupDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetBasedActionGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCollection.java index 7cf5bf994a5..55e8d66c9d3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCredential.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCredential.java index 47cbc1fa7ba..c0a0d43fc25 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCredential.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCredential.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCredentialCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCredentialCollection.java index a21cfcdb20c..2a1e4e549ad 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCredentialCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCredentialCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCredentialEntitySpecificDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCredentialEntitySpecificDetails.java index 3f855063831..8dcfdf9bb5c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCredentialEntitySpecificDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCredentialEntitySpecificDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCredentialSortBy.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCredentialSortBy.java index 8e4f8ee50cd..06e4cf0e5e5 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCredentialSortBy.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCredentialSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCredentialSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCredentialSummary.java index d1d47364b70..983405474da 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCredentialSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetCredentialSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetDetails.java index 0b6a06f885b..3b8811a5259 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetProductCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetProductCollection.java index 3db8b8f18de..290fa77e9dc 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetProductCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetProductCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetProductSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetProductSummary.java index 6f766b6d66f..b5d25d70fe2 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetProductSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetProductSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetProperty.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetProperty.java index 3c003a94492..a3b5659ddfe 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetProperty.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetProperty.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetPropertyCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetPropertyCollection.java index 53dc300bbb7..faf15e9218b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetPropertyCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetPropertyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetPropertySortBy.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetPropertySortBy.java index 75159ca409f..34584654b93 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetPropertySortBy.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetPropertySortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetPropertySummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetPropertySummary.java index 911271be7c9..0753987e76f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetPropertySummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetPropertySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetResource.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetResource.java index 37ac8f2e35d..2d56bb1cdb4 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetResource.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetResourceCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetResourceCollection.java index b7dd0c52e93..02146d8f402 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetResourceCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetResourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetResourceSortBy.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetResourceSortBy.java index 7a6532ac767..c2c4e8be4ba 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetResourceSortBy.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetResourceSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetResourceSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetResourceSummary.java index c9e5d573d12..2a2b3293236 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetResourceSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetResourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetSortBy.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetSortBy.java index 25e6b5ba956..9fe7b1413be 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetSortBy.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetSummary.java index 2469c061039..96acbed6f21 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetTarget.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetTarget.java index 17845bb6628..ccd22e8d659 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetTarget.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetTargetCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetTargetCollection.java index 63b4c5ecc7d..ab6de9f9ed8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetTargetCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetTargetCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetTargetSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetTargetSummary.java index e64590f831b..2889278c747 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetTargetSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/FleetTargetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; @@ -35,6 +35,7 @@ public final class FleetTargetSummary "timeOfLastDiscoveryAttempt", "isLastDiscoveryAttemptSuccessful", "lifecycleState", + "parentTargetName", "systemTags" }) public FleetTargetSummary( @@ -49,6 +50,7 @@ public FleetTargetSummary( java.util.Date timeOfLastDiscoveryAttempt, Boolean isLastDiscoveryAttemptSuccessful, FleetTarget.LifecycleState lifecycleState, + String parentTargetName, java.util.Map> systemTags) { super(); this.id = id; @@ -62,6 +64,7 @@ public FleetTargetSummary( this.timeOfLastDiscoveryAttempt = timeOfLastDiscoveryAttempt; this.isLastDiscoveryAttemptSuccessful = isLastDiscoveryAttemptSuccessful; this.lifecycleState = lifecycleState; + this.parentTargetName = parentTargetName; this.systemTags = systemTags; } @@ -234,6 +237,21 @@ public Builder lifecycleState(FleetTarget.LifecycleState lifecycleState) { this.__explicitlySet__.add("lifecycleState"); return this; } + /** Name of the parent target. */ + @com.fasterxml.jackson.annotation.JsonProperty("parentTargetName") + private String parentTargetName; + + /** + * Name of the parent target. + * + * @param parentTargetName the value to set + * @return this builder + */ + public Builder parentTargetName(String parentTargetName) { + this.parentTargetName = parentTargetName; + this.__explicitlySet__.add("parentTargetName"); + return this; + } /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: * {@code {"orcl-cloud": {"free-tier-retained": "true"}}} @@ -271,6 +289,7 @@ public FleetTargetSummary build() { this.timeOfLastDiscoveryAttempt, this.isLastDiscoveryAttemptSuccessful, this.lifecycleState, + this.parentTargetName, this.systemTags); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); @@ -313,6 +332,9 @@ public Builder copy(FleetTargetSummary model) { if (model.wasPropertyExplicitlySet("lifecycleState")) { this.lifecycleState(model.getLifecycleState()); } + if (model.wasPropertyExplicitlySet("parentTargetName")) { + this.parentTargetName(model.getParentTargetName()); + } if (model.wasPropertyExplicitlySet("systemTags")) { this.systemTags(model.getSystemTags()); } @@ -474,6 +496,19 @@ public FleetTarget.LifecycleState getLifecycleState() { return lifecycleState; } + /** Name of the parent target. */ + @com.fasterxml.jackson.annotation.JsonProperty("parentTargetName") + private final String parentTargetName; + + /** + * Name of the parent target. + * + * @return the value + */ + public String getParentTargetName() { + return parentTargetName; + } + /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: * {@code {"orcl-cloud": {"free-tier-retained": "true"}}} @@ -520,6 +555,7 @@ public String toString(boolean includeByteArrayContents) { sb.append(", isLastDiscoveryAttemptSuccessful=") .append(String.valueOf(this.isLastDiscoveryAttemptSuccessful)); sb.append(", lifecycleState=").append(String.valueOf(this.lifecycleState)); + sb.append(", parentTargetName=").append(String.valueOf(this.parentTargetName)); sb.append(", systemTags=").append(String.valueOf(this.systemTags)); sb.append(")"); return sb.toString(); @@ -550,6 +586,7 @@ public boolean equals(Object o) { this.isLastDiscoveryAttemptSuccessful, other.isLastDiscoveryAttemptSuccessful) && java.util.Objects.equals(this.lifecycleState, other.lifecycleState) + && java.util.Objects.equals(this.parentTargetName, other.parentTargetName) && java.util.Objects.equals(this.systemTags, other.systemTags) && super.equals(other); } @@ -587,6 +624,9 @@ public int hashCode() { result = (result * PRIME) + (this.lifecycleState == null ? 43 : this.lifecycleState.hashCode()); + result = + (result * PRIME) + + (this.parentTargetName == null ? 43 : this.parentTargetName.hashCode()); result = (result * PRIME) + (this.systemTags == null ? 43 : this.systemTags.hashCode()); result = (result * PRIME) + super.hashCode(); return result; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GenerateComplianceReportDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GenerateComplianceReportDetails.java index 4a692e99e2d..02b6d7b0b00 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GenerateComplianceReportDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GenerateComplianceReportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GenericArtifact.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GenericArtifact.java index 682876120e7..200dd6438e2 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GenericArtifact.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GenericArtifact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GenericArtifactDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GenericArtifactDetails.java index a1f0df49f56..519dbcdd733 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GenericArtifactDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GenericArtifactDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GenericFleetDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GenericFleetDetails.java index fe617890289..c885d0000dd 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GenericFleetDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GenericFleetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Group.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Group.java index 1b9b7b1059c..71d39a13661 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Group.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Group.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GroupFleetDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GroupFleetDetails.java index 4b29d6d31c7..450172f0fbb 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GroupFleetDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GroupFleetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GroupsVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GroupsVariable.java index 6d367ac37cf..ccb8124c5ed 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GroupsVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GroupsVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GroupsVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GroupsVariableDependsOn.java index 6abd2b5c918..f348b09dd6e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GroupsVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/GroupsVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/IdentityDomainVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/IdentityDomainVariable.java index 3a53085b236..3f2eaf1d5fe 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/IdentityDomainVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/IdentityDomainVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/IdentityDomainVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/IdentityDomainVariableDependsOn.java index ce35881eceb..a0f125684d6 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/IdentityDomainVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/IdentityDomainVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImageVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImageVariable.java index b08e7dc7b3a..951dcb35c8e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImageVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImageVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImageVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImageVariableDependsOn.java index ecb46fb75d1..35c7e1b8cf1 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImageVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImageVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImportRunbookDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImportRunbookDetails.java index 4ba9d714fda..473479c6ccf 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImportRunbookDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImportRunbookDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImportRunbookPrecheckDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImportRunbookPrecheckDetails.java index 9708e187e1e..67c0079071b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImportRunbookPrecheckDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImportRunbookPrecheckDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImportRunbookPrecheckRequiredValue.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImportRunbookPrecheckRequiredValue.java index 40ec9f610dc..bc33ed1d568 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImportRunbookPrecheckRequiredValue.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImportRunbookPrecheckRequiredValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImportRunbookVersionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImportRunbookVersionDetails.java index 52b7b9b8ea1..02a9dd391be 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImportRunbookVersionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ImportRunbookVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InputArgument.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InputArgument.java index ea6a89ddd46..b7b55fb6d4f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InputArgument.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InputArgument.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InputFileContentDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InputFileContentDetails.java index 889c2dfc601..ff26274b251 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InputFileContentDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InputFileContentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InputFileObjectStorageBucketContentDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InputFileObjectStorageBucketContentDetails.java index 467f5cb91a8..3a7b829389b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InputFileObjectStorageBucketContentDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InputFileObjectStorageBucketContentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InputParameter.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InputParameter.java index 5c9f2a380e7..bf21b09f353 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InputParameter.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InputParameter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstalledPatchCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstalledPatchCollection.java index e3ef40bd975..92360f84d41 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstalledPatchCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstalledPatchCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstalledPatchSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstalledPatchSummary.java index b7bc99aebc9..31c0c64c48c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstalledPatchSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstalledPatchSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceShapeVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceShapeVariable.java index 5e02548142c..de6754db6f3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceShapeVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceShapeVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceShapeVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceShapeVariableDependsOn.java index eba05897c1d..15258117d58 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceShapeVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceShapeVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceShapeVariableWithFlex.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceShapeVariableWithFlex.java index 31d32c02a7b..beffc0d7124 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceShapeVariableWithFlex.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceShapeVariableWithFlex.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceShapeVariableWithFlexDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceShapeVariableWithFlexDependsOn.java index 1732b1d2b6b..c142ebc336c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceShapeVariableWithFlexDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceShapeVariableWithFlexDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceSummary.java index c32497e369e..38ee23e2331 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceVariable.java index e4bc52afb49..dd516801913 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceVariableDependsOn.java index 4bc6d66edf2..3c33497ae72 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InstanceVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/IntegerVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/IntegerVariable.java index f77d0eb8ffb..1088ca83615 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/IntegerVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/IntegerVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecord.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecord.java index 62933cd8a00..bf8101fe269 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecord.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecord.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecordCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecordCollection.java index 9f9171b1639..38628f9ec5d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecordCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecordCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecordComponent.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecordComponent.java index 319dbbd6265..2f03ee61265 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecordComponent.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecordComponent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecordPatchDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecordPatchDetails.java index 5b45e8004c7..f826b7d25d5 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecordPatchDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecordPatchDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecordProperty.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecordProperty.java index 5815b719b08..a042c502e2a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecordProperty.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecordProperty.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecordSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecordSummary.java index 7925bd0bac4..9bc1efe4355 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecordSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryRecordSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; @@ -39,7 +39,8 @@ public final class InventoryRecordSummary "installedPatches", "timeCreated", "timeUpdated", - "lifecycleState" + "lifecycleState", + "parentTargetName" }) public InventoryRecordSummary( String targetId, @@ -57,7 +58,8 @@ public InventoryRecordSummary( java.util.List installedPatches, java.util.Date timeCreated, java.util.Date timeUpdated, - InventoryRecord.LifecycleState lifecycleState) { + InventoryRecord.LifecycleState lifecycleState, + String parentTargetName) { super(); this.targetId = targetId; this.targetName = targetName; @@ -75,6 +77,7 @@ public InventoryRecordSummary( this.timeCreated = timeCreated; this.timeUpdated = timeUpdated; this.lifecycleState = lifecycleState; + this.parentTargetName = parentTargetName; } @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") @@ -320,6 +323,21 @@ public Builder lifecycleState(InventoryRecord.LifecycleState lifecycleState) { this.__explicitlySet__.add("lifecycleState"); return this; } + /** Name of the parent target. */ + @com.fasterxml.jackson.annotation.JsonProperty("parentTargetName") + private String parentTargetName; + + /** + * Name of the parent target. + * + * @param parentTargetName the value to set + * @return this builder + */ + public Builder parentTargetName(String parentTargetName) { + this.parentTargetName = parentTargetName; + this.__explicitlySet__.add("parentTargetName"); + return this; + } @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); @@ -342,7 +360,8 @@ public InventoryRecordSummary build() { this.installedPatches, this.timeCreated, this.timeUpdated, - this.lifecycleState); + this.lifecycleState, + this.parentTargetName); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } @@ -399,6 +418,9 @@ public Builder copy(InventoryRecordSummary model) { if (model.wasPropertyExplicitlySet("lifecycleState")) { this.lifecycleState(model.getLifecycleState()); } + if (model.wasPropertyExplicitlySet("parentTargetName")) { + this.parentTargetName(model.getParentTargetName()); + } return this; } } @@ -620,6 +642,19 @@ public InventoryRecord.LifecycleState getLifecycleState() { return lifecycleState; } + /** Name of the parent target. */ + @com.fasterxml.jackson.annotation.JsonProperty("parentTargetName") + private final String parentTargetName; + + /** + * Name of the parent target. + * + * @return the value + */ + public String getParentTargetName() { + return parentTargetName; + } + @Override public String toString() { return this.toString(true); @@ -651,6 +686,7 @@ public String toString(boolean includeByteArrayContents) { sb.append(", timeCreated=").append(String.valueOf(this.timeCreated)); sb.append(", timeUpdated=").append(String.valueOf(this.timeUpdated)); sb.append(", lifecycleState=").append(String.valueOf(this.lifecycleState)); + sb.append(", parentTargetName=").append(String.valueOf(this.parentTargetName)); sb.append(")"); return sb.toString(); } @@ -681,6 +717,7 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.timeCreated, other.timeCreated) && java.util.Objects.equals(this.timeUpdated, other.timeUpdated) && java.util.Objects.equals(this.lifecycleState, other.lifecycleState) + && java.util.Objects.equals(this.parentTargetName, other.parentTargetName) && super.equals(other); } @@ -720,6 +757,9 @@ public int hashCode() { result = (result * PRIME) + (this.lifecycleState == null ? 43 : this.lifecycleState.hashCode()); + result = + (result * PRIME) + + (this.parentTargetName == null ? 43 : this.parentTargetName.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryResourceCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryResourceCollection.java index 172bb771bf4..a38919331d0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryResourceCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryResourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryResourceSortBy.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryResourceSortBy.java index ffc38dafca6..fd2188630e9 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryResourceSortBy.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryResourceSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryResourceSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryResourceSummary.java index 714f85db308..2d91c1b744f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryResourceSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/InventoryResourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/JobActivity.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/JobActivity.java index e550ac784b4..6d92e5fd0e1 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/JobActivity.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/JobActivity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/JobExecutionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/JobExecutionDetails.java index 974982ae993..a61d1f0cf52 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/JobExecutionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/JobExecutionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/JobStatus.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/JobStatus.java index b2f4d5ede8a..281b7e6288d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/JobStatus.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/JobStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/JsonOutput.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/JsonOutput.java index e06e36dcf81..8582415e73c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/JsonOutput.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/JsonOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KeyEncryptionCredentialDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KeyEncryptionCredentialDetails.java index 6b83f395c7f..2863ef80d31 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KeyEncryptionCredentialDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KeyEncryptionCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KeyValueProperty.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KeyValueProperty.java index 4fa4aebc9e6..103a2148356 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KeyValueProperty.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KeyValueProperty.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsKeyVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsKeyVariable.java index 080a34ae698..7948175e46e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsKeyVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsKeyVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsKeyVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsKeyVariableDependsOn.java index 6b40ad19229..f7d21df8d9c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsKeyVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsKeyVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsSecretVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsSecretVariable.java index 6c5ff329047..dbee3b3a5fb 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsSecretVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsSecretVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsSecretVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsSecretVariableDependsOn.java index dff0a47baad..7be35494a74 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsSecretVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsSecretVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsVaultVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsVaultVariable.java index d73bdfd4da6..2c3d257fbf3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsVaultVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsVaultVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsVaultVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsVaultVariableDependsOn.java index 09ed922e5aa..98d3262161e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsVaultVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KmsVaultVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KubernetesVersionsVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KubernetesVersionsVariable.java index ad70b8a3dec..4c79e6ea7f3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KubernetesVersionsVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KubernetesVersionsVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KubernetesVersionsVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KubernetesVersionsVariableDependsOn.java index c94554796b1..253a28add93 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KubernetesVersionsVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/KubernetesVersionsVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LifecycleOperationConfigCategoryDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LifecycleOperationConfigCategoryDetails.java index 2a4b875f8a9..ea506dbf4ae 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LifecycleOperationConfigCategoryDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LifecycleOperationConfigCategoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LinkOutput.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LinkOutput.java index d838aa88953..f1883f9f1c9 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LinkOutput.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LinkOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ListOutput.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ListOutput.java index fe38ee968f8..c6df3cce002 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ListOutput.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ListOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LoadBalancerReservedIps.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LoadBalancerReservedIps.java index d5f25689473..b692e98c38f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LoadBalancerReservedIps.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LoadBalancerReservedIps.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LoadBalancerVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LoadBalancerVariable.java index 56d1c9a5736..e7cf15702f1 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LoadBalancerVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LoadBalancerVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LoadBalancerVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LoadBalancerVariableDependsOn.java index f8e259ac10d..7fbfb210b4a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LoadBalancerVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LoadBalancerVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsEntityTypes.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsEntityTypes.java index 52577f8fe8e..130763d5704 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsEntityTypes.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsEntityTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsLogEntities.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsLogEntities.java index c6b15634e0e..d9b2e92cee3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsLogEntities.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsLogEntities.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsLogEntitiesDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsLogEntitiesDependsOn.java index e720981bc3a..120bccd43e1 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsLogEntitiesDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsLogEntitiesDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsLogGroup.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsLogGroup.java index 39d2213fe0d..c5318d38f58 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsLogGroup.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsLogGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsLogGroupDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsLogGroupDependsOn.java index 5917924a6e1..69cc1248968 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsLogGroupDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsLogGroupDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsScheduledTasks.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsScheduledTasks.java index 612941e601f..f733aa98a23 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsScheduledTasks.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsScheduledTasks.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsScheduledTasksDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsScheduledTasksDependsOn.java index 3bfdfaa7788..ee8cf7fdf4e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsScheduledTasksDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsScheduledTasksDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsSources.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsSources.java index 94264bcd432..174f8d5644d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsSources.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsSources.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsSourcesDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsSourcesDependsOn.java index 2463117db72..235d3f685a0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsSourcesDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/LogAnalyticsSourcesDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MaintenanceWindow.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MaintenanceWindow.java index dc4988b350f..e29d7f02a41 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MaintenanceWindow.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MaintenanceWindow.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MaintenanceWindowCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MaintenanceWindowCollection.java index 47b384fe2df..9bf7ccf98a3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MaintenanceWindowCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MaintenanceWindowCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MaintenanceWindowSchedule.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MaintenanceWindowSchedule.java index f4171bb9ca6..d527432ed44 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MaintenanceWindowSchedule.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MaintenanceWindowSchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MaintenanceWindowSortBy.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MaintenanceWindowSortBy.java index 8f3c287b4ce..e6cfd17f069 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MaintenanceWindowSortBy.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MaintenanceWindowSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MaintenanceWindowSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MaintenanceWindowSummary.java index a8b7c79248a..3b8612f9aa4 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MaintenanceWindowSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MaintenanceWindowSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManageJobExecutionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManageJobExecutionDetails.java index 01662f15e78..75ad164fb70 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManageJobExecutionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManageJobExecutionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManageSettingsDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManageSettingsDetails.java index b8c695b6c9c..5a719c9c3e5 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManageSettingsDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManageSettingsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagedEntity.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagedEntity.java index b12836b9e54..46a7a9c7d0e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagedEntity.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagedEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagedEntityAggregation.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagedEntityAggregation.java index 5de409abd25..161883489e4 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagedEntityAggregation.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagedEntityAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagedEntityAggregationCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagedEntityAggregationCollection.java index 8612f6ab79c..3005b6a0724 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagedEntityAggregationCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagedEntityAggregationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagedEntityDimension.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagedEntityDimension.java index 254d30cc80c..0f6225d5346 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagedEntityDimension.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagedEntityDimension.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagementAgentDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagementAgentDependsOn.java index 6f3a90f4c67..fc651987447 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagementAgentDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagementAgentDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagementAgents.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagementAgents.java index e5a5bd81243..8f6318080df 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagementAgents.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManagementAgents.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManualResourceSelection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManualResourceSelection.java index 90d7b475c06..7068c7069c2 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManualResourceSelection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ManualResourceSelection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MapOutput.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MapOutput.java index 7290a3939c3..d199b90e95c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MapOutput.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MapOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MountTargetsVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MountTargetsVariable.java index 7fb58add8f0..94d0e010950 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MountTargetsVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MountTargetsVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MountTargetsVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MountTargetsVariableDependsOn.java index 9592eacf8b2..a93245bf22a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MountTargetsVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MountTargetsVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MultiValueFilter.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MultiValueFilter.java index 30f68bd59b3..5a6a503d182 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MultiValueFilter.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MultiValueFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MultilineVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MultilineVariable.java index 20056b7df89..24eb37e4d03 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MultilineVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MultilineVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MysqlConfigurationId.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MysqlConfigurationId.java index 9a6044a7a78..cb8ed8a1344 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MysqlConfigurationId.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MysqlConfigurationId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MysqlShapeId.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MysqlShapeId.java index f14ac89a60a..505e025e238 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MysqlShapeId.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/MysqlShapeId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NatGatewayVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NatGatewayVariable.java index 479aa7d6e4a..2ac9bf67648 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NatGatewayVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NatGatewayVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NatGatewayVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NatGatewayVariableDependsOn.java index 9d13f7b88a7..27e2b0835d2 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NatGatewayVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NatGatewayVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NetworkLoadBalancerId.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NetworkLoadBalancerId.java index fc5a062816a..b7d7046ce3f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NetworkLoadBalancerId.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NetworkLoadBalancerId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NotificationPreference.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NotificationPreference.java index d39d670f4a1..a89d2503760 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NotificationPreference.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NotificationPreference.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NsgVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NsgVariable.java index 9a33b6cea6d..8132771e79b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NsgVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NsgVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NsgVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NsgVariableDependsOn.java index 3d451239a8c..beb1b5b7e15 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NsgVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NsgVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NumberOutput.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NumberOutput.java index c71c23f73fd..f41a47d62ac 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NumberOutput.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NumberOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NumberVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NumberVariable.java index 8496ebdce75..20b50656745 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NumberVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/NumberVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ObjectStorageBucketConfigFileDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ObjectStorageBucketConfigFileDetails.java index 2b515b4af60..26be25d8fd0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ObjectStorageBucketConfigFileDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ObjectStorageBucketConfigFileDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ObjectStorageBucketContentDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ObjectStorageBucketContentDetails.java index 9dd9a1d0760..8cc09336116 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ObjectStorageBucketContentDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ObjectStorageBucketContentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ObjectStorageBucketName.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ObjectStorageBucketName.java index fa11c3474b6..3cda8a84aac 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ObjectStorageBucketName.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ObjectStorageBucketName.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OcidOutput.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OcidOutput.java index 8a6db92fa7a..124aca9d6d3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OcidOutput.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OcidOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OdsProjectVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OdsProjectVariable.java index d1b15c1ca83..1bb5fd58e07 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OdsProjectVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OdsProjectVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OdsProjectVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OdsProjectVariableDependsOn.java index dc05c658dde..f49ad4a3804 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OdsProjectVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OdsProjectVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Onboarding.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Onboarding.java index f5c876f1557..99c08f54698 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Onboarding.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Onboarding.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OnboardingCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OnboardingCollection.java index 22e652926df..d2b191939df 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OnboardingCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OnboardingCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OnboardingPolicyCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OnboardingPolicyCollection.java index 5e9e87e0ea6..fd14d62d8b0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OnboardingPolicyCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OnboardingPolicyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OnboardingPolicySummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OnboardingPolicySummary.java index f0c0c8ad983..42b548409f8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OnboardingPolicySummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OnboardingPolicySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OnboardingSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OnboardingSummary.java index 92d85001505..67823104be2 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OnboardingSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OnboardingSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OperationRunbook.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OperationRunbook.java index 4c781622cf3..d4c12e043d8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OperationRunbook.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OperationRunbook.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OperationStatus.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OperationStatus.java index f6f030e17bf..c1652b2f22d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OperationStatus.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OperationType.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OperationType.java index 1127fe817e4..b36b059a8cd 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OperationType.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OrderClause.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OrderClause.java index 132adabc2e1..6b9103a200a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OrderClause.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OrderClause.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OsType.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OsType.java index 4c4cddf36f3..158ad00f16b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OsType.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OsType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Outcome.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Outcome.java index 6c330f4ca26..f0e21836275 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Outcome.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Outcome.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OutputGroup.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OutputGroup.java index cafd3e0edd6..c01cc2c6de9 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OutputGroup.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OutputGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OutputVariableDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OutputVariableDetails.java index 7f5b59745ef..e9942cac58d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OutputVariableDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OutputVariableDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OutputVariableInputArgument.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OutputVariableInputArgument.java index 95c0784e5fa..2e6f9f2ab46 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OutputVariableInputArgument.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OutputVariableInputArgument.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OutputVariableMapping.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OutputVariableMapping.java index 5bd9579c40e..df9a4ef2224 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OutputVariableMapping.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/OutputVariableMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PasswordVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PasswordVariable.java index 655e33dc62b..45998c06ec8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PasswordVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PasswordVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Patch.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Patch.java index 46706028934..2b09466b5cd 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Patch.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Patch.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchCollection.java index ff188c1f6be..5bb32c8b4aa 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchFileContentDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchFileContentDetails.java index 010b6e73515..a05fd978ff4 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchFileContentDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchFileContentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchFileObjectStorageBucketContentDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchFileObjectStorageBucketContentDetails.java index f735d153011..e5ff1c1f914 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchFileObjectStorageBucketContentDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchFileObjectStorageBucketContentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchLevelSelectionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchLevelSelectionDetails.java index a6ea78f2195..16549f0f5af 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchLevelSelectionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchLevelSelectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchNameSelectionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchNameSelectionDetails.java index 46bc77d65b5..ed84b044db4 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchNameSelectionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchNameSelectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchProduct.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchProduct.java index 8b380cad018..453752d8dc0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchProduct.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchProduct.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchReleaseDateSelectionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchReleaseDateSelectionDetails.java index 345d62f353f..c9df26a6d7e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchReleaseDateSelectionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchReleaseDateSelectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchSelectionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchSelectionDetails.java index 442c1065a10..ac695028bac 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchSelectionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchSelectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchSeverity.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchSeverity.java index 048737865da..a81daea4e84 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchSeverity.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchSeverity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchSortBy.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchSortBy.java index 8b34badc154..6dbd59a1d91 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchSortBy.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchSummary.java index ef26d2606c2..1b519025f89 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchType.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchType.java index 592cd744f30..f533c4dcd3f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchType.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchTypeConfigCategoryDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchTypeConfigCategoryDetails.java index 898e3a325c1..53c7a19bcf8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchTypeConfigCategoryDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PatchTypeConfigCategoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PauseDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PauseDetails.java index 8a723ca64c0..f6fcb7b381a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PauseDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PauseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Placeholder.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Placeholder.java index 4dafe67ce7d..30ec3f044d0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Placeholder.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Placeholder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlainTextCredentialDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlainTextCredentialDetails.java index 216db277e34..400d6033a21 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlainTextCredentialDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlainTextCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformConfiguration.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformConfiguration.java index c7296e59b7b..a016ead0bd9 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformConfiguration.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformConfigurationCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformConfigurationCollection.java index 8165a0ee34e..856fc0bfd34 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformConfigurationCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformConfigurationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformConfigurationSortBy.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformConfigurationSortBy.java index d20d9699dde..583a989393a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformConfigurationSortBy.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformConfigurationSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformConfigurationSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformConfigurationSummary.java index 31e6fe16fba..433de2df672 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformConfigurationSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformConfigurationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformSpecificArtifact.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformSpecificArtifact.java index 0cd2b51e09d..248e7680a45 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformSpecificArtifact.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformSpecificArtifact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformSpecificArtifactDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformSpecificArtifactDetails.java index 0846a9fc470..bb8a5793474 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformSpecificArtifactDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PlatformSpecificArtifactDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Preferences.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Preferences.java index 8f2de3769ac..e18bee97bc0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Preferences.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Preferences.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PreviousTaskInstanceDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PreviousTaskInstanceDetails.java index cb5f9b41478..35bcf7615c1 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PreviousTaskInstanceDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PreviousTaskInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PreviousTaskInstanceRunOnDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PreviousTaskInstanceRunOnDetails.java index 247cc0c918e..b485294dd2a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PreviousTaskInstanceRunOnDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PreviousTaskInstanceRunOnDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PrivateEndpointVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PrivateEndpointVariable.java index 8d4e416aa5d..d284501f643 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PrivateEndpointVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PrivateEndpointVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PrivateEndpointVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PrivateEndpointVariableDependsOn.java index 88ff00f0b25..9b6a31350ba 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PrivateEndpointVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PrivateEndpointVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductConfigCategoryDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductConfigCategoryDetails.java index cc807edea2f..4a11770d6a5 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductConfigCategoryDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductConfigCategoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; @@ -28,12 +28,12 @@ public final class ProductConfigCategoryDetails extends ConfigCategoryDetails { @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") public static class Builder { - /** Versions associated with the PRODUCT . */ + /** Versions associated with the PRODUCT. Mandatory if product is not softlink product. */ @com.fasterxml.jackson.annotation.JsonProperty("versions") private java.util.List versions; /** - * Versions associated with the PRODUCT . + * Versions associated with the PRODUCT. Mandatory if product is not softlink product. * * @param versions the value to set * @return this builder @@ -46,7 +46,8 @@ public Builder versions(java.util.List versions) { /** * OCID for the Credential name to be associated with the Product. These are useful for * target discovery or lifecycle management activities, for example, Oracle WebLogic admin - * credentials for Oracle WebLogic Application server. + * credentials for Oracle WebLogic Application server. This property is not applicable if + * isSoftlink is set to true. */ @com.fasterxml.jackson.annotation.JsonProperty("credentials") private java.util.List credentials; @@ -54,7 +55,8 @@ public Builder versions(java.util.List versions) { /** * OCID for the Credential name to be associated with the Product. These are useful for * target discovery or lifecycle management activities, for example, Oracle WebLogic admin - * credentials for Oracle WebLogic Application server. + * credentials for Oracle WebLogic Application server. This property is not applicable if + * isSoftlink is set to true. * * @param credentials the value to set * @return this builder @@ -67,7 +69,8 @@ public Builder credentials(java.util.List credentials) /** * Various components of the Product. For example:The administration server or node manager * can be the components of the Oracle WebLogic Application server. Forms server or - * concurrent manager can be the components of the Oracle E-Business Suite. + * concurrent manager can be the components of the Oracle E-Business Suite. This property is + * not applicable if isSoftlink is set to true. */ @com.fasterxml.jackson.annotation.JsonProperty("components") private java.util.List components; @@ -75,7 +78,8 @@ public Builder credentials(java.util.List credentials) /** * Various components of the Product. For example:The administration server or node manager * can be the components of the Oracle WebLogic Application server. Forms server or - * concurrent manager can be the components of the Oracle E-Business Suite. + * concurrent manager can be the components of the Oracle E-Business Suite. This property is + * not applicable if isSoftlink is set to true. * * @param components the value to set * @return this builder @@ -87,14 +91,16 @@ public Builder components(java.util.List components) { } /** * Products compatible with this Product. Provide products from the list of other products - * you have created that are compatible with the present one + * you have created that are compatible with the present one. This property is not + * applicable if isSoftlink is set to true. */ @com.fasterxml.jackson.annotation.JsonProperty("compatibleProducts") private java.util.List compatibleProducts; /** * Products compatible with this Product. Provide products from the list of other products - * you have created that are compatible with the present one + * you have created that are compatible with the present one. This property is not + * applicable if isSoftlink is set to true. * * @param compatibleProducts the value to set * @return this builder @@ -105,12 +111,16 @@ public Builder compatibleProducts( this.__explicitlySet__.add("compatibleProducts"); return this; } - /** Patch Types associated with this Product. */ + /** + * Patch Types associated with this Product. This property is not applicable if isSoftlink + * is set to true. + */ @com.fasterxml.jackson.annotation.JsonProperty("patchTypes") private java.util.List patchTypes; /** - * Patch Types associated with this Product. + * Patch Types associated with this Product. This property is not applicable if isSoftlink + * is set to true. * * @param patchTypes the value to set * @return this builder @@ -120,6 +130,60 @@ public Builder patchTypes(java.util.List patchTypes) { this.__explicitlySet__.add("patchTypes"); return this; } + /** Specify if the product is softlink product or not */ + @com.fasterxml.jackson.annotation.JsonProperty("isSoftlink") + private Boolean isSoftlink; + + /** + * Specify if the product is softlink product or not + * + * @param isSoftlink the value to set + * @return this builder + */ + public Builder isSoftlink(Boolean isSoftlink) { + this.isSoftlink = isSoftlink; + this.__explicitlySet__.add("isSoftlink"); + return this; + } + /** + * The OCID of the product that would be the target for the softlink. This property is + * applicable only if isSoftlink is set to true + */ + @com.fasterxml.jackson.annotation.JsonProperty("linkProductId") + private String linkProductId; + + /** + * The OCID of the product that would be the target for the softlink. This property is + * applicable only if isSoftlink is set to true + * + * @param linkProductId the value to set + * @return this builder + */ + public Builder linkProductId(String linkProductId) { + this.linkProductId = linkProductId; + this.__explicitlySet__.add("linkProductId"); + return this; + } + /** + * If set true ,compliance policies will be created for softlink product. This property is + * applicable only if isSoftlink is set to true + */ + @com.fasterxml.jackson.annotation.JsonProperty("isCompliancePolicyRequiredForSoftlink") + private Boolean isCompliancePolicyRequiredForSoftlink; + + /** + * If set true ,compliance policies will be created for softlink product. This property is + * applicable only if isSoftlink is set to true + * + * @param isCompliancePolicyRequiredForSoftlink the value to set + * @return this builder + */ + public Builder isCompliancePolicyRequiredForSoftlink( + Boolean isCompliancePolicyRequiredForSoftlink) { + this.isCompliancePolicyRequiredForSoftlink = isCompliancePolicyRequiredForSoftlink; + this.__explicitlySet__.add("isCompliancePolicyRequiredForSoftlink"); + return this; + } @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); @@ -131,7 +195,10 @@ public ProductConfigCategoryDetails build() { this.credentials, this.components, this.compatibleProducts, - this.patchTypes); + this.patchTypes, + this.isSoftlink, + this.linkProductId, + this.isCompliancePolicyRequiredForSoftlink); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } @@ -155,6 +222,16 @@ public Builder copy(ProductConfigCategoryDetails model) { if (model.wasPropertyExplicitlySet("patchTypes")) { this.patchTypes(model.getPatchTypes()); } + if (model.wasPropertyExplicitlySet("isSoftlink")) { + this.isSoftlink(model.getIsSoftlink()); + } + if (model.wasPropertyExplicitlySet("linkProductId")) { + this.linkProductId(model.getLinkProductId()); + } + if (model.wasPropertyExplicitlySet("isCompliancePolicyRequiredForSoftlink")) { + this.isCompliancePolicyRequiredForSoftlink( + model.getIsCompliancePolicyRequiredForSoftlink()); + } return this; } } @@ -174,21 +251,27 @@ public ProductConfigCategoryDetails( java.util.List credentials, java.util.List components, java.util.List compatibleProducts, - java.util.List patchTypes) { + java.util.List patchTypes, + Boolean isSoftlink, + String linkProductId, + Boolean isCompliancePolicyRequiredForSoftlink) { super(); this.versions = versions; this.credentials = credentials; this.components = components; this.compatibleProducts = compatibleProducts; this.patchTypes = patchTypes; + this.isSoftlink = isSoftlink; + this.linkProductId = linkProductId; + this.isCompliancePolicyRequiredForSoftlink = isCompliancePolicyRequiredForSoftlink; } - /** Versions associated with the PRODUCT . */ + /** Versions associated with the PRODUCT. Mandatory if product is not softlink product. */ @com.fasterxml.jackson.annotation.JsonProperty("versions") private final java.util.List versions; /** - * Versions associated with the PRODUCT . + * Versions associated with the PRODUCT. Mandatory if product is not softlink product. * * @return the value */ @@ -199,7 +282,8 @@ public java.util.List getVersions() { /** * OCID for the Credential name to be associated with the Product. These are useful for target * discovery or lifecycle management activities, for example, Oracle WebLogic admin credentials - * for Oracle WebLogic Application server. + * for Oracle WebLogic Application server. This property is not applicable if isSoftlink is set + * to true. */ @com.fasterxml.jackson.annotation.JsonProperty("credentials") private final java.util.List credentials; @@ -207,7 +291,8 @@ public java.util.List getVersions() { /** * OCID for the Credential name to be associated with the Product. These are useful for target * discovery or lifecycle management activities, for example, Oracle WebLogic admin credentials - * for Oracle WebLogic Application server. + * for Oracle WebLogic Application server. This property is not applicable if isSoftlink is set + * to true. * * @return the value */ @@ -218,7 +303,8 @@ public java.util.List getCredentials() { /** * Various components of the Product. For example:The administration server or node manager can * be the components of the Oracle WebLogic Application server. Forms server or concurrent - * manager can be the components of the Oracle E-Business Suite. + * manager can be the components of the Oracle E-Business Suite. This property is not applicable + * if isSoftlink is set to true. */ @com.fasterxml.jackson.annotation.JsonProperty("components") private final java.util.List components; @@ -226,7 +312,8 @@ public java.util.List getCredentials() { /** * Various components of the Product. For example:The administration server or node manager can * be the components of the Oracle WebLogic Application server. Forms server or concurrent - * manager can be the components of the Oracle E-Business Suite. + * manager can be the components of the Oracle E-Business Suite. This property is not applicable + * if isSoftlink is set to true. * * @return the value */ @@ -236,14 +323,16 @@ public java.util.List getComponents() { /** * Products compatible with this Product. Provide products from the list of other products you - * have created that are compatible with the present one + * have created that are compatible with the present one. This property is not applicable if + * isSoftlink is set to true. */ @com.fasterxml.jackson.annotation.JsonProperty("compatibleProducts") private final java.util.List compatibleProducts; /** * Products compatible with this Product. Provide products from the list of other products you - * have created that are compatible with the present one + * have created that are compatible with the present one. This property is not applicable if + * isSoftlink is set to true. * * @return the value */ @@ -251,12 +340,16 @@ public java.util.List getCompatibleProducts() { return compatibleProducts; } - /** Patch Types associated with this Product. */ + /** + * Patch Types associated with this Product. This property is not applicable if isSoftlink is + * set to true. + */ @com.fasterxml.jackson.annotation.JsonProperty("patchTypes") private final java.util.List patchTypes; /** - * Patch Types associated with this Product. + * Patch Types associated with this Product. This property is not applicable if isSoftlink is + * set to true. * * @return the value */ @@ -264,6 +357,53 @@ public java.util.List getPatchTypes() { return patchTypes; } + /** Specify if the product is softlink product or not */ + @com.fasterxml.jackson.annotation.JsonProperty("isSoftlink") + private final Boolean isSoftlink; + + /** + * Specify if the product is softlink product or not + * + * @return the value + */ + public Boolean getIsSoftlink() { + return isSoftlink; + } + + /** + * The OCID of the product that would be the target for the softlink. This property is + * applicable only if isSoftlink is set to true + */ + @com.fasterxml.jackson.annotation.JsonProperty("linkProductId") + private final String linkProductId; + + /** + * The OCID of the product that would be the target for the softlink. This property is + * applicable only if isSoftlink is set to true + * + * @return the value + */ + public String getLinkProductId() { + return linkProductId; + } + + /** + * If set true ,compliance policies will be created for softlink product. This property is + * applicable only if isSoftlink is set to true + */ + @com.fasterxml.jackson.annotation.JsonProperty("isCompliancePolicyRequiredForSoftlink") + private final Boolean isCompliancePolicyRequiredForSoftlink; + + /** + * If set true ,compliance policies will be created for softlink product. This property is + * applicable only if isSoftlink is set to true + * + * @return the value + */ + public Boolean getIsCompliancePolicyRequiredForSoftlink() { + return isCompliancePolicyRequiredForSoftlink; + } + @Override public String toString() { return this.toString(true); @@ -284,6 +424,10 @@ public String toString(boolean includeByteArrayContents) { sb.append(", components=").append(String.valueOf(this.components)); sb.append(", compatibleProducts=").append(String.valueOf(this.compatibleProducts)); sb.append(", patchTypes=").append(String.valueOf(this.patchTypes)); + sb.append(", isSoftlink=").append(String.valueOf(this.isSoftlink)); + sb.append(", linkProductId=").append(String.valueOf(this.linkProductId)); + sb.append(", isCompliancePolicyRequiredForSoftlink=") + .append(String.valueOf(this.isCompliancePolicyRequiredForSoftlink)); sb.append(")"); return sb.toString(); } @@ -303,6 +447,11 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.components, other.components) && java.util.Objects.equals(this.compatibleProducts, other.compatibleProducts) && java.util.Objects.equals(this.patchTypes, other.patchTypes) + && java.util.Objects.equals(this.isSoftlink, other.isSoftlink) + && java.util.Objects.equals(this.linkProductId, other.linkProductId) + && java.util.Objects.equals( + this.isCompliancePolicyRequiredForSoftlink, + other.isCompliancePolicyRequiredForSoftlink) && super.equals(other); } @@ -319,6 +468,15 @@ public int hashCode() { ? 43 : this.compatibleProducts.hashCode()); result = (result * PRIME) + (this.patchTypes == null ? 43 : this.patchTypes.hashCode()); + result = (result * PRIME) + (this.isSoftlink == null ? 43 : this.isSoftlink.hashCode()); + result = + (result * PRIME) + + (this.linkProductId == null ? 43 : this.linkProductId.hashCode()); + result = + (result * PRIME) + + (this.isCompliancePolicyRequiredForSoftlink == null + ? 43 + : this.isCompliancePolicyRequiredForSoftlink.hashCode()); return result; } } diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductFleetDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductFleetDetails.java index 359bcbdcd8b..c0bdbd99869 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductFleetDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductFleetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductSortBy.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductSortBy.java index 1bee9e8406c..d1cf8cdda74 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductSortBy.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductStackAsProductSubCategoryDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductStackAsProductSubCategoryDetails.java index e0036623ded..4030cab998e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductStackAsProductSubCategoryDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductStackAsProductSubCategoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductStackConfigCategoryDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductStackConfigCategoryDetails.java index 8112ff3b545..0ffff149268 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductStackConfigCategoryDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductStackConfigCategoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductStackGenericSubCategoryDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductStackGenericSubCategoryDetails.java index dfb4b7cb808..bf25b35c277 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductStackGenericSubCategoryDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductStackGenericSubCategoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductStackSubCategoryDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductStackSubCategoryDetails.java index 239298afff5..67f093e4b77 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductStackSubCategoryDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductStackSubCategoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductVersionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductVersionDetails.java index 73f604010c6..e8a1981fd81 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductVersionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProductVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Prompt.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Prompt.java index 9e8e1afe043..460b97a2ecd 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Prompt.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Prompt.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Properties.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Properties.java index 574af38c3f9..b6fbf09ad71 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Properties.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Properties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Property.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Property.java index 646134e40c5..acf0e73610a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Property.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Property.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PropertyCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PropertyCollection.java index df3277d3fd6..c432fef5937 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PropertyCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PropertyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PropertySortBy.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PropertySortBy.java index 2dea6378f1d..65fad4e951a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PropertySortBy.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PropertySortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PropertySummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PropertySummary.java index 65dfdf792dc..05a5b3f55e8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PropertySummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PropertySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Provision.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Provision.java index 38bf11889a9..ce43041b0f6 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Provision.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Provision.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProvisionCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProvisionCollection.java index 8e109503820..161a9c43e38 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProvisionCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProvisionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProvisionSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProvisionSummary.java index 8c959a6b6a3..0cf3b620d7a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProvisionSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ProvisionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PublishRunbookDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PublishRunbookDetails.java index 09b47bdc3e2..ba72141b05d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PublishRunbookDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/PublishRunbookDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RecommendedPatchCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RecommendedPatchCollection.java index 5b214cf48c7..8019d2377dc 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RecommendedPatchCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RecommendedPatchCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RecommendedPatchSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RecommendedPatchSummary.java index 416c5cdbd8d..13b96d0b907 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RecommendedPatchSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RecommendedPatchSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RegionVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RegionVariable.java index b3fc0c9bd08..99765a85697 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RegionVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RegionVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportCollection.java index 5086865a422..ee4f1755c3c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportDetails.java index 0b536a9a02f..8fc4fd7fda1 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportFilter.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportFilter.java index 37a82940623..cd566bf292d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportFilter.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportMetadataCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportMetadataCollection.java index 2202640f7ff..68b655e608a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportMetadataCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportMetadataCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportMetadataSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportMetadataSummary.java index b664903922e..b5a9dbf7325 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportMetadataSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportMetadataSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportSummary.java index 569408eeeef..c6c217f1ce3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportTimeRange.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportTimeRange.java index e30b1891a20..a4acae42d48 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportTimeRange.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ReportTimeRange.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RequestResourceValidationDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RequestResourceValidationDetails.java index bf55bb8a2ea..268d0ff51c5 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RequestResourceValidationDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RequestResourceValidationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RequestTargetDiscoveryDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RequestTargetDiscoveryDetails.java index 4a9d770323f..0a3adcb8788 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RequestTargetDiscoveryDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RequestTargetDiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RequiredValue.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RequiredValue.java index bf945515fcf..522d357d3b6 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RequiredValue.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RequiredValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceCollection.java index 7305433eb2f..9c5d45c8fbd 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceCredentialEntitySpecificDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceCredentialEntitySpecificDetails.java index 9f88248827a..9a284d19a95 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceCredentialEntitySpecificDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceCredentialEntitySpecificDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceSelection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceSelection.java index fc99494206c..7c2dac1fe4b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceSelection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceSelection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceSummary.java index 07a8eac310c..ba0263f8e74 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceTagCheckDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceTagCheckDetails.java index 544e52c4ccd..107b98cc3e2 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceTagCheckDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceTagCheckDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceTagEnablementInfo.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceTagEnablementInfo.java index c3e0798fdca..59f3daa5107 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceTagEnablementInfo.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ResourceTagEnablementInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RollbackWorkflowDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RollbackWorkflowDetails.java index 75ff2f3d054..55683acfb58 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RollbackWorkflowDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RollbackWorkflowDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Rule.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Rule.java index c571d792b26..44526acc441 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Rule.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Rule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunOnDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunOnDetails.java index a71d82ad875..e1e52cf2ef4 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunOnDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunOnDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Runbook.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Runbook.java index 8c5e8dbe5d8..bdaae491c21 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Runbook.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Runbook.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookCollection.java index 13b8767ccca..b8d184c1871 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookExport.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookExport.java index 0cc195aa7a2..fbd9c2e943d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookExport.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookExport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookExportDependencyCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookExportDependencyCollection.java index 73a09395c92..5de1bfe7372 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookExportDependencyCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookExportDependencyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookExportStatusCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookExportStatusCollection.java index 917d4b1d646..ad6fe4fd352 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookExportStatusCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookExportStatusCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookExportStatusSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookExportStatusSummary.java index 1d3bd6599f8..cfa52a8451d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookExportStatusSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookExportStatusSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImport.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImport.java index 482669c0a5d..35eb3a78bd2 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImport.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportAs.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportAs.java index a47858e120e..06572708b32 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportAs.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportAs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportAsRunbook.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportAsRunbook.java index 9e264c20f73..e170ccfcf64 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportAsRunbook.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportAsRunbook.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportAsVersion.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportAsVersion.java index abb8babed39..a6383f1f986 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportAsVersion.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportAsVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportDependencyCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportDependencyCollection.java index 2e4b61d2b65..0c9841d6f79 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportDependencyCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportDependencyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportDependencyFinderRequiredValue.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportDependencyFinderRequiredValue.java index 072d0ed4441..1b984ee3221 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportDependencyFinderRequiredValue.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportDependencyFinderRequiredValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportRequiredValue.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportRequiredValue.java index e0fed7fe337..f30a999fcdc 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportRequiredValue.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportRequiredValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportStatusCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportStatusCollection.java index 8774e6d47d8..8df1ae89afd 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportStatusCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportStatusCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportStatusSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportStatusSummary.java index adc4f865726..daac24a7339 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportStatusSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookImportStatusSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookSortBy.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookSortBy.java index 579d8e8f992..3a11a173fec 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookSortBy.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookSummary.java index 97e1f7c19aa..0feb8fae19c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookTransferDependency.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookTransferDependency.java index b08bc7ad8b6..4106fb1d855 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookTransferDependency.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookTransferDependency.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookTransferDependencySummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookTransferDependencySummary.java index b3f17c0a8fc..b9f4f7768a9 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookTransferDependencySummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookTransferDependencySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookVersion.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookVersion.java index 3cbab5cd3ee..7d79b5d08af 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookVersion.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookVersionCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookVersionCollection.java index 00baf3642fe..7b01349fd72 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookVersionCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookVersionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookVersionSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookVersionSummary.java index 9aa8e1dc941..f9b998f9f71 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookVersionSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/RunbookVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Schedule.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Schedule.java index 826d2945897..998da0d918d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Schedule.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Schedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ScheduleInstanceRunOnDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ScheduleInstanceRunOnDetails.java index 5adc4217c51..8d464b0a768 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ScheduleInstanceRunOnDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ScheduleInstanceRunOnDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ScheduleInstanceTargetRunOnDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ScheduleInstanceTargetRunOnDetails.java index 4fec86f13a5..27badc9b940 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ScheduleInstanceTargetRunOnDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ScheduleInstanceTargetRunOnDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ScheduledFleetCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ScheduledFleetCollection.java index eb6068b89b0..ce626495c27 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ScheduledFleetCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ScheduledFleetCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ScheduledFleetSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ScheduledFleetSummary.java index 227acab847a..a0c1824457e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ScheduledFleetSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ScheduledFleetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerDefinition.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerDefinition.java index 26f675a8c90..050a28d8896 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerDefinition.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerDefinitionCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerDefinitionCollection.java index 81d04c47134..331142e0214 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerDefinitionCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerDefinitionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerDefinitionSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerDefinitionSummary.java index f35ceea5ebf..0807154e2da 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerDefinitionSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerDefinitionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerExecutionCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerExecutionCollection.java index 784e1f8a417..e77d6f0dabc 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerExecutionCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerExecutionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerExecutionSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerExecutionSummary.java index ee79396a776..b20c10842ec 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerExecutionSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerExecutionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJob.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJob.java index e7bd37c4266..ac712c68518 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJob.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJobAggregation.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJobAggregation.java index e3f4fa6be30..59af5fdb5db 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJobAggregation.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJobAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJobAggregationCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJobAggregationCollection.java index 345a63550a8..f0879b5487a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJobAggregationCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJobAggregationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJobCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJobCollection.java index 1d07e730daa..2710c0f25bf 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJobCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJobCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJobDimension.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJobDimension.java index f6b29575d57..b0073c4d705 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJobDimension.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJobDimension.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJobSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJobSummary.java index 297a3a14ab5..4f771659754 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJobSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchedulerJobSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchemaDocument.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchemaDocument.java index 1dc16b95ffd..9179563c071 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchemaDocument.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SchemaDocument.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Scope.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Scope.java index 5f253b453fe..86ce7803dc3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Scope.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Scope.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ScriptBasedExecutionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ScriptBasedExecutionDetails.java index be9f454cb58..d897228a4b2 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ScriptBasedExecutionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ScriptBasedExecutionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Selection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Selection.java index 915850f5b37..443688b108a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Selection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Selection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SelectionCriteria.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SelectionCriteria.java index 01e000df848..618ba72877e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SelectionCriteria.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SelectionCriteria.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SelfHostedInstanceConfigCategoryDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SelfHostedInstanceConfigCategoryDetails.java index f5379a986b5..5857b54e8ef 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SelfHostedInstanceConfigCategoryDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SelfHostedInstanceConfigCategoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SelfHostedInstanceRunOnDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SelfHostedInstanceRunOnDetails.java index 58b86c3ecfd..0bda19edd7b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SelfHostedInstanceRunOnDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SelfHostedInstanceRunOnDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ServiceGatewayVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ServiceGatewayVariable.java index b43a81a53ec..81a41fa95d0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ServiceGatewayVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ServiceGatewayVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ServiceGatewayVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ServiceGatewayVariableDependsOn.java index 1463f968829..a0b710025d1 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ServiceGatewayVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ServiceGatewayVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SetDefaultRunbookDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SetDefaultRunbookDetails.java index a032aa068e8..08fdaf925cf 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SetDefaultRunbookDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SetDefaultRunbookDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SingleValueFilter.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SingleValueFilter.java index aef5ac04d63..0c2b6b22b27 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SingleValueFilter.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SingleValueFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SortBy.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SortBy.java index 5ae95e075c8..5a1350a5597 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SortBy.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SortOrder.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SortOrder.java index 9b4b9f68268..8332641f48a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SortOrder.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SshPublicKeyVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SshPublicKeyVariable.java index d89a37291d3..677ec515e04 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SshPublicKeyVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SshPublicKeyVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StackSource.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StackSource.java index 69e3b91054e..c6c2eade28f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StackSource.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StackSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StepBasedUserActionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StepBasedUserActionDetails.java index 4fafaa4c491..535686deb22 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StepBasedUserActionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StepBasedUserActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StepCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StepCollection.java index ba9553f85d5..fa014c8ecd8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StepCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StepCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StepSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StepSummary.java index 855b29e61a1..6817d68d37f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StepSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StepSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StringInputArgument.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StringInputArgument.java index 97793262031..12c8e0865a5 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StringInputArgument.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StringInputArgument.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StringOutput.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StringOutput.java index a892073e639..63c7f3a0be9 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StringOutput.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StringOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StringTaskArgument.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StringTaskArgument.java index fc712a0d1ef..3d455fa0ef6 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StringTaskArgument.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StringTaskArgument.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StringVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StringVariable.java index babfad81d23..8003c2539ad 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StringVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/StringVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SubnetVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SubnetVariable.java index 81594e2e9bb..351cf85c254 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SubnetVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SubnetVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SubnetVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SubnetVariableDependsOn.java index ba326e4ced9..3e97cab24bc 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SubnetVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/SubnetVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TagVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TagVariable.java index db2b00b695a..5ac91700dec 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TagVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TagVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TagVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TagVariableDependsOn.java index 2a5c22bf6cd..5633bd6db68 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TagVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TagVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetComponentCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetComponentCollection.java index e7c94e127f8..6e59e2b8442 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetComponentCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetComponentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetComponentSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetComponentSummary.java index c1a96f6b954..391e634b2dc 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetComponentSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetComponentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetCredentialEntitySpecificDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetCredentialEntitySpecificDetails.java index a8102ac968f..5f4b905c547 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetCredentialEntitySpecificDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetCredentialEntitySpecificDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetPropertyCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetPropertyCollection.java index f1ccdab7e1d..7cb318f18ce 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetPropertyCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetPropertyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetPropertySummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetPropertySummary.java index 1783e448013..377a8596d6f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetPropertySummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetPropertySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetResource.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetResource.java index 539c64519fd..4622dac5e57 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetResource.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetSortBy.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetSortBy.java index 07ac2d6b66b..560007a4fe3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetSortBy.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TargetSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Task.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Task.java index 57101b034ae..f466925a48f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Task.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Task.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskArgument.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskArgument.java index 2df36025d79..931d0e2c7c0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskArgument.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskArgument.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskExecutionType.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskExecutionType.java index 8df360f27b6..055da758aee 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskExecutionType.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskExecutionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskNotificationPreferences.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskNotificationPreferences.java index 4421eb325a0..d4ca6b040d4 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskNotificationPreferences.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskNotificationPreferences.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskRecord.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskRecord.java index d4f7a54ada1..0795c45de1e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskRecord.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskRecord.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskRecordCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskRecordCollection.java index 469be1b1672..896321410df 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskRecordCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskRecordCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskRecordSortBy.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskRecordSortBy.java index b976bb79bae..ec9e137085a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskRecordSortBy.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskRecordSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskRecordSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskRecordSummary.java index a137b060432..41d762d0a9c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskRecordSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskRecordSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskScope.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskScope.java index c5838d895c8..815942f73f6 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskScope.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskScope.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskVariable.java index ca07f52eba1..bb6bfd400fe 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TaskVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TerraformBasedExecutionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TerraformBasedExecutionDetails.java index a17ba114a21..fabeaee9be7 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TerraformBasedExecutionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TerraformBasedExecutionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TimeBasedPauseDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TimeBasedPauseDetails.java index 3330f41458e..42db34da38f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TimeBasedPauseDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TimeBasedPauseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TransferRunbookContentDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TransferRunbookContentDetails.java index e08b982ca8b..78168997f5f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TransferRunbookContentDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TransferRunbookContentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TransferRunbookObjectStorageBucketContentDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TransferRunbookObjectStorageBucketContentDetails.java index e719c7b3bd7..ce94bcca72a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TransferRunbookObjectStorageBucketContentDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TransferRunbookObjectStorageBucketContentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TransferRunbookParUrlContentDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TransferRunbookParUrlContentDetails.java index 69b22bd1820..5033505be42 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TransferRunbookParUrlContentDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/TransferRunbookParUrlContentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpcomingSchedule.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpcomingSchedule.java index 6268c06cbdc..6966ce41f50 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpcomingSchedule.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpcomingSchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateCatalogItemDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateCatalogItemDetails.java index 7deee0b5498..2396295d599 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateCatalogItemDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateCatalogItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateCompliancePolicyRuleDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateCompliancePolicyRuleDetails.java index bb914e3f4a7..d88c8644d4c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateCompliancePolicyRuleDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateCompliancePolicyRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateFleetCredentialDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateFleetCredentialDetails.java index 95dc5f477fe..1f732a02340 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateFleetCredentialDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateFleetCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateFleetDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateFleetDetails.java index e76fd7e2590..5de30353887 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateFleetDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateFleetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateFleetPropertyDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateFleetPropertyDetails.java index 8f68743d3fa..7fc1882e9d9 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateFleetPropertyDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateFleetPropertyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateFleetResourceDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateFleetResourceDetails.java index e862148e57c..d68fe2b4d07 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateFleetResourceDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateFleetResourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateMaintenanceWindowDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateMaintenanceWindowDetails.java index e9f15e9a351..5d2dae567bb 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateMaintenanceWindowDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateMaintenanceWindowDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateOnboardingDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateOnboardingDetails.java index 4ebe6411943..25e10698161 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateOnboardingDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateOnboardingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdatePatchDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdatePatchDetails.java index 167d93ec8b3..76ecc6edd9d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdatePatchDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdatePatchDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdatePlatformConfigurationDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdatePlatformConfigurationDetails.java index 4f1ac23ce60..8065d85c403 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdatePlatformConfigurationDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdatePlatformConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdatePropertyDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdatePropertyDetails.java index d9d191c80fe..72d4f10c458 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdatePropertyDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdatePropertyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateProvisionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateProvisionDetails.java index 3f27e95886f..24c829618fc 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateProvisionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateProvisionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateRunbookDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateRunbookDetails.java index 0fa0cdeb5af..483cd5d5064 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateRunbookDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateRunbookDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateRunbookVersionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateRunbookVersionDetails.java index e7fcf03267a..856fa86f1c7 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateRunbookVersionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateRunbookVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateSchedulerDefinitionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateSchedulerDefinitionDetails.java index fe7e5457e31..1af97699f0a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateSchedulerDefinitionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateSchedulerDefinitionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateSchedulerJobDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateSchedulerJobDetails.java index 3280e781a92..cac310b2fce 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateSchedulerJobDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateSchedulerJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateTaskRecordDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateTaskRecordDetails.java index aa22a3d903d..82255367787 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateTaskRecordDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UpdateTaskRecordDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UserActionBasedPauseDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UserActionBasedPauseDetails.java index 766971e8ed0..096e6a2e5e8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UserActionBasedPauseDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UserActionBasedPauseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UserActionDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UserActionDetails.java index 88cf97d7256..95e18252b1e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UserActionDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/UserActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ValueType.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ValueType.java index 84579d21f7c..ad6a3ffa3e1 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ValueType.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/ValueType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Variable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Variable.java index bf78d343585..bf1cb53e46c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Variable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Variable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VariableGroup.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VariableGroup.java index 6955df3b051..739678e271e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VariableGroup.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VariableGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VariableGroups.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VariableGroups.java index 276f6bd3650..52c2dc5e66a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VariableGroups.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VariableGroups.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VaultSecretCredentialDetails.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VaultSecretCredentialDetails.java index 87bd33efddd..ff0e9ffa21a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VaultSecretCredentialDetails.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VaultSecretCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VcnNetworkSecurityGroupId.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VcnNetworkSecurityGroupId.java index 64fc58ab494..e6d99af1d75 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VcnNetworkSecurityGroupId.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VcnNetworkSecurityGroupId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VcnSecListId.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VcnSecListId.java index 69528dc5cb8..c981910f9fd 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VcnSecListId.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VcnSecListId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VcnVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VcnVariable.java index 2a173f97f52..4e22c973d2c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VcnVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VcnVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VcnVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VcnVariableDependsOn.java index fe8bf0cd954..a4a189da9d1 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VcnVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VcnVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Version.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Version.java index bc096b479d9..511431b9d52 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Version.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/Version.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VolumeBackupPoliciesVariable.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VolumeBackupPoliciesVariable.java index ea19061d59a..b73ecf32d27 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VolumeBackupPoliciesVariable.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VolumeBackupPoliciesVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VolumeBackupPoliciesVariableDependsOn.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VolumeBackupPoliciesVariableDependsOn.java index 1c275c3c7e2..e21c58d4817 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VolumeBackupPoliciesVariableDependsOn.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VolumeBackupPoliciesVariableDependsOn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VolumeId.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VolumeId.java index 544e5956c17..de3ebecc822 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VolumeId.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/VolumeId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequest.java index 6edb75887dd..14546ae12d4 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestError.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestError.java index cc34bf77cbb..484305edfea 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestError.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestErrorCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestErrorCollection.java index e23552abeb4..a4c7952c4c3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestErrorCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestLogEntry.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestLogEntry.java index 44bbf4effec..32504e39a77 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestLogEntry.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestLogEntryCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestLogEntryCollection.java index 65eb4bdf3ab..2e5dfd2e47a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestLogEntryCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestResource.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestResource.java index ce4ac41cafd..0fbcd13aadb 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestResource.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestResourceMetadataKey.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestResourceMetadataKey.java index 66d2625921c..bd9c3f41888 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestResourceMetadataKey.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestSummary.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestSummary.java index 0ca48b93f9e..0d1def4b09d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestSummary.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestSummaryCollection.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestSummaryCollection.java index 1ea6571b683..1cf8e5665c6 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestSummaryCollection.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkflowComponent.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkflowComponent.java index d8a77a93747..dee68c80a68 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkflowComponent.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkflowComponent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkflowGroup.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkflowGroup.java index f514a9dff9d..698d3477209 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkflowGroup.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkflowGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkflowGroupComponent.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkflowGroupComponent.java index dcfda7e8166..8627bb14970 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkflowGroupComponent.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkflowGroupComponent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkflowTaskComponent.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkflowTaskComponent.java index 05f7114aa01..5784c07e53c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkflowTaskComponent.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/model/WorkflowTaskComponent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.model; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangeCatalogItemCompartmentRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangeCatalogItemCompartmentRequest.java index cf384cf486c..76f02aacddf 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangeCatalogItemCompartmentRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangeCatalogItemCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangeFleetCompartmentRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangeFleetCompartmentRequest.java index d6538ad7cc3..c677e3d96cb 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangeFleetCompartmentRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangeFleetCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangePatchCompartmentRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangePatchCompartmentRequest.java index 3c2b1be301f..585184891ce 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangePatchCompartmentRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangePatchCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangePlatformConfigurationCompartmentRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangePlatformConfigurationCompartmentRequest.java index e37ad5b9a16..96af8570055 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangePlatformConfigurationCompartmentRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangePlatformConfigurationCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangePropertyCompartmentRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangePropertyCompartmentRequest.java index c2dd1a624d6..b96699eb036 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangePropertyCompartmentRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangePropertyCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangeProvisionCompartmentRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangeProvisionCompartmentRequest.java index 4b7ef51abc8..6bc8345206e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangeProvisionCompartmentRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangeProvisionCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangeRunbookCompartmentRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangeRunbookCompartmentRequest.java index d1901be7d96..8dc0d99dfb6 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangeRunbookCompartmentRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangeRunbookCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangeTaskRecordCompartmentRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangeTaskRecordCompartmentRequest.java index 242c367bcc4..ca1473105e4 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangeTaskRecordCompartmentRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ChangeTaskRecordCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CheckResourceTaggingRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CheckResourceTaggingRequest.java index 99956086fe3..3b165d42847 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CheckResourceTaggingRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CheckResourceTaggingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CloneCatalogItemRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CloneCatalogItemRequest.java index dfbe84f89a9..e8c1c4dd527 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CloneCatalogItemRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CloneCatalogItemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ConfigureCatalogItemRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ConfigureCatalogItemRequest.java index c2dc6065a95..73a6632a7b2 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ConfigureCatalogItemRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ConfigureCatalogItemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ConfirmTargetsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ConfirmTargetsRequest.java index 63e4efe6275..749aafa34a4 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ConfirmTargetsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ConfirmTargetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateCatalogItemRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateCatalogItemRequest.java index d40e0a38e29..b2c19de9a92 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateCatalogItemRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateCatalogItemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateCompliancePolicyRuleRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateCompliancePolicyRuleRequest.java index b46a63b813d..2c19053d4d8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateCompliancePolicyRuleRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateCompliancePolicyRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateFleetCredentialRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateFleetCredentialRequest.java index 28afed9c222..d1d51192e74 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateFleetCredentialRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateFleetCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateFleetPropertyRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateFleetPropertyRequest.java index 7c978260cb1..3505204fb9e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateFleetPropertyRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateFleetPropertyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateFleetRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateFleetRequest.java index 60430e09e24..ad1cf8f8e3e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateFleetRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateFleetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateFleetResourceRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateFleetResourceRequest.java index abde5d5193b..e4723046bcf 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateFleetResourceRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateFleetResourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateMaintenanceWindowRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateMaintenanceWindowRequest.java index 6a2719c96fa..63b02514754 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateMaintenanceWindowRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateMaintenanceWindowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateOnboardingRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateOnboardingRequest.java index 08f90e17e3a..bb0c67d3f02 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateOnboardingRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateOnboardingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreatePatchRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreatePatchRequest.java index 1bf458808f5..7462884abf2 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreatePatchRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreatePatchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreatePlatformConfigurationRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreatePlatformConfigurationRequest.java index 633646dcffa..6a8661171e8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreatePlatformConfigurationRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreatePlatformConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreatePropertyRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreatePropertyRequest.java index 21d61f2bac0..f818ebe8426 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreatePropertyRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreatePropertyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateProvisionRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateProvisionRequest.java index 53c62d7a7c3..18573b4bb98 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateProvisionRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateProvisionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateRunbookRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateRunbookRequest.java index e2c65845295..3da1b7eee4b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateRunbookRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateRunbookRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateRunbookVersionRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateRunbookVersionRequest.java index 68f95397a27..f502d2975d8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateRunbookVersionRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateRunbookVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateSchedulerDefinitionRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateSchedulerDefinitionRequest.java index e694196ff86..0490e873307 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateSchedulerDefinitionRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateSchedulerDefinitionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateTaskRecordRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateTaskRecordRequest.java index 6c201cd7517..a2b5d41a425 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateTaskRecordRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/CreateTaskRecordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteCatalogItemRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteCatalogItemRequest.java index af6bb16142f..a00967395f2 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteCatalogItemRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteCatalogItemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteCompliancePolicyRuleRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteCompliancePolicyRuleRequest.java index 203a93bff50..3d78ecff44b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteCompliancePolicyRuleRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteCompliancePolicyRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteFleetCredentialRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteFleetCredentialRequest.java index 5a6b4903067..3d334937179 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteFleetCredentialRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteFleetCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteFleetPropertyRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteFleetPropertyRequest.java index 2600862f5ff..fe4664ef154 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteFleetPropertyRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteFleetPropertyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteFleetRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteFleetRequest.java index 68cbe80bfec..ddba828727c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteFleetRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteFleetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteFleetResourceRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteFleetResourceRequest.java index 63d4eb6d822..00d28afbb62 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteFleetResourceRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteFleetResourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteMaintenanceWindowRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteMaintenanceWindowRequest.java index 10f3f2414bd..3c130f684e2 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteMaintenanceWindowRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteMaintenanceWindowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteOnboardingRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteOnboardingRequest.java index 4f1402e37d9..157b080644f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteOnboardingRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteOnboardingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeletePatchRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeletePatchRequest.java index a9a616a9f91..f866e1c4141 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeletePatchRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeletePatchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeletePlatformConfigurationRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeletePlatformConfigurationRequest.java index 72f38b261a7..8b418c22a9a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeletePlatformConfigurationRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeletePlatformConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeletePropertyRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeletePropertyRequest.java index 6343df33680..cdd4c947783 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeletePropertyRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeletePropertyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteProvisionRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteProvisionRequest.java index 481e377f042..3e7968756bd 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteProvisionRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteProvisionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteRunbookRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteRunbookRequest.java index ebd3e77c295..da1a8d22982 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteRunbookRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteRunbookRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteRunbookVersionRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteRunbookVersionRequest.java index 0d1295dae1d..f1b8e4a0a8c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteRunbookVersionRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteRunbookVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteSchedulerDefinitionRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteSchedulerDefinitionRequest.java index c5833d5a239..c38f6427f06 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteSchedulerDefinitionRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteSchedulerDefinitionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteSchedulerJobRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteSchedulerJobRequest.java index 4c413de05cd..2f6117893be 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteSchedulerJobRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteSchedulerJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteTaskRecordRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteTaskRecordRequest.java index f37bc73a932..b62583fd855 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteTaskRecordRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/DeleteTaskRecordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/EnableLatestPolicyRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/EnableLatestPolicyRequest.java index 677321a3595..7cd01efe7be 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/EnableLatestPolicyRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/EnableLatestPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ExportComplianceReportRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ExportComplianceReportRequest.java index 803f6ac2787..028a7d6ffc5 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ExportComplianceReportRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ExportComplianceReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ExportRunbookRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ExportRunbookRequest.java index c5dad8c052c..83af82ddaad 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ExportRunbookRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ExportRunbookRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ExportRunbookVersionRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ExportRunbookVersionRequest.java index a45b93c6ce4..ecc01154e72 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ExportRunbookVersionRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ExportRunbookVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/FindRunbookExportDependencyRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/FindRunbookExportDependencyRequest.java index 385dc544146..d5153d25ca6 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/FindRunbookExportDependencyRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/FindRunbookExportDependencyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/FindRunbookImportDependencyRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/FindRunbookImportDependencyRequest.java index a2d95a9d046..8bd914ae80c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/FindRunbookImportDependencyRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/FindRunbookImportDependencyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GenerateComplianceReportRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GenerateComplianceReportRequest.java index faa82ffbfc0..32243b1e248 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GenerateComplianceReportRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GenerateComplianceReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetCatalogItemRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetCatalogItemRequest.java index 093582c9003..e51b7a3fca3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetCatalogItemRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetCatalogItemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetCatalogItemVariablesDefinitionRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetCatalogItemVariablesDefinitionRequest.java index 0620d00ab3d..563ff889d59 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetCatalogItemVariablesDefinitionRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetCatalogItemVariablesDefinitionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetCompliancePolicyRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetCompliancePolicyRequest.java index 3a37b5a9c67..46c28d27368 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetCompliancePolicyRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetCompliancePolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetCompliancePolicyRuleRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetCompliancePolicyRuleRequest.java index 58f0a6fb3f5..d3bfeafdfad 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetCompliancePolicyRuleRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetCompliancePolicyRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetComplianceReportRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetComplianceReportRequest.java index 1d085211173..72f380a96e5 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetComplianceReportRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetComplianceReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetComplianceRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetComplianceRequest.java index 151aeab97cd..dadbe5a32bb 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetComplianceRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetComplianceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetExecutionRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetExecutionRequest.java index 73aaf69dfd2..718902b433b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetExecutionRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetExecutionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetFleetCredentialRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetFleetCredentialRequest.java index 7607b037ce2..06dea901e84 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetFleetCredentialRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetFleetCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetFleetPropertyRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetFleetPropertyRequest.java index 06e80676269..5e2620c7f85 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetFleetPropertyRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetFleetPropertyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetFleetRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetFleetRequest.java index 959ca94849a..44948dd3eb2 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetFleetRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetFleetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetFleetResourceRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetFleetResourceRequest.java index 321df2b450e..bc038fbb6ab 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetFleetResourceRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetFleetResourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetJobActivityRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetJobActivityRequest.java index 9c9d411aee6..aeeff06828d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetJobActivityRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetJobActivityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetMaintenanceWindowRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetMaintenanceWindowRequest.java index c5262ebe609..f8d27ea8779 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetMaintenanceWindowRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetMaintenanceWindowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetOnboardingRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetOnboardingRequest.java index 5e1df4ca575..90fadba3603 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetOnboardingRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetOnboardingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetPatchRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetPatchRequest.java index 9d32d0b4698..5fb2af3aedf 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetPatchRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetPatchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetPlatformConfigurationRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetPlatformConfigurationRequest.java index 3b29e0e02d2..bda74d52ebc 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetPlatformConfigurationRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetPlatformConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetPropertyRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetPropertyRequest.java index 7b6e435a3b7..a837763da0c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetPropertyRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetPropertyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetProvisionRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetProvisionRequest.java index 4a7abb885b8..e6b298445c3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetProvisionRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetProvisionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetRunbookExportRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetRunbookExportRequest.java index e7dd3be6570..924e24ac5ef 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetRunbookExportRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetRunbookExportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetRunbookImportRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetRunbookImportRequest.java index 504bc31186b..e7ce4a8bcc1 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetRunbookImportRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetRunbookImportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetRunbookRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetRunbookRequest.java index 8f5992344a6..42e7ec01cb4 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetRunbookRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetRunbookRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetRunbookVersionRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetRunbookVersionRequest.java index 70cd49a8a7f..34cacaee017 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetRunbookVersionRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetRunbookVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetSchedulerDefinitionRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetSchedulerDefinitionRequest.java index cdf45c70d5c..a9e6c1d4729 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetSchedulerDefinitionRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetSchedulerDefinitionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetSchedulerJobRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetSchedulerJobRequest.java index f8233bfde53..ee4c3b418b0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetSchedulerJobRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetSchedulerJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetTaskRecordRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetTaskRecordRequest.java index 9fe669f6c32..42340708eee 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetTaskRecordRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetTaskRecordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetWorkRequestRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetWorkRequestRequest.java index d431d81b959..c7c84658f92 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetWorkRequestRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ImportRunbookPrecheckRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ImportRunbookPrecheckRequest.java index 932091f7f37..0cf90793dc0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ImportRunbookPrecheckRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ImportRunbookPrecheckRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ImportRunbookRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ImportRunbookRequest.java index 3522a72076d..9b17e1049c2 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ImportRunbookRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ImportRunbookRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ImportRunbookVersionRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ImportRunbookVersionRequest.java index 4a5d0accd8c..ad939987e33 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ImportRunbookVersionRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ImportRunbookVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListAnnouncementsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListAnnouncementsRequest.java index 8af196677bf..7ba85a29675 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListAnnouncementsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListAnnouncementsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListCatalogItemsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListCatalogItemsRequest.java index 077e5355fe7..3b22efd9a82 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListCatalogItemsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListCatalogItemsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListCompliancePoliciesRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListCompliancePoliciesRequest.java index 0dfc972a073..d0887905d39 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListCompliancePoliciesRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListCompliancePoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListCompliancePolicyRulesRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListCompliancePolicyRulesRequest.java index 704dd134974..09942e5652d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListCompliancePolicyRulesRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListCompliancePolicyRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListComplianceRecordsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListComplianceRecordsRequest.java index 0cfea4a0d0d..a7b54b4056a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListComplianceRecordsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListComplianceRecordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListExecutionsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListExecutionsRequest.java index e58a05010fa..85e8fe57b1a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListExecutionsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListExecutionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetCredentialsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetCredentialsRequest.java index 0a6a47f801d..b9bae0dd288 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetCredentialsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetCredentialsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetProductsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetProductsRequest.java index 688e116cdc1..6e9e2a48df0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetProductsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetProductsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetPropertiesRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetPropertiesRequest.java index 9ffc85f8feb..d0af2612f6a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetPropertiesRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetPropertiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetResourcesRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetResourcesRequest.java index 0bc712756e0..b2f5ac6daf2 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetResourcesRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetResourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetTargetsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetTargetsRequest.java index 43adc6568bd..4eb5b327b1e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetTargetsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetTargetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetsRequest.java index 158bfc34be6..098c06064f7 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListFleetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListInstalledPatchesRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListInstalledPatchesRequest.java index e952bdef2a0..d835d21678b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListInstalledPatchesRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListInstalledPatchesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListInventoryRecordsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListInventoryRecordsRequest.java index 7ae7729554c..9a69b084d69 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListInventoryRecordsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListInventoryRecordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListInventoryResourcesRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListInventoryResourcesRequest.java index 4cbcc6569c9..4876550e21b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListInventoryResourcesRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListInventoryResourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListMaintenanceWindowsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListMaintenanceWindowsRequest.java index 56db4a60ccb..763193bc106 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListMaintenanceWindowsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListMaintenanceWindowsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListOnboardingPoliciesRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListOnboardingPoliciesRequest.java index f18292daf8d..54d60be88d4 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListOnboardingPoliciesRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListOnboardingPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListOnboardingsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListOnboardingsRequest.java index d54b69c7138..a7ba2b01a8e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListOnboardingsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListOnboardingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListPatchesRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListPatchesRequest.java index 1f58862740d..3a48d36d336 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListPatchesRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListPatchesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListPlatformConfigurationsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListPlatformConfigurationsRequest.java index 7fee966bd68..4fec2b331fd 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListPlatformConfigurationsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListPlatformConfigurationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListPropertiesRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListPropertiesRequest.java index b52cd94c067..a9347d1ed5a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListPropertiesRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListPropertiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListProvisionsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListProvisionsRequest.java index 7c36beb8530..28dd6882a43 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListProvisionsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListProvisionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListRecommendedPatchesRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListRecommendedPatchesRequest.java index b862104fbc1..8bb473191c3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListRecommendedPatchesRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListRecommendedPatchesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListReportMetadataRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListReportMetadataRequest.java index 18870f5b029..a147200ec3f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListReportMetadataRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListReportMetadataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListResourcesRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListResourcesRequest.java index a6cea520bd0..4d183b4d401 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListResourcesRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListResourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListRunbookExportStatusesRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListRunbookExportStatusesRequest.java index 7d0820bd282..8e24a9b7ad7 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListRunbookExportStatusesRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListRunbookExportStatusesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListRunbookImportStatusesRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListRunbookImportStatusesRequest.java index 271f12e7683..fd21c144b69 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListRunbookImportStatusesRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListRunbookImportStatusesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListRunbookVersionsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListRunbookVersionsRequest.java index 1799475999b..e0f1f69c145 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListRunbookVersionsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListRunbookVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListRunbooksRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListRunbooksRequest.java index 1a857dfaf99..bf92bf815d8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListRunbooksRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListRunbooksRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListScheduledFleetsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListScheduledFleetsRequest.java index 410a7ef5ce8..fb1dbd3bbdb 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListScheduledFleetsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListScheduledFleetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListSchedulerDefinitionsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListSchedulerDefinitionsRequest.java index ef546ab4d86..e9f20fde440 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListSchedulerDefinitionsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListSchedulerDefinitionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListSchedulerExecutionsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListSchedulerExecutionsRequest.java index fc4990bb52c..0987560b7dc 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListSchedulerExecutionsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListSchedulerExecutionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListSchedulerJobsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListSchedulerJobsRequest.java index bb7cd63ffca..fe1fcd72aee 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListSchedulerJobsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListSchedulerJobsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListStepsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListStepsRequest.java index dcc6ff08376..12cf60cb1f7 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListStepsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListStepsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListTargetComponentsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListTargetComponentsRequest.java index 2c15e71931e..7db95f42c52 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListTargetComponentsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListTargetComponentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListTargetPropertiesRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListTargetPropertiesRequest.java index c080399001f..c419bc10d64 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListTargetPropertiesRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListTargetPropertiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListTargetsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListTargetsRequest.java index f121af69d94..37c2b6d1f86 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListTargetsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListTargetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListTaskRecordsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListTaskRecordsRequest.java index a853f73787b..0e9aaf18072 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListTaskRecordsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListTaskRecordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListWorkRequestErrorsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListWorkRequestErrorsRequest.java index f447a39adb1..26835df2a4f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListWorkRequestLogsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListWorkRequestLogsRequest.java index 298af70b16d..5fbc18bf2bf 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListWorkRequestLogsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListWorkRequestsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListWorkRequestsRequest.java index f80f5191a4f..9f2e6cdff25 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListWorkRequestsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ManageJobExecutionRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ManageJobExecutionRequest.java index e7bbc916860..92a4b71d7e9 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ManageJobExecutionRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ManageJobExecutionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ManageSettingsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ManageSettingsRequest.java index 41c666c275c..d5e746be83f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ManageSettingsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ManageSettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/PublishRunbookRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/PublishRunbookRequest.java index b64f9a69049..417259d04fa 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/PublishRunbookRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/PublishRunbookRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ReportRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ReportRequest.java index 181d06f49dd..edf2ce9eb85 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ReportRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/ReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/RequestResourceValidationRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/RequestResourceValidationRequest.java index bc42df195c7..dbb8d70443a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/RequestResourceValidationRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/RequestResourceValidationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/RequestTargetDiscoveryRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/RequestTargetDiscoveryRequest.java index 483d0da9306..4575ca3ec83 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/RequestTargetDiscoveryRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/RequestTargetDiscoveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/SetDefaultRunbookRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/SetDefaultRunbookRequest.java index 28cd1fd9f47..195101ad5c1 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/SetDefaultRunbookRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/SetDefaultRunbookRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/SummarizeComplianceRecordCountsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/SummarizeComplianceRecordCountsRequest.java index ca836f3b818..f7e0ede4caa 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/SummarizeComplianceRecordCountsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/SummarizeComplianceRecordCountsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/SummarizeManagedEntityCountsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/SummarizeManagedEntityCountsRequest.java index f3c0af16d71..95c4f0b7b13 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/SummarizeManagedEntityCountsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/SummarizeManagedEntityCountsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/SummarizeSchedulerJobCountsRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/SummarizeSchedulerJobCountsRequest.java index 20c486c27af..749da16f22a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/SummarizeSchedulerJobCountsRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/SummarizeSchedulerJobCountsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateCatalogItemRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateCatalogItemRequest.java index bf65fb795ce..e8c70049ef4 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateCatalogItemRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateCatalogItemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateCompliancePolicyRuleRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateCompliancePolicyRuleRequest.java index 6c32173ca3b..ab530d56317 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateCompliancePolicyRuleRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateCompliancePolicyRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateFleetCredentialRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateFleetCredentialRequest.java index 14b57756085..7d5dd2aaa2e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateFleetCredentialRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateFleetCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateFleetPropertyRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateFleetPropertyRequest.java index 5370edba11b..01eb22282c9 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateFleetPropertyRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateFleetPropertyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateFleetRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateFleetRequest.java index 806740d9a75..41ebf5195f3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateFleetRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateFleetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateFleetResourceRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateFleetResourceRequest.java index 2a25d0abf2c..6d8b28a40e7 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateFleetResourceRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateFleetResourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateMaintenanceWindowRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateMaintenanceWindowRequest.java index 2272f6241e8..b5e667e7490 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateMaintenanceWindowRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateMaintenanceWindowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateOnboardingRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateOnboardingRequest.java index 08b4fd3f90f..e1dbdb6c07a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateOnboardingRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateOnboardingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdatePatchRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdatePatchRequest.java index 3516fc907c1..bc66c4201a0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdatePatchRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdatePatchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdatePlatformConfigurationRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdatePlatformConfigurationRequest.java index a5914f34933..7e641b4234c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdatePlatformConfigurationRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdatePlatformConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdatePropertyRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdatePropertyRequest.java index 26e7acc9d94..bcc22e36ab5 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdatePropertyRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdatePropertyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateProvisionRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateProvisionRequest.java index 9a8b450166a..ce76db462d7 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateProvisionRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateProvisionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateRunbookRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateRunbookRequest.java index 2bc5fbda2f3..efa28618c40 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateRunbookRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateRunbookRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateRunbookVersionRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateRunbookVersionRequest.java index 04457edc932..f3cfc6c64d6 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateRunbookVersionRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateRunbookVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateSchedulerDefinitionRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateSchedulerDefinitionRequest.java index ab5ecc3234d..54bc36e1f83 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateSchedulerDefinitionRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateSchedulerDefinitionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateSchedulerJobRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateSchedulerJobRequest.java index 7e4d2eeb083..62c21eb3838 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateSchedulerJobRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateSchedulerJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateTaskRecordRequest.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateTaskRecordRequest.java index 1689fb365b5..872809df0bb 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateTaskRecordRequest.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/requests/UpdateTaskRecordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.requests; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangeCatalogItemCompartmentResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangeCatalogItemCompartmentResponse.java index 7628c02aae1..82999dab019 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangeCatalogItemCompartmentResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangeCatalogItemCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangeFleetCompartmentResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangeFleetCompartmentResponse.java index 1ec677228f7..fd7de6bb985 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangeFleetCompartmentResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangeFleetCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangePatchCompartmentResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangePatchCompartmentResponse.java index 8d2bdc3a60c..7f19aecf014 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangePatchCompartmentResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangePatchCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangePlatformConfigurationCompartmentResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangePlatformConfigurationCompartmentResponse.java index 758e22a3226..a17a016787d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangePlatformConfigurationCompartmentResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangePlatformConfigurationCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangePropertyCompartmentResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangePropertyCompartmentResponse.java index db8810ead30..99dddfb7dab 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangePropertyCompartmentResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangePropertyCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangeProvisionCompartmentResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangeProvisionCompartmentResponse.java index 11defee4fc8..f4b3ea381e8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangeProvisionCompartmentResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangeProvisionCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangeRunbookCompartmentResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangeRunbookCompartmentResponse.java index 588c9f10a80..a97cf8a1f33 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangeRunbookCompartmentResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangeRunbookCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangeTaskRecordCompartmentResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangeTaskRecordCompartmentResponse.java index 9ce0380d67d..aeda7f10006 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangeTaskRecordCompartmentResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ChangeTaskRecordCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CheckResourceTaggingResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CheckResourceTaggingResponse.java index 3c22abb1357..c729f567369 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CheckResourceTaggingResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CheckResourceTaggingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CloneCatalogItemResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CloneCatalogItemResponse.java index 008f60219ab..860a3c4964e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CloneCatalogItemResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CloneCatalogItemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ConfigureCatalogItemResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ConfigureCatalogItemResponse.java index 48db7cff1b7..015cef5a060 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ConfigureCatalogItemResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ConfigureCatalogItemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ConfirmTargetsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ConfirmTargetsResponse.java index 3c7d290c82f..470690cfa5b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ConfirmTargetsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ConfirmTargetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateCatalogItemResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateCatalogItemResponse.java index 5239d64091a..ad78da5720a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateCatalogItemResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateCatalogItemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateCompliancePolicyRuleResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateCompliancePolicyRuleResponse.java index 8f44ffca3e1..bdc2dc11ce8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateCompliancePolicyRuleResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateCompliancePolicyRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateFleetCredentialResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateFleetCredentialResponse.java index e5f4a4cd6f0..aa34c11d63b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateFleetCredentialResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateFleetCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateFleetPropertyResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateFleetPropertyResponse.java index 646d4d95f6c..fd89669c663 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateFleetPropertyResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateFleetPropertyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateFleetResourceResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateFleetResourceResponse.java index acf2f4429cd..280c4eca867 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateFleetResourceResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateFleetResourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateFleetResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateFleetResponse.java index 89c8dc85417..70e5826d4c5 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateFleetResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateFleetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateMaintenanceWindowResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateMaintenanceWindowResponse.java index fd2c4d4b76b..ae863a7284c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateMaintenanceWindowResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateMaintenanceWindowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateOnboardingResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateOnboardingResponse.java index d700e1a1e57..4e5d9e7f498 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateOnboardingResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateOnboardingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreatePatchResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreatePatchResponse.java index d3d39dec25a..cf36c71d558 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreatePatchResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreatePatchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreatePlatformConfigurationResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreatePlatformConfigurationResponse.java index d84cabf5b8c..0d84545c638 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreatePlatformConfigurationResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreatePlatformConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreatePropertyResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreatePropertyResponse.java index f3315208d39..6020de7dbcd 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreatePropertyResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreatePropertyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateProvisionResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateProvisionResponse.java index c1de6e65945..22d9234b930 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateProvisionResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateProvisionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateRunbookResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateRunbookResponse.java index 1e2d4b4f893..59cb4b87709 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateRunbookResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateRunbookResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateRunbookVersionResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateRunbookVersionResponse.java index e6d7c4b6e86..df38b66ddba 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateRunbookVersionResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateRunbookVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateSchedulerDefinitionResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateSchedulerDefinitionResponse.java index 6e6ae0b052e..a6df8cbb608 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateSchedulerDefinitionResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateSchedulerDefinitionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateTaskRecordResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateTaskRecordResponse.java index 04f0e51be08..8edeb02ff8b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateTaskRecordResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/CreateTaskRecordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteCatalogItemResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteCatalogItemResponse.java index 198e14c4978..c47c1f421c3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteCatalogItemResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteCatalogItemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteCompliancePolicyRuleResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteCompliancePolicyRuleResponse.java index 666282261d5..c55aa26da6b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteCompliancePolicyRuleResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteCompliancePolicyRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteFleetCredentialResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteFleetCredentialResponse.java index 39d3f740189..491be968911 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteFleetCredentialResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteFleetCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteFleetPropertyResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteFleetPropertyResponse.java index d40fc4dbff4..5a519021204 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteFleetPropertyResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteFleetPropertyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteFleetResourceResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteFleetResourceResponse.java index 9584da549c9..d49451434cd 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteFleetResourceResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteFleetResourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteFleetResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteFleetResponse.java index d75ab10e34c..64525b9b811 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteFleetResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteFleetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteMaintenanceWindowResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteMaintenanceWindowResponse.java index 01efc6c75ce..1ea8fb5b664 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteMaintenanceWindowResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteMaintenanceWindowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteOnboardingResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteOnboardingResponse.java index da33167eea6..28573212a98 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteOnboardingResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteOnboardingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeletePatchResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeletePatchResponse.java index b36ce686fcf..2fef5ed2668 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeletePatchResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeletePatchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeletePlatformConfigurationResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeletePlatformConfigurationResponse.java index 95e5dc22511..9b1eeef7ee4 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeletePlatformConfigurationResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeletePlatformConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeletePropertyResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeletePropertyResponse.java index f8a0059af7f..2260a8c4264 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeletePropertyResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeletePropertyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteProvisionResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteProvisionResponse.java index 2842c750c3f..94478f1b227 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteProvisionResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteProvisionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteRunbookResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteRunbookResponse.java index b37bf619d46..0ed2f5e6ace 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteRunbookResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteRunbookResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteRunbookVersionResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteRunbookVersionResponse.java index d5a0e7fb938..e4f942f3789 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteRunbookVersionResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteRunbookVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteSchedulerDefinitionResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteSchedulerDefinitionResponse.java index 8098d56c871..458f97b7e31 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteSchedulerDefinitionResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteSchedulerDefinitionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteSchedulerJobResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteSchedulerJobResponse.java index b3397f0bd82..43fcd6e675d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteSchedulerJobResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteSchedulerJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteTaskRecordResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteTaskRecordResponse.java index 699c79d7a64..e823e906096 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteTaskRecordResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/DeleteTaskRecordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/EnableLatestPolicyResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/EnableLatestPolicyResponse.java index 936b5811e22..fb7691dd75d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/EnableLatestPolicyResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/EnableLatestPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ExportComplianceReportResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ExportComplianceReportResponse.java index 42cd58bcb8b..abc42f0896a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ExportComplianceReportResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ExportComplianceReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ExportRunbookResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ExportRunbookResponse.java index bf6d92f6ecb..6acf82ab299 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ExportRunbookResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ExportRunbookResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ExportRunbookVersionResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ExportRunbookVersionResponse.java index 74170b0b280..1c060f47ff3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ExportRunbookVersionResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ExportRunbookVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/FindRunbookExportDependencyResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/FindRunbookExportDependencyResponse.java index 48d28ba93c4..513ab50b5e0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/FindRunbookExportDependencyResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/FindRunbookExportDependencyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/FindRunbookImportDependencyResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/FindRunbookImportDependencyResponse.java index 9e1104154ab..eb95fd696f9 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/FindRunbookImportDependencyResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/FindRunbookImportDependencyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GenerateComplianceReportResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GenerateComplianceReportResponse.java index a6ae84cd0d8..0bc4e879bb8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GenerateComplianceReportResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GenerateComplianceReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetCatalogItemResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetCatalogItemResponse.java index 583269c0439..761b160f20d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetCatalogItemResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetCatalogItemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetCatalogItemVariablesDefinitionResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetCatalogItemVariablesDefinitionResponse.java index 90e1844c76b..441b1013995 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetCatalogItemVariablesDefinitionResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetCatalogItemVariablesDefinitionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetCompliancePolicyResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetCompliancePolicyResponse.java index ef7ec2029b6..4816dc221f7 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetCompliancePolicyResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetCompliancePolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetCompliancePolicyRuleResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetCompliancePolicyRuleResponse.java index f0ea265f34f..f7b176acfe7 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetCompliancePolicyRuleResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetCompliancePolicyRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetComplianceReportResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetComplianceReportResponse.java index 855f10dc3f6..d6c03e8c9f5 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetComplianceReportResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetComplianceReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetComplianceResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetComplianceResponse.java index 6d7ddeaf73b..e0b8837bd64 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetComplianceResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetComplianceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetExecutionResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetExecutionResponse.java index c2382395390..5e1158d9034 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetExecutionResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetExecutionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetFleetCredentialResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetFleetCredentialResponse.java index ae28ed12fe9..9c0076f78b0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetFleetCredentialResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetFleetCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetFleetPropertyResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetFleetPropertyResponse.java index be4a9b6b85c..1fd1815ec99 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetFleetPropertyResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetFleetPropertyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetFleetResourceResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetFleetResourceResponse.java index 9420cb29376..6210908ab44 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetFleetResourceResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetFleetResourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetFleetResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetFleetResponse.java index d60620101e9..77be59d641e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetFleetResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetFleetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetJobActivityResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetJobActivityResponse.java index 8406d0dc61d..1c2e6d422af 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetJobActivityResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetJobActivityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetMaintenanceWindowResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetMaintenanceWindowResponse.java index a5a6fd85c2e..13f2cac1940 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetMaintenanceWindowResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetMaintenanceWindowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetOnboardingResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetOnboardingResponse.java index 860c069bee1..12f9b2e02bf 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetOnboardingResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetOnboardingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetPatchResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetPatchResponse.java index 86fe79b755a..73548d732d5 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetPatchResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetPatchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetPlatformConfigurationResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetPlatformConfigurationResponse.java index b937fb71b76..c6b6d08c5f0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetPlatformConfigurationResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetPlatformConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetPropertyResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetPropertyResponse.java index 1e97baa8789..3604065b918 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetPropertyResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetPropertyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetProvisionResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetProvisionResponse.java index 282cae93754..88286665190 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetProvisionResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetProvisionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetRunbookExportResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetRunbookExportResponse.java index 7e182861bb7..594e65b154a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetRunbookExportResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetRunbookExportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetRunbookImportResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetRunbookImportResponse.java index ded35a94737..6202a59ee0f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetRunbookImportResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetRunbookImportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetRunbookResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetRunbookResponse.java index c66c92bec4b..e968dc8edbb 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetRunbookResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetRunbookResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetRunbookVersionResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetRunbookVersionResponse.java index 44213fdeb8f..665a447d2e1 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetRunbookVersionResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetRunbookVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetSchedulerDefinitionResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetSchedulerDefinitionResponse.java index 245a0d7e2d3..61fe00f947a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetSchedulerDefinitionResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetSchedulerDefinitionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetSchedulerJobResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetSchedulerJobResponse.java index 46806880e14..2828a9e9fc0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetSchedulerJobResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetSchedulerJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetTaskRecordResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetTaskRecordResponse.java index 11be7f3dc72..6c2c49337fb 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetTaskRecordResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetTaskRecordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetWorkRequestResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetWorkRequestResponse.java index e42434a33ee..18f8a8319df 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetWorkRequestResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ImportRunbookPrecheckResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ImportRunbookPrecheckResponse.java index 6cc347b3304..bbb85077a07 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ImportRunbookPrecheckResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ImportRunbookPrecheckResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ImportRunbookResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ImportRunbookResponse.java index 167e3251404..ec178b44299 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ImportRunbookResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ImportRunbookResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ImportRunbookVersionResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ImportRunbookVersionResponse.java index 2bc32fa047c..00a203bd303 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ImportRunbookVersionResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ImportRunbookVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListAnnouncementsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListAnnouncementsResponse.java index d023f34b537..4bcf57e3a50 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListAnnouncementsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListAnnouncementsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListCatalogItemsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListCatalogItemsResponse.java index ac00beffa67..00ad5dd9741 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListCatalogItemsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListCatalogItemsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListCompliancePoliciesResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListCompliancePoliciesResponse.java index 49d809c1f07..8e5092a6c4c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListCompliancePoliciesResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListCompliancePoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListCompliancePolicyRulesResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListCompliancePolicyRulesResponse.java index debccc4c834..e409c0687af 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListCompliancePolicyRulesResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListCompliancePolicyRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListComplianceRecordsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListComplianceRecordsResponse.java index 4eb5518d711..f278875f629 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListComplianceRecordsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListComplianceRecordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListExecutionsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListExecutionsResponse.java index 890fa8c024f..18b28c38787 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListExecutionsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListExecutionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetCredentialsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetCredentialsResponse.java index 38482ee530f..f65c43065a1 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetCredentialsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetCredentialsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetProductsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetProductsResponse.java index 53dde2b15fe..cea83993f5e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetProductsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetProductsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetPropertiesResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetPropertiesResponse.java index 0b0df4dc583..3f787a7b8c3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetPropertiesResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetPropertiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetResourcesResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetResourcesResponse.java index 0ac1ff0451e..40cce721a6a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetResourcesResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetResourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetTargetsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetTargetsResponse.java index fb3c3d6437e..89d2d72c2f7 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetTargetsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetTargetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetsResponse.java index 8f654d3b055..ed7b20d539e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListFleetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListInstalledPatchesResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListInstalledPatchesResponse.java index 8a9a80383ee..39eda2c4f61 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListInstalledPatchesResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListInstalledPatchesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListInventoryRecordsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListInventoryRecordsResponse.java index 430017ac92c..00b30627f63 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListInventoryRecordsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListInventoryRecordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListInventoryResourcesResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListInventoryResourcesResponse.java index 582aa1247d4..e6d0b51f627 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListInventoryResourcesResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListInventoryResourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListMaintenanceWindowsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListMaintenanceWindowsResponse.java index 6c23fa9bc60..bd7ce9c3f5d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListMaintenanceWindowsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListMaintenanceWindowsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListOnboardingPoliciesResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListOnboardingPoliciesResponse.java index 112164ad36d..9629feeb07e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListOnboardingPoliciesResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListOnboardingPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListOnboardingsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListOnboardingsResponse.java index 0b864d94da6..6cd9b14a9ec 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListOnboardingsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListOnboardingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListPatchesResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListPatchesResponse.java index e7d34702197..a3969365a81 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListPatchesResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListPatchesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListPlatformConfigurationsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListPlatformConfigurationsResponse.java index a40313f8592..2423fa5f39e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListPlatformConfigurationsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListPlatformConfigurationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListPropertiesResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListPropertiesResponse.java index 95fb0a87203..f3e857b3e73 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListPropertiesResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListPropertiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListProvisionsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListProvisionsResponse.java index 6cffd6747af..8ad6e354997 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListProvisionsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListProvisionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListRecommendedPatchesResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListRecommendedPatchesResponse.java index 92eb55c0c4c..e2fa97b5e82 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListRecommendedPatchesResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListRecommendedPatchesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListReportMetadataResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListReportMetadataResponse.java index 2393bbf206a..def97258801 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListReportMetadataResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListReportMetadataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListResourcesResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListResourcesResponse.java index 81d2b5a4c1f..d4b2fe6e6b3 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListResourcesResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListResourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListRunbookExportStatusesResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListRunbookExportStatusesResponse.java index 54f626ed86b..2b428ec2476 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListRunbookExportStatusesResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListRunbookExportStatusesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListRunbookImportStatusesResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListRunbookImportStatusesResponse.java index beb15b22328..6968176e3bd 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListRunbookImportStatusesResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListRunbookImportStatusesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListRunbookVersionsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListRunbookVersionsResponse.java index 21fa3a415f6..50789361e00 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListRunbookVersionsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListRunbookVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListRunbooksResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListRunbooksResponse.java index 70a85871a79..4065f833e69 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListRunbooksResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListRunbooksResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListScheduledFleetsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListScheduledFleetsResponse.java index 75f70ff1f13..c58509da057 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListScheduledFleetsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListScheduledFleetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListSchedulerDefinitionsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListSchedulerDefinitionsResponse.java index 647ac2bce72..03e6908e26f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListSchedulerDefinitionsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListSchedulerDefinitionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListSchedulerExecutionsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListSchedulerExecutionsResponse.java index 95745543c0a..bf5da99872f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListSchedulerExecutionsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListSchedulerExecutionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListSchedulerJobsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListSchedulerJobsResponse.java index bf405ab2aa8..68ac0479f25 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListSchedulerJobsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListSchedulerJobsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListStepsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListStepsResponse.java index d2ccbeedd51..99e5e46db09 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListStepsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListStepsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListTargetComponentsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListTargetComponentsResponse.java index fba97c486b4..8de652c26bb 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListTargetComponentsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListTargetComponentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListTargetPropertiesResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListTargetPropertiesResponse.java index 390f14c86a1..89a9a22ce66 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListTargetPropertiesResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListTargetPropertiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListTargetsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListTargetsResponse.java index 8e6cc20d2a1..040df240a82 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListTargetsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListTargetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListTaskRecordsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListTaskRecordsResponse.java index a4f57163d2d..87201657283 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListTaskRecordsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListTaskRecordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListWorkRequestErrorsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListWorkRequestErrorsResponse.java index 815fda0d20c..9b4cbcc99c7 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListWorkRequestLogsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListWorkRequestLogsResponse.java index d1db44ab28f..33cbb84db3f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListWorkRequestLogsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListWorkRequestsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListWorkRequestsResponse.java index 58ed02a948b..d7cd7aa3282 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListWorkRequestsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ManageJobExecutionResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ManageJobExecutionResponse.java index 808b4b8dd81..1fd1dc46957 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ManageJobExecutionResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ManageJobExecutionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ManageSettingsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ManageSettingsResponse.java index 1fc98df0126..ebe4e7ebe19 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ManageSettingsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ManageSettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/PublishRunbookResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/PublishRunbookResponse.java index 41d5755af64..2b2d4c707de 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/PublishRunbookResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/PublishRunbookResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ReportResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ReportResponse.java index 2c32861c8f4..eb8a22e2a94 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ReportResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/ReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/RequestResourceValidationResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/RequestResourceValidationResponse.java index 36b35dbe0b1..977d1eadaaa 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/RequestResourceValidationResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/RequestResourceValidationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/RequestTargetDiscoveryResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/RequestTargetDiscoveryResponse.java index b37eda1b16c..a1067520478 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/RequestTargetDiscoveryResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/RequestTargetDiscoveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/SetDefaultRunbookResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/SetDefaultRunbookResponse.java index 4b6ef5d4360..cec65f2282f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/SetDefaultRunbookResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/SetDefaultRunbookResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/SummarizeComplianceRecordCountsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/SummarizeComplianceRecordCountsResponse.java index 5a0b07f899d..2ce8a6fd60b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/SummarizeComplianceRecordCountsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/SummarizeComplianceRecordCountsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/SummarizeManagedEntityCountsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/SummarizeManagedEntityCountsResponse.java index ed89ad1111a..6af2a8756e8 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/SummarizeManagedEntityCountsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/SummarizeManagedEntityCountsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/SummarizeSchedulerJobCountsResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/SummarizeSchedulerJobCountsResponse.java index f0b71ff2b25..3d89b4c63dd 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/SummarizeSchedulerJobCountsResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/SummarizeSchedulerJobCountsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateCatalogItemResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateCatalogItemResponse.java index c392bc5c9f1..bdc6128956e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateCatalogItemResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateCatalogItemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateCompliancePolicyRuleResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateCompliancePolicyRuleResponse.java index 5f68da495d2..a206a66fe2a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateCompliancePolicyRuleResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateCompliancePolicyRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateFleetCredentialResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateFleetCredentialResponse.java index b2b95230b46..008bf09e08c 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateFleetCredentialResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateFleetCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateFleetPropertyResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateFleetPropertyResponse.java index 962922896ea..0d5533f494f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateFleetPropertyResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateFleetPropertyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateFleetResourceResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateFleetResourceResponse.java index c667cd1276a..325a951f9e1 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateFleetResourceResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateFleetResourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateFleetResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateFleetResponse.java index 35f94f7d05e..7f22e18a53f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateFleetResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateFleetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateMaintenanceWindowResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateMaintenanceWindowResponse.java index 1e3dc7e0b7c..774e755e5c0 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateMaintenanceWindowResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateMaintenanceWindowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateOnboardingResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateOnboardingResponse.java index ac480db235e..5b2c16cfafc 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateOnboardingResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateOnboardingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdatePatchResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdatePatchResponse.java index 398fa3ab132..013ecbbf34f 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdatePatchResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdatePatchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdatePlatformConfigurationResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdatePlatformConfigurationResponse.java index 755bc285216..baa3457793b 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdatePlatformConfigurationResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdatePlatformConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdatePropertyResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdatePropertyResponse.java index 239408f0130..c91f2c30e0a 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdatePropertyResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdatePropertyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateProvisionResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateProvisionResponse.java index f19253832f7..0adf4b83c48 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateProvisionResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateProvisionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateRunbookResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateRunbookResponse.java index a4bb43fa8e0..82776c13f34 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateRunbookResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateRunbookResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateRunbookVersionResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateRunbookVersionResponse.java index a08bf82f6ea..5e0e552cc19 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateRunbookVersionResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateRunbookVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateSchedulerDefinitionResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateSchedulerDefinitionResponse.java index 31a469e52ad..3f8c658023d 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateSchedulerDefinitionResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateSchedulerDefinitionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateSchedulerJobResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateSchedulerJobResponse.java index 51d5465be84..10c8e39d87e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateSchedulerJobResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateSchedulerJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateTaskRecordResponse.java b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateTaskRecordResponse.java index 0229d4d1533..a0524b9d89e 100644 --- a/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateTaskRecordResponse.java +++ b/bmc-fleetappsmanagement/src/main/java/com/oracle/bmc/fleetappsmanagement/responses/UpdateTaskRecordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetappsmanagement.responses; diff --git a/bmc-fleetappsmanagement/src/main/resources/com/oracle/bmc/fleetappsmanagement/client.properties b/bmc-fleetappsmanagement/src/main/resources/com/oracle/bmc/fleetappsmanagement/client.properties index 31da47be985..612b8fd3e95 100644 --- a/bmc-fleetappsmanagement/src/main/resources/com/oracle/bmc/fleetappsmanagement/client.properties +++ b/bmc-fleetappsmanagement/src/main/resources/com/oracle/bmc/fleetappsmanagement/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-fleetsoftwareupdate/pom.xml b/bmc-fleetsoftwareupdate/pom.xml index bdcfcb188d6..5dcd0ffa326 100644 --- a/bmc-fleetsoftwareupdate/pom.xml +++ b/bmc-fleetsoftwareupdate/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-fleetsoftwareupdate @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdate.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdate.java index 09437b9703a..b81d15a0083 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdate.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdateAsync.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdateAsync.java index 9b89dabf781..f9b0afd3abf 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdateAsync.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdateAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdateAsyncClient.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdateAsyncClient.java index 7a525e08bfe..5db9e308235 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdateAsyncClient.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdateAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdateClient.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdateClient.java index 8f678e9b3a9..346c25d881a 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdateClient.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdateClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdatePaginators.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdatePaginators.java index 64127626362..5bef436d085 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdatePaginators.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdatePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdateWaiters.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdateWaiters.java index 620c447ba16..1852abba04c 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdateWaiters.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/FleetSoftwareUpdateWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ActionLifecycleStates.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ActionLifecycleStates.java index faf0ba2f12b..6379a4236a4 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ActionLifecycleStates.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ActionLifecycleStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ActionType.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ActionType.java index c8d8bffd62b..10e9b56e4e6 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ActionType.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ActionTypes.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ActionTypes.java index e4089b5f87d..bfe74724b2f 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ActionTypes.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ActionTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ActiveCycleDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ActiveCycleDetails.java index 9b803586d24..df5fc98168d 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ActiveCycleDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ActiveCycleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/AddFsuCollectionTargetsDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/AddFsuCollectionTargetsDetails.java index fe45c114e3f..907872188b8 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/AddFsuCollectionTargetsDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/AddFsuCollectionTargetsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ApplyAction.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ApplyAction.java index 253d36dfd90..e188beb8fa6 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ApplyAction.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ApplyAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ApplyActionSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ApplyActionSummary.java index 3e624052e8b..d610e333753 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ApplyActionSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ApplyActionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ApplyFsuJob.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ApplyFsuJob.java index 9bc38af2e5f..c0e3b8064f5 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ApplyFsuJob.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ApplyFsuJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ApplyFsuJobSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ApplyFsuJobSummary.java index b8018bc65de..6bea0cd3242 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ApplyFsuJobSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ApplyFsuJobSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/BatchingStrategies.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/BatchingStrategies.java index 839ed6b75e6..fd85a9daa12 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/BatchingStrategies.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/BatchingStrategies.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/BatchingStrategyDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/BatchingStrategyDetails.java index 32d3accafc1..44486c5e328 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/BatchingStrategyDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/BatchingStrategyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ChangeFsuActionCompartmentDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ChangeFsuActionCompartmentDetails.java index 5993c075b90..5474f588495 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ChangeFsuActionCompartmentDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ChangeFsuActionCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ChangeFsuCollectionCompartmentDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ChangeFsuCollectionCompartmentDetails.java index a6ca6ee3d26..69669850a0c 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ChangeFsuCollectionCompartmentDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ChangeFsuCollectionCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ChangeFsuCycleCompartmentDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ChangeFsuCycleCompartmentDetails.java index 72e13ef4341..286a6284527 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ChangeFsuCycleCompartmentDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ChangeFsuCycleCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ChangeFsuDiscoveryCompartmentDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ChangeFsuDiscoveryCompartmentDetails.java index 183a748fdf1..7f0bb5e828a 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ChangeFsuDiscoveryCompartmentDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ChangeFsuDiscoveryCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CleanupAction.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CleanupAction.java index 344cec85218..f2889e0f6c3 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CleanupAction.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CleanupAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CleanupActionSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CleanupActionSummary.java index 619ffe24137..80991931a57 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CleanupActionSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CleanupActionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CleanupFsuJob.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CleanupFsuJob.java index 33a1156d1d6..2b9d36e6714 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CleanupFsuJob.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CleanupFsuJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CleanupFsuJobSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CleanupFsuJobSummary.java index d3d5e02a050..36829a5fde4 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CleanupFsuJobSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CleanupFsuJobSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CloneFsuCycleDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CloneFsuCycleDetails.java index a3ca81ff253..ec170cf8229 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CloneFsuCycleDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CloneFsuCycleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CloudVmClusterTargetSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CloudVmClusterTargetSummary.java index 320bacf143a..9d4363af655 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CloudVmClusterTargetSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CloudVmClusterTargetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CollectionLifecycleStates.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CollectionLifecycleStates.java index e4659fb5bd3..2bd2d8d31d8 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CollectionLifecycleStates.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CollectionLifecycleStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CollectionServiceTypes.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CollectionServiceTypes.java index f08a595a39e..27b2f355544 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CollectionServiceTypes.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CollectionServiceTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CollectionTypes.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CollectionTypes.java index 3b54d03956f..90b5fd69c21 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CollectionTypes.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CollectionTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateApplyActionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateApplyActionDetails.java index 4f2cef7adcd..6f4b78d61d5 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateApplyActionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateApplyActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateBatchingStrategyDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateBatchingStrategyDetails.java index c91830617ae..148035692b5 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateBatchingStrategyDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateBatchingStrategyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateCleanupActionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateCleanupActionDetails.java index 457717407c9..f5070c027d8 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateCleanupActionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateCleanupActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateDbFsuCollectionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateDbFsuCollectionDetails.java index d345d20db2e..0e2c7e2fcc1 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateDbFsuCollectionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateDbFsuCollectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateExadbStackFsuCollectionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateExadbStackFsuCollectionDetails.java index 8d8f550f8eb..3283f220ce4 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateExadbStackFsuCollectionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateExadbStackFsuCollectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateFiftyFiftyBatchingStrategyDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateFiftyFiftyBatchingStrategyDetails.java index 7f32e55362c..53794b6ffdd 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateFiftyFiftyBatchingStrategyDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateFiftyFiftyBatchingStrategyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateFsuActionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateFsuActionDetails.java index b67c854843d..81c763e9e76 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateFsuActionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateFsuActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateFsuCollectionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateFsuCollectionDetails.java index 90978eec75d..6ada8876600 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateFsuCollectionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateFsuCollectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateFsuCycleDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateFsuCycleDetails.java index b853a66c5b6..e1491d554d0 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateFsuCycleDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateFsuCycleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateFsuDiscoveryDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateFsuDiscoveryDetails.java index c59ef6d2be1..23824ea95b3 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateFsuDiscoveryDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateFsuDiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateGiFsuCollectionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateGiFsuCollectionDetails.java index d957dfeff2b..6737ae5a381 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateGiFsuCollectionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateGiFsuCollectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateGiSoftwareComponentDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateGiSoftwareComponentDetails.java index 5bbb41d5a83..3ff278ce046 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateGiSoftwareComponentDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateGiSoftwareComponentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateGuestOsFsuCollectionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateGuestOsFsuCollectionDetails.java index 9e7ad0c36ed..88ddb811e55 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateGuestOsFsuCollectionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateGuestOsFsuCollectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateGuestOsSoftwareComponentDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateGuestOsSoftwareComponentDetails.java index f18066a53d9..5a29aa4794a 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateGuestOsSoftwareComponentDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateGuestOsSoftwareComponentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateNonRollingBatchingStrategyDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateNonRollingBatchingStrategyDetails.java index 5e286f44b9d..d637bb9f781 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateNonRollingBatchingStrategyDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateNonRollingBatchingStrategyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreatePatchFsuCycle.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreatePatchFsuCycle.java index 8be3a4ac25c..6a737ab06ba 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreatePatchFsuCycle.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreatePatchFsuCycle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreatePrecheckActionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreatePrecheckActionDetails.java index 14e4b4745ac..b51f223b96a 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreatePrecheckActionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreatePrecheckActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateRollbackActionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateRollbackActionDetails.java index ac342f6c9da..c27cab3c30c 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateRollbackActionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateRollbackActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateRollbackCycleApplyActionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateRollbackCycleApplyActionDetails.java index 50f53ac090b..e83bcaf7ce7 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateRollbackCycleApplyActionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateRollbackCycleApplyActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateScheduleDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateScheduleDetails.java index 73154c6f2f0..dc0074eb2c6 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateScheduleDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateSequentialBatchingStrategyDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateSequentialBatchingStrategyDetails.java index 11a9b8e3847..0e4ec008f28 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateSequentialBatchingStrategyDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateSequentialBatchingStrategyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateServiceAvailabilityFactorBatchingStrategyDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateServiceAvailabilityFactorBatchingStrategyDetails.java index 553b0f98ded..a6b1084392f 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateServiceAvailabilityFactorBatchingStrategyDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateServiceAvailabilityFactorBatchingStrategyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateSoftwareComponentDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateSoftwareComponentDetails.java index e0b78eb6248..3dcb29ed5ee 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateSoftwareComponentDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateSoftwareComponentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateStageActionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateStageActionDetails.java index 9045f005033..b4c8f2ff0d0 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateStageActionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateStageActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateStartTimeScheduleDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateStartTimeScheduleDetails.java index 454c07bdd31..40ace02d14e 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateStartTimeScheduleDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateStartTimeScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateUpgradeFsuCycle.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateUpgradeFsuCycle.java index a8578101d23..4c7089dd30e 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateUpgradeFsuCycle.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CreateUpgradeFsuCycle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CustomGiGoalVersionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CustomGiGoalVersionDetails.java index 35a286e42a9..2d6e9371081 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CustomGiGoalVersionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CustomGiGoalVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CycleLifecycleStates.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CycleLifecycleStates.java index 9d3c58a620f..5ca54e48e50 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CycleLifecycleStates.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CycleLifecycleStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CycleTypes.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CycleTypes.java index da2089554ba..f0ca19ad480 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CycleTypes.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/CycleTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DataCollectionModes.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DataCollectionModes.java index 4d86d3a6951..030a9e43db8 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DataCollectionModes.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DataCollectionModes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DatabaseTargetSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DatabaseTargetSummary.java index e292610cd15..9f9f0ed23c2 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DatabaseTargetSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DatabaseTargetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbCollection.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbCollection.java index 2fa2f1f45cf..fef7bef2753 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbCollection.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbCompartmentIdFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbCompartmentIdFilter.java index f985a3adaf3..225bee8bfad 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbCompartmentIdFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbCompartmentIdFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbDefinedTagsFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbDefinedTagsFilter.java index c76c54f153c..510301f5522 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbDefinedTagsFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbDefinedTagsFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbDiscoveryDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbDiscoveryDetails.java index f7b0f2e2147..e24792175f9 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbDiscoveryDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbDiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbDiscoveryResults.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbDiscoveryResults.java index a1e5b275145..e0a82b23a77 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbDiscoveryResults.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbDiscoveryResults.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbFiltersDiscovery.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbFiltersDiscovery.java index 979258a377e..8c2c3f30550 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbFiltersDiscovery.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbFiltersDiscovery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbFleetDiscoveryDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbFleetDiscoveryDetails.java index e54d0b5a352..a1411f4abac 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbFleetDiscoveryDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbFleetDiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbFleetDiscoveryFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbFleetDiscoveryFilter.java index f7b684203ac..6bcc59637a2 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbFleetDiscoveryFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbFleetDiscoveryFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbFreeformTagsFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbFreeformTagsFilter.java index 531b4d8f478..315600ca45b 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbFreeformTagsFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbFreeformTagsFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbFsuCollectionSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbFsuCollectionSummary.java index 80eb159c6ca..77792666944 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbFsuCollectionSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbFsuCollectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbHomeNameFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbHomeNameFilter.java index f006bbb5864..a0af93a7a40 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbHomeNameFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbHomeNameFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbNameFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbNameFilter.java index a4a719b923c..496b48851c1 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbNameFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbNameFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbResourceIdFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbResourceIdFilter.java index 14b9b41123b..2c73a869267 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbResourceIdFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbResourceIdFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbSearchQueryDiscovery.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbSearchQueryDiscovery.java index 2dc06d74b71..ac609ebc17f 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbSearchQueryDiscovery.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbSearchQueryDiscovery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbSourceMajorVersions.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbSourceMajorVersions.java index 0a43cf73f50..9a430f87348 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbSourceMajorVersions.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbSourceMajorVersions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbTargetListDiscovery.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbTargetListDiscovery.java index f84a68d28dd..f37188bd253 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbTargetListDiscovery.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbTargetListDiscovery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbUniqueNameFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbUniqueNameFilter.java index ff6fc79d2fc..712b565b775 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbUniqueNameFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbUniqueNameFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbVersionFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbVersionFilter.java index 5db5fa424fe..8667b24ee36 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbVersionFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DbVersionFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DefinedTagFilterEntry.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DefinedTagFilterEntry.java index 200562d0fab..996086e42bb 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DefinedTagFilterEntry.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DefinedTagFilterEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DetailedActionTypes.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DetailedActionTypes.java index e0ec8cd4183..8b713aa5e10 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DetailedActionTypes.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DetailedActionTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiagnosticsCollectionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiagnosticsCollectionDetails.java index b70538a7ad7..71de2e6e5b8 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiagnosticsCollectionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiagnosticsCollectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryCriteria.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryCriteria.java index fb9c866336e..1e671a26e23 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryCriteria.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryCriteria.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryDetails.java index 4ceabd42545..d95ec8dd0a4 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryDetailsSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryDetailsSummary.java index 53139458d44..e824e596518 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryDetailsSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryDetailsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryLifecycleStates.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryLifecycleStates.java index 9240b745557..495979cc517 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryLifecycleStates.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryLifecycleStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryServiceTypes.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryServiceTypes.java index a0abfccc29e..4a35e00d414 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryServiceTypes.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryServiceTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryTypes.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryTypes.java index 262932fbe56..85fa2323ad2 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryTypes.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/DiscoveryTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadataReleaseVersions.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadataReleaseVersions.java index c1ded5d17f8..2270b354feb 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadataReleaseVersions.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadataReleaseVersions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; @@ -25,6 +25,8 @@ public enum ExadataReleaseVersions implements com.oracle.bmc.http.internal.BmcEn ExaOl7221("EXA_OL_7_22_1"), ExaOl8231("EXA_OL_8_23_1"), ExaOl8241("EXA_OL_8_24_1"), + ExaOl8251("EXA_OL_8_25_1"), + ExaOl8252("EXA_OL_8_25_2"), /** * This value is used if a service returns a value for this enum that is not recognized by this diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadbStackCollection.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadbStackCollection.java index 1766e8cdacb..829456884f6 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadbStackCollection.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadbStackCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadbStackComponents.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadbStackComponents.java index 8944807ba23..c17ee4f102a 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadbStackComponents.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadbStackComponents.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadbStackDiscoveryDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadbStackDiscoveryDetails.java index 34abdfe1f79..f50ba2bb229 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadbStackDiscoveryDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadbStackDiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadbStackFsuCollectionSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadbStackFsuCollectionSummary.java index 03c7203b81e..e714fc298ef 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadbStackFsuCollectionSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadbStackFsuCollectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadbStackFsuGoalVersionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadbStackFsuGoalVersionDetails.java index 8e9e8822599..a0c6760954e 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadbStackFsuGoalVersionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ExadbStackFsuGoalVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FailedJobsRollbackDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FailedJobsRollbackDetails.java index 66a8921c59b..83106fbec78 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FailedJobsRollbackDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FailedJobsRollbackDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FiftyFiftyBatchingStrategyDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FiftyFiftyBatchingStrategyDetails.java index 70028ba11a5..ff8f05932b1 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FiftyFiftyBatchingStrategyDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FiftyFiftyBatchingStrategyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FleetDiscoveryOperators.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FleetDiscoveryOperators.java index cc56c53c8b6..9d9a8949fcb 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FleetDiscoveryOperators.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FleetDiscoveryOperators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FleetDiscoveryStrategies.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FleetDiscoveryStrategies.java index 99b8690fbd4..7dc0c5d7e75 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FleetDiscoveryStrategies.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FleetDiscoveryStrategies.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FreeformTagFilterEntry.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FreeformTagFilterEntry.java index 8bc6a57c382..c111ab0b2c2 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FreeformTagFilterEntry.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FreeformTagFilterEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuAction.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuAction.java index d56474a018c..268110ccb6f 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuAction.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuActionProgressDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuActionProgressDetails.java index 861aa9fe44b..56e6a6efbfd 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuActionProgressDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuActionProgressDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuActionSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuActionSummary.java index 8b0d1a4ce47..94924e53797 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuActionSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuActionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuActionSummaryCollection.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuActionSummaryCollection.java index e816d657235..727ed066f5f 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuActionSummaryCollection.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuActionSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCollection.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCollection.java index 1ef836af9b8..062be445cfe 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCollection.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCollectionSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCollectionSummary.java index f70d1af78ca..db1aa686bde 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCollectionSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCollectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCollectionSummaryCollection.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCollectionSummaryCollection.java index b6aa83a610d..7bbbbb6aa77 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCollectionSummaryCollection.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCollectionSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCollectionTarget.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCollectionTarget.java index 00fe4ca57f3..c5b2468636b 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCollectionTarget.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCollectionTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCycle.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCycle.java index 0067963af18..0b413fe66c4 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCycle.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCycle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCycleSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCycleSummary.java index 45d3cc02f7c..f28136a0be8 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCycleSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCycleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCycleSummaryCollection.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCycleSummaryCollection.java index ac3c4125b53..6e566c3112c 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCycleSummaryCollection.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuCycleSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuDiscovery.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuDiscovery.java index 8c1d2a21e72..8fe5ea551c2 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuDiscovery.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuDiscovery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuDiscoverySummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuDiscoverySummary.java index e3c2a361212..5970818ddbc 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuDiscoverySummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuDiscoverySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuDiscoverySummaryCollection.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuDiscoverySummaryCollection.java index 8640b82ff22..b8eac6cb5a8 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuDiscoverySummaryCollection.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuDiscoverySummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuGoalVersionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuGoalVersionDetails.java index edefab42f1b..1f3c8000416 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuGoalVersionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuGoalVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuJob.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuJob.java index 065823636cf..13825ec811a 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuJob.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuJobCollection.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuJobCollection.java index 347aeafbad8..5b4b6da9ac2 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuJobCollection.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuJobCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuJobOutputSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuJobOutputSummary.java index d6347401b09..066d4aea6f7 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuJobOutputSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuJobOutputSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuJobOutputSummaryCollection.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuJobOutputSummaryCollection.java index b69eb6144c0..a2964b8c4d3 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuJobOutputSummaryCollection.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuJobOutputSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuJobSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuJobSummary.java index c82ab222827..19ff14c4351 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuJobSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/FsuJobSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiCollection.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiCollection.java index c336cc1091a..42a96210f55 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiCollection.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiCompartmentIdFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiCompartmentIdFilter.java index 69411f5311d..02bfc2772c7 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiCompartmentIdFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiCompartmentIdFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiDefinedTagsFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiDefinedTagsFilter.java index 7688db93330..69ad198f469 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiDefinedTagsFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiDefinedTagsFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiDiscoveryDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiDiscoveryDetails.java index e1167170ba6..24ab53088c1 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiDiscoveryDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiDiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiDiscoveryResults.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiDiscoveryResults.java index 60b54839076..ae675648502 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiDiscoveryResults.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiDiscoveryResults.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiFiltersDiscovery.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiFiltersDiscovery.java index 00f249ec341..760474dd2ba 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiFiltersDiscovery.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiFiltersDiscovery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiFleetDiscoveryDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiFleetDiscoveryDetails.java index 7d7e7e4616f..a5f65edaade 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiFleetDiscoveryDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiFleetDiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiFleetDiscoveryFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiFleetDiscoveryFilter.java index 2f9e3f57ff9..d41813e5835 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiFleetDiscoveryFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiFleetDiscoveryFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiFreeformTagsFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiFreeformTagsFilter.java index 9818e94861a..10eec4f9cf7 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiFreeformTagsFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiFreeformTagsFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiFsuCollectionSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiFsuCollectionSummary.java index aef2278f384..91329664fc1 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiFsuCollectionSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiFsuCollectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiGoalSoftwareComponentDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiGoalSoftwareComponentDetails.java index 60dd303ace5..f5aa9f2713a 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiGoalSoftwareComponentDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiGoalSoftwareComponentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiGoalVersionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiGoalVersionDetails.java index 72fd9671f0b..23bbb2d0842 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiGoalVersionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiGoalVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiResourceIdFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiResourceIdFilter.java index e512f39edcb..d3ff2c7886e 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiResourceIdFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiResourceIdFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiSearchQueryDiscovery.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiSearchQueryDiscovery.java index c3e5b2906ba..7726e3310a5 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiSearchQueryDiscovery.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiSearchQueryDiscovery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiSoftwareComponentDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiSoftwareComponentDetails.java index 33143b9bf1f..d2b1d734f87 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiSoftwareComponentDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiSoftwareComponentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiSoftwareComponentDiscoveryDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiSoftwareComponentDiscoveryDetails.java index c0b9022c3f1..ae7acf55866 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiSoftwareComponentDiscoveryDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiSoftwareComponentDiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiSoftwareComponentSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiSoftwareComponentSummary.java index 35c048f335b..5844a250c74 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiSoftwareComponentSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiSoftwareComponentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiSourceMajorVersions.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiSourceMajorVersions.java index 16aa934c78e..0c19c3b69dc 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiSourceMajorVersions.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiSourceMajorVersions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiTargetListDiscovery.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiTargetListDiscovery.java index 0abe5e16354..3b8cc736322 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiTargetListDiscovery.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiTargetListDiscovery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiVersionFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiVersionFilter.java index 153722a67dd..e9d60fb8b5d 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiVersionFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GiVersionFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GoalSoftwareComponentDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GoalSoftwareComponentDetails.java index eb7a6c35445..2e6ee62abff 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GoalSoftwareComponentDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GoalSoftwareComponentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsCollection.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsCollection.java index 0d1972373ac..249046f674d 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsCollection.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsCompartmentIdFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsCompartmentIdFilter.java index 872a149fb32..dfe17a4d4d8 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsCompartmentIdFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsCompartmentIdFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsDefinedTagsFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsDefinedTagsFilter.java index f3824640d11..bc701a3cbfe 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsDefinedTagsFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsDefinedTagsFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsDiscoveryDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsDiscoveryDetails.java index 4a624926a88..4b4c69189d5 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsDiscoveryDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsDiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsDiscoveryResults.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsDiscoveryResults.java index 063272fbe49..1f458b73e3e 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsDiscoveryResults.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsDiscoveryResults.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsExadataReleaseVersionFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsExadataReleaseVersionFilter.java index b70c217c740..2650d2906bd 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsExadataReleaseVersionFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsExadataReleaseVersionFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsFiltersDiscovery.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsFiltersDiscovery.java index 0b066a07b91..ee066eb9a38 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsFiltersDiscovery.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsFiltersDiscovery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsFleetDiscoveryDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsFleetDiscoveryDetails.java index 001d2885fb7..78f3703f1d3 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsFleetDiscoveryDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsFleetDiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsFleetDiscoveryFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsFleetDiscoveryFilter.java index a34ca0430c4..e312721fe07 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsFleetDiscoveryFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsFleetDiscoveryFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsFreeformTagsFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsFreeformTagsFilter.java index 7d7f8b3b9a3..9d67eff4571 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsFreeformTagsFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsFreeformTagsFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsFsuCollectionSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsFsuCollectionSummary.java index 790bcf3b300..6dd3fc21b18 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsFsuCollectionSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsFsuCollectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsGoalSoftwareComponentDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsGoalSoftwareComponentDetails.java index 95cdfa2eb11..c56c3ec57e5 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsGoalSoftwareComponentDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsGoalSoftwareComponentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsGoalVersionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsGoalVersionDetails.java index e12324023ce..c53fc7545a0 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsGoalVersionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsGoalVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsResourceIdFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsResourceIdFilter.java index a6dc2ee5a1b..9e459174d9d 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsResourceIdFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsResourceIdFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsSearchQueryDiscovery.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsSearchQueryDiscovery.java index 6221d85728e..80ccc9d4744 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsSearchQueryDiscovery.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsSearchQueryDiscovery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsSoftwareComponentDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsSoftwareComponentDetails.java index d8605dc0f7d..a27bbde6624 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsSoftwareComponentDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsSoftwareComponentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsSoftwareComponentDiscoveryDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsSoftwareComponentDiscoveryDetails.java index e4ada50a18b..bb991c51d31 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsSoftwareComponentDiscoveryDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsSoftwareComponentDiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsSoftwareComponentSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsSoftwareComponentSummary.java index 60dcde02ad2..51716f05e3a 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsSoftwareComponentSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsSoftwareComponentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsSourceMajorVersions.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsSourceMajorVersions.java index 8a7663e2f6d..6b06a677167 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsSourceMajorVersions.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsSourceMajorVersions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsTargetListDiscovery.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsTargetListDiscovery.java index 158c317b845..481e410ecee 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsTargetListDiscovery.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsTargetListDiscovery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsVersionFilter.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsVersionFilter.java index 5942efe2d89..dd9000de5cc 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsVersionFilter.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/GuestOsVersionFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ImageIdFsuTargetDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ImageIdFsuTargetDetails.java index 98c56fb5e49..2dba5468b63 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ImageIdFsuTargetDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ImageIdFsuTargetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/JobLifecycleStates.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/JobLifecycleStates.java index 775dd77b55d..cb29714bb0e 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/JobLifecycleStates.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/JobLifecycleStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/JobProgress.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/JobProgress.java index 5fa8a30cb77..5eeaa50b3ff 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/JobProgress.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/JobProgress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/JobProgressDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/JobProgressDetails.java index 0d67f3505c8..f5a753eaaf4 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/JobProgressDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/JobProgressDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/JobTypes.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/JobTypes.java index e06b608cab2..e3aab8a3f6b 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/JobTypes.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/JobTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ListOfTargetsRollbackDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ListOfTargetsRollbackDetails.java index f14b5ff4966..4cd5326a0c8 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ListOfTargetsRollbackDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ListOfTargetsRollbackDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/MembershipSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/MembershipSummary.java index 456a473a9e3..94f24bfa797 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/MembershipSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/MembershipSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/NextActionToExecuteDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/NextActionToExecuteDetails.java index 392907d3c65..7d2742f019d 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/NextActionToExecuteDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/NextActionToExecuteDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/NonRollingBatchingStrategyDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/NonRollingBatchingStrategyDetails.java index 27e4fa18937..c671cdf0840 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/NonRollingBatchingStrategyDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/NonRollingBatchingStrategyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/NoneBatchingStrategyDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/NoneBatchingStrategyDetails.java index 1d12f12d089..7835caa23a0 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/NoneBatchingStrategyDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/NoneBatchingStrategyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/NoneScheduleDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/NoneScheduleDetails.java index 402f7cbef06..f9c010deb6a 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/NoneScheduleDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/NoneScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/OperationStatus.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/OperationStatus.java index 33ee540a566..5c0c19f6be3 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/OperationStatus.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/OperationType.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/OperationType.java index ba2907292cc..c3ab639d7c2 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/OperationType.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/OracleGiGoalVersionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/OracleGiGoalVersionDetails.java index 07d5722f72b..39e57dd0757 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/OracleGiGoalVersionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/OracleGiGoalVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/OracleGuestOsGoalVersionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/OracleGuestOsGoalVersionDetails.java index 7a7cc0ee600..790b0626ec1 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/OracleGuestOsGoalVersionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/OracleGuestOsGoalVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/PatchFsuCycle.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/PatchFsuCycle.java index 888c879dbd4..1d596f0299d 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/PatchFsuCycle.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/PatchFsuCycle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/PrecheckAction.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/PrecheckAction.java index cf464337ee8..447574fdaee 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/PrecheckAction.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/PrecheckAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/PrecheckActionSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/PrecheckActionSummary.java index aef14e9e266..5872337afc2 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/PrecheckActionSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/PrecheckActionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/PrecheckFsuJob.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/PrecheckFsuJob.java index 184b315d54a..3a71666af61 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/PrecheckFsuJob.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/PrecheckFsuJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/PrecheckFsuJobSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/PrecheckFsuJobSummary.java index cefc04026e8..a0c91228d90 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/PrecheckFsuJobSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/PrecheckFsuJobSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RemoveFsuCollectionTargetsDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RemoveFsuCollectionTargetsDetails.java index a599a8257fa..af57d66f9f9 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RemoveFsuCollectionTargetsDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RemoveFsuCollectionTargetsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackAction.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackAction.java index dc7847cef9f..6a208be499f 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackAction.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackActionSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackActionSummary.java index 5a728d942cb..956556c0acf 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackActionSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackActionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackCycleAction.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackCycleAction.java index ef32d252c40..bb3d437ebbb 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackCycleAction.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackCycleAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackCycleActionSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackCycleActionSummary.java index 954901ae789..a04033a02fa 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackCycleActionSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackCycleActionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackCycleFsuJob.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackCycleFsuJob.java index e6aef883cd9..59f2ee6d83d 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackCycleFsuJob.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackCycleFsuJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackCycleFsuJobSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackCycleFsuJobSummary.java index d728e5e389a..87d1f21df57 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackCycleFsuJobSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackCycleFsuJobSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackCycleStates.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackCycleStates.java index f4cff901cc5..48e230dd001 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackCycleStates.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackCycleStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackDetails.java index e149ff56742..f3878ec6a96 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackFsuJob.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackFsuJob.java index e42054db5d8..6b65d5a8195 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackFsuJob.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackFsuJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackFsuJobSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackFsuJobSummary.java index c1cd9f26518..3b4eb0760d2 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackFsuJobSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/RollbackFsuJobSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ScheduleDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ScheduleDetails.java index a4519241570..9cbce758c4a 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ScheduleDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/SequentialBatchingStrategyDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/SequentialBatchingStrategyDetails.java index 3a0221c6f27..b64e87ab923 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/SequentialBatchingStrategyDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/SequentialBatchingStrategyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ServiceAvailabilityFactorBatchingStrategyDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ServiceAvailabilityFactorBatchingStrategyDetails.java index a2c567ca009..83e1c8074d6 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ServiceAvailabilityFactorBatchingStrategyDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/ServiceAvailabilityFactorBatchingStrategyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/SoftwareComponentDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/SoftwareComponentDetails.java index 9fb762f237e..da81c5a3208 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/SoftwareComponentDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/SoftwareComponentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/SoftwareComponentDiscoveryDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/SoftwareComponentDiscoveryDetails.java index 9f452539988..bd27e0abb29 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/SoftwareComponentDiscoveryDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/SoftwareComponentDiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/SoftwareComponentSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/SoftwareComponentSummary.java index d0bb983f4b6..af87621712e 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/SoftwareComponentSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/SoftwareComponentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/SortOrder.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/SortOrder.java index c6301cc2203..337ce840533 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/SortOrder.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/StageAction.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/StageAction.java index 46782ebc40f..aa21ac2b09d 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/StageAction.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/StageAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/StageActionSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/StageActionSummary.java index fc56790467a..e904e243d08 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/StageActionSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/StageActionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/StageFsuJob.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/StageFsuJob.java index 1fc0e3718b6..150ced189b1 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/StageFsuJob.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/StageFsuJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/StageFsuJobSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/StageFsuJobSummary.java index 62812da7f96..65d9f6cd250 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/StageFsuJobSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/StageFsuJobSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/StartTimeScheduleDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/StartTimeScheduleDetails.java index ffe5d5da5d5..8f5ee2a567d 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/StartTimeScheduleDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/StartTimeScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetDetails.java index b830e3a89f8..8b2dab40924 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetEntry.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetEntry.java index e7424fe10cc..d0f7bacfeab 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetEntry.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetIdsRemoveTargetsDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetIdsRemoveTargetsDetails.java index f6fbca78cb8..944dba545be 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetIdsRemoveTargetsDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetIdsRemoveTargetsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetProgressSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetProgressSummary.java index 1077128a22f..ca38278a36f 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetProgressSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetProgressSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetSummary.java index 121e7126143..df26b723263 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetSummaryCollection.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetSummaryCollection.java index d254d5a34b1..522f09747e9 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetSummaryCollection.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/TargetSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateApplyActionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateApplyActionDetails.java index 710cf585738..755e9d18855 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateApplyActionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateApplyActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateBatchingStrategies.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateBatchingStrategies.java index 09509cbaac4..e150d8d7f01 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateBatchingStrategies.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateBatchingStrategies.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateBatchingStrategyDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateBatchingStrategyDetails.java index cf4552a6324..3f61221d0f0 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateBatchingStrategyDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateBatchingStrategyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateCleanupActionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateCleanupActionDetails.java index 4f3b14eb3ef..065cd3840bd 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateCleanupActionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateCleanupActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFiftyFiftyBatchingStrategyDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFiftyFiftyBatchingStrategyDetails.java index e93592886b1..9409c298c55 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFiftyFiftyBatchingStrategyDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFiftyFiftyBatchingStrategyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFsuActionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFsuActionDetails.java index 1094a939b2f..b4f02cff8cf 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFsuActionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFsuActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFsuCollectionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFsuCollectionDetails.java index acf4d692c3a..86eb2e39662 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFsuCollectionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFsuCollectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFsuCycleDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFsuCycleDetails.java index 7b29017fa7a..f4885809f96 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFsuCycleDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFsuCycleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFsuDiscoveryDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFsuDiscoveryDetails.java index 79af34c6b40..087b3d9a356 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFsuDiscoveryDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFsuDiscoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFsuJobDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFsuJobDetails.java index 356e4634d12..6bdec9a518e 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFsuJobDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateFsuJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateNonRollingBatchingStrategyDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateNonRollingBatchingStrategyDetails.java index 57cea1381c8..328dbb2f4ca 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateNonRollingBatchingStrategyDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateNonRollingBatchingStrategyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdatePatchFsuCycle.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdatePatchFsuCycle.java index fcbd8eb5c1b..72ea5b1ff22 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdatePatchFsuCycle.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdatePatchFsuCycle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdatePrecheckActionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdatePrecheckActionDetails.java index 0aadc17c01b..94eecdf80a6 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdatePrecheckActionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdatePrecheckActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateRollbackActionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateRollbackActionDetails.java index 267423610d5..e8a139ef458 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateRollbackActionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateRollbackActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateRollbackCycleActionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateRollbackCycleActionDetails.java index 30f983b28f6..37b75d1c268 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateRollbackCycleActionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateRollbackCycleActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateScheduleDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateScheduleDetails.java index 08b8b8bc3bc..4274e027fe4 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateScheduleDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateSequentialBatchingStrategyDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateSequentialBatchingStrategyDetails.java index 0d715fb7ef5..36f6e9c3b46 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateSequentialBatchingStrategyDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateSequentialBatchingStrategyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateServiceAvailabilityFactorBatchingStrategyDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateServiceAvailabilityFactorBatchingStrategyDetails.java index fe821745387..e5af846af53 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateServiceAvailabilityFactorBatchingStrategyDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateServiceAvailabilityFactorBatchingStrategyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateStageActionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateStageActionDetails.java index d7f55d0f710..c73492bc5be 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateStageActionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateStageActionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateStartTimeScheduleDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateStartTimeScheduleDetails.java index f630f3e4436..9a318f2aa46 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateStartTimeScheduleDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateStartTimeScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateUpgradeFsuCycle.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateUpgradeFsuCycle.java index e7e53955073..db55fbdf364 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateUpgradeFsuCycle.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpdateUpgradeFsuCycle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpgradeDbCollectionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpgradeDbCollectionDetails.java index 26e2aaf6fe7..d67f34e03bd 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpgradeDbCollectionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpgradeDbCollectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpgradeDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpgradeDetails.java index 5f6d667b94e..dfa2d990235 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpgradeDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpgradeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpgradeFsuCycle.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpgradeFsuCycle.java index 37eee50227e..a7913e48858 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpgradeFsuCycle.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpgradeFsuCycle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpgradeGiCollectionDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpgradeGiCollectionDetails.java index 3b3ad82dd53..63cfa024339 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpgradeGiCollectionDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/UpgradeGiCollectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/VersionFsuTargetDetails.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/VersionFsuTargetDetails.java index a3049797a04..39deca555b4 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/VersionFsuTargetDetails.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/VersionFsuTargetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/VmClusterTargetSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/VmClusterTargetSummary.java index fbb76bf2f1b..7b5da0ced66 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/VmClusterTargetSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/VmClusterTargetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequest.java index fffe39afb28..fa60d224be0 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestError.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestError.java index e9747c72437..28f73be3c67 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestError.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestErrorCollection.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestErrorCollection.java index 100799629eb..b04b2cbc226 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestErrorCollection.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestLogEntry.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestLogEntry.java index fd85582ecb1..eeeb54e8242 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestLogEntry.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestLogEntryCollection.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestLogEntryCollection.java index d808c693c40..4afb96fdd1e 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestLogEntryCollection.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestResource.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestResource.java index fca8a87636e..bf3c50afd09 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestResource.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestResourceMetadataKey.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestResourceMetadataKey.java index 9aafecd4eb5..918db411ecc 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestResourceMetadataKey.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestSummary.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestSummary.java index 9064e1edfca..fadb6dd3e0e 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestSummary.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestSummaryCollection.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestSummaryCollection.java index 47871b9ff1d..2d48348ad37 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestSummaryCollection.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.model; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/AbortFsuDiscoveryRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/AbortFsuDiscoveryRequest.java index d41e667d290..87222aa5d5f 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/AbortFsuDiscoveryRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/AbortFsuDiscoveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/AddFsuCollectionTargetsRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/AddFsuCollectionTargetsRequest.java index f119116533c..29c45b5139c 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/AddFsuCollectionTargetsRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/AddFsuCollectionTargetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CancelFsuActionRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CancelFsuActionRequest.java index 40475b6c615..4ff747710ee 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CancelFsuActionRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CancelFsuActionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ChangeFsuActionCompartmentRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ChangeFsuActionCompartmentRequest.java index ef78b09d628..84aa8e0afcc 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ChangeFsuActionCompartmentRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ChangeFsuActionCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ChangeFsuCollectionCompartmentRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ChangeFsuCollectionCompartmentRequest.java index 0340320ba00..3adfa8b721c 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ChangeFsuCollectionCompartmentRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ChangeFsuCollectionCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ChangeFsuCycleCompartmentRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ChangeFsuCycleCompartmentRequest.java index 3799886d701..47f3bff4b14 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ChangeFsuCycleCompartmentRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ChangeFsuCycleCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ChangeFsuDiscoveryCompartmentRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ChangeFsuDiscoveryCompartmentRequest.java index 6740669df51..187686d455a 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ChangeFsuDiscoveryCompartmentRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ChangeFsuDiscoveryCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CloneFsuCycleRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CloneFsuCycleRequest.java index 058172129d1..475a3eae6f4 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CloneFsuCycleRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CloneFsuCycleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CreateFsuActionRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CreateFsuActionRequest.java index c0c551d28fb..050e46cc73f 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CreateFsuActionRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CreateFsuActionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CreateFsuCollectionRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CreateFsuCollectionRequest.java index 76b4bbcf4d5..a7ac6bba408 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CreateFsuCollectionRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CreateFsuCollectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CreateFsuCycleRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CreateFsuCycleRequest.java index 037f09c38ef..a28b2d4fe2a 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CreateFsuCycleRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CreateFsuCycleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CreateFsuDiscoveryRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CreateFsuDiscoveryRequest.java index 0790cdfc934..1e67937fb2b 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CreateFsuDiscoveryRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/CreateFsuDiscoveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuActionRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuActionRequest.java index 9bc4deac89e..b131655525a 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuActionRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuActionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuCollectionRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuCollectionRequest.java index 55b9930465c..003324874b5 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuCollectionRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuCollectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuCollectionTargetRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuCollectionTargetRequest.java index f836cdff027..7c1f5767710 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuCollectionTargetRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuCollectionTargetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuCycleRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuCycleRequest.java index 6d4bf552d90..8768180559a 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuCycleRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuCycleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuDiscoveryRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuDiscoveryRequest.java index d787af8d411..47e4bc9ac94 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuDiscoveryRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuDiscoveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuJobRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuJobRequest.java index b83d2c012bb..b5499611a9f 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuJobRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/DeleteFsuJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuActionOutputContentRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuActionOutputContentRequest.java index d75749aec6a..1d144eee07d 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuActionOutputContentRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuActionOutputContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuActionRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuActionRequest.java index 021bdad9a69..4d9da1dd36c 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuActionRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuActionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuCollectionRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuCollectionRequest.java index 5381d1e77e0..a5e0b43cd99 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuCollectionRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuCollectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuCollectionTargetRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuCollectionTargetRequest.java index b28e006b3fc..f0d2fd492f3 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuCollectionTargetRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuCollectionTargetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuCycleRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuCycleRequest.java index 2eb9aea8270..76fa99d056d 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuCycleRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuCycleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuDiscoveryRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuDiscoveryRequest.java index 5571ea9df7c..f600b5b8e2f 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuDiscoveryRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuDiscoveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuJobOutputContentRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuJobOutputContentRequest.java index 06008d9d556..6ec3ffe093a 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuJobOutputContentRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuJobOutputContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuJobRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuJobRequest.java index 7d1193f5a94..e4cdda7c744 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuJobRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetFsuJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetWorkRequestRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetWorkRequestRequest.java index 1dc0412f9aa..977239e71b2 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetWorkRequestRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuActionsRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuActionsRequest.java index 14e575dd03e..4d3daee1bb7 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuActionsRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuActionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuCollectionTargetsRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuCollectionTargetsRequest.java index acc5ee6855a..5a0b8b395ff 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuCollectionTargetsRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuCollectionTargetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuCollectionsRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuCollectionsRequest.java index fc27c82b533..ace16a1478c 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuCollectionsRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuCollectionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuCyclesRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuCyclesRequest.java index 166fc65c2f9..03c9dec57ce 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuCyclesRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuCyclesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuDiscoveriesRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuDiscoveriesRequest.java index 44f0f36d501..40e14a6dd60 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuDiscoveriesRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuDiscoveriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuDiscoveryTargetsRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuDiscoveryTargetsRequest.java index c9bc8502dbe..aea4aa44971 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuDiscoveryTargetsRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuDiscoveryTargetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuJobOutputsRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuJobOutputsRequest.java index 2ab51da1596..98878ca9c23 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuJobOutputsRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuJobOutputsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuJobsRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuJobsRequest.java index 68b8afb4025..1f62c3582b5 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuJobsRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListFsuJobsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListWorkRequestErrorsRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListWorkRequestErrorsRequest.java index 4ae2de7db27..861be6d0002 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListWorkRequestLogsRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListWorkRequestLogsRequest.java index 59c12cbfa50..eca5a34092d 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListWorkRequestLogsRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListWorkRequestsRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListWorkRequestsRequest.java index 56427c31637..1bd3b495058 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListWorkRequestsRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/RemoveFsuCollectionTargetsRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/RemoveFsuCollectionTargetsRequest.java index faec4d76cfb..dbe1b3e6663 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/RemoveFsuCollectionTargetsRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/RemoveFsuCollectionTargetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ResumeFsuActionRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ResumeFsuActionRequest.java index daae6f91eba..a393c29980d 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ResumeFsuActionRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/ResumeFsuActionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/RetryFsuJobRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/RetryFsuJobRequest.java index 02d86064fdf..63f369cff9f 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/RetryFsuJobRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/RetryFsuJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/UpdateFsuActionRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/UpdateFsuActionRequest.java index 2a4e26fadef..a95de8427a9 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/UpdateFsuActionRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/UpdateFsuActionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/UpdateFsuCollectionRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/UpdateFsuCollectionRequest.java index f2f83412820..24b579b1538 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/UpdateFsuCollectionRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/UpdateFsuCollectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/UpdateFsuCycleRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/UpdateFsuCycleRequest.java index 1d878080614..cc63afb822d 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/UpdateFsuCycleRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/UpdateFsuCycleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/UpdateFsuDiscoveryRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/UpdateFsuDiscoveryRequest.java index 8ca33f99a26..b91eef1bf66 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/UpdateFsuDiscoveryRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/UpdateFsuDiscoveryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/UpdateFsuJobRequest.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/UpdateFsuJobRequest.java index 6c73daa9939..287a356f019 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/UpdateFsuJobRequest.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/requests/UpdateFsuJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.requests; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/AbortFsuDiscoveryResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/AbortFsuDiscoveryResponse.java index dae7c1044c9..428267608a8 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/AbortFsuDiscoveryResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/AbortFsuDiscoveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/AddFsuCollectionTargetsResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/AddFsuCollectionTargetsResponse.java index 46472a9424c..30c6a80bee6 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/AddFsuCollectionTargetsResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/AddFsuCollectionTargetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CancelFsuActionResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CancelFsuActionResponse.java index 8921aab2207..de122b5804f 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CancelFsuActionResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CancelFsuActionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ChangeFsuActionCompartmentResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ChangeFsuActionCompartmentResponse.java index 279ded66b7f..9c9a6e2f119 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ChangeFsuActionCompartmentResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ChangeFsuActionCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ChangeFsuCollectionCompartmentResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ChangeFsuCollectionCompartmentResponse.java index 9b4f26df0d8..d592fc8709c 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ChangeFsuCollectionCompartmentResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ChangeFsuCollectionCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ChangeFsuCycleCompartmentResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ChangeFsuCycleCompartmentResponse.java index a43477285aa..ee2e7af154a 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ChangeFsuCycleCompartmentResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ChangeFsuCycleCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ChangeFsuDiscoveryCompartmentResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ChangeFsuDiscoveryCompartmentResponse.java index 27f57069d65..50a95b86e8d 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ChangeFsuDiscoveryCompartmentResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ChangeFsuDiscoveryCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CloneFsuCycleResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CloneFsuCycleResponse.java index 4d99833d600..b47c137a964 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CloneFsuCycleResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CloneFsuCycleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CreateFsuActionResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CreateFsuActionResponse.java index f9fe0bceb39..38a6a1a0ac6 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CreateFsuActionResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CreateFsuActionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CreateFsuCollectionResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CreateFsuCollectionResponse.java index cd390ae3dc2..a0f1ebd7c55 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CreateFsuCollectionResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CreateFsuCollectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CreateFsuCycleResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CreateFsuCycleResponse.java index 371d25ac6d2..ddc41cb1d25 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CreateFsuCycleResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CreateFsuCycleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CreateFsuDiscoveryResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CreateFsuDiscoveryResponse.java index d41a6dcd888..c305843f861 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CreateFsuDiscoveryResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/CreateFsuDiscoveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuActionResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuActionResponse.java index 08256751cac..e193220d11a 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuActionResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuActionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuCollectionResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuCollectionResponse.java index 1b9a2d4c2e9..06845f7933c 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuCollectionResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuCollectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuCollectionTargetResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuCollectionTargetResponse.java index 4bfb6d05453..51d9a192d11 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuCollectionTargetResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuCollectionTargetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuCycleResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuCycleResponse.java index 90866fb13da..bf88f1f5a58 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuCycleResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuCycleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuDiscoveryResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuDiscoveryResponse.java index d9fb624b47d..b04f3b2f757 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuDiscoveryResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuDiscoveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuJobResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuJobResponse.java index 3fb084e9e27..53ac060098d 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuJobResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/DeleteFsuJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuActionOutputContentResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuActionOutputContentResponse.java index 7622ccd5cef..82b2856075e 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuActionOutputContentResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuActionOutputContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuActionResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuActionResponse.java index 3a445e661a9..65819c8cbf9 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuActionResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuActionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuCollectionResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuCollectionResponse.java index 235739d1200..ac0f1e18647 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuCollectionResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuCollectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuCollectionTargetResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuCollectionTargetResponse.java index 9bc114aaa6f..a880d9149b8 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuCollectionTargetResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuCollectionTargetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuCycleResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuCycleResponse.java index 28924ce9403..f0f8ba2491f 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuCycleResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuCycleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuDiscoveryResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuDiscoveryResponse.java index b90fec0ab7c..315b5c85511 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuDiscoveryResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuDiscoveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuJobOutputContentResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuJobOutputContentResponse.java index 9f2afeff839..eba5fcb686d 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuJobOutputContentResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuJobOutputContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuJobResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuJobResponse.java index a0cb8115ef3..723fda69a2c 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuJobResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetFsuJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetWorkRequestResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetWorkRequestResponse.java index 9124ce8a44a..f245abd91e3 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetWorkRequestResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuActionsResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuActionsResponse.java index 2ec7c926811..409676b1122 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuActionsResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuActionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuCollectionTargetsResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuCollectionTargetsResponse.java index 4fc79195164..191b5a33b0a 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuCollectionTargetsResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuCollectionTargetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuCollectionsResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuCollectionsResponse.java index 9bd3f35f151..ac3303dd6ed 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuCollectionsResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuCollectionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuCyclesResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuCyclesResponse.java index cbd824fe593..7511e712831 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuCyclesResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuCyclesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuDiscoveriesResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuDiscoveriesResponse.java index 4e0a320749d..d3b44298dee 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuDiscoveriesResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuDiscoveriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuDiscoveryTargetsResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuDiscoveryTargetsResponse.java index 4e7c8dbe6d2..19ac33dddf3 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuDiscoveryTargetsResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuDiscoveryTargetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuJobOutputsResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuJobOutputsResponse.java index fe6ee336f28..4a97b8321cc 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuJobOutputsResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuJobOutputsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuJobsResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuJobsResponse.java index 06022338b75..b40632086c2 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuJobsResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListFsuJobsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListWorkRequestErrorsResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListWorkRequestErrorsResponse.java index 7a51569b6a7..bae51b966b2 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListWorkRequestLogsResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListWorkRequestLogsResponse.java index 00773631cbb..76f6f8138b7 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListWorkRequestLogsResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListWorkRequestsResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListWorkRequestsResponse.java index 9161f40332a..e781dcb9852 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListWorkRequestsResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/RemoveFsuCollectionTargetsResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/RemoveFsuCollectionTargetsResponse.java index c6f679c5961..b7b8540d178 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/RemoveFsuCollectionTargetsResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/RemoveFsuCollectionTargetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ResumeFsuActionResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ResumeFsuActionResponse.java index 0352919c89a..8f753b42bac 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ResumeFsuActionResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/ResumeFsuActionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/RetryFsuJobResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/RetryFsuJobResponse.java index 4cc5a107097..0d77a5b2e8e 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/RetryFsuJobResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/RetryFsuJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/UpdateFsuActionResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/UpdateFsuActionResponse.java index 43a9d5316af..d35d7bd72bb 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/UpdateFsuActionResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/UpdateFsuActionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/UpdateFsuCollectionResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/UpdateFsuCollectionResponse.java index 18a4287c803..f99f05ad6c2 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/UpdateFsuCollectionResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/UpdateFsuCollectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/UpdateFsuCycleResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/UpdateFsuCycleResponse.java index 28bdab4885b..8f73ecaf696 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/UpdateFsuCycleResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/UpdateFsuCycleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/UpdateFsuDiscoveryResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/UpdateFsuDiscoveryResponse.java index f1767e81861..2a945c8e7fb 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/UpdateFsuDiscoveryResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/UpdateFsuDiscoveryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/UpdateFsuJobResponse.java b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/UpdateFsuJobResponse.java index 16890e0ccdc..9ddf456f3a1 100644 --- a/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/UpdateFsuJobResponse.java +++ b/bmc-fleetsoftwareupdate/src/main/java/com/oracle/bmc/fleetsoftwareupdate/responses/UpdateFsuJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fleetsoftwareupdate.responses; diff --git a/bmc-fleetsoftwareupdate/src/main/resources/com/oracle/bmc/fleetsoftwareupdate/client.properties b/bmc-fleetsoftwareupdate/src/main/resources/com/oracle/bmc/fleetsoftwareupdate/client.properties index 1d974641770..def1bc72faf 100644 --- a/bmc-fleetsoftwareupdate/src/main/resources/com/oracle/bmc/fleetsoftwareupdate/client.properties +++ b/bmc-fleetsoftwareupdate/src/main/resources/com/oracle/bmc/fleetsoftwareupdate/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-full/pom.xml b/bmc-full/pom.xml index bd632be0d07..56939aec156 100644 --- a/bmc-full/pom.xml +++ b/bmc-full/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-full @@ -16,7 +16,7 @@ com.oracle.oci.sdk oci-java-sdk-bom - 3.77.2 + 3.78.0 pom import diff --git a/bmc-full/src/main/java/overview.html b/bmc-full/src/main/java/overview.html index 5bc2c784909..c8075a9911d 100644 --- a/bmc-full/src/main/java/overview.html +++ b/bmc-full/src/main/java/overview.html @@ -1,6 +1,6 @@ diff --git a/bmc-functions/pom.xml b/bmc-functions/pom.xml index 4b73fa3ae44..45a7348d129 100644 --- a/bmc-functions/pom.xml +++ b/bmc-functions/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-functions @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsInvoke.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsInvoke.java index afbb0cc48a9..596772e1fb8 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsInvoke.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsInvoke.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsInvokeAsync.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsInvokeAsync.java index c816cbab71c..5918cbacdaa 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsInvokeAsync.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsInvokeAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsInvokeAsyncClient.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsInvokeAsyncClient.java index a04f27ee466..aaa9bbd3cd6 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsInvokeAsyncClient.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsInvokeAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsInvokeClient.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsInvokeClient.java index 05620a59243..6f57b895507 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsInvokeClient.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsInvokeClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagement.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagement.java index fc516089944..401442145fe 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagement.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagementAsync.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagementAsync.java index b0f41b4947e..de4fa2c48da 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagementAsync.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagementAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagementAsyncClient.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagementAsyncClient.java index 084cc54021b..fd361fd5253 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagementAsyncClient.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagementAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagementClient.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagementClient.java index 9304a909663..8364397d42f 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagementClient.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagementClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagementPaginators.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagementPaginators.java index e4860e4a9ed..6557c2c3791 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagementPaginators.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagementPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagementWaiters.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagementWaiters.java index d2c7f68b4f9..84c36af7e51 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagementWaiters.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/FunctionsManagementWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/Application.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/Application.java index 1d235de2d71..c4e35b47e3f 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/Application.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/Application.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ApplicationSummary.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ApplicationSummary.java index 871baa3202e..fe44592ae57 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ApplicationSummary.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ApplicationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ApplicationTraceConfig.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ApplicationTraceConfig.java index b8ceb819bb5..a9f5ac65da1 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ApplicationTraceConfig.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ApplicationTraceConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ChangeApplicationCompartmentDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ChangeApplicationCompartmentDetails.java index d518811e8e3..872ea96b20f 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ChangeApplicationCompartmentDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ChangeApplicationCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ConfigDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ConfigDetails.java index 85caa93f1d7..5b54a4aa4c9 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ConfigDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ConstantProvisionedConcurrencyConfig.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ConstantProvisionedConcurrencyConfig.java index d20d37db5b7..ae584acd95f 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ConstantProvisionedConcurrencyConfig.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ConstantProvisionedConcurrencyConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/CreateApplicationDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/CreateApplicationDetails.java index d2c0492dc4e..56a03a4c882 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/CreateApplicationDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/CreateApplicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/CreateFunctionDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/CreateFunctionDetails.java index 03779499a92..e41ed4773fa 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/CreateFunctionDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/CreateFunctionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/FailureDestinationDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/FailureDestinationDetails.java index 8ebd51c69ea..0da625f1b24 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/FailureDestinationDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/FailureDestinationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/Function.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/Function.java index 319d6ffa4a3..f9a507b5df8 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/Function.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/Function.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/FunctionProvisionedConcurrencyConfig.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/FunctionProvisionedConcurrencyConfig.java index ac92a7ab4ed..71057ce7b1f 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/FunctionProvisionedConcurrencyConfig.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/FunctionProvisionedConcurrencyConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/FunctionSourceDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/FunctionSourceDetails.java index 8c2ea91d8b4..1fd73876e01 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/FunctionSourceDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/FunctionSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/FunctionSummary.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/FunctionSummary.java index 5a929419928..bcdc22c9325 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/FunctionSummary.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/FunctionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/FunctionTraceConfig.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/FunctionTraceConfig.java index 704c3af6c49..d709dad7ccb 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/FunctionTraceConfig.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/FunctionTraceConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ImagePolicyConfig.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ImagePolicyConfig.java index 10559406bb5..a52aa85d38e 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ImagePolicyConfig.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/ImagePolicyConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/KeyDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/KeyDetails.java index a6c8b94b2aa..0567361f087 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/KeyDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/KeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/NoneFailureDestinationDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/NoneFailureDestinationDetails.java index ba6cc6357c2..94dcf693a19 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/NoneFailureDestinationDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/NoneFailureDestinationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/NoneProvisionedConcurrencyConfig.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/NoneProvisionedConcurrencyConfig.java index 50971222288..9da60f1fbe1 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/NoneProvisionedConcurrencyConfig.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/NoneProvisionedConcurrencyConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/NoneSuccessDestinationDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/NoneSuccessDestinationDetails.java index 77811cdc44a..76c33ca523f 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/NoneSuccessDestinationDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/NoneSuccessDestinationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/NotificationFailureDestinationDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/NotificationFailureDestinationDetails.java index ae4f27e0766..18726bc8f0f 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/NotificationFailureDestinationDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/NotificationFailureDestinationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/NotificationSuccessDestinationDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/NotificationSuccessDestinationDetails.java index 40234454403..2c39b2ea337 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/NotificationSuccessDestinationDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/NotificationSuccessDestinationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListing.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListing.java index 0c4bec3de71..ac555f0cbd7 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListing.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListing.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListingSummary.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListingSummary.java index ff8a893ad86..f1287945780 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListingSummary.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListingSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListingVersion.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListingVersion.java index 227f6a51bb1..31e683988c9 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListingVersion.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListingVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListingVersionSummary.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListingVersionSummary.java index d26b19cc0ad..271276d2981 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListingVersionSummary.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListingVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListingVersionsCollection.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListingVersionsCollection.java index 761f0692d36..e0a830fb73d 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListingVersionsCollection.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListingVersionsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListingsCollection.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListingsCollection.java index 670c36cfa5d..495a4d6783a 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListingsCollection.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PbfListingsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PolicyDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PolicyDetails.java index 4e74461d531..59c2ae5f892 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PolicyDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PreBuiltFunctionSourceDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PreBuiltFunctionSourceDetails.java index 277c9ae769e..3b8ab1f6a98 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PreBuiltFunctionSourceDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PreBuiltFunctionSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PublisherDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PublisherDetails.java index ebd270bd4c5..a1cad06021b 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PublisherDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/PublisherDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/QueueFailureDestinationDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/QueueFailureDestinationDetails.java index 0802758aee1..1d1547d70e4 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/QueueFailureDestinationDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/QueueFailureDestinationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/QueueSuccessDestinationDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/QueueSuccessDestinationDetails.java index 580f77d03f8..7befea2da0d 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/QueueSuccessDestinationDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/QueueSuccessDestinationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/RequirementDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/RequirementDetails.java index 668a66c3599..cdc61941361 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/RequirementDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/RequirementDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/StreamFailureDestinationDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/StreamFailureDestinationDetails.java index d8229badd80..fa284aed164 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/StreamFailureDestinationDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/StreamFailureDestinationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/StreamSuccessDestinationDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/StreamSuccessDestinationDetails.java index 32ac0582fa3..2cc31081835 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/StreamSuccessDestinationDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/StreamSuccessDestinationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/SuccessDestinationDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/SuccessDestinationDetails.java index 599b90e8a03..7ce35d74d17 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/SuccessDestinationDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/SuccessDestinationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/Trigger.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/Trigger.java index 6c2a02b0e0e..a64fe8fbf49 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/Trigger.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/Trigger.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/TriggerSummary.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/TriggerSummary.java index a6f4bda7213..f7cfed6af00 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/TriggerSummary.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/TriggerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/TriggersCollection.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/TriggersCollection.java index ba8342c1633..4522d840b0e 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/TriggersCollection.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/TriggersCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/UpdateApplicationDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/UpdateApplicationDetails.java index 28887d008f7..9b74da13891 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/UpdateApplicationDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/UpdateApplicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/UpdateFunctionDetails.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/UpdateFunctionDetails.java index 39bf3538221..bc3aabf5453 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/model/UpdateFunctionDetails.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/model/UpdateFunctionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.model; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ChangeApplicationCompartmentRequest.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ChangeApplicationCompartmentRequest.java index 128ec196a8e..8e52b3af382 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ChangeApplicationCompartmentRequest.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ChangeApplicationCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.requests; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/CreateApplicationRequest.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/CreateApplicationRequest.java index 433de769f24..f524af7d5b5 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/CreateApplicationRequest.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/CreateApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.requests; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/CreateFunctionRequest.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/CreateFunctionRequest.java index a508ea66272..86e4fff37ef 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/CreateFunctionRequest.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/CreateFunctionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.requests; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/DeleteApplicationRequest.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/DeleteApplicationRequest.java index fc23bf4d771..a540550dbb7 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/DeleteApplicationRequest.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/DeleteApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.requests; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/DeleteFunctionRequest.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/DeleteFunctionRequest.java index 8b8907af91e..4020198a0b6 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/DeleteFunctionRequest.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/DeleteFunctionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.requests; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/GetApplicationRequest.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/GetApplicationRequest.java index bdf642a42ed..956fec5457a 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/GetApplicationRequest.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/GetApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.requests; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/GetFunctionRequest.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/GetFunctionRequest.java index 2f9c1257811..7b7be77dbd2 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/GetFunctionRequest.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/GetFunctionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.requests; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/GetPbfListingRequest.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/GetPbfListingRequest.java index 807d17157fc..42fa177787d 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/GetPbfListingRequest.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/GetPbfListingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.requests; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/GetPbfListingVersionRequest.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/GetPbfListingVersionRequest.java index 6aba9f32061..a001fd58fb0 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/GetPbfListingVersionRequest.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/GetPbfListingVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.requests; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/InvokeFunctionRequest.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/InvokeFunctionRequest.java index 2a3a112cefc..29c965cdbba 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/InvokeFunctionRequest.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/InvokeFunctionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.requests; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ListApplicationsRequest.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ListApplicationsRequest.java index 24f75608186..c39ef549af8 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ListApplicationsRequest.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ListApplicationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.requests; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ListFunctionsRequest.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ListFunctionsRequest.java index 48d8834869c..df0e3ebdc51 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ListFunctionsRequest.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ListFunctionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.requests; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ListPbfListingVersionsRequest.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ListPbfListingVersionsRequest.java index 74ba40ecc81..f213cdaecbd 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ListPbfListingVersionsRequest.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ListPbfListingVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.requests; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ListPbfListingsRequest.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ListPbfListingsRequest.java index 47b7ac9c5ad..a07da96e5da 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ListPbfListingsRequest.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ListPbfListingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.requests; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ListTriggersRequest.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ListTriggersRequest.java index ec79a40b7a8..6455d7b72c9 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ListTriggersRequest.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/ListTriggersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.requests; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/UpdateApplicationRequest.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/UpdateApplicationRequest.java index 0efc32ed6c4..d0f1bd5eda7 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/UpdateApplicationRequest.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/UpdateApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.requests; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/UpdateFunctionRequest.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/UpdateFunctionRequest.java index 273339c4c69..af9bb02e7c3 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/UpdateFunctionRequest.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/requests/UpdateFunctionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.requests; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ChangeApplicationCompartmentResponse.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ChangeApplicationCompartmentResponse.java index c9a794a0be9..6f1839eea09 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ChangeApplicationCompartmentResponse.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ChangeApplicationCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.responses; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/CreateApplicationResponse.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/CreateApplicationResponse.java index ddecbe2f8dd..a400bcbbe2c 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/CreateApplicationResponse.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/CreateApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.responses; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/CreateFunctionResponse.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/CreateFunctionResponse.java index e86aa7c7154..29216a21d75 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/CreateFunctionResponse.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/CreateFunctionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.responses; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/DeleteApplicationResponse.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/DeleteApplicationResponse.java index 96dd747180d..2b1ddf2d022 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/DeleteApplicationResponse.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/DeleteApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.responses; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/DeleteFunctionResponse.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/DeleteFunctionResponse.java index 1b060a68f5b..57b5da283d8 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/DeleteFunctionResponse.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/DeleteFunctionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.responses; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/GetApplicationResponse.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/GetApplicationResponse.java index 95ec9e2313b..4fe2f98a0e5 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/GetApplicationResponse.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/GetApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.responses; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/GetFunctionResponse.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/GetFunctionResponse.java index d03fbd4b4ad..eaa3bf4c499 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/GetFunctionResponse.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/GetFunctionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.responses; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/GetPbfListingResponse.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/GetPbfListingResponse.java index 0e9df438ad0..17859871615 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/GetPbfListingResponse.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/GetPbfListingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.responses; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/GetPbfListingVersionResponse.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/GetPbfListingVersionResponse.java index 9f1a3149cbd..9af8c5adb8d 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/GetPbfListingVersionResponse.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/GetPbfListingVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.responses; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/InvokeFunctionResponse.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/InvokeFunctionResponse.java index ee9c4b350c0..040671bac4d 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/InvokeFunctionResponse.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/InvokeFunctionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.responses; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ListApplicationsResponse.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ListApplicationsResponse.java index f427fe6c12a..f6bffce00b5 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ListApplicationsResponse.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ListApplicationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.responses; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ListFunctionsResponse.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ListFunctionsResponse.java index 556e7fff58e..fd12b809609 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ListFunctionsResponse.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ListFunctionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.responses; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ListPbfListingVersionsResponse.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ListPbfListingVersionsResponse.java index 04f60a8f120..802941535d6 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ListPbfListingVersionsResponse.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ListPbfListingVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.responses; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ListPbfListingsResponse.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ListPbfListingsResponse.java index 4efb4e6ef5f..fea207ff27c 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ListPbfListingsResponse.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ListPbfListingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.responses; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ListTriggersResponse.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ListTriggersResponse.java index fc3d12410d8..58005f3bb28 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ListTriggersResponse.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/ListTriggersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.responses; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/UpdateApplicationResponse.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/UpdateApplicationResponse.java index 7ebdc5eca93..c0cfb241592 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/UpdateApplicationResponse.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/UpdateApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.responses; diff --git a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/UpdateFunctionResponse.java b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/UpdateFunctionResponse.java index f04f761108c..73bf5444188 100644 --- a/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/UpdateFunctionResponse.java +++ b/bmc-functions/src/main/java/com/oracle/bmc/functions/responses/UpdateFunctionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.functions.responses; diff --git a/bmc-functions/src/main/resources/com/oracle/bmc/functions/client.properties b/bmc-functions/src/main/resources/com/oracle/bmc/functions/client.properties index 41b95040562..28c0827995b 100644 --- a/bmc-functions/src/main/resources/com/oracle/bmc/functions/client.properties +++ b/bmc-functions/src/main/resources/com/oracle/bmc/functions/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-fusionapps/pom.xml b/bmc-fusionapps/pom.xml index 093945e1330..fc28422a4bf 100644 --- a/bmc-fusionapps/pom.xml +++ b/bmc-fusionapps/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-fusionapps @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplications.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplications.java index c54e86c5d59..928d7057db6 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplications.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplications.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplicationsAsync.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplicationsAsync.java index d993913502a..93c150b9043 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplicationsAsync.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplicationsAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplicationsAsyncClient.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplicationsAsyncClient.java index c323100e04d..507fc6b165d 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplicationsAsyncClient.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplicationsAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplicationsClient.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplicationsClient.java index 9aef1ecf0c6..6a7c90c708b 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplicationsClient.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplicationsClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplicationsPaginators.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplicationsPaginators.java index 48a27226062..f0cc0955d38 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplicationsPaginators.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplicationsPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplicationsWaiters.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplicationsWaiters.java index 9b0bd393bb5..54743d6c553 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplicationsWaiters.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/FusionApplicationsWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/Action.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/Action.java index 1d344634a9e..6613a12a3af 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/Action.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/Action.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/AdminUserCollection.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/AdminUserCollection.java index 0b3fe17162b..b27704a6b2e 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/AdminUserCollection.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/AdminUserCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/AdminUserSummary.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/AdminUserSummary.java index 33c491c5efa..37ec037ed12 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/AdminUserSummary.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/AdminUserSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/AllowRule.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/AllowRule.java index 7a51550eec0..5d5ac529462 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/AllowRule.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/AllowRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/Capabilities.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/Capabilities.java index 94224cead5c..fb0e25eaca6 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/Capabilities.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/Capabilities.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ChangeFusionEnvironmentCompartmentDetails.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ChangeFusionEnvironmentCompartmentDetails.java index 814ed781c34..1138a2716f6 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ChangeFusionEnvironmentCompartmentDetails.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ChangeFusionEnvironmentCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ChangeFusionEnvironmentFamilyCompartmentDetails.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ChangeFusionEnvironmentFamilyCompartmentDetails.java index 245319002c3..9fd0e280873 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ChangeFusionEnvironmentFamilyCompartmentDetails.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ChangeFusionEnvironmentFamilyCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateDataMaskingActivityDetails.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateDataMaskingActivityDetails.java index 7d353305663..c89b4660f6c 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateDataMaskingActivityDetails.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateDataMaskingActivityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateFusionEnvironmentAdminUserDetails.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateFusionEnvironmentAdminUserDetails.java index b3f41a6876d..e3d41429df7 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateFusionEnvironmentAdminUserDetails.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateFusionEnvironmentAdminUserDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateFusionEnvironmentDetails.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateFusionEnvironmentDetails.java index 422388a4b2d..705c73608cb 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateFusionEnvironmentDetails.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateFusionEnvironmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateFusionEnvironmentFamilyDetails.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateFusionEnvironmentFamilyDetails.java index 06f596a03c8..61b75c7840f 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateFusionEnvironmentFamilyDetails.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateFusionEnvironmentFamilyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateRefreshActivityDetails.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateRefreshActivityDetails.java index 11feabec710..69e4ed15f06 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateRefreshActivityDetails.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateRefreshActivityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateServiceAttachmentDetails.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateServiceAttachmentDetails.java index 96ce72d2422..d79cc41e17b 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateServiceAttachmentDetails.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/CreateServiceAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/DataMaskingActivity.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/DataMaskingActivity.java index 795af3d598f..a168fc55ca6 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/DataMaskingActivity.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/DataMaskingActivity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/DataMaskingActivityCollection.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/DataMaskingActivityCollection.java index a9244c5a958..2143bc89276 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/DataMaskingActivityCollection.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/DataMaskingActivityCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/DataMaskingActivitySummary.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/DataMaskingActivitySummary.java index 27db3f48631..33a13d5a7fd 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/DataMaskingActivitySummary.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/DataMaskingActivitySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/EnvironmentRole.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/EnvironmentRole.java index 3755f491670..72ca927f122 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/EnvironmentRole.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/EnvironmentRole.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ExtractDetailsCollection.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ExtractDetailsCollection.java index 6f4935e6496..3b24df3f1b7 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ExtractDetailsCollection.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ExtractDetailsCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ExtractDetailsSummary.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ExtractDetailsSummary.java index 6b3f3954aa5..d4785c621cc 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ExtractDetailsSummary.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ExtractDetailsSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FamilyMaintenancePolicy.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FamilyMaintenancePolicy.java index 3573500930c..b26acc996be 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FamilyMaintenancePolicy.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FamilyMaintenancePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironment.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironment.java index 605ed5fc6e1..202c1286034 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironment.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentCollection.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentCollection.java index 90ab9faeaa1..b3858c0f15d 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentCollection.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentFamily.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentFamily.java index e63c3e16f51..e6f57d15ed4 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentFamily.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentFamily.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentFamilyCollection.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentFamilyCollection.java index 99ad043881e..6d6b1894c31 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentFamilyCollection.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentFamilyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentFamilyLimitsAndUsage.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentFamilyLimitsAndUsage.java index 7a84d585767..d79dde82a6f 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentFamilyLimitsAndUsage.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentFamilyLimitsAndUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentFamilySummary.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentFamilySummary.java index be8ebd256ba..5ee103726b9 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentFamilySummary.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentFamilySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentStatus.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentStatus.java index 93fa307303d..80b2bd1bd36 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentStatus.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentSummary.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentSummary.java index ea6f23feb84..873732f4939 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentSummary.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/FusionEnvironmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/GetMaintenancePolicyDetails.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/GetMaintenancePolicyDetails.java index 951b175cfbb..1de3ec0b047 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/GetMaintenancePolicyDetails.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/GetMaintenancePolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/KmsKeyInfo.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/KmsKeyInfo.java index 31d00ce53a8..64d410a08d3 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/KmsKeyInfo.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/KmsKeyInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/LimitAndUsage.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/LimitAndUsage.java index 148d9dc53aa..be3480d069d 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/LimitAndUsage.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/LimitAndUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/MaintenancePolicy.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/MaintenancePolicy.java index cc867fd520b..011552f4ec8 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/MaintenancePolicy.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/MaintenancePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/PatchAction.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/PatchAction.java index 2e451508fdf..91ce88e79bb 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/PatchAction.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/PatchAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/QuarterlyUpgradeBeginTimes.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/QuarterlyUpgradeBeginTimes.java index f763372ce5d..e36534001d6 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/QuarterlyUpgradeBeginTimes.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/QuarterlyUpgradeBeginTimes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RefreshActivity.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RefreshActivity.java index 2c97dad65c9..4523b7dbe37 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RefreshActivity.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RefreshActivity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RefreshActivityCollection.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RefreshActivityCollection.java index 2215238aea2..2da58da2e5a 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RefreshActivityCollection.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RefreshActivityCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RefreshActivitySummary.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RefreshActivitySummary.java index 3206eb3ef01..60fb943540f 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RefreshActivitySummary.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RefreshActivitySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RefreshDetails.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RefreshDetails.java index 53da83829ab..8ef796a14b2 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RefreshDetails.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RefreshDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RefreshIssueDetails.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RefreshIssueDetails.java index 4acdc9552ea..d4afe661691 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RefreshIssueDetails.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RefreshIssueDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ResetFusionEnvironmentPasswordDetails.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ResetFusionEnvironmentPasswordDetails.java index 2b8a7155876..ef92b671683 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ResetFusionEnvironmentPasswordDetails.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ResetFusionEnvironmentPasswordDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/Rule.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/Rule.java index bec075f7329..742d23963b5 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/Rule.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/Rule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RuleCondition.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RuleCondition.java index 11ce9ba6e64..3d3556d0c2d 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RuleCondition.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/RuleCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ScheduledActivity.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ScheduledActivity.java index 4215b1c06be..bab7fde0870 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ScheduledActivity.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ScheduledActivity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ScheduledActivityCollection.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ScheduledActivityCollection.java index 89b7ac3a1e9..e0cdcecf280 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ScheduledActivityCollection.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ScheduledActivityCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ScheduledActivitySummary.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ScheduledActivitySummary.java index 2dfe4808f8c..8e1920d5c5f 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ScheduledActivitySummary.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ScheduledActivitySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ServiceAttachment.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ServiceAttachment.java index c795d35ce6e..2cdd4277827 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ServiceAttachment.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ServiceAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ServiceAttachmentCollection.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ServiceAttachmentCollection.java index 18b4622ae37..48ead1bd289 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ServiceAttachmentCollection.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ServiceAttachmentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ServiceAttachmentSummary.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ServiceAttachmentSummary.java index 35e286b7aa4..91091f7f613 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ServiceAttachmentSummary.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/ServiceAttachmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/SourceIpAddressCondition.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/SourceIpAddressCondition.java index 90f70b2a44b..622a5839efe 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/SourceIpAddressCondition.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/SourceIpAddressCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/SourceVcnIdCondition.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/SourceVcnIdCondition.java index ed66ce860e2..ff4e75d6a42 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/SourceVcnIdCondition.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/SourceVcnIdCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/SourceVcnIpAddressCondition.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/SourceVcnIpAddressCondition.java index 6ea8ccbc174..e05eb917679 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/SourceVcnIpAddressCondition.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/SourceVcnIpAddressCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/Subscription.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/Subscription.java index b8f3f92332b..98afeae3bb2 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/Subscription.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/Subscription.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/SubscriptionDetail.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/SubscriptionDetail.java index 9f32c6eadd5..542dc27d8f0 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/SubscriptionDetail.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/SubscriptionDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/SubscriptionSku.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/SubscriptionSku.java index 66a112b04c5..f1ca316f498 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/SubscriptionSku.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/SubscriptionSku.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/TimeAvailableForRefresh.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/TimeAvailableForRefresh.java index 0ea2e841110..299f012cf11 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/TimeAvailableForRefresh.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/TimeAvailableForRefresh.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/TimeAvailableForRefreshCollection.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/TimeAvailableForRefreshCollection.java index a9b9cdaedae..c43e7dc6576 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/TimeAvailableForRefreshCollection.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/TimeAvailableForRefreshCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/TimeAvailableForRefreshSummary.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/TimeAvailableForRefreshSummary.java index 290c3098e78..adaee9edb94 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/TimeAvailableForRefreshSummary.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/TimeAvailableForRefreshSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/UpdateFamilyMaintenancePolicyDetails.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/UpdateFamilyMaintenancePolicyDetails.java index f0ff637e8f9..8108f1f831d 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/UpdateFamilyMaintenancePolicyDetails.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/UpdateFamilyMaintenancePolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/UpdateFusionEnvironmentDetails.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/UpdateFusionEnvironmentDetails.java index 9ac1539c3d6..5bd84b619a8 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/UpdateFusionEnvironmentDetails.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/UpdateFusionEnvironmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/UpdateFusionEnvironmentFamilyDetails.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/UpdateFusionEnvironmentFamilyDetails.java index 6f3a3655208..0e60ddd3f9c 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/UpdateFusionEnvironmentFamilyDetails.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/UpdateFusionEnvironmentFamilyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/UpdateRefreshActivityDetails.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/UpdateRefreshActivityDetails.java index f2dc7d02be6..89ce7282a04 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/UpdateRefreshActivityDetails.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/UpdateRefreshActivityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/UpgradeAction.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/UpgradeAction.java index 6f6aadcc6e5..a5efbee8f5d 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/UpgradeAction.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/UpgradeAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/VerifyServiceAttachmentDetails.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/VerifyServiceAttachmentDetails.java index 348de3b3b9d..2025adac4a9 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/VerifyServiceAttachmentDetails.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/VerifyServiceAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/VertexAction.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/VertexAction.java index a65a9dfb498..07f76569f4b 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/VertexAction.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/VertexAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequest.java index 968eca86d0a..60b0cfb8930 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestError.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestError.java index 1b8911ee652..13f009f08c9 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestError.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestErrorCollection.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestErrorCollection.java index 934be120d85..f461915cfab 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestErrorCollection.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestLogEntry.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestLogEntry.java index 40b369ae865..3aa7651fd92 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestLogEntry.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestLogEntryCollection.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestLogEntryCollection.java index 85b5302ee68..6bc517166bc 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestLogEntryCollection.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestResource.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestResource.java index f3a85b4db6c..8e5d95c1e7d 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestResource.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestSummary.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestSummary.java index 4cc9f71f617..08cd1f9b4fd 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestSummary.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestSummaryCollection.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestSummaryCollection.java index 87e1b07237c..6382d8e4951 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestSummaryCollection.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.model; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ChangeFusionEnvironmentCompartmentRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ChangeFusionEnvironmentCompartmentRequest.java index 0e50fc5ef1f..5cd1fa7a704 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ChangeFusionEnvironmentCompartmentRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ChangeFusionEnvironmentCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ChangeFusionEnvironmentFamilyCompartmentRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ChangeFusionEnvironmentFamilyCompartmentRequest.java index c3118ebae05..34d2719f6c5 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ChangeFusionEnvironmentFamilyCompartmentRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ChangeFusionEnvironmentFamilyCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateDataMaskingActivityRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateDataMaskingActivityRequest.java index af20d9cc215..ea6c47e1039 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateDataMaskingActivityRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateDataMaskingActivityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateFusionEnvironmentAdminUserRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateFusionEnvironmentAdminUserRequest.java index c8dda62d9b9..e17b17c325e 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateFusionEnvironmentAdminUserRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateFusionEnvironmentAdminUserRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateFusionEnvironmentFamilyRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateFusionEnvironmentFamilyRequest.java index 3fbbd27b85b..97b236a50b1 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateFusionEnvironmentFamilyRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateFusionEnvironmentFamilyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateFusionEnvironmentRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateFusionEnvironmentRequest.java index 1c93d09e70f..dfff5836e42 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateFusionEnvironmentRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateFusionEnvironmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateRefreshActivityRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateRefreshActivityRequest.java index 1f3f00ba099..59076282a8e 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateRefreshActivityRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateRefreshActivityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateServiceAttachmentRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateServiceAttachmentRequest.java index 1ba29ca0a8c..e7429edfcc6 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateServiceAttachmentRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/CreateServiceAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/DeleteFusionEnvironmentAdminUserRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/DeleteFusionEnvironmentAdminUserRequest.java index 405260377fa..9ff8da6325e 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/DeleteFusionEnvironmentAdminUserRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/DeleteFusionEnvironmentAdminUserRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/DeleteFusionEnvironmentFamilyRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/DeleteFusionEnvironmentFamilyRequest.java index 938870fb651..2ed777f52a2 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/DeleteFusionEnvironmentFamilyRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/DeleteFusionEnvironmentFamilyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/DeleteFusionEnvironmentRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/DeleteFusionEnvironmentRequest.java index a194fd1aec2..244698a1298 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/DeleteFusionEnvironmentRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/DeleteFusionEnvironmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/DeleteRefreshActivityRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/DeleteRefreshActivityRequest.java index 4f808f7c175..ea2530671d3 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/DeleteRefreshActivityRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/DeleteRefreshActivityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/DeleteServiceAttachmentRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/DeleteServiceAttachmentRequest.java index f4872578c46..2e9ed14a1a1 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/DeleteServiceAttachmentRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/DeleteServiceAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GenerateExtractDetailsRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GenerateExtractDetailsRequest.java index ad94d6bfdc3..6ab6c366286 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GenerateExtractDetailsRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GenerateExtractDetailsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetDataMaskingActivityRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetDataMaskingActivityRequest.java index 04777fcca20..8ac3e2b6481 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetDataMaskingActivityRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetDataMaskingActivityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetFusionEnvironmentFamilyLimitsAndUsageRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetFusionEnvironmentFamilyLimitsAndUsageRequest.java index 27e410fe59c..fb71ab9c93d 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetFusionEnvironmentFamilyLimitsAndUsageRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetFusionEnvironmentFamilyLimitsAndUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetFusionEnvironmentFamilyRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetFusionEnvironmentFamilyRequest.java index 914a50c65ad..bd1df177ea8 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetFusionEnvironmentFamilyRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetFusionEnvironmentFamilyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetFusionEnvironmentFamilySubscriptionDetailRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetFusionEnvironmentFamilySubscriptionDetailRequest.java index e7f8c47f47d..fdf0122bc6a 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetFusionEnvironmentFamilySubscriptionDetailRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetFusionEnvironmentFamilySubscriptionDetailRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetFusionEnvironmentRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetFusionEnvironmentRequest.java index 784fba7ea01..655a9441784 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetFusionEnvironmentRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetFusionEnvironmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetFusionEnvironmentStatusRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetFusionEnvironmentStatusRequest.java index 99a161b07d9..ce5442811ec 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetFusionEnvironmentStatusRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetFusionEnvironmentStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetRefreshActivityRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetRefreshActivityRequest.java index 4c4911f1847..45c66761739 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetRefreshActivityRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetRefreshActivityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetScheduledActivityRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetScheduledActivityRequest.java index adff6bc8f6b..28f24446dc2 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetScheduledActivityRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetScheduledActivityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetServiceAttachmentRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetServiceAttachmentRequest.java index 292100b6194..6beeaa498b0 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetServiceAttachmentRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetServiceAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetWorkRequestRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetWorkRequestRequest.java index ee5e7c4a143..07b6542f115 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetWorkRequestRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/InitiateExtractRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/InitiateExtractRequest.java index 47cdecd8f50..fe41017e436 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/InitiateExtractRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/InitiateExtractRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListAdminUsersRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListAdminUsersRequest.java index dd31b77edd3..36a9cbbfed5 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListAdminUsersRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListAdminUsersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListDataMaskingActivitiesRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListDataMaskingActivitiesRequest.java index 448a0373e0c..f5132e1e450 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListDataMaskingActivitiesRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListDataMaskingActivitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListFusionEnvironmentFamiliesRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListFusionEnvironmentFamiliesRequest.java index a383db906d1..23f41976f84 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListFusionEnvironmentFamiliesRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListFusionEnvironmentFamiliesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListFusionEnvironmentsRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListFusionEnvironmentsRequest.java index a7f081e9e12..34a8d7c3728 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListFusionEnvironmentsRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListFusionEnvironmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListRefreshActivitiesRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListRefreshActivitiesRequest.java index 2fb30bb7e8b..3bf145e5a95 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListRefreshActivitiesRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListRefreshActivitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListScheduledActivitiesRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListScheduledActivitiesRequest.java index 72b346b5771..cb8ddfcd2bf 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListScheduledActivitiesRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListScheduledActivitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListServiceAttachmentsRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListServiceAttachmentsRequest.java index 8d69e9f92b4..139860efea1 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListServiceAttachmentsRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListServiceAttachmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListTimeAvailableForRefreshesRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListTimeAvailableForRefreshesRequest.java index d07c1fc06f3..017ab1dc34b 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListTimeAvailableForRefreshesRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListTimeAvailableForRefreshesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListWorkRequestErrorsRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListWorkRequestErrorsRequest.java index e71b3fe917e..ef02e709ddb 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListWorkRequestLogsRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListWorkRequestLogsRequest.java index 5ce9773accf..c23fb854106 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListWorkRequestLogsRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListWorkRequestsRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListWorkRequestsRequest.java index bcce39500b0..0f1ad93b5fb 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListWorkRequestsRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ResetFusionEnvironmentPasswordRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ResetFusionEnvironmentPasswordRequest.java index 2930112531b..d420d24522d 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ResetFusionEnvironmentPasswordRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/ResetFusionEnvironmentPasswordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/UpdateFusionEnvironmentFamilyRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/UpdateFusionEnvironmentFamilyRequest.java index 9910da5c5e3..779f1c3373e 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/UpdateFusionEnvironmentFamilyRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/UpdateFusionEnvironmentFamilyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/UpdateFusionEnvironmentRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/UpdateFusionEnvironmentRequest.java index ae31ec336f2..2d82742b8b4 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/UpdateFusionEnvironmentRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/UpdateFusionEnvironmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/UpdateRefreshActivityRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/UpdateRefreshActivityRequest.java index d383ef43694..c96c355d968 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/UpdateRefreshActivityRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/UpdateRefreshActivityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/VerifyServiceAttachmentRequest.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/VerifyServiceAttachmentRequest.java index 9e5adcff289..a3951e992f3 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/VerifyServiceAttachmentRequest.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/requests/VerifyServiceAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.requests; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ChangeFusionEnvironmentCompartmentResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ChangeFusionEnvironmentCompartmentResponse.java index f1433ab3b53..9493458446e 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ChangeFusionEnvironmentCompartmentResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ChangeFusionEnvironmentCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ChangeFusionEnvironmentFamilyCompartmentResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ChangeFusionEnvironmentFamilyCompartmentResponse.java index dfbbebd9f97..da0414835c3 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ChangeFusionEnvironmentFamilyCompartmentResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ChangeFusionEnvironmentFamilyCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateDataMaskingActivityResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateDataMaskingActivityResponse.java index 4edaa7e4abe..2b38c5d2625 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateDataMaskingActivityResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateDataMaskingActivityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateFusionEnvironmentAdminUserResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateFusionEnvironmentAdminUserResponse.java index b38178549d9..cc280cb0d15 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateFusionEnvironmentAdminUserResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateFusionEnvironmentAdminUserResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateFusionEnvironmentFamilyResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateFusionEnvironmentFamilyResponse.java index 7fd86e26957..829f6672e1c 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateFusionEnvironmentFamilyResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateFusionEnvironmentFamilyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateFusionEnvironmentResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateFusionEnvironmentResponse.java index dd6c8b339be..5a6ed038ca5 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateFusionEnvironmentResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateFusionEnvironmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateRefreshActivityResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateRefreshActivityResponse.java index edfce80af2c..ca8e634602a 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateRefreshActivityResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateRefreshActivityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateServiceAttachmentResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateServiceAttachmentResponse.java index d895cf983d2..ded4b78d9bc 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateServiceAttachmentResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/CreateServiceAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/DeleteFusionEnvironmentAdminUserResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/DeleteFusionEnvironmentAdminUserResponse.java index 859a1eb76a1..b967ca814a0 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/DeleteFusionEnvironmentAdminUserResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/DeleteFusionEnvironmentAdminUserResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/DeleteFusionEnvironmentFamilyResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/DeleteFusionEnvironmentFamilyResponse.java index 5d71bc8c7e7..c6c7360e4d9 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/DeleteFusionEnvironmentFamilyResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/DeleteFusionEnvironmentFamilyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/DeleteFusionEnvironmentResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/DeleteFusionEnvironmentResponse.java index 4166be3f6b2..59eef35a98a 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/DeleteFusionEnvironmentResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/DeleteFusionEnvironmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/DeleteRefreshActivityResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/DeleteRefreshActivityResponse.java index df09a052e1f..b3292224d20 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/DeleteRefreshActivityResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/DeleteRefreshActivityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/DeleteServiceAttachmentResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/DeleteServiceAttachmentResponse.java index 34ab9359396..34b347be660 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/DeleteServiceAttachmentResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/DeleteServiceAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GenerateExtractDetailsResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GenerateExtractDetailsResponse.java index 128531a5939..e0084ee298a 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GenerateExtractDetailsResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GenerateExtractDetailsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetDataMaskingActivityResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetDataMaskingActivityResponse.java index f74f3dac6a8..732c79fb6df 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetDataMaskingActivityResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetDataMaskingActivityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetFusionEnvironmentFamilyLimitsAndUsageResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetFusionEnvironmentFamilyLimitsAndUsageResponse.java index 9eb9967a3af..051f944ee04 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetFusionEnvironmentFamilyLimitsAndUsageResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetFusionEnvironmentFamilyLimitsAndUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetFusionEnvironmentFamilyResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetFusionEnvironmentFamilyResponse.java index bfcb1bd3f73..2216ff139ad 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetFusionEnvironmentFamilyResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetFusionEnvironmentFamilyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetFusionEnvironmentFamilySubscriptionDetailResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetFusionEnvironmentFamilySubscriptionDetailResponse.java index 2ca71961a65..d5eab918716 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetFusionEnvironmentFamilySubscriptionDetailResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetFusionEnvironmentFamilySubscriptionDetailResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetFusionEnvironmentResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetFusionEnvironmentResponse.java index 4dbfba036bc..315e58c0603 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetFusionEnvironmentResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetFusionEnvironmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetFusionEnvironmentStatusResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetFusionEnvironmentStatusResponse.java index ac6a1383e34..363f89df241 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetFusionEnvironmentStatusResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetFusionEnvironmentStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetRefreshActivityResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetRefreshActivityResponse.java index 77241d9a292..a9192b9b0de 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetRefreshActivityResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetRefreshActivityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetScheduledActivityResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetScheduledActivityResponse.java index ecabeb7588b..02ebc310b6e 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetScheduledActivityResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetScheduledActivityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetServiceAttachmentResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetServiceAttachmentResponse.java index f7fe8fc0914..04cd82bc4ac 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetServiceAttachmentResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetServiceAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetWorkRequestResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetWorkRequestResponse.java index 61b5c255654..edafa05ade5 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetWorkRequestResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/InitiateExtractResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/InitiateExtractResponse.java index e306f1f1eb2..9dd0573d6c0 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/InitiateExtractResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/InitiateExtractResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListAdminUsersResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListAdminUsersResponse.java index 028161ead33..c373b8b1147 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListAdminUsersResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListAdminUsersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListDataMaskingActivitiesResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListDataMaskingActivitiesResponse.java index 2e8288c4389..462ccd4c202 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListDataMaskingActivitiesResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListDataMaskingActivitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListFusionEnvironmentFamiliesResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListFusionEnvironmentFamiliesResponse.java index dae01d7463a..1c6d533276a 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListFusionEnvironmentFamiliesResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListFusionEnvironmentFamiliesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListFusionEnvironmentsResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListFusionEnvironmentsResponse.java index f9e225a8260..ddf3fd8e209 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListFusionEnvironmentsResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListFusionEnvironmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListRefreshActivitiesResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListRefreshActivitiesResponse.java index 06b08254ff6..7ec2a779879 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListRefreshActivitiesResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListRefreshActivitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListScheduledActivitiesResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListScheduledActivitiesResponse.java index d161dbc411e..81ffb7f36a6 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListScheduledActivitiesResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListScheduledActivitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListServiceAttachmentsResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListServiceAttachmentsResponse.java index fd8a7ed38e5..f205544b7c2 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListServiceAttachmentsResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListServiceAttachmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListTimeAvailableForRefreshesResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListTimeAvailableForRefreshesResponse.java index ca11bd1b3df..1f04079cbb1 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListTimeAvailableForRefreshesResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListTimeAvailableForRefreshesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListWorkRequestErrorsResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListWorkRequestErrorsResponse.java index 8aec0c5fbd3..d53fdcf518e 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListWorkRequestLogsResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListWorkRequestLogsResponse.java index ca177c7704e..af9c7f042f7 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListWorkRequestLogsResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListWorkRequestsResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListWorkRequestsResponse.java index dc75e23ba5c..e173f895dcf 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListWorkRequestsResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ResetFusionEnvironmentPasswordResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ResetFusionEnvironmentPasswordResponse.java index 2dc9b8c5e6e..74361f74094 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ResetFusionEnvironmentPasswordResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/ResetFusionEnvironmentPasswordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/UpdateFusionEnvironmentFamilyResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/UpdateFusionEnvironmentFamilyResponse.java index cc252693689..fb0d66ce3ac 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/UpdateFusionEnvironmentFamilyResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/UpdateFusionEnvironmentFamilyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/UpdateFusionEnvironmentResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/UpdateFusionEnvironmentResponse.java index 1239d5772d7..113ea49e4f0 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/UpdateFusionEnvironmentResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/UpdateFusionEnvironmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/UpdateRefreshActivityResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/UpdateRefreshActivityResponse.java index 8ccb9680b0c..664e6c05672 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/UpdateRefreshActivityResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/UpdateRefreshActivityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/VerifyServiceAttachmentResponse.java b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/VerifyServiceAttachmentResponse.java index ccdfca2c681..c58ec9ebcb9 100644 --- a/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/VerifyServiceAttachmentResponse.java +++ b/bmc-fusionapps/src/main/java/com/oracle/bmc/fusionapps/responses/VerifyServiceAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.fusionapps.responses; diff --git a/bmc-fusionapps/src/main/resources/com/oracle/bmc/fusionapps/client.properties b/bmc-fusionapps/src/main/resources/com/oracle/bmc/fusionapps/client.properties index 8301895c126..240b2c88566 100644 --- a/bmc-fusionapps/src/main/resources/com/oracle/bmc/fusionapps/client.properties +++ b/bmc-fusionapps/src/main/resources/com/oracle/bmc/fusionapps/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-generativeai/pom.xml b/bmc-generativeai/pom.xml index 46154cf7dc1..072bd743ee4 100644 --- a/bmc-generativeai/pom.xml +++ b/bmc-generativeai/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-generativeai @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAi.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAi.java index 0092689ec61..92275ce3bbd 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAi.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAi.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAiAsync.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAiAsync.java index ab8440b0e84..bdc4a8b52a7 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAiAsync.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAiAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAiAsyncClient.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAiAsyncClient.java index bd6837a69db..28419bb9d0c 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAiAsyncClient.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAiAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAiClient.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAiClient.java index 28da664d5db..2b05407d4da 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAiClient.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAiClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAiPaginators.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAiPaginators.java index 631b187a809..81123635288 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAiPaginators.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAiPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAiWaiters.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAiWaiters.java index 1fcdf25f2aa..bdac778e149 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAiWaiters.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/GenerativeAiWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ActionType.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ActionType.java index 62a68c8333c..0b9cb9f58da 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ActionType.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChangeDedicatedAiClusterCompartmentDetails.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChangeDedicatedAiClusterCompartmentDetails.java index c52793ebd22..77261a00f6f 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChangeDedicatedAiClusterCompartmentDetails.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChangeDedicatedAiClusterCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChangeEndpointCompartmentDetails.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChangeEndpointCompartmentDetails.java index 0af9d5e658a..7e42b3a8bff 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChangeEndpointCompartmentDetails.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChangeEndpointCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChangeGenerativeAiPrivateEndpointCompartmentDetails.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChangeGenerativeAiPrivateEndpointCompartmentDetails.java index d9512db54e9..4cc8e9160f3 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChangeGenerativeAiPrivateEndpointCompartmentDetails.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChangeGenerativeAiPrivateEndpointCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChangeImportedModelCompartmentDetails.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChangeImportedModelCompartmentDetails.java index b5bbaa999b1..dab86e15cbb 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChangeImportedModelCompartmentDetails.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChangeImportedModelCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChangeModelCompartmentDetails.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChangeModelCompartmentDetails.java index 2e1750c9279..a971d1b831f 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChangeModelCompartmentDetails.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChangeModelCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChatModelMetrics.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChatModelMetrics.java index 82f6f833e50..47b493bdc69 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChatModelMetrics.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ChatModelMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ContentModerationConfig.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ContentModerationConfig.java index 816c3919f62..c0036f4f375 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ContentModerationConfig.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ContentModerationConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/CreateDedicatedAiClusterDetails.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/CreateDedicatedAiClusterDetails.java index b9b844bb332..766700dd79c 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/CreateDedicatedAiClusterDetails.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/CreateDedicatedAiClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/CreateEndpointDetails.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/CreateEndpointDetails.java index 3b076deb9de..034f5d15ba2 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/CreateEndpointDetails.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/CreateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/CreateGenerativeAiPrivateEndpointDetails.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/CreateGenerativeAiPrivateEndpointDetails.java index 2f36a45d555..77fc7f280ca 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/CreateGenerativeAiPrivateEndpointDetails.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/CreateGenerativeAiPrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/CreateImportedModelDetails.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/CreateImportedModelDetails.java index e571b0b8d11..5537d22235d 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/CreateImportedModelDetails.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/CreateImportedModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/CreateModelDetails.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/CreateModelDetails.java index 6eb44bb4b55..ca9782b3779 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/CreateModelDetails.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/CreateModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/Dataset.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/Dataset.java index 21ebd81a9c0..3db2abef98f 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/Dataset.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/Dataset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/DedicatedAiCluster.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/DedicatedAiCluster.java index 583ae14b41f..9b77d76dcde 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/DedicatedAiCluster.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/DedicatedAiCluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/DedicatedAiClusterCapacity.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/DedicatedAiClusterCapacity.java index f89d970b944..622ffdaf732 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/DedicatedAiClusterCapacity.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/DedicatedAiClusterCapacity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/DedicatedAiClusterCollection.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/DedicatedAiClusterCollection.java index 0ff2337719a..eecd59e1eda 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/DedicatedAiClusterCollection.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/DedicatedAiClusterCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/DedicatedAiClusterHostingCapacity.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/DedicatedAiClusterHostingCapacity.java index 8441617d81d..15065001eb6 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/DedicatedAiClusterHostingCapacity.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/DedicatedAiClusterHostingCapacity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/DedicatedAiClusterSummary.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/DedicatedAiClusterSummary.java index 5ec56efe33b..e689ad992f9 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/DedicatedAiClusterSummary.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/DedicatedAiClusterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/Endpoint.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/Endpoint.java index adeedf85025..7619e118b02 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/Endpoint.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/Endpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/EndpointCollection.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/EndpointCollection.java index 9b8667f0f08..2cd1f47afeb 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/EndpointCollection.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/EndpointCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/EndpointSummary.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/EndpointSummary.java index e6a9c01c026..d9e787ed2ab 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/EndpointSummary.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/EndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/FineTuneDetails.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/FineTuneDetails.java index fff0027a708..c531c18ddfb 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/FineTuneDetails.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/FineTuneDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/GenerativeAiPrivateEndpoint.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/GenerativeAiPrivateEndpoint.java index 4aaa43a9daa..0c333936798 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/GenerativeAiPrivateEndpoint.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/GenerativeAiPrivateEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/GenerativeAiPrivateEndpointCollection.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/GenerativeAiPrivateEndpointCollection.java index 43767ee8cd4..830114f055d 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/GenerativeAiPrivateEndpointCollection.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/GenerativeAiPrivateEndpointCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/GenerativeAiPrivateEndpointSummary.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/GenerativeAiPrivateEndpointSummary.java index 55dff4ff6bc..928199db5a4 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/GenerativeAiPrivateEndpointSummary.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/GenerativeAiPrivateEndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/HuggingFaceModel.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/HuggingFaceModel.java index 5f4c4fc354a..623fcaeacf8 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/HuggingFaceModel.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/HuggingFaceModel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ImportedModel.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ImportedModel.java index ff94d13836a..f9a09e069c6 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ImportedModel.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ImportedModel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ImportedModelCapability.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ImportedModelCapability.java index 33921c4c13a..67e076e6520 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ImportedModelCapability.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ImportedModelCapability.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ImportedModelCollection.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ImportedModelCollection.java index acca11d5813..b0538d98536 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ImportedModelCollection.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ImportedModelCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ImportedModelSummary.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ImportedModelSummary.java index 6e171e9b79d..065764daef8 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ImportedModelSummary.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ImportedModelSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/LoraTrainingConfig.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/LoraTrainingConfig.java index c6504af4ce5..a11cc57a574 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/LoraTrainingConfig.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/LoraTrainingConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/Model.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/Model.java index e799b26177f..b7b73678e37 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/Model.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/Model.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ModelCapability.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ModelCapability.java index f84313691d4..cb0d3b27190 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ModelCapability.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ModelCapability.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ModelCollection.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ModelCollection.java index 6ebfcb4829b..9487f7a1781 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ModelCollection.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ModelCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ModelDataSource.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ModelDataSource.java index d6b80119052..7cd29e565d9 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ModelDataSource.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ModelDataSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ModelMetrics.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ModelMetrics.java index 294c471a11d..6fe31af1576 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ModelMetrics.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ModelMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ModelSummary.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ModelSummary.java index af2e705b941..daffd1bf20d 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ModelSummary.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ModelSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ObjectStorageDataset.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ObjectStorageDataset.java index 2a0af577147..57559be6e68 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ObjectStorageDataset.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ObjectStorageDataset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ObjectStorageObject.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ObjectStorageObject.java index 67bc3e47344..373af4c30fa 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ObjectStorageObject.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/ObjectStorageObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/OperationStatus.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/OperationStatus.java index 40d18df22a6..3e7ef387f54 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/OperationStatus.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/OperationType.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/OperationType.java index 52cc174fabd..be58412f52c 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/OperationType.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/SortOrder.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/SortOrder.java index 8fdff855c2f..334463f0287 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/SortOrder.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/TFewTrainingConfig.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/TFewTrainingConfig.java index 86490ce2239..af653005f64 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/TFewTrainingConfig.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/TFewTrainingConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/TextGenerationModelMetrics.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/TextGenerationModelMetrics.java index bb2aef0178c..bffc58e1bd1 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/TextGenerationModelMetrics.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/TextGenerationModelMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/TrainingConfig.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/TrainingConfig.java index 844c4b573a2..910028df6b6 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/TrainingConfig.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/TrainingConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/UpdateDedicatedAiClusterDetails.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/UpdateDedicatedAiClusterDetails.java index 6c6f38a4589..42ff4d669c0 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/UpdateDedicatedAiClusterDetails.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/UpdateDedicatedAiClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/UpdateEndpointDetails.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/UpdateEndpointDetails.java index 3410e98d52c..07c8efc82bd 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/UpdateEndpointDetails.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/UpdateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/UpdateGenerativeAiPrivateEndpointDetails.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/UpdateGenerativeAiPrivateEndpointDetails.java index 30438cfebfd..705c86eaeb3 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/UpdateGenerativeAiPrivateEndpointDetails.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/UpdateGenerativeAiPrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/UpdateImportedModelDetails.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/UpdateImportedModelDetails.java index dec0f3fa28b..188d019e64c 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/UpdateImportedModelDetails.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/UpdateImportedModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/UpdateModelDetails.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/UpdateModelDetails.java index 849693587fa..89e85d49630 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/UpdateModelDetails.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/UpdateModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/VanillaTrainingConfig.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/VanillaTrainingConfig.java index 622f2b8e455..adf8ddd932b 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/VanillaTrainingConfig.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/VanillaTrainingConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequest.java index 41201fffbdb..0292a3441ae 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestError.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestError.java index 17b4912abb6..7afa2069b48 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestError.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestErrorCollection.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestErrorCollection.java index 6f109b6f91a..abab954fa72 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestErrorCollection.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestLogEntry.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestLogEntry.java index 2bb5312ad19..babb8f50e9d 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestLogEntry.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestLogEntryCollection.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestLogEntryCollection.java index 4ad8f2e8d28..bd78c6edd0d 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestLogEntryCollection.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestResource.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestResource.java index 238b4eecc96..380e048cfb5 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestResource.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestResourceMetadataKey.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestResourceMetadataKey.java index 55f2025e778..7e30f794876 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestResourceMetadataKey.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestSummary.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestSummary.java index 22ac28d7838..912f8643a46 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestSummary.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestSummaryCollection.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestSummaryCollection.java index c9386003610..587ab7e76ab 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestSummaryCollection.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.model; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ChangeDedicatedAiClusterCompartmentRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ChangeDedicatedAiClusterCompartmentRequest.java index 992e732b0ec..d087d6465ec 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ChangeDedicatedAiClusterCompartmentRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ChangeDedicatedAiClusterCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ChangeEndpointCompartmentRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ChangeEndpointCompartmentRequest.java index 9ec01d99559..ae24d87c24f 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ChangeEndpointCompartmentRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ChangeEndpointCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ChangeGenerativeAiPrivateEndpointCompartmentRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ChangeGenerativeAiPrivateEndpointCompartmentRequest.java index 914f3d2532a..6d92c4d2c77 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ChangeGenerativeAiPrivateEndpointCompartmentRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ChangeGenerativeAiPrivateEndpointCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ChangeImportedModelCompartmentRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ChangeImportedModelCompartmentRequest.java index 2832a1096c7..970447274df 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ChangeImportedModelCompartmentRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ChangeImportedModelCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ChangeModelCompartmentRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ChangeModelCompartmentRequest.java index ee176a50b71..12f29d72ccc 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ChangeModelCompartmentRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ChangeModelCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/CreateDedicatedAiClusterRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/CreateDedicatedAiClusterRequest.java index 01e49b09da8..d6116a7d494 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/CreateDedicatedAiClusterRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/CreateDedicatedAiClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/CreateEndpointRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/CreateEndpointRequest.java index fbe89c973da..66c3ac45631 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/CreateEndpointRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/CreateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/CreateGenerativeAiPrivateEndpointRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/CreateGenerativeAiPrivateEndpointRequest.java index 5b608ceacfb..ad550875d39 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/CreateGenerativeAiPrivateEndpointRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/CreateGenerativeAiPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/CreateImportedModelRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/CreateImportedModelRequest.java index 27b79980674..f18e85ea5d7 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/CreateImportedModelRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/CreateImportedModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/CreateModelRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/CreateModelRequest.java index b9f4e0a6986..60fa6bbd70f 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/CreateModelRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/CreateModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/DeleteDedicatedAiClusterRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/DeleteDedicatedAiClusterRequest.java index 079301696c5..57bc1e5461b 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/DeleteDedicatedAiClusterRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/DeleteDedicatedAiClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/DeleteEndpointRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/DeleteEndpointRequest.java index b741695d3ef..bc2bcb0b7e6 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/DeleteEndpointRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/DeleteEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/DeleteGenerativeAiPrivateEndpointRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/DeleteGenerativeAiPrivateEndpointRequest.java index cea801999cf..2ce7f669586 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/DeleteGenerativeAiPrivateEndpointRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/DeleteGenerativeAiPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/DeleteImportedModelRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/DeleteImportedModelRequest.java index 98378bf7172..66eb900b59c 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/DeleteImportedModelRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/DeleteImportedModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/DeleteModelRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/DeleteModelRequest.java index 83a93f858fb..0bf100eac08 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/DeleteModelRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/DeleteModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetDedicatedAiClusterRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetDedicatedAiClusterRequest.java index 91d049fd572..b1b778f627a 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetDedicatedAiClusterRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetDedicatedAiClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetEndpointRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetEndpointRequest.java index 26351daeb48..e8b78796257 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetEndpointRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetGenerativeAiPrivateEndpointRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetGenerativeAiPrivateEndpointRequest.java index ca27b024dff..7bba6344d89 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetGenerativeAiPrivateEndpointRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetGenerativeAiPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetImportedModelRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetImportedModelRequest.java index 2fa72450dc4..aa005ef742a 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetImportedModelRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetImportedModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetModelRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetModelRequest.java index ac237943749..91466b60091 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetModelRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetWorkRequestRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetWorkRequestRequest.java index 56002af681f..6285db06a29 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetWorkRequestRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListDedicatedAiClustersRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListDedicatedAiClustersRequest.java index 6e03c4e2665..98119aba310 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListDedicatedAiClustersRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListDedicatedAiClustersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListEndpointsRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListEndpointsRequest.java index e8d736f4171..939e788308c 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListEndpointsRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListEndpointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListGenerativeAiPrivateEndpointsRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListGenerativeAiPrivateEndpointsRequest.java index 47c16e8de4e..43f5396f15f 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListGenerativeAiPrivateEndpointsRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListGenerativeAiPrivateEndpointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListImportedModelsRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListImportedModelsRequest.java index 4600b3f1a23..fcd47810d0b 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListImportedModelsRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListImportedModelsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListModelsRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListModelsRequest.java index d0a3394f314..ad0f3b517e8 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListModelsRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListModelsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListWorkRequestErrorsRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListWorkRequestErrorsRequest.java index 7d5c3b3329d..fc679c0376a 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListWorkRequestLogsRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListWorkRequestLogsRequest.java index 94ec6bcc1c8..b1c4b36ede7 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListWorkRequestLogsRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListWorkRequestsRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListWorkRequestsRequest.java index 6dc58913100..f8456e0c929 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListWorkRequestsRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/UpdateDedicatedAiClusterRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/UpdateDedicatedAiClusterRequest.java index 16ad1e6f200..a29563538de 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/UpdateDedicatedAiClusterRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/UpdateDedicatedAiClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/UpdateEndpointRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/UpdateEndpointRequest.java index 0f0542977d4..159460dd328 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/UpdateEndpointRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/UpdateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/UpdateGenerativeAiPrivateEndpointRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/UpdateGenerativeAiPrivateEndpointRequest.java index c0636d40d61..27d70fb0672 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/UpdateGenerativeAiPrivateEndpointRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/UpdateGenerativeAiPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/UpdateImportedModelRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/UpdateImportedModelRequest.java index ed77f0b6154..9b55d3acc65 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/UpdateImportedModelRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/UpdateImportedModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/UpdateModelRequest.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/UpdateModelRequest.java index e155883e062..39e3852bd0f 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/UpdateModelRequest.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/requests/UpdateModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.requests; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ChangeDedicatedAiClusterCompartmentResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ChangeDedicatedAiClusterCompartmentResponse.java index 20ac03d0cb6..50487d5e755 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ChangeDedicatedAiClusterCompartmentResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ChangeDedicatedAiClusterCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ChangeEndpointCompartmentResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ChangeEndpointCompartmentResponse.java index 4e1b5fb3935..f85593f55ae 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ChangeEndpointCompartmentResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ChangeEndpointCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ChangeGenerativeAiPrivateEndpointCompartmentResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ChangeGenerativeAiPrivateEndpointCompartmentResponse.java index 55994ef361e..b4e8032eb07 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ChangeGenerativeAiPrivateEndpointCompartmentResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ChangeGenerativeAiPrivateEndpointCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ChangeImportedModelCompartmentResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ChangeImportedModelCompartmentResponse.java index 66417e9c3d0..25b4b489c90 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ChangeImportedModelCompartmentResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ChangeImportedModelCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ChangeModelCompartmentResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ChangeModelCompartmentResponse.java index 9051e520aca..f1509bceab9 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ChangeModelCompartmentResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ChangeModelCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/CreateDedicatedAiClusterResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/CreateDedicatedAiClusterResponse.java index f247bf561de..d6ca1e23293 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/CreateDedicatedAiClusterResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/CreateDedicatedAiClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/CreateEndpointResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/CreateEndpointResponse.java index c455317e23c..eff2d22631f 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/CreateEndpointResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/CreateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/CreateGenerativeAiPrivateEndpointResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/CreateGenerativeAiPrivateEndpointResponse.java index f9274d5b0df..4faf4af2739 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/CreateGenerativeAiPrivateEndpointResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/CreateGenerativeAiPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/CreateImportedModelResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/CreateImportedModelResponse.java index be28dc9a768..14ae1ef9b46 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/CreateImportedModelResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/CreateImportedModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/CreateModelResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/CreateModelResponse.java index 556fddbf753..dbd6c7801fd 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/CreateModelResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/CreateModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/DeleteDedicatedAiClusterResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/DeleteDedicatedAiClusterResponse.java index 563506941df..520e63d7217 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/DeleteDedicatedAiClusterResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/DeleteDedicatedAiClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/DeleteEndpointResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/DeleteEndpointResponse.java index 39e525d9fc5..32b562cc78e 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/DeleteEndpointResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/DeleteEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/DeleteGenerativeAiPrivateEndpointResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/DeleteGenerativeAiPrivateEndpointResponse.java index a70e91d894e..a7e1ab34c3b 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/DeleteGenerativeAiPrivateEndpointResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/DeleteGenerativeAiPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/DeleteImportedModelResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/DeleteImportedModelResponse.java index d0f6049f59d..8bf864777fd 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/DeleteImportedModelResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/DeleteImportedModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/DeleteModelResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/DeleteModelResponse.java index fc85a0c809a..fa1e83146ab 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/DeleteModelResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/DeleteModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetDedicatedAiClusterResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetDedicatedAiClusterResponse.java index 8e98b54f633..1ee7631eb05 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetDedicatedAiClusterResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetDedicatedAiClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetEndpointResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetEndpointResponse.java index 3a7dbd144ee..a97a5fe276f 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetEndpointResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetGenerativeAiPrivateEndpointResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetGenerativeAiPrivateEndpointResponse.java index 502907e8913..46f80d26079 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetGenerativeAiPrivateEndpointResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetGenerativeAiPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetImportedModelResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetImportedModelResponse.java index 240a81fcb7b..4f35cc0f054 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetImportedModelResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetImportedModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetModelResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetModelResponse.java index 930388b29c8..ea2a83871a5 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetModelResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetWorkRequestResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetWorkRequestResponse.java index 787b25b279f..aa20534fcb9 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetWorkRequestResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListDedicatedAiClustersResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListDedicatedAiClustersResponse.java index be3386bb541..62ef402412c 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListDedicatedAiClustersResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListDedicatedAiClustersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListEndpointsResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListEndpointsResponse.java index e984cf8121d..2a09be5e466 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListEndpointsResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListEndpointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListGenerativeAiPrivateEndpointsResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListGenerativeAiPrivateEndpointsResponse.java index 76f50d020a2..cded07ae3e1 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListGenerativeAiPrivateEndpointsResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListGenerativeAiPrivateEndpointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListImportedModelsResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListImportedModelsResponse.java index a50a29c6d21..daf669967ee 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListImportedModelsResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListImportedModelsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListModelsResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListModelsResponse.java index b60639302a4..d7c75dc2fa5 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListModelsResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListModelsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListWorkRequestErrorsResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListWorkRequestErrorsResponse.java index ede3efdab78..3f117fdb831 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListWorkRequestLogsResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListWorkRequestLogsResponse.java index 2db9c1b4384..da9d1571f68 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListWorkRequestLogsResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListWorkRequestsResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListWorkRequestsResponse.java index 7d99ab12347..0a1b21899df 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListWorkRequestsResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/UpdateDedicatedAiClusterResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/UpdateDedicatedAiClusterResponse.java index 8451d438f0d..f18492dc7f8 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/UpdateDedicatedAiClusterResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/UpdateDedicatedAiClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/UpdateEndpointResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/UpdateEndpointResponse.java index 1f06b6846a5..d298672db56 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/UpdateEndpointResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/UpdateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/UpdateGenerativeAiPrivateEndpointResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/UpdateGenerativeAiPrivateEndpointResponse.java index 8cc675869e8..2344f26d231 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/UpdateGenerativeAiPrivateEndpointResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/UpdateGenerativeAiPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/UpdateImportedModelResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/UpdateImportedModelResponse.java index 1d80de15b5f..5dc7807424e 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/UpdateImportedModelResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/UpdateImportedModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/UpdateModelResponse.java b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/UpdateModelResponse.java index 6d81ab175c1..3db032c8b28 100644 --- a/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/UpdateModelResponse.java +++ b/bmc-generativeai/src/main/java/com/oracle/bmc/generativeai/responses/UpdateModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeai.responses; diff --git a/bmc-generativeai/src/main/resources/com/oracle/bmc/generativeai/client.properties b/bmc-generativeai/src/main/resources/com/oracle/bmc/generativeai/client.properties index 3298b480926..6a7c993f0ae 100644 --- a/bmc-generativeai/src/main/resources/com/oracle/bmc/generativeai/client.properties +++ b/bmc-generativeai/src/main/resources/com/oracle/bmc/generativeai/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-generativeaiagent/pom.xml b/bmc-generativeaiagent/pom.xml index dfd01206c49..4f039defdef 100644 --- a/bmc-generativeaiagent/pom.xml +++ b/bmc-generativeaiagent/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-generativeaiagent @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgent.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgent.java index a6d8f369a01..b47aa9efe78 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgent.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgentAsync.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgentAsync.java index 842e06b8e44..7bb3b37b4d5 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgentAsync.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgentAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgentAsyncClient.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgentAsyncClient.java index 15a4fc803c4..c782c613cd6 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgentAsyncClient.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgentAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgentClient.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgentClient.java index 338d9f0a92d..8beb3cd3b3b 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgentClient.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgentClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgentPaginators.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgentPaginators.java index bb1d66297c9..b0b761933f2 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgentPaginators.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgentPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgentWaiters.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgentWaiters.java index 2d573fb1afb..432b86740b3 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgentWaiters.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/GenerativeAiAgentWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ActionType.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ActionType.java index ea8d146da42..f96718406eb 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ActionType.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/Agent.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/Agent.java index 75d36e9aee9..0856fb29adf 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/Agent.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/Agent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentCollection.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentCollection.java index 3c461c368a0..f05f38fabc7 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentCollection.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentEndpoint.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentEndpoint.java index 084f3828b4a..753b2535ecf 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentEndpoint.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentEndpointCollection.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentEndpointCollection.java index 8f8f213bfd1..ccf2fc82051 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentEndpointCollection.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentEndpointCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentEndpointSummary.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentEndpointSummary.java index ae46c5dfb1c..f49ae003924 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentEndpointSummary.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentEndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentSummary.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentSummary.java index 07ec956619d..db0034d4582 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentSummary.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentToolConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentToolConfig.java index 10100c532ac..799d8be2407 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentToolConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/AgentToolConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ApiSchemaInlineInputLocation.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ApiSchemaInlineInputLocation.java index 7d73b36da94..641f487be27 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ApiSchemaInlineInputLocation.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ApiSchemaInlineInputLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ApiSchemaInputLocation.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ApiSchemaInputLocation.java index 229d2f4b0c5..0d53510fd68 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ApiSchemaInputLocation.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ApiSchemaInputLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ApiSchemaObjectStorageInputLocation.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ApiSchemaObjectStorageInputLocation.java index 9e38cca3f22..e58295aad92 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ApiSchemaObjectStorageInputLocation.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ApiSchemaObjectStorageInputLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/BasicAuthSecret.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/BasicAuthSecret.java index 94d9705e19d..53969f3f3e0 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/BasicAuthSecret.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/BasicAuthSecret.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ChangeAgentCompartmentDetails.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ChangeAgentCompartmentDetails.java index 69432665b2d..5c5948cde3f 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ChangeAgentCompartmentDetails.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ChangeAgentCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ChangeAgentEndpointCompartmentDetails.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ChangeAgentEndpointCompartmentDetails.java index 1a1a5c9bd23..d363c472619 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ChangeAgentEndpointCompartmentDetails.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ChangeAgentEndpointCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ChangeKnowledgeBaseCompartmentDetails.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ChangeKnowledgeBaseCompartmentDetails.java index 78cfffdc9ad..68342e8ff51 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ChangeKnowledgeBaseCompartmentDetails.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ChangeKnowledgeBaseCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ContentModerationConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ContentModerationConfig.java index dc09f533b8f..2166ed0c151 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ContentModerationConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ContentModerationConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ContentModerationGuardrailConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ContentModerationGuardrailConfig.java index efc93f38b4b..0eccfd26d03 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ContentModerationGuardrailConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ContentModerationGuardrailConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateAgentDetails.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateAgentDetails.java index 2bc8fa5146d..193ad2b592b 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateAgentDetails.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateAgentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateAgentEndpointDetails.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateAgentEndpointDetails.java index c1eceebe551..bc6ce979701 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateAgentEndpointDetails.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateAgentEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateDataIngestionJobDetails.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateDataIngestionJobDetails.java index a140284ee0f..10e4a07023f 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateDataIngestionJobDetails.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateDataIngestionJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateDataSourceDetails.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateDataSourceDetails.java index 3d7a96a467e..ee6677f9247 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateDataSourceDetails.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateDataSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateKnowledgeBaseDetails.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateKnowledgeBaseDetails.java index 27f2d1a3006..feb08e7acd0 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateKnowledgeBaseDetails.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateKnowledgeBaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateToolDetails.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateToolDetails.java index 60ba947b61a..1a0ca3d9f98 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateToolDetails.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/CreateToolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataIngestionJob.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataIngestionJob.java index 82f45b19a0e..1d6cce68b26 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataIngestionJob.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataIngestionJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataIngestionJobCollection.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataIngestionJobCollection.java index d82cfc74be3..e3f26ab4e6f 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataIngestionJobCollection.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataIngestionJobCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataIngestionJobStatistics.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataIngestionJobStatistics.java index 7e845697ff1..c87322b6860 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataIngestionJobStatistics.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataIngestionJobStatistics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataIngestionJobSummary.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataIngestionJobSummary.java index 726ca4bd93b..2fca9802422 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataIngestionJobSummary.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataIngestionJobSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataIngestionJobType.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataIngestionJobType.java index 13a35ab7722..0039322bb13 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataIngestionJobType.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataIngestionJobType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataSource.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataSource.java index 5a3074811ad..682fca1b7d9 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataSource.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataSourceCollection.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataSourceCollection.java index 465529b8a26..9a4618ed807 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataSourceCollection.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataSourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataSourceConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataSourceConfig.java index 09bc454a757..1c64e1bd61f 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataSourceConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataSourceConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataSourceSummary.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataSourceSummary.java index 62e7be0bcde..991f164d3c2 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataSourceSummary.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DataSourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DatabaseConnection.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DatabaseConnection.java index b7a7f7475ad..20457af702d 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DatabaseConnection.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DatabaseConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DatabaseFunction.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DatabaseFunction.java index c7ca9f1c265..6b3f5e9814b 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DatabaseFunction.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DatabaseFunction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DatabaseToolConnection.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DatabaseToolConnection.java index ff37bb2e71c..260a446d62d 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DatabaseToolConnection.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DatabaseToolConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DefaultIndexConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DefaultIndexConfig.java index feacde96906..43e4d33f797 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DefaultIndexConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/DefaultIndexConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/Function.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/Function.java index 7a87bfc0e21..88d97d088b2 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/Function.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/Function.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/FunctionCallingToolConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/FunctionCallingToolConfig.java index 197e1076b3b..a23c3961a66 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/FunctionCallingToolConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/FunctionCallingToolConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/GuardrailConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/GuardrailConfig.java index 8cb23b192bc..c1100be70b1 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/GuardrailConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/GuardrailConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/GuardrailMode.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/GuardrailMode.java index b33d75e4b70..aaca71d6358 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/GuardrailMode.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/GuardrailMode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointApiKeyAuthScopeConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointApiKeyAuthScopeConfig.java index f1cdcb9dfff..71de4a74113 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointApiKeyAuthScopeConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointApiKeyAuthScopeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointAuthConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointAuthConfig.java index d1fb877f8d9..0c7b9a56169 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointAuthConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointAuthConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointAuthScopeConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointAuthScopeConfig.java index 403d84fd6de..74267eb8123 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointAuthScopeConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointAuthScopeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointAuthSource.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointAuthSource.java index d913b73deed..510c4233ff4 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointAuthSource.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointAuthSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointBasicAuthScopeConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointBasicAuthScopeConfig.java index 564a4f62636..f05693698e4 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointBasicAuthScopeConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointBasicAuthScopeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointBearerAuthScopeConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointBearerAuthScopeConfig.java index 617f51864e2..7463ae4fb00 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointBearerAuthScopeConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointBearerAuthScopeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointIdcsAuthScopeConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointIdcsAuthScopeConfig.java index 7a23b300598..7e12c97fedf 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointIdcsAuthScopeConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointIdcsAuthScopeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointNoAuthScopeConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointNoAuthScopeConfig.java index 013a87eca4a..5f42e7f3046 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointNoAuthScopeConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointNoAuthScopeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointOciAuthScopeConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointOciAuthScopeConfig.java index 1236151517b..12a44a62e24 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointOciAuthScopeConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointOciAuthScopeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointToolConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointToolConfig.java index 5c12c726708..fe194cb4ee7 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointToolConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HttpEndpointToolConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HumanInputConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HumanInputConfig.java index d606da95bfb..3bdb9169287 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HumanInputConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/HumanInputConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/IdcsSecret.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/IdcsSecret.java index 5edee5b94a6..307d114dc80 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/IdcsSecret.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/IdcsSecret.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/Index.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/Index.java index 1e7bd840b13..4a15b0af39c 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/Index.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/Index.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/IndexConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/IndexConfig.java index d3e7e4b7b8a..cbee5ee9cc4 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/IndexConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/IndexConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/IndexSchema.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/IndexSchema.java index a62f76df045..13abaf77bdf 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/IndexSchema.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/IndexSchema.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/InlineInputLocation.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/InlineInputLocation.java index b65f56ce87a..53c54217f54 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/InlineInputLocation.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/InlineInputLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/InputLocation.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/InputLocation.java index 64dab5a6abf..a37ad37183e 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/InputLocation.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/InputLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/KnowledgeBase.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/KnowledgeBase.java index 9d09722fb90..dd10d6c647a 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/KnowledgeBase.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/KnowledgeBase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/KnowledgeBaseCollection.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/KnowledgeBaseCollection.java index 5ba9682d9f6..25d10f87a0e 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/KnowledgeBaseCollection.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/KnowledgeBaseCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/KnowledgeBaseConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/KnowledgeBaseConfig.java index 07bcbc8cacd..e740a9ef6c8 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/KnowledgeBaseConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/KnowledgeBaseConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/KnowledgeBaseStatistics.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/KnowledgeBaseStatistics.java index 6d56990359e..c1f3dafa4b1 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/KnowledgeBaseStatistics.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/KnowledgeBaseStatistics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/KnowledgeBaseSummary.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/KnowledgeBaseSummary.java index c279de7d9f6..e7f13ba8589 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/KnowledgeBaseSummary.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/KnowledgeBaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/LlmConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/LlmConfig.java index e30a03fac39..adbcfe31513 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/LlmConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/LlmConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/LlmCustomization.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/LlmCustomization.java index 431a3d81494..a13106aeff5 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/LlmCustomization.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/LlmCustomization.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ObjectStorageInputLocation.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ObjectStorageInputLocation.java index 86ef39c7dd1..1c20917feb0 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ObjectStorageInputLocation.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ObjectStorageInputLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ObjectStoragePrefix.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ObjectStoragePrefix.java index 2b3e8c172c7..5d8b3c8cce0 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ObjectStoragePrefix.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ObjectStoragePrefix.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ObjectStoragePrefixOutputLocation.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ObjectStoragePrefixOutputLocation.java index 15a6bdcaeb5..88c51c0be87 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ObjectStoragePrefixOutputLocation.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ObjectStoragePrefixOutputLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OciDatabaseConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OciDatabaseConfig.java index 7a72b574661..cbd7048044c 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OciDatabaseConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OciDatabaseConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OciObjectStorageDataSourceConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OciObjectStorageDataSourceConfig.java index 608f9b0617d..e915404fd09 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OciObjectStorageDataSourceConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OciObjectStorageDataSourceConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OciOpenSearchIndexConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OciOpenSearchIndexConfig.java index 87e73b2b63c..468dfccd330 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OciOpenSearchIndexConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OciOpenSearchIndexConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OperationStatus.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OperationStatus.java index 8e15020dd62..056e2f3ff75 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OperationStatus.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OperationType.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OperationType.java index 930567673db..a654c591379 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OperationType.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OutputConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OutputConfig.java index 20eafc15f65..a685bf6ed08 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OutputConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OutputConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OutputLocation.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OutputLocation.java index a5787024648..f61ba7ffc54 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OutputLocation.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/OutputLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/PersonallyIdentifiableInformationGuardrailConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/PersonallyIdentifiableInformationGuardrailConfig.java index 9fa8a0bbcb8..865f83e8eb8 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/PersonallyIdentifiableInformationGuardrailConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/PersonallyIdentifiableInformationGuardrailConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/PromptInjectionGuardrailConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/PromptInjectionGuardrailConfig.java index cb4cd32c35f..228fe1d0ea9 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/PromptInjectionGuardrailConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/PromptInjectionGuardrailConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/RagToolConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/RagToolConfig.java index 6400b4d6f89..794f48c5815 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/RagToolConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/RagToolConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/SecretDetail.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/SecretDetail.java index acc31fdb233..73c018753d8 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/SecretDetail.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/SecretDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/SessionConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/SessionConfig.java index 1287d45f112..32f5c9ff772 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/SessionConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/SessionConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/SortOrder.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/SortOrder.java index 9632ff4fc69..9d554d271b1 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/SortOrder.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/SqlToolConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/SqlToolConfig.java index 9b31245c701..8962b94cd5a 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/SqlToolConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/SqlToolConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/Tool.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/Tool.java index 3f470d5b4f7..04e8645d27e 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/Tool.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/Tool.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ToolCollection.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ToolCollection.java index f7d1985722e..087c83f2cb6 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ToolCollection.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ToolCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ToolConfig.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ToolConfig.java index 9c0034fe044..1663718c1bd 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ToolConfig.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ToolConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ToolSummary.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ToolSummary.java index 2f85d59f7e1..a55e75213ae 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ToolSummary.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/ToolSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/UpdateAgentDetails.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/UpdateAgentDetails.java index 1b0fd2eca12..a76278ccdc1 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/UpdateAgentDetails.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/UpdateAgentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/UpdateAgentEndpointDetails.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/UpdateAgentEndpointDetails.java index d1ca0f1dc46..5c097b8b7ab 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/UpdateAgentEndpointDetails.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/UpdateAgentEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/UpdateDataSourceDetails.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/UpdateDataSourceDetails.java index 4b2d207d3ac..2ba6868591f 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/UpdateDataSourceDetails.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/UpdateDataSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/UpdateKnowledgeBaseDetails.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/UpdateKnowledgeBaseDetails.java index 9a0c37bd499..ef12d7fa7ad 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/UpdateKnowledgeBaseDetails.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/UpdateKnowledgeBaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/UpdateToolDetails.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/UpdateToolDetails.java index b16f4cfb636..d78557a93ef 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/UpdateToolDetails.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/UpdateToolDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequest.java index a57b627bc96..efae2b6cc9a 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestError.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestError.java index b41993a0702..439b7e8dad6 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestError.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestErrorCollection.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestErrorCollection.java index 7900e224ba6..3558a8de7a6 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestErrorCollection.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestLogEntry.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestLogEntry.java index 70f2c046a2f..fce52a759e1 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestLogEntry.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestLogEntryCollection.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestLogEntryCollection.java index a9935db2040..3ad0fcf6a14 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestLogEntryCollection.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestResource.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestResource.java index 79a7c0806c7..a9b5d9de6f4 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestResource.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestResourceMetadataKey.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestResourceMetadataKey.java index 5390370b796..4180e2fa6e0 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestResourceMetadataKey.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestSummary.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestSummary.java index 3d0a2b5d28d..e99805ee54b 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestSummary.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestSummaryCollection.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestSummaryCollection.java index 8c0ea625fd4..e8a1486f202 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestSummaryCollection.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.model; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CancelWorkRequestRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CancelWorkRequestRequest.java index ada2d29f0d3..3dd1b39ea5e 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CancelWorkRequestRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ChangeAgentCompartmentRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ChangeAgentCompartmentRequest.java index c99d1379cde..7d158eb2c10 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ChangeAgentCompartmentRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ChangeAgentCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ChangeAgentEndpointCompartmentRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ChangeAgentEndpointCompartmentRequest.java index 1fbf2a3e37b..e364fd89739 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ChangeAgentEndpointCompartmentRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ChangeAgentEndpointCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ChangeKnowledgeBaseCompartmentRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ChangeKnowledgeBaseCompartmentRequest.java index 960be9dfe5b..a4c93c49d86 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ChangeKnowledgeBaseCompartmentRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ChangeKnowledgeBaseCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateAgentEndpointRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateAgentEndpointRequest.java index c5d4dbbe1b2..a3f4cc41b5f 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateAgentEndpointRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateAgentEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateAgentRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateAgentRequest.java index 0cb452bfd8e..c8bd0ffe6e3 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateAgentRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateAgentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateDataIngestionJobRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateDataIngestionJobRequest.java index 62da1aaa04b..755b40812d4 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateDataIngestionJobRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateDataIngestionJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateDataSourceRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateDataSourceRequest.java index cf3ef72341d..4174580bdf4 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateDataSourceRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateDataSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateKnowledgeBaseRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateKnowledgeBaseRequest.java index 2d07c137d78..b885ffe9cd2 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateKnowledgeBaseRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateKnowledgeBaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateToolRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateToolRequest.java index e444d2a96da..38c90e6cfa7 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateToolRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/CreateToolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteAgentEndpointRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteAgentEndpointRequest.java index 644f14dca67..d211c999cef 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteAgentEndpointRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteAgentEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteAgentRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteAgentRequest.java index d9535445d30..ed5229a4774 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteAgentRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteAgentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteDataIngestionJobRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteDataIngestionJobRequest.java index 47002559db6..48d1403daa9 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteDataIngestionJobRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteDataIngestionJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteDataSourceRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteDataSourceRequest.java index 01f24b39a83..9721645b2fe 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteDataSourceRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteDataSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteKnowledgeBaseRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteKnowledgeBaseRequest.java index 7808b4653e3..89e5cacde40 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteKnowledgeBaseRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteKnowledgeBaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteToolRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteToolRequest.java index 1c065e0077e..e73d4972b0c 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteToolRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/DeleteToolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetAgentEndpointRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetAgentEndpointRequest.java index 7525d446b97..ed2a6217b52 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetAgentEndpointRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetAgentEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetAgentRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetAgentRequest.java index 093eb0a5381..0af02c29faa 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetAgentRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetAgentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetDataIngestionJobLogContentRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetDataIngestionJobLogContentRequest.java index 6436300dcc4..e765e73b6ab 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetDataIngestionJobLogContentRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetDataIngestionJobLogContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetDataIngestionJobRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetDataIngestionJobRequest.java index 0d883766ffe..73666bc6ae4 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetDataIngestionJobRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetDataIngestionJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetDataSourceRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetDataSourceRequest.java index 0e5991b898f..672a652be2e 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetDataSourceRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetDataSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetKnowledgeBaseRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetKnowledgeBaseRequest.java index 2c2fbfccfe0..9c90d1c8c50 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetKnowledgeBaseRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetKnowledgeBaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetToolRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetToolRequest.java index f0195a38b2b..694b25f54f8 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetToolRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetToolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetWorkRequestRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetWorkRequestRequest.java index e2e936714d1..802e29b5ab7 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetWorkRequestRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListAgentEndpointsRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListAgentEndpointsRequest.java index 47dd4d42305..57f3db426f4 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListAgentEndpointsRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListAgentEndpointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListAgentsRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListAgentsRequest.java index de1f5070267..9d98541789a 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListAgentsRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListAgentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListDataIngestionJobsRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListDataIngestionJobsRequest.java index 6fde6233b35..a7ac7c008f0 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListDataIngestionJobsRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListDataIngestionJobsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListDataSourcesRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListDataSourcesRequest.java index a63643a5469..1fe802eee7c 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListDataSourcesRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListDataSourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListKnowledgeBasesRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListKnowledgeBasesRequest.java index 0d4c5fdae4c..522414b6727 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListKnowledgeBasesRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListKnowledgeBasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListToolsRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListToolsRequest.java index 8bae4d8b84b..157126d3da2 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListToolsRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListToolsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListWorkRequestErrorsRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListWorkRequestErrorsRequest.java index 010ea4b1069..7565818bd62 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListWorkRequestLogsRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListWorkRequestLogsRequest.java index 0e58a8bd029..1adc068b561 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListWorkRequestLogsRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListWorkRequestsRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListWorkRequestsRequest.java index 6b0bb47f72c..228441ff0b4 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListWorkRequestsRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/UpdateAgentEndpointRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/UpdateAgentEndpointRequest.java index d55009cf38d..b48dd70eb8a 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/UpdateAgentEndpointRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/UpdateAgentEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/UpdateAgentRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/UpdateAgentRequest.java index ff9f2f87e56..9fdf30f4f25 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/UpdateAgentRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/UpdateAgentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/UpdateDataSourceRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/UpdateDataSourceRequest.java index 7e96ca3d9c4..faeb07a3d56 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/UpdateDataSourceRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/UpdateDataSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/UpdateKnowledgeBaseRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/UpdateKnowledgeBaseRequest.java index 9c583487881..f26c66d5d2e 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/UpdateKnowledgeBaseRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/UpdateKnowledgeBaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/UpdateToolRequest.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/UpdateToolRequest.java index 0b71c7dfe1c..e1dcdee1199 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/UpdateToolRequest.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/requests/UpdateToolRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.requests; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CancelWorkRequestResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CancelWorkRequestResponse.java index 9519d7e37c0..0b34aab3bf1 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CancelWorkRequestResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ChangeAgentCompartmentResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ChangeAgentCompartmentResponse.java index 4e2ea942a14..2d6f3601bd6 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ChangeAgentCompartmentResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ChangeAgentCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ChangeAgentEndpointCompartmentResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ChangeAgentEndpointCompartmentResponse.java index 540c5ebc876..2e088da3167 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ChangeAgentEndpointCompartmentResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ChangeAgentEndpointCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ChangeKnowledgeBaseCompartmentResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ChangeKnowledgeBaseCompartmentResponse.java index 62281bd8023..e662e54174d 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ChangeKnowledgeBaseCompartmentResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ChangeKnowledgeBaseCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateAgentEndpointResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateAgentEndpointResponse.java index 9f84258a357..eff0313b1d8 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateAgentEndpointResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateAgentEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateAgentResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateAgentResponse.java index 33e9daebf6c..fef5b2ebb9a 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateAgentResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateAgentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateDataIngestionJobResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateDataIngestionJobResponse.java index 09a68ef3503..cc6abca00e7 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateDataIngestionJobResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateDataIngestionJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateDataSourceResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateDataSourceResponse.java index 335484d8c22..a607f03c867 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateDataSourceResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateDataSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateKnowledgeBaseResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateKnowledgeBaseResponse.java index d0ce72b8975..1ee7fb0b6e7 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateKnowledgeBaseResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateKnowledgeBaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateToolResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateToolResponse.java index 3c4b502b125..70e203fc2b8 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateToolResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/CreateToolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteAgentEndpointResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteAgentEndpointResponse.java index a60045c62bc..3f7ce30d944 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteAgentEndpointResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteAgentEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteAgentResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteAgentResponse.java index ebc7dd7d6fa..f755d081aba 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteAgentResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteAgentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteDataIngestionJobResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteDataIngestionJobResponse.java index e68b983b477..d729130851d 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteDataIngestionJobResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteDataIngestionJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteDataSourceResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteDataSourceResponse.java index 5c4f84f7391..091298eb136 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteDataSourceResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteDataSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteKnowledgeBaseResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteKnowledgeBaseResponse.java index 1797028cd72..5e26708a34d 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteKnowledgeBaseResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteKnowledgeBaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteToolResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteToolResponse.java index d5994577ec5..7d611af7dee 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteToolResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/DeleteToolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetAgentEndpointResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetAgentEndpointResponse.java index 8b4b874a89f..6c699ef7f9f 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetAgentEndpointResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetAgentEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetAgentResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetAgentResponse.java index 41b17857214..ee6c44f69d9 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetAgentResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetAgentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetDataIngestionJobLogContentResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetDataIngestionJobLogContentResponse.java index d2df3e7c96a..32294e54f10 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetDataIngestionJobLogContentResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetDataIngestionJobLogContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetDataIngestionJobResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetDataIngestionJobResponse.java index b8885d1bfef..26f0384d593 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetDataIngestionJobResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetDataIngestionJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetDataSourceResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetDataSourceResponse.java index a37f15257a5..9e9e845505e 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetDataSourceResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetDataSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetKnowledgeBaseResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetKnowledgeBaseResponse.java index 697c08c0647..cb8bcc3df72 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetKnowledgeBaseResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetKnowledgeBaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetToolResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetToolResponse.java index 1dda375b9bc..d510a7b07c8 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetToolResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetToolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetWorkRequestResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetWorkRequestResponse.java index f167d105baf..c6258c7309b 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetWorkRequestResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListAgentEndpointsResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListAgentEndpointsResponse.java index b1be7b22a21..c8f0e30491c 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListAgentEndpointsResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListAgentEndpointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListAgentsResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListAgentsResponse.java index 871b8e31d10..890d5e1e98f 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListAgentsResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListAgentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListDataIngestionJobsResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListDataIngestionJobsResponse.java index e919a067110..063c18bcd9a 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListDataIngestionJobsResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListDataIngestionJobsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListDataSourcesResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListDataSourcesResponse.java index e138b962181..b6336b693a5 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListDataSourcesResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListDataSourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListKnowledgeBasesResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListKnowledgeBasesResponse.java index 8a5c82db1d4..344e2cacb84 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListKnowledgeBasesResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListKnowledgeBasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListToolsResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListToolsResponse.java index 0d86811f393..4035ad0fb8e 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListToolsResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListToolsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListWorkRequestErrorsResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListWorkRequestErrorsResponse.java index 3a38ea5b13e..59a86ae0d25 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListWorkRequestLogsResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListWorkRequestLogsResponse.java index 5b978f6b015..1dfc2790930 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListWorkRequestLogsResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListWorkRequestsResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListWorkRequestsResponse.java index d0cf0607811..613fa1584c6 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListWorkRequestsResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/UpdateAgentEndpointResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/UpdateAgentEndpointResponse.java index 02398996ccc..3456642bac8 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/UpdateAgentEndpointResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/UpdateAgentEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/UpdateAgentResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/UpdateAgentResponse.java index bd77d0a59a2..184377d63c1 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/UpdateAgentResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/UpdateAgentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/UpdateDataSourceResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/UpdateDataSourceResponse.java index 885eeed769b..8098fa29aac 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/UpdateDataSourceResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/UpdateDataSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/UpdateKnowledgeBaseResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/UpdateKnowledgeBaseResponse.java index 911ed494356..163b881792a 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/UpdateKnowledgeBaseResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/UpdateKnowledgeBaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/UpdateToolResponse.java b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/UpdateToolResponse.java index 439c74e247b..e1a9d2b4b5a 100644 --- a/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/UpdateToolResponse.java +++ b/bmc-generativeaiagent/src/main/java/com/oracle/bmc/generativeaiagent/responses/UpdateToolResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagent.responses; diff --git a/bmc-generativeaiagent/src/main/resources/com/oracle/bmc/generativeaiagent/client.properties b/bmc-generativeaiagent/src/main/resources/com/oracle/bmc/generativeaiagent/client.properties index da827693e9d..aba5dcd0a4b 100644 --- a/bmc-generativeaiagent/src/main/resources/com/oracle/bmc/generativeaiagent/client.properties +++ b/bmc-generativeaiagent/src/main/resources/com/oracle/bmc/generativeaiagent/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-generativeaiagentruntime/pom.xml b/bmc-generativeaiagentruntime/pom.xml index 3ca087dc675..221ac5f0e9d 100644 --- a/bmc-generativeaiagentruntime/pom.xml +++ b/bmc-generativeaiagentruntime/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-generativeaiagentruntime @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/GenerativeAiAgentRuntime.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/GenerativeAiAgentRuntime.java index 944200c9225..0eb2af52cd9 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/GenerativeAiAgentRuntime.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/GenerativeAiAgentRuntime.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/GenerativeAiAgentRuntimeAsync.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/GenerativeAiAgentRuntimeAsync.java index 5e5d24ed7fb..ea80672b436 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/GenerativeAiAgentRuntimeAsync.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/GenerativeAiAgentRuntimeAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/GenerativeAiAgentRuntimeAsyncClient.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/GenerativeAiAgentRuntimeAsyncClient.java index 83a5d678231..94ee60c7fd1 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/GenerativeAiAgentRuntimeAsyncClient.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/GenerativeAiAgentRuntimeAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/GenerativeAiAgentRuntimeClient.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/GenerativeAiAgentRuntimeClient.java index a52e6c1768d..a10fb10ac03 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/GenerativeAiAgentRuntimeClient.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/GenerativeAiAgentRuntimeClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ChatDetails.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ChatDetails.java index ac47a522eda..631950e30f9 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ChatDetails.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ChatDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ChatResult.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ChatResult.java index 255c6bbd1f6..3b5b3bb0df8 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ChatResult.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ChatResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Citation.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Citation.java index 0482955f936..1f26535e39e 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Citation.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Citation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/CreateSessionDetails.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/CreateSessionDetails.java index 70c210665fc..2eba6a7b147 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/CreateSessionDetails.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/CreateSessionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ErrorTrace.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ErrorTrace.java index 8ca4a60998f..0633b388829 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ErrorTrace.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ErrorTrace.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ExecutionTrace.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ExecutionTrace.java index 21513b6841d..64606263665 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ExecutionTrace.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ExecutionTrace.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/FunctionCall.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/FunctionCall.java index 5117c8cf468..e81626cdb6b 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/FunctionCall.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/FunctionCall.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/FunctionCallingPerformedAction.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/FunctionCallingPerformedAction.java index f92fdf65c8d..86a8e6c3a33 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/FunctionCallingPerformedAction.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/FunctionCallingPerformedAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/FunctionCallingRequiredAction.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/FunctionCallingRequiredAction.java index f8e9b8b43b6..c3f259aa947 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/FunctionCallingRequiredAction.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/FunctionCallingRequiredAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/GenerationTrace.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/GenerationTrace.java index 95b8fadd088..5e7b5835980 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/GenerationTrace.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/GenerationTrace.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/GenericToolInput.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/GenericToolInput.java index b7901f3dc48..33db8a7d303 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/GenericToolInput.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/GenericToolInput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/GenericToolOutput.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/GenericToolOutput.java index 701a76eb2df..5a48eb68e8e 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/GenericToolOutput.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/GenericToolOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/HumanApprovalPerformedAction.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/HumanApprovalPerformedAction.java index 6ae7ff2a8b1..2245cfe7797 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/HumanApprovalPerformedAction.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/HumanApprovalPerformedAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/HumanApprovalRequiredAction.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/HumanApprovalRequiredAction.java index 45d89ae47bf..87e1cdc212a 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/HumanApprovalRequiredAction.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/HumanApprovalRequiredAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/KnowledgeBaseMetadataSummary.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/KnowledgeBaseMetadataSummary.java index 8bb0a5bebb6..6536e83ee8a 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/KnowledgeBaseMetadataSummary.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/KnowledgeBaseMetadataSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/KnowledgeBaseMetadataValue.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/KnowledgeBaseMetadataValue.java index b6ab4fa3a47..dc3ba7f7a38 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/KnowledgeBaseMetadataValue.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/KnowledgeBaseMetadataValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Message.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Message.java index 008dc8fd6b7..62c54b14e27 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Message.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Message.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/MessageContent.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/MessageContent.java index 74f512f2680..38b8ded3336 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/MessageContent.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/MessageContent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/MetadataFilter.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/MetadataFilter.java index 53ec6cecb3d..0061ccec2a2 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/MetadataFilter.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/MetadataFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ModelDetails.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ModelDetails.java index 806532afef2..e62bb2cd39b 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ModelDetails.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ModelParams.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ModelParams.java index 55443cccdb4..84ab75f72b9 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ModelParams.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ModelParams.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/OciDatabaseSourceLocation.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/OciDatabaseSourceLocation.java index 92c711887da..65e68119084 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/OciDatabaseSourceLocation.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/OciDatabaseSourceLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/OciObjectStorageSourceLocation.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/OciObjectStorageSourceLocation.java index d3cd75fd771..9e14a97d883 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/OciObjectStorageSourceLocation.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/OciObjectStorageSourceLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/OciOpenSearchSourceLocation.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/OciOpenSearchSourceLocation.java index 56b92d185ff..99bbd557e96 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/OciOpenSearchSourceLocation.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/OciOpenSearchSourceLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Paragraph.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Paragraph.java index dc0f6cf1d99..ef84cf36a54 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Paragraph.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Paragraph.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ParagraphCitation.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ParagraphCitation.java index 54a992da812..d968e7df931 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ParagraphCitation.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ParagraphCitation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/PerformedAction.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/PerformedAction.java index 2e063404464..ebd48bc98cd 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/PerformedAction.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/PerformedAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/PlanningTrace.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/PlanningTrace.java index 26c7ada9826..645f6a32bf6 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/PlanningTrace.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/PlanningTrace.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/RagToolOutput.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/RagToolOutput.java index b3f6cf5758a..a508d322845 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/RagToolOutput.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/RagToolOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/RequiredAction.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/RequiredAction.java index f85f9902eaf..bf28e281e29 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/RequiredAction.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/RequiredAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/RetrievalTrace.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/RetrievalTrace.java index 9f4558a75f5..733ba1cf6dc 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/RetrievalTrace.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/RetrievalTrace.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/RetrieveMetadataDetails.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/RetrieveMetadataDetails.java index 509ddf74b02..836c89d5d6f 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/RetrieveMetadataDetails.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/RetrieveMetadataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Session.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Session.java index 419e889f57f..78a0a61fdbb 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Session.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Session.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/SourceDetails.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/SourceDetails.java index 5f6499677e7..1add473abb1 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/SourceDetails.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/SourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/SourceLocation.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/SourceLocation.java index e09dce22437..8e8cda03f07 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/SourceLocation.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/SourceLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/SqlResultFiles.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/SqlResultFiles.java index 9758623e46e..a72bc0c4958 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/SqlResultFiles.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/SqlResultFiles.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/SqlToolOutput.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/SqlToolOutput.java index 5c2410bac09..c1d67bd8a2f 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/SqlToolOutput.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/SqlToolOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ToolInput.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ToolInput.java index d265623cce2..0ebb6def764 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ToolInput.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ToolInput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ToolInvocationTrace.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ToolInvocationTrace.java index 73480098c7a..968e85a93d8 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ToolInvocationTrace.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ToolInvocationTrace.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ToolOutput.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ToolOutput.java index ea70bcf93f0..b8e5f13966e 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ToolOutput.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/ToolOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Trace.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Trace.java index 37c9a134e50..f2dca47c83c 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Trace.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Trace.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/UpdateSessionDetails.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/UpdateSessionDetails.java index 82d425b92d1..56fda8c7f58 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/UpdateSessionDetails.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/UpdateSessionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Usage.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Usage.java index 3d0f8a3c14f..b674aa5729f 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Usage.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/Usage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/UsageDetails.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/UsageDetails.java index e28a652bd06..8fea84cfea5 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/UsageDetails.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/model/UsageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.model; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/ChatRequest.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/ChatRequest.java index 55c71acd5eb..60e5d03e960 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/ChatRequest.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/ChatRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.requests; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/CreateSessionRequest.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/CreateSessionRequest.java index a34843503d8..afe4a312456 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/CreateSessionRequest.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/CreateSessionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.requests; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/DeleteSessionRequest.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/DeleteSessionRequest.java index f5d5fde1f1a..58df0f2eafb 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/DeleteSessionRequest.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/DeleteSessionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.requests; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/GetSessionRequest.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/GetSessionRequest.java index 783d339a887..c3d13939cf0 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/GetSessionRequest.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/GetSessionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.requests; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/RetrieveMetadataRequest.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/RetrieveMetadataRequest.java index 58db9ce893e..b33a8d3b503 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/RetrieveMetadataRequest.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/RetrieveMetadataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.requests; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/UpdateSessionRequest.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/UpdateSessionRequest.java index 5860c6373a9..daf3efce86b 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/UpdateSessionRequest.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/requests/UpdateSessionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.requests; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/ChatResponse.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/ChatResponse.java index c0cd13e5628..8460fe1eeea 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/ChatResponse.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/ChatResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.responses; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/CreateSessionResponse.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/CreateSessionResponse.java index b2ccc4b3ed7..46fd989ba5e 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/CreateSessionResponse.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/CreateSessionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.responses; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/DeleteSessionResponse.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/DeleteSessionResponse.java index 4ae5b57c6a2..1f9637102e5 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/DeleteSessionResponse.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/DeleteSessionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.responses; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/GetSessionResponse.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/GetSessionResponse.java index 9bb4d89fde3..8e9f0dbced2 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/GetSessionResponse.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/GetSessionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.responses; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/RetrieveMetadataResponse.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/RetrieveMetadataResponse.java index 7e6ba00c2fc..e6792b5100a 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/RetrieveMetadataResponse.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/RetrieveMetadataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.responses; diff --git a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/UpdateSessionResponse.java b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/UpdateSessionResponse.java index 37d7b1414ae..41eb618d22c 100644 --- a/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/UpdateSessionResponse.java +++ b/bmc-generativeaiagentruntime/src/main/java/com/oracle/bmc/generativeaiagentruntime/responses/UpdateSessionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiagentruntime.responses; diff --git a/bmc-generativeaiagentruntime/src/main/resources/com/oracle/bmc/generativeaiagentruntime/client.properties b/bmc-generativeaiagentruntime/src/main/resources/com/oracle/bmc/generativeaiagentruntime/client.properties index da827693e9d..aba5dcd0a4b 100644 --- a/bmc-generativeaiagentruntime/src/main/resources/com/oracle/bmc/generativeaiagentruntime/client.properties +++ b/bmc-generativeaiagentruntime/src/main/resources/com/oracle/bmc/generativeaiagentruntime/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-generativeaiinference/pom.xml b/bmc-generativeaiinference/pom.xml index b6167919867..e260bf19cbe 100644 --- a/bmc-generativeaiinference/pom.xml +++ b/bmc-generativeaiinference/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-generativeaiinference @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/GenerativeAiInference.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/GenerativeAiInference.java index d7bc41348bb..635c1686742 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/GenerativeAiInference.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/GenerativeAiInference.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/GenerativeAiInferenceAsync.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/GenerativeAiInferenceAsync.java index 22c8a9b3d40..ea1e5ac8738 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/GenerativeAiInferenceAsync.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/GenerativeAiInferenceAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/GenerativeAiInferenceAsyncClient.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/GenerativeAiInferenceAsyncClient.java index 7e60a927b46..a9b3134dab1 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/GenerativeAiInferenceAsyncClient.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/GenerativeAiInferenceAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/GenerativeAiInferenceClient.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/GenerativeAiInferenceClient.java index a93ef2ce737..657fa3d3992 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/GenerativeAiInferenceClient.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/GenerativeAiInferenceClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/GenerativeAiInferenceSseHelper.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/GenerativeAiInferenceSseHelper.java index 5fdfffe7961..59fc5a8001a 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/GenerativeAiInferenceSseHelper.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/GenerativeAiInferenceSseHelper.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Annotation.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Annotation.java index 8c786f9a768..5d6d65596b3 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Annotation.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Annotation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ApplyGuardrailsDetails.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ApplyGuardrailsDetails.java index ee427ccc5a8..8482d3b2fee 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ApplyGuardrailsDetails.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ApplyGuardrailsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ApplyGuardrailsResult.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ApplyGuardrailsResult.java index c13710907c6..f0dc12b9a84 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ApplyGuardrailsResult.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ApplyGuardrailsResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ApproximateLocation.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ApproximateLocation.java index d51b137bd9d..3a793e9d740 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ApproximateLocation.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ApproximateLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/AssistantMessage.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/AssistantMessage.java index cc9f75eb808..3e6980de42b 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/AssistantMessage.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/AssistantMessage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/AudioContent.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/AudioContent.java index c5a9220a984..057ff91338b 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/AudioContent.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/AudioContent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/AudioUrl.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/AudioUrl.java index b337190718d..ab4ff7f55f5 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/AudioUrl.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/AudioUrl.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/BaseChatRequest.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/BaseChatRequest.java index 4e82af0aa7a..46779a9866b 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/BaseChatRequest.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/BaseChatRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/BaseChatResponse.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/BaseChatResponse.java index 473f4df42cf..d1fe66b4492 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/BaseChatResponse.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/BaseChatResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CategoryScore.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CategoryScore.java index fb41e296fcd..f84d4322f34 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CategoryScore.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CategoryScore.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ChatChoice.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ChatChoice.java index 576cb7301bc..93b1619f6bd 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ChatChoice.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ChatChoice.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ChatContent.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ChatContent.java index 12ae38ceef5..3aed05b6b2d 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ChatContent.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ChatContent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ChatDetails.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ChatDetails.java index 19f932155a4..ed5986178ba 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ChatDetails.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ChatDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ChatResult.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ChatResult.java index c6b6afa05c7..be174b664c5 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ChatResult.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ChatResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Choice.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Choice.java index 67da9699aae..1691bd5f520 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Choice.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Choice.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Citation.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Citation.java index 5eb7d15b214..1476fa206a9 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Citation.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Citation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereChatBotMessage.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereChatBotMessage.java index 0a270d2f503..66b779d78b5 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereChatBotMessage.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereChatBotMessage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereChatRequest.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereChatRequest.java index 40aabde0e7f..e0a87ac9056 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereChatRequest.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereChatRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereChatResponse.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereChatResponse.java index ceb0f68b7a9..82b78489ee9 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereChatResponse.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereChatResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereLlmInferenceRequest.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereLlmInferenceRequest.java index cd54a332780..64e0b642b9e 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereLlmInferenceRequest.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereLlmInferenceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereLlmInferenceResponse.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereLlmInferenceResponse.java index f7dbfa277fa..d2d86431e3c 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereLlmInferenceResponse.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereLlmInferenceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereMessage.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereMessage.java index 8b16b5bba51..6dca102820e 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereMessage.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereMessage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereParameterDefinition.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereParameterDefinition.java index a4ca07337cb..a54d08fbd88 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereParameterDefinition.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereParameterDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereResponseFormat.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereResponseFormat.java index d2cd54a397b..53f83de03fc 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereResponseFormat.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereResponseFormat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereResponseJsonFormat.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereResponseJsonFormat.java index f8ba519e2bb..7f8db4f6330 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereResponseJsonFormat.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereResponseJsonFormat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereResponseTextFormat.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereResponseTextFormat.java index 3e70299283d..a708005a175 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereResponseTextFormat.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereResponseTextFormat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereSystemMessage.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereSystemMessage.java index 60b33393ad3..89d0bae0c9e 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereSystemMessage.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereSystemMessage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereTool.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereTool.java index f6af03393ce..48bce4879cd 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereTool.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereTool.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereToolCall.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereToolCall.java index 2c1613ffdf3..fe6d898d876 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereToolCall.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereToolCall.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereToolMessage.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereToolMessage.java index c47181c6be1..db5113d78d3 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereToolMessage.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereToolMessage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereToolResult.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereToolResult.java index 5ade4fed646..25ec86a9efe 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereToolResult.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereToolResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereUserMessage.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereUserMessage.java index a92365c15b5..8e8fe828aee 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereUserMessage.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CohereUserMessage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CompletionTokensDetails.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CompletionTokensDetails.java index c71c8ba2c30..08d53c633f8 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CompletionTokensDetails.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/CompletionTokensDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ContentModerationConfiguration.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ContentModerationConfiguration.java index 3d696a26534..57b341adf83 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ContentModerationConfiguration.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ContentModerationConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ContentModerationResult.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ContentModerationResult.java index 2455f555f42..a6908b16ebf 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ContentModerationResult.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ContentModerationResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/DedicatedServingMode.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/DedicatedServingMode.java index 72e339ef8ce..9907c52ba7e 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/DedicatedServingMode.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/DedicatedServingMode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/DeveloperMessage.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/DeveloperMessage.java index 21fe22ee838..0b72312e0d4 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/DeveloperMessage.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/DeveloperMessage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Document.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Document.java index 841d3f24ea5..6d1660f331a 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Document.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Document.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/DocumentRank.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/DocumentRank.java index 9d5ddd1cbbf..715faf20c28 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/DocumentRank.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/DocumentRank.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/EmbedTextDetails.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/EmbedTextDetails.java index b0902ccf647..79a12d3433f 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/EmbedTextDetails.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/EmbedTextDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/EmbedTextResult.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/EmbedTextResult.java index 722a2f23e39..7ea868465ef 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/EmbedTextResult.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/EmbedTextResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/FunctionCall.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/FunctionCall.java index 4222fcb490a..86d5d9f10bd 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/FunctionCall.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/FunctionCall.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/FunctionDefinition.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/FunctionDefinition.java index f02c82b37e1..8bb98e084f7 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/FunctionDefinition.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/FunctionDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GenerateTextDetails.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GenerateTextDetails.java index af33c485288..cb9c23843fb 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GenerateTextDetails.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GenerateTextDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GenerateTextResult.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GenerateTextResult.java index 9cb144a9488..bc436a4eba9 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GenerateTextResult.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GenerateTextResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GeneratedText.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GeneratedText.java index 3865c948fed..35978a7a27e 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GeneratedText.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GeneratedText.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GenericChatRequest.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GenericChatRequest.java index cdb53e6d0b7..0c2b4d717c8 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GenericChatRequest.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GenericChatRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GenericChatResponse.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GenericChatResponse.java index a5fa15fc94b..f57319cc548 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GenericChatResponse.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GenericChatResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GroundingChunk.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GroundingChunk.java index 984d51ead0c..9ec5355cd65 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GroundingChunk.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GroundingChunk.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GroundingMetadata.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GroundingMetadata.java index 102a6eb774a..9b904d2fa4b 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GroundingMetadata.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GroundingMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GroundingSupport.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GroundingSupport.java index ddb8d1eba2c..3420b84e685 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GroundingSupport.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GroundingSupport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GroundingSupportSegment.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GroundingSupportSegment.java index 8337c3e8207..12b9068e0f7 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GroundingSupportSegment.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GroundingSupportSegment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GroundingWebChunk.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GroundingWebChunk.java index 9279578b7b4..4572bca77f4 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GroundingWebChunk.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GroundingWebChunk.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GuardrailConfigs.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GuardrailConfigs.java index 72a90e251f7..0ba4cad9b92 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GuardrailConfigs.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GuardrailConfigs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GuardrailsInput.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GuardrailsInput.java index 7b1be520fea..129a0b38ff0 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GuardrailsInput.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GuardrailsInput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GuardrailsResults.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GuardrailsResults.java index b5673abb4ba..97a51629e00 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GuardrailsResults.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GuardrailsResults.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GuardrailsTextInput.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GuardrailsTextInput.java index 08bca4acc23..996922cf157 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GuardrailsTextInput.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/GuardrailsTextInput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ImageContent.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ImageContent.java index ebcd25b9d90..11aac41f1a1 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ImageContent.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ImageContent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ImageUrl.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ImageUrl.java index 8e5e0440152..9b0488bb225 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ImageUrl.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ImageUrl.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/JsonObjectResponseFormat.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/JsonObjectResponseFormat.java index fa290b089db..25d56968cdc 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/JsonObjectResponseFormat.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/JsonObjectResponseFormat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/JsonSchemaResponseFormat.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/JsonSchemaResponseFormat.java index b47d1faec19..848e49b53f4 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/JsonSchemaResponseFormat.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/JsonSchemaResponseFormat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/LlamaLlmInferenceRequest.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/LlamaLlmInferenceRequest.java index ea7e4c8bbbf..7384178799c 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/LlamaLlmInferenceRequest.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/LlamaLlmInferenceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/LlamaLlmInferenceResponse.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/LlamaLlmInferenceResponse.java index 2d5afc52015..8849127f78d 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/LlamaLlmInferenceResponse.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/LlamaLlmInferenceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/LlmInferenceRequest.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/LlmInferenceRequest.java index 6e5fc8d2dca..f7baaf5ca27 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/LlmInferenceRequest.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/LlmInferenceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/LlmInferenceResponse.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/LlmInferenceResponse.java index 478979d0d5e..867269788c8 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/LlmInferenceResponse.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/LlmInferenceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Logprobs.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Logprobs.java index d6b359e7558..659297a35de 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Logprobs.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Logprobs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Message.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Message.java index 40c98f94425..c1d35587d11 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Message.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Message.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/OnDemandServingMode.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/OnDemandServingMode.java index 1cb86a568d4..df47babe007 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/OnDemandServingMode.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/OnDemandServingMode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/PersonallyIdentifiableInformationConfiguration.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/PersonallyIdentifiableInformationConfiguration.java index d75b2bc97be..88bd539d4e2 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/PersonallyIdentifiableInformationConfiguration.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/PersonallyIdentifiableInformationConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/PersonallyIdentifiableInformationResult.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/PersonallyIdentifiableInformationResult.java index fdb9b35cbd2..a2879316a47 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/PersonallyIdentifiableInformationResult.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/PersonallyIdentifiableInformationResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Prediction.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Prediction.java index 5547f9a09e3..a10a4c0ce45 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Prediction.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Prediction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/PromptInjectionConfiguration.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/PromptInjectionConfiguration.java index b454f813b10..72031165aa7 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/PromptInjectionConfiguration.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/PromptInjectionConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/PromptInjectionProtectionResult.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/PromptInjectionProtectionResult.java index 3bc06dbeee1..8f0f6c368ab 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/PromptInjectionProtectionResult.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/PromptInjectionProtectionResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/PromptTokensDetails.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/PromptTokensDetails.java index 37ce892da6e..d62ae410b21 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/PromptTokensDetails.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/PromptTokensDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/RerankTextDetails.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/RerankTextDetails.java index b2feb7d75de..d2d183077c9 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/RerankTextDetails.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/RerankTextDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/RerankTextResult.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/RerankTextResult.java index a3a89297020..3b81e1ff7de 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/RerankTextResult.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/RerankTextResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ResponseFormat.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ResponseFormat.java index 8fec4cb786c..b29298734b7 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ResponseFormat.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ResponseFormat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ResponseJsonSchema.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ResponseJsonSchema.java index aae9efcf00d..aff90f7dbd8 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ResponseJsonSchema.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ResponseJsonSchema.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/SearchEntryPoint.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/SearchEntryPoint.java index 621e6b3fba4..1e3cc1805a1 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/SearchEntryPoint.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/SearchEntryPoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/SearchQuery.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/SearchQuery.java index 67e9c706872..bd2b1322326 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/SearchQuery.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/SearchQuery.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ServingMode.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ServingMode.java index b13aed92886..bb2182233e6 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ServingMode.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ServingMode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/StaticContent.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/StaticContent.java index c4a81f43ab7..907fec9b264 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/StaticContent.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/StaticContent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/StreamOptions.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/StreamOptions.java index ea301abf8e3..755bb93d80c 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/StreamOptions.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/StreamOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/SummarizeTextDetails.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/SummarizeTextDetails.java index f3501a6b06f..73a14ac8655 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/SummarizeTextDetails.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/SummarizeTextDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/SummarizeTextResult.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/SummarizeTextResult.java index 57e4430389c..1327e9249cd 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/SummarizeTextResult.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/SummarizeTextResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/SystemMessage.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/SystemMessage.java index ee409c303b8..105b63aaad5 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/SystemMessage.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/SystemMessage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/TextContent.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/TextContent.java index f0caf32f11b..08fc33d82a7 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/TextContent.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/TextContent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/TextResponseFormat.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/TextResponseFormat.java index 8ca0828ccf4..d7d2360acae 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/TextResponseFormat.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/TextResponseFormat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/TokenLikelihood.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/TokenLikelihood.java index 5fc41e6bff3..7a840a97ee9 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/TokenLikelihood.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/TokenLikelihood.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolCall.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolCall.java index 35aa762eef1..9e18a66233a 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolCall.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolCall.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolChoice.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolChoice.java index ffaaa7e2134..3f88f8c001d 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolChoice.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolChoice.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolChoiceAuto.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolChoiceAuto.java index fc6550873d1..07caeebf610 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolChoiceAuto.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolChoiceAuto.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolChoiceFunction.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolChoiceFunction.java index 614c2624da5..bee879f4b91 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolChoiceFunction.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolChoiceFunction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolChoiceNone.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolChoiceNone.java index 9589166721d..e4a03f1434b 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolChoiceNone.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolChoiceNone.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolChoiceRequired.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolChoiceRequired.java index cc0b0383ae2..f3dcc6232ed 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolChoiceRequired.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolChoiceRequired.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolDefinition.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolDefinition.java index fa78c41b4fa..bf74ba6f18f 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolDefinition.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolMessage.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolMessage.java index 84af35e21f2..0d767347e24 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolMessage.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/ToolMessage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/UrlCitation.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/UrlCitation.java index 6750f8d97ea..af639538ea1 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/UrlCitation.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/UrlCitation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Usage.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Usage.java index 08760b88827..430d1f8e9b3 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Usage.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/Usage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/UserMessage.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/UserMessage.java index 7188ba58717..371bf835e93 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/UserMessage.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/UserMessage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/VideoContent.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/VideoContent.java index 0a26450241e..461f52b132a 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/VideoContent.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/VideoContent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/VideoUrl.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/VideoUrl.java index e47fab14d3c..9f326bffd64 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/VideoUrl.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/VideoUrl.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/WebSearchOptions.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/WebSearchOptions.java index cae68b7693e..51abc4502f7 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/WebSearchOptions.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/model/WebSearchOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.model; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/ApplyGuardrailsRequest.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/ApplyGuardrailsRequest.java index 2f2f3fe71f8..b61fd144a11 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/ApplyGuardrailsRequest.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/ApplyGuardrailsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.requests; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/ChatRequest.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/ChatRequest.java index 5d65c3b18a7..1e1fb93dbc0 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/ChatRequest.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/ChatRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.requests; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/EmbedTextRequest.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/EmbedTextRequest.java index 4cc792c73ac..228e57deeb7 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/EmbedTextRequest.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/EmbedTextRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.requests; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/GenerateTextRequest.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/GenerateTextRequest.java index 3a23b5fab45..0b874121af0 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/GenerateTextRequest.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/GenerateTextRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.requests; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/RerankTextRequest.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/RerankTextRequest.java index 742052ca1ef..4c7b246f5c4 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/RerankTextRequest.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/RerankTextRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.requests; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/SummarizeTextRequest.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/SummarizeTextRequest.java index 596d25c826e..87fdddf56b5 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/SummarizeTextRequest.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/requests/SummarizeTextRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.requests; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/ApplyGuardrailsResponse.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/ApplyGuardrailsResponse.java index b52b10cf646..5bb8bb563a5 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/ApplyGuardrailsResponse.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/ApplyGuardrailsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.responses; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/ChatResponse.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/ChatResponse.java index 0cc6905436b..c06ee2c7497 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/ChatResponse.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/ChatResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.responses; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/EmbedTextResponse.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/EmbedTextResponse.java index be0b811c2d3..c2cc46625b2 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/EmbedTextResponse.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/EmbedTextResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.responses; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/GenerateTextResponse.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/GenerateTextResponse.java index f8aa36f02bc..4e25762240e 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/GenerateTextResponse.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/GenerateTextResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.responses; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/RerankTextResponse.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/RerankTextResponse.java index b4a6df2d2af..647590b285f 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/RerankTextResponse.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/RerankTextResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.responses; diff --git a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/SummarizeTextResponse.java b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/SummarizeTextResponse.java index eaaf588e98f..35c796972b0 100644 --- a/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/SummarizeTextResponse.java +++ b/bmc-generativeaiinference/src/main/java/com/oracle/bmc/generativeaiinference/responses/SummarizeTextResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.generativeaiinference.responses; diff --git a/bmc-generativeaiinference/src/main/resources/com/oracle/bmc/generativeaiinference/client.properties b/bmc-generativeaiinference/src/main/resources/com/oracle/bmc/generativeaiinference/client.properties index 3298b480926..6a7c993f0ae 100644 --- a/bmc-generativeaiinference/src/main/resources/com/oracle/bmc/generativeaiinference/client.properties +++ b/bmc-generativeaiinference/src/main/resources/com/oracle/bmc/generativeaiinference/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-genericartifactscontent/pom.xml b/bmc-genericartifactscontent/pom.xml index bd0165bf933..1ca293b9281 100644 --- a/bmc-genericartifactscontent/pom.xml +++ b/bmc-genericartifactscontent/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-genericartifactscontent @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/GenericArtifactsContent.java b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/GenericArtifactsContent.java index 50bb7958a3f..c4a46343bd8 100644 --- a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/GenericArtifactsContent.java +++ b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/GenericArtifactsContent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.genericartifactscontent; diff --git a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/GenericArtifactsContentAsync.java b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/GenericArtifactsContentAsync.java index 25f5b514e82..e8bbddd3900 100644 --- a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/GenericArtifactsContentAsync.java +++ b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/GenericArtifactsContentAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.genericartifactscontent; diff --git a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/GenericArtifactsContentAsyncClient.java b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/GenericArtifactsContentAsyncClient.java index d85c645fe5e..5a7e0dc2d06 100644 --- a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/GenericArtifactsContentAsyncClient.java +++ b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/GenericArtifactsContentAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.genericartifactscontent; diff --git a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/GenericArtifactsContentClient.java b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/GenericArtifactsContentClient.java index 0c0df721b5e..fdc266b6105 100644 --- a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/GenericArtifactsContentClient.java +++ b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/GenericArtifactsContentClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.genericartifactscontent; diff --git a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/model/GenericArtifact.java b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/model/GenericArtifact.java index 2c913c248f9..91da7eb0985 100644 --- a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/model/GenericArtifact.java +++ b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/model/GenericArtifact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.genericartifactscontent.model; diff --git a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/requests/GetGenericArtifactContentByPathRequest.java b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/requests/GetGenericArtifactContentByPathRequest.java index f20d5c51039..845e1df75cb 100644 --- a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/requests/GetGenericArtifactContentByPathRequest.java +++ b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/requests/GetGenericArtifactContentByPathRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.genericartifactscontent.requests; diff --git a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/requests/GetGenericArtifactContentRequest.java b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/requests/GetGenericArtifactContentRequest.java index 0df1b26c993..9739258887e 100644 --- a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/requests/GetGenericArtifactContentRequest.java +++ b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/requests/GetGenericArtifactContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.genericartifactscontent.requests; diff --git a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/requests/PutGenericArtifactContentByPathRequest.java b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/requests/PutGenericArtifactContentByPathRequest.java index cb78f63d124..946b2db26e6 100644 --- a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/requests/PutGenericArtifactContentByPathRequest.java +++ b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/requests/PutGenericArtifactContentByPathRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.genericartifactscontent.requests; diff --git a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/responses/GetGenericArtifactContentByPathResponse.java b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/responses/GetGenericArtifactContentByPathResponse.java index 1bcfe84163c..3d57d5ccdfe 100644 --- a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/responses/GetGenericArtifactContentByPathResponse.java +++ b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/responses/GetGenericArtifactContentByPathResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.genericartifactscontent.responses; diff --git a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/responses/GetGenericArtifactContentResponse.java b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/responses/GetGenericArtifactContentResponse.java index 63088ef530f..1998c55e03e 100644 --- a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/responses/GetGenericArtifactContentResponse.java +++ b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/responses/GetGenericArtifactContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.genericartifactscontent.responses; diff --git a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/responses/PutGenericArtifactContentByPathResponse.java b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/responses/PutGenericArtifactContentByPathResponse.java index a7e118d73df..56be41d9cd2 100644 --- a/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/responses/PutGenericArtifactContentByPathResponse.java +++ b/bmc-genericartifactscontent/src/main/java/com/oracle/bmc/genericartifactscontent/responses/PutGenericArtifactContentByPathResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.genericartifactscontent.responses; diff --git a/bmc-genericartifactscontent/src/main/resources/com/oracle/bmc/genericartifactscontent/client.properties b/bmc-genericartifactscontent/src/main/resources/com/oracle/bmc/genericartifactscontent/client.properties index 03c9ae88318..57fa7f4b072 100644 --- a/bmc-genericartifactscontent/src/main/resources/com/oracle/bmc/genericartifactscontent/client.properties +++ b/bmc-genericartifactscontent/src/main/resources/com/oracle/bmc/genericartifactscontent/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-globallydistributeddatabase/pom.xml b/bmc-globallydistributeddatabase/pom.xml index d6992c44651..fd876699d15 100644 --- a/bmc-globallydistributeddatabase/pom.xml +++ b/bmc-globallydistributeddatabase/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-globallydistributeddatabase @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseService.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseService.java index dcae4f188cf..b7193d7eb25 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseService.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseService.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseServiceAsync.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseServiceAsync.java index 62abc9da4a3..2eff00954a5 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseServiceAsync.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseServiceAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseServiceAsyncClient.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseServiceAsyncClient.java index 7587baaf8df..a367e883f9a 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseServiceAsyncClient.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseServiceAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseServiceClient.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseServiceClient.java index 6553bfa1d94..30812c78136 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseServiceClient.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseServiceClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseServicePaginators.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseServicePaginators.java index 13a6a1dc346..5da6adb6757 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseServicePaginators.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseServicePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseServiceWaiters.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseServiceWaiters.java index 9e0b26576be..c1cb35ec67f 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseServiceWaiters.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/ShardedDatabaseServiceWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ActionType.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ActionType.java index 2988275a78e..c7397ac63f5 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ActionType.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ChangePrivateEndpointCompartmentDetails.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ChangePrivateEndpointCompartmentDetails.java index 5169b28a596..a3ecc91f556 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ChangePrivateEndpointCompartmentDetails.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ChangePrivateEndpointCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ChangeShardedDatabaseCompartmentDetails.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ChangeShardedDatabaseCompartmentDetails.java index 106a5017ece..3b8ad99f88d 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ChangeShardedDatabaseCompartmentDetails.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ChangeShardedDatabaseCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ConfigureShardedDatabaseGsmsDetails.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ConfigureShardedDatabaseGsmsDetails.java index 406254dc031..609eee5cb50 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ConfigureShardedDatabaseGsmsDetails.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ConfigureShardedDatabaseGsmsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ConnectionString.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ConnectionString.java index 8c45c2a5a18..5893ea4d5f2 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ConnectionString.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ConnectionString.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/CreateDedicatedCatalogDetail.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/CreateDedicatedCatalogDetail.java index 36cc42a6d56..e7e28cc29cb 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/CreateDedicatedCatalogDetail.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/CreateDedicatedCatalogDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/CreateDedicatedShardDetail.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/CreateDedicatedShardDetail.java index a4c272027a1..1095b960a65 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/CreateDedicatedShardDetail.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/CreateDedicatedShardDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/CreateDedicatedShardedDatabase.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/CreateDedicatedShardedDatabase.java index d8fdf3e1c12..9bf72eca15e 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/CreateDedicatedShardedDatabase.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/CreateDedicatedShardedDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/CreatePrivateEndpointDetails.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/CreatePrivateEndpointDetails.java index 159adf5859b..c37fbe96ddf 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/CreatePrivateEndpointDetails.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/CreatePrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/CreateShardedDatabaseDetails.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/CreateShardedDatabaseDetails.java index 5204b8c55c4..22c4fcbfd56 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/CreateShardedDatabaseDetails.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/CreateShardedDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/DedicatedCatalogDetails.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/DedicatedCatalogDetails.java index 2d550879186..1e9709921fa 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/DedicatedCatalogDetails.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/DedicatedCatalogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/DedicatedShardDetails.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/DedicatedShardDetails.java index 922c128b5f7..bc652852671 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/DedicatedShardDetails.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/DedicatedShardDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/DedicatedShardOrCatalogEncryptionKeyDetails.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/DedicatedShardOrCatalogEncryptionKeyDetails.java index 90416188ef9..e5599fcfce2 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/DedicatedShardOrCatalogEncryptionKeyDetails.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/DedicatedShardOrCatalogEncryptionKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/DedicatedShardedDatabase.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/DedicatedShardedDatabase.java index 8c2604b10e9..ac2f43118b7 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/DedicatedShardedDatabase.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/DedicatedShardedDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/DedicatedShardedDatabaseSummary.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/DedicatedShardedDatabaseSummary.java index 871be29c8d8..2df135c5a6a 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/DedicatedShardedDatabaseSummary.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/DedicatedShardedDatabaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/FetchShardableCloudAutonomousVmClustersDetails.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/FetchShardableCloudAutonomousVmClustersDetails.java index 777af513b3b..7dcf1a4c9a2 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/FetchShardableCloudAutonomousVmClustersDetails.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/FetchShardableCloudAutonomousVmClustersDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/GenerateWalletDetails.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/GenerateWalletDetails.java index 5b7e51e42f3..4d49bc2c7c0 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/GenerateWalletDetails.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/GenerateWalletDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/GsmDetails.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/GsmDetails.java index f74f443acf0..d09f7848bad 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/GsmDetails.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/GsmDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/OperationStatus.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/OperationStatus.java index 37c4bfb553a..7c1fdcdd619 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/OperationStatus.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/OperationType.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/OperationType.java index 0eaff4afec5..740230ed647 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/OperationType.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PatchInsertInstruction.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PatchInsertInstruction.java index 6d89992e878..9aeec3910c3 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PatchInsertInstruction.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PatchInsertInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PatchInstruction.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PatchInstruction.java index b39eed563c4..5ea59c30d0f 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PatchInstruction.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PatchInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PatchMergeInstruction.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PatchMergeInstruction.java index eadae995600..20590cde627 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PatchMergeInstruction.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PatchMergeInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PatchRemoveInstruction.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PatchRemoveInstruction.java index eebf2ec26e6..105f948aa63 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PatchRemoveInstruction.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PatchRemoveInstruction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PatchShardedDatabaseDetails.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PatchShardedDatabaseDetails.java index aadd6196bfa..35a499d0f69 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PatchShardedDatabaseDetails.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PatchShardedDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrevalidateCreatePayload.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrevalidateCreatePayload.java index ccdb4bffe48..689a16d37a6 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrevalidateCreatePayload.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrevalidateCreatePayload.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrevalidatePatchPayload.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrevalidatePatchPayload.java index 60b08b3c02d..f2df95e344e 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrevalidatePatchPayload.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrevalidatePatchPayload.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrevalidatePayload.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrevalidatePayload.java index 5faf53e188c..9ed3f9300f6 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrevalidatePayload.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrevalidatePayload.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrevalidateShardedDatabaseDetails.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrevalidateShardedDatabaseDetails.java index 769b3f444e5..edb489a2c8b 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrevalidateShardedDatabaseDetails.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrevalidateShardedDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrevalidateShardedDatabaseResult.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrevalidateShardedDatabaseResult.java index fdd478c41ff..89f663af11f 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrevalidateShardedDatabaseResult.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrevalidateShardedDatabaseResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrivateEndpoint.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrivateEndpoint.java index 4db49a6358c..67c36be7bcf 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrivateEndpoint.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrivateEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrivateEndpointCollection.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrivateEndpointCollection.java index 554874a9adf..0ffadd8c07f 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrivateEndpointCollection.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrivateEndpointCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrivateEndpointSummary.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrivateEndpointSummary.java index 65094b8a6f2..8308a60ceff 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrivateEndpointSummary.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/PrivateEndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ShardableCloudAutonomousVmClusterSummary.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ShardableCloudAutonomousVmClusterSummary.java index 9dfb4f2f926..386acbd07da 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ShardableCloudAutonomousVmClusterSummary.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ShardableCloudAutonomousVmClusterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ShardableCloudAutonomousVmClusters.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ShardableCloudAutonomousVmClusters.java index 3ca4865464d..ad1e0b3fc51 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ShardableCloudAutonomousVmClusters.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ShardableCloudAutonomousVmClusters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ShardedDatabase.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ShardedDatabase.java index 3f5a2bc959d..542b376d2f9 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ShardedDatabase.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ShardedDatabase.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ShardedDatabaseCollection.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ShardedDatabaseCollection.java index 471cb043f1c..91f4b3e790b 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ShardedDatabaseCollection.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ShardedDatabaseCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ShardedDatabaseSummary.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ShardedDatabaseSummary.java index 058a97f77c0..7d4b703d609 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ShardedDatabaseSummary.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/ShardedDatabaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/SortOrder.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/SortOrder.java index 845b0e7fc03..ba5b729221b 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/SortOrder.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/UpdatePrivateEndpointDetails.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/UpdatePrivateEndpointDetails.java index 72248078347..69df742d5da 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/UpdatePrivateEndpointDetails.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/UpdatePrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/UpdateShardedDatabaseDetails.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/UpdateShardedDatabaseDetails.java index d0e876060c9..dd239bce714 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/UpdateShardedDatabaseDetails.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/UpdateShardedDatabaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/UploadSignedCertificateAndGenerateWalletDetails.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/UploadSignedCertificateAndGenerateWalletDetails.java index 68a9667bb6a..5d3de0236f1 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/UploadSignedCertificateAndGenerateWalletDetails.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/UploadSignedCertificateAndGenerateWalletDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequest.java index 462308cdf5d..96fbbd699fc 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestError.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestError.java index 9ab68ef4853..2e30ea1feb6 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestError.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestErrorCollection.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestErrorCollection.java index ace5e641297..f025cc12481 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestErrorCollection.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestLogEntry.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestLogEntry.java index 66bb56330dd..eed55c39004 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestLogEntry.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestLogEntryCollection.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestLogEntryCollection.java index 5eb5384a666..a7ba63f354e 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestLogEntryCollection.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestResource.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestResource.java index a86e5e52891..f4c906f51d7 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestResource.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestResourceMetadataKey.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestResourceMetadataKey.java index ba58c55e68a..de842ac1332 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestResourceMetadataKey.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestSummary.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestSummary.java index b9c2ea089a7..851da25bdb6 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestSummary.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestSummaryCollection.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestSummaryCollection.java index 153fd6d3f26..591be44c2c9 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestSummaryCollection.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.model; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ChangePrivateEndpointCompartmentRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ChangePrivateEndpointCompartmentRequest.java index 0c3d0fe75e8..42940e8dad5 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ChangePrivateEndpointCompartmentRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ChangePrivateEndpointCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ChangeShardedDatabaseCompartmentRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ChangeShardedDatabaseCompartmentRequest.java index 7eff380a0d1..7afae165798 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ChangeShardedDatabaseCompartmentRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ChangeShardedDatabaseCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ConfigureShardedDatabaseGsmsRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ConfigureShardedDatabaseGsmsRequest.java index e73fb6074b2..d7234943cbe 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ConfigureShardedDatabaseGsmsRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ConfigureShardedDatabaseGsmsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ConfigureShardingRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ConfigureShardingRequest.java index f72052cdf70..147398a25dd 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ConfigureShardingRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ConfigureShardingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/CreatePrivateEndpointRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/CreatePrivateEndpointRequest.java index 7e7ecb73696..03f89215786 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/CreatePrivateEndpointRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/CreatePrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/CreateShardedDatabaseRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/CreateShardedDatabaseRequest.java index 60e66fc7384..e7f601fd30f 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/CreateShardedDatabaseRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/CreateShardedDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/DeletePrivateEndpointRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/DeletePrivateEndpointRequest.java index a10f2de54aa..34d7a648b84 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/DeletePrivateEndpointRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/DeletePrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/DeleteShardedDatabaseRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/DeleteShardedDatabaseRequest.java index 2d2c5077c9b..9c62ae4533e 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/DeleteShardedDatabaseRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/DeleteShardedDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/DownloadGsmCertificateSigningRequestRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/DownloadGsmCertificateSigningRequestRequest.java index b80c6492848..b4e61c0bca3 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/DownloadGsmCertificateSigningRequestRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/DownloadGsmCertificateSigningRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/FetchConnectionStringRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/FetchConnectionStringRequest.java index b339bc7d0aa..97bc28a7e93 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/FetchConnectionStringRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/FetchConnectionStringRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/FetchShardableCloudAutonomousVmClustersRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/FetchShardableCloudAutonomousVmClustersRequest.java index c8ef5847017..16a0b29ed84 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/FetchShardableCloudAutonomousVmClustersRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/FetchShardableCloudAutonomousVmClustersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/GenerateGsmCertificateSigningRequestRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/GenerateGsmCertificateSigningRequestRequest.java index 0556eb37d97..48cf9e1c72f 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/GenerateGsmCertificateSigningRequestRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/GenerateGsmCertificateSigningRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/GenerateWalletRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/GenerateWalletRequest.java index f38ad5e0321..a050f580499 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/GenerateWalletRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/GenerateWalletRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/GetPrivateEndpointRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/GetPrivateEndpointRequest.java index 10904aefaf2..b0d11aedb68 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/GetPrivateEndpointRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/GetPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/GetShardedDatabaseRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/GetShardedDatabaseRequest.java index 82f71562b45..ba4db01457f 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/GetShardedDatabaseRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/GetShardedDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/GetWorkRequestRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/GetWorkRequestRequest.java index bed845931a0..f0dc3ccd145 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/GetWorkRequestRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ListPrivateEndpointsRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ListPrivateEndpointsRequest.java index afe7da2c3bd..52c5a237ac7 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ListPrivateEndpointsRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ListPrivateEndpointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ListShardedDatabasesRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ListShardedDatabasesRequest.java index 68ab6068566..e9fc3a3e839 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ListShardedDatabasesRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ListShardedDatabasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ListWorkRequestErrorsRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ListWorkRequestErrorsRequest.java index 261366ed6b5..478918ecc14 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ListWorkRequestLogsRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ListWorkRequestLogsRequest.java index cb156a2fcea..011a33c58ff 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ListWorkRequestLogsRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ListWorkRequestsRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ListWorkRequestsRequest.java index 1a270febac9..b3c3aa9aa35 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ListWorkRequestsRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/PatchShardedDatabaseRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/PatchShardedDatabaseRequest.java index 41171d04e18..09cf2ca1323 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/PatchShardedDatabaseRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/PatchShardedDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/PrevalidateShardedDatabaseRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/PrevalidateShardedDatabaseRequest.java index 5a5ccd5b1bc..f2739609418 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/PrevalidateShardedDatabaseRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/PrevalidateShardedDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ReinstateProxyInstanceRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ReinstateProxyInstanceRequest.java index be18e79ec82..5f1d95fbbcd 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ReinstateProxyInstanceRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ReinstateProxyInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/StartShardedDatabaseRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/StartShardedDatabaseRequest.java index 85d9bad39d3..9e91da8f25d 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/StartShardedDatabaseRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/StartShardedDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/StopShardedDatabaseRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/StopShardedDatabaseRequest.java index e41c416aa26..51d5a90e474 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/StopShardedDatabaseRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/StopShardedDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/UpdatePrivateEndpointRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/UpdatePrivateEndpointRequest.java index b9277037201..87d7569738a 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/UpdatePrivateEndpointRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/UpdatePrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/UpdateShardedDatabaseRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/UpdateShardedDatabaseRequest.java index ee375c146c0..90a4112f9d6 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/UpdateShardedDatabaseRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/UpdateShardedDatabaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/UploadSignedCertificateAndGenerateWalletRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/UploadSignedCertificateAndGenerateWalletRequest.java index f0280ee06c8..17ab02a1036 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/UploadSignedCertificateAndGenerateWalletRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/UploadSignedCertificateAndGenerateWalletRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ValidateNetworkRequest.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ValidateNetworkRequest.java index e708774e8cf..6d0f256f690 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ValidateNetworkRequest.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/requests/ValidateNetworkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.requests; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ChangePrivateEndpointCompartmentResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ChangePrivateEndpointCompartmentResponse.java index 0f1284afa09..f66e934c17a 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ChangePrivateEndpointCompartmentResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ChangePrivateEndpointCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ChangeShardedDatabaseCompartmentResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ChangeShardedDatabaseCompartmentResponse.java index 13f4f8673fb..9bc6400fa05 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ChangeShardedDatabaseCompartmentResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ChangeShardedDatabaseCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ConfigureShardedDatabaseGsmsResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ConfigureShardedDatabaseGsmsResponse.java index a4510738778..2f01cf7ab98 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ConfigureShardedDatabaseGsmsResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ConfigureShardedDatabaseGsmsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ConfigureShardingResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ConfigureShardingResponse.java index 55fc558760b..587525a358c 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ConfigureShardingResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ConfigureShardingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/CreatePrivateEndpointResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/CreatePrivateEndpointResponse.java index b78810846b6..f5c485bdac9 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/CreatePrivateEndpointResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/CreatePrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/CreateShardedDatabaseResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/CreateShardedDatabaseResponse.java index 5a1f9283ef3..e79514bedb9 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/CreateShardedDatabaseResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/CreateShardedDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/DeletePrivateEndpointResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/DeletePrivateEndpointResponse.java index e78d79d897f..41fe35142b0 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/DeletePrivateEndpointResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/DeletePrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/DeleteShardedDatabaseResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/DeleteShardedDatabaseResponse.java index c023d169af4..a7eda9050fc 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/DeleteShardedDatabaseResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/DeleteShardedDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/DownloadGsmCertificateSigningRequestResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/DownloadGsmCertificateSigningRequestResponse.java index eedae87a1c6..8594d0e9051 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/DownloadGsmCertificateSigningRequestResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/DownloadGsmCertificateSigningRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/FetchConnectionStringResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/FetchConnectionStringResponse.java index 5a945cebd3d..654817df78c 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/FetchConnectionStringResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/FetchConnectionStringResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/FetchShardableCloudAutonomousVmClustersResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/FetchShardableCloudAutonomousVmClustersResponse.java index 9ba165f2c08..d36e242889c 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/FetchShardableCloudAutonomousVmClustersResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/FetchShardableCloudAutonomousVmClustersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/GenerateGsmCertificateSigningRequestResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/GenerateGsmCertificateSigningRequestResponse.java index dc5ddba85b9..565c624a088 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/GenerateGsmCertificateSigningRequestResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/GenerateGsmCertificateSigningRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/GenerateWalletResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/GenerateWalletResponse.java index 112ebc09eb4..bf909f2c905 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/GenerateWalletResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/GenerateWalletResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/GetPrivateEndpointResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/GetPrivateEndpointResponse.java index ac6cc082892..fd96daf330a 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/GetPrivateEndpointResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/GetPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/GetShardedDatabaseResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/GetShardedDatabaseResponse.java index c47ba376d59..ed4b3e0947c 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/GetShardedDatabaseResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/GetShardedDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/GetWorkRequestResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/GetWorkRequestResponse.java index 0083ff9bd4a..c6bedb94560 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/GetWorkRequestResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ListPrivateEndpointsResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ListPrivateEndpointsResponse.java index c0485ee12cf..7f899b6203a 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ListPrivateEndpointsResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ListPrivateEndpointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ListShardedDatabasesResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ListShardedDatabasesResponse.java index f8853da7c96..e4c77aed5ca 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ListShardedDatabasesResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ListShardedDatabasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ListWorkRequestErrorsResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ListWorkRequestErrorsResponse.java index 196973b467a..316ad5beb1c 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ListWorkRequestLogsResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ListWorkRequestLogsResponse.java index 4a3436af6d3..aac3cf65880 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ListWorkRequestLogsResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ListWorkRequestsResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ListWorkRequestsResponse.java index 40732756d85..b766c8314eb 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ListWorkRequestsResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/PatchShardedDatabaseResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/PatchShardedDatabaseResponse.java index 4b65a9e7f78..b1d9381be10 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/PatchShardedDatabaseResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/PatchShardedDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/PrevalidateShardedDatabaseResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/PrevalidateShardedDatabaseResponse.java index b08012b9eef..716d697bcbd 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/PrevalidateShardedDatabaseResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/PrevalidateShardedDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ReinstateProxyInstanceResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ReinstateProxyInstanceResponse.java index bdcc8cbdd43..16d31a7c18b 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ReinstateProxyInstanceResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ReinstateProxyInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/StartShardedDatabaseResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/StartShardedDatabaseResponse.java index fbc13307309..ff9936f4b65 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/StartShardedDatabaseResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/StartShardedDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/StopShardedDatabaseResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/StopShardedDatabaseResponse.java index 32e4b25eb19..464b276f45f 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/StopShardedDatabaseResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/StopShardedDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/UpdatePrivateEndpointResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/UpdatePrivateEndpointResponse.java index fd3281bf84a..74ff2ada1fd 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/UpdatePrivateEndpointResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/UpdatePrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/UpdateShardedDatabaseResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/UpdateShardedDatabaseResponse.java index 879f9552646..e4930230e32 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/UpdateShardedDatabaseResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/UpdateShardedDatabaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/UploadSignedCertificateAndGenerateWalletResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/UploadSignedCertificateAndGenerateWalletResponse.java index 02f3437e468..cf4d16f21d5 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/UploadSignedCertificateAndGenerateWalletResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/UploadSignedCertificateAndGenerateWalletResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ValidateNetworkResponse.java b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ValidateNetworkResponse.java index 277214f9f4e..0bdf87d9460 100644 --- a/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ValidateNetworkResponse.java +++ b/bmc-globallydistributeddatabase/src/main/java/com/oracle/bmc/globallydistributeddatabase/responses/ValidateNetworkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.globallydistributeddatabase.responses; diff --git a/bmc-globallydistributeddatabase/src/main/resources/com/oracle/bmc/globallydistributeddatabase/client.properties b/bmc-globallydistributeddatabase/src/main/resources/com/oracle/bmc/globallydistributeddatabase/client.properties index 34a96715143..5ff10a492ae 100644 --- a/bmc-globallydistributeddatabase/src/main/resources/com/oracle/bmc/globallydistributeddatabase/client.properties +++ b/bmc-globallydistributeddatabase/src/main/resources/com/oracle/bmc/globallydistributeddatabase/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-goldengate/pom.xml b/bmc-goldengate/pom.xml index 60aa440791f..fd2ccfafa42 100644 --- a/bmc-goldengate/pom.xml +++ b/bmc-goldengate/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-goldengate @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGate.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGate.java index 44428e38f47..3f44eab4921 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGate.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGateAsync.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGateAsync.java index a85725457b8..16f6fb138b0 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGateAsync.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGateAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGateAsyncClient.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGateAsyncClient.java index e96998eda95..3f08695f295 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGateAsyncClient.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGateAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGateClient.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGateClient.java index 7e9b3268b8b..df1f3ddf277 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGateClient.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGateClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGatePaginators.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGatePaginators.java index e4779056430..fa215506a5f 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGatePaginators.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGatePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGateWaiters.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGateWaiters.java index ef26f248557..34db01720bb 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGateWaiters.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/GoldenGateWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ActionType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ActionType.java index 630eca9bf6f..cbe72c46125 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ActionType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AddDeploymentLocalPeerDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AddDeploymentLocalPeerDetails.java index 9e8efdf8833..be0a43c6eb5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AddDeploymentLocalPeerDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AddDeploymentLocalPeerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AddResourceLockDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AddResourceLockDetails.java index 93b74c04494..94b4104c4bc 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AddResourceLockDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AddResourceLockDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonKinesisConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonKinesisConnection.java index 9bc4c780900..01142dce47e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonKinesisConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonKinesisConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonKinesisConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonKinesisConnectionSummary.java index 2ddeb105ad8..5bca4371bce 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonKinesisConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonKinesisConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonRedshiftConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonRedshiftConnection.java index b334f52855f..2f202435216 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonRedshiftConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonRedshiftConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonRedshiftConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonRedshiftConnectionSummary.java index 9ca93b03a53..57e0db3788f 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonRedshiftConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonRedshiftConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonS3Connection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonS3Connection.java index aa1f5b459bd..37f8b04dee3 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonS3Connection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonS3Connection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonS3ConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonS3ConnectionSummary.java index 2184c67c510..4babe3acc87 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonS3ConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonS3ConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonS3IcebergStorage.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonS3IcebergStorage.java index c34ae74dddc..055ba7b80c3 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonS3IcebergStorage.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonS3IcebergStorage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonS3IcebergStorageSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonS3IcebergStorageSummary.java index c165267ae11..cad0c83eb06 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonS3IcebergStorageSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AmazonS3IcebergStorageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureDataLakeStorageConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureDataLakeStorageConnection.java index 57aa44bdcff..23cc042b19d 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureDataLakeStorageConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureDataLakeStorageConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureDataLakeStorageConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureDataLakeStorageConnectionSummary.java index d622a6dc847..2fdb30a0e71 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureDataLakeStorageConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureDataLakeStorageConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureDataLakeStorageIcebergStorage.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureDataLakeStorageIcebergStorage.java index c665a7b0ad1..910be9f85d8 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureDataLakeStorageIcebergStorage.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureDataLakeStorageIcebergStorage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureDataLakeStorageIcebergStorageSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureDataLakeStorageIcebergStorageSummary.java index 8f95db0a0ad..d08ec71721a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureDataLakeStorageIcebergStorageSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureDataLakeStorageIcebergStorageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureSynapseConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureSynapseConnection.java index abf32efe56b..3e9ef7309a6 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureSynapseConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureSynapseConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureSynapseConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureSynapseConnectionSummary.java index feab43e779f..95e672852b9 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureSynapseConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/AzureSynapseConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/BackupSchedule.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/BackupSchedule.java index 80497a0f174..c875ca81472 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/BackupSchedule.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/BackupSchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelDeploymentBackupDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelDeploymentBackupDetails.java index 34cac565488..fe3a1e137c1 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelDeploymentBackupDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelDeploymentBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelDeploymentBackupType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelDeploymentBackupType.java index 06bb7818ce5..7919830f4fd 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelDeploymentBackupType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelDeploymentBackupType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelDeploymentUpgradeDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelDeploymentUpgradeDetails.java index 356077122ca..a43bf3bfc76 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelDeploymentUpgradeDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelDeploymentUpgradeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelDeploymentUpgradeType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelDeploymentUpgradeType.java index 4002e09556b..61c0d8bb887 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelDeploymentUpgradeType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelDeploymentUpgradeType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelSnoozeDeploymentUpgradeDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelSnoozeDeploymentUpgradeDetails.java index d40ab4c82af..36dcb256265 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelSnoozeDeploymentUpgradeDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelSnoozeDeploymentUpgradeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelSnoozeDeploymentUpgradeType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelSnoozeDeploymentUpgradeType.java index 90b70378323..15639fb61d0 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelSnoozeDeploymentUpgradeType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CancelSnoozeDeploymentUpgradeType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Certificate.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Certificate.java index 56692bf42aa..db023b90a92 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Certificate.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Certificate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CertificateCollection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CertificateCollection.java index 8c7b0091173..17cb8d6bb81 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CertificateCollection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CertificateCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CertificateLifecycleState.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CertificateLifecycleState.java index d8d9f7893df..287beeecfd5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CertificateLifecycleState.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CertificateLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CertificateSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CertificateSummary.java index ed7a521d3b8..602ecfd7f04 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CertificateSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CertificateSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeConnectionCompartmentDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeConnectionCompartmentDetails.java index 0c186b83114..c4b53305119 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeConnectionCompartmentDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeConnectionCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeConnectionSubscriptionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeConnectionSubscriptionDetails.java index a09f9bf2339..7894ea83ed8 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeConnectionSubscriptionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeConnectionSubscriptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeDatabaseRegistrationCompartmentDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeDatabaseRegistrationCompartmentDetails.java index 706df406410..f065129486c 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeDatabaseRegistrationCompartmentDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeDatabaseRegistrationCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeDeploymentBackupCompartmentDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeDeploymentBackupCompartmentDetails.java index 291c462b85d..812dc700777 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeDeploymentBackupCompartmentDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeDeploymentBackupCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeDeploymentCompartmentDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeDeploymentCompartmentDetails.java index e243ecae62c..8c686eb1aea 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeDeploymentCompartmentDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeDeploymentCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeDeploymentSubscriptionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeDeploymentSubscriptionDetails.java index 67c876730fb..09e8668c811 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeDeploymentSubscriptionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeDeploymentSubscriptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangePipelineCompartmentDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangePipelineCompartmentDetails.java index 0d52ac18c91..2c221dbaa55 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangePipelineCompartmentDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangePipelineCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeSubscriptionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeSubscriptionDetails.java index d5ca09f295b..5d016ff8545 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeSubscriptionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ChangeSubscriptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CollectDeploymentDiagnosticDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CollectDeploymentDiagnosticDetails.java index 2233eaba54e..c7b4ae26565 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CollectDeploymentDiagnosticDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CollectDeploymentDiagnosticDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CollectPipelineDiagnosticDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CollectPipelineDiagnosticDetails.java index e27e4856941..efe310d6b73 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CollectPipelineDiagnosticDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CollectPipelineDiagnosticDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Connection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Connection.java index 0030c458445..251f5f3cbe1 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Connection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Connection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionAssignment.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionAssignment.java index e6065586280..0882d7c1b1f 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionAssignment.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionAssignment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionAssignmentCollection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionAssignmentCollection.java index 246af7f7619..c533b532768 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionAssignmentCollection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionAssignmentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionAssignmentSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionAssignmentSummary.java index 3e89eca76d6..77f3a4f4789 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionAssignmentSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionAssignmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionCollection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionCollection.java index c9c76217a7b..484812e2d45 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionCollection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionSummary.java index 74337b2ee69..511a4803b21 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionType.java index 6fee80401b1..ef12a18fd5f 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ConnectionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CopyDeploymentBackupDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CopyDeploymentBackupDetails.java index 64e5cc4d5b1..afc14c903ce 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CopyDeploymentBackupDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CopyDeploymentBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAmazonKinesisConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAmazonKinesisConnectionDetails.java index 6adef4f8a28..78eb56ed624 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAmazonKinesisConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAmazonKinesisConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAmazonRedshiftConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAmazonRedshiftConnectionDetails.java index 476ef221f29..cb515110d34 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAmazonRedshiftConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAmazonRedshiftConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAmazonS3ConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAmazonS3ConnectionDetails.java index a2aaae2b9ed..4a2eccafc2a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAmazonS3ConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAmazonS3ConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAmazonS3IcebergStorageDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAmazonS3IcebergStorageDetails.java index 4487b73c6b6..2e64e38e141 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAmazonS3IcebergStorageDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAmazonS3IcebergStorageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAzureDataLakeStorageConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAzureDataLakeStorageConnectionDetails.java index 84eb0d523c5..c2100471859 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAzureDataLakeStorageConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAzureDataLakeStorageConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAzureDataLakeStorageIcebergStorageDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAzureDataLakeStorageIcebergStorageDetails.java index f7e36240f93..527c668cfb4 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAzureDataLakeStorageIcebergStorageDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAzureDataLakeStorageIcebergStorageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAzureSynapseConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAzureSynapseConnectionDetails.java index 3458133970b..a639a7bdd53 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAzureSynapseConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateAzureSynapseConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateBackupScheduleDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateBackupScheduleDetails.java index d56919d851e..6dbffdd6e30 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateBackupScheduleDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateBackupScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateCertificateDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateCertificateDetails.java index 0f4042e4066..731eb7e0fe8 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateCertificateDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateCertificateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateConnectionAssignmentDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateConnectionAssignmentDetails.java index 389f8d2c3b0..5e6a9dd51fb 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateConnectionAssignmentDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateConnectionAssignmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateConnectionDetails.java index 8afa03641ee..58883d83c68 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateDatabaseRegistrationDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateDatabaseRegistrationDetails.java index 0d23439dc8a..e533f3fa8ac 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateDatabaseRegistrationDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateDatabaseRegistrationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateDatabricksConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateDatabricksConnectionDetails.java index d84137814a7..cfd7f8c3fd2 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateDatabricksConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateDatabricksConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateDb2ConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateDb2ConnectionDetails.java index 944f64df5a0..b6065642ba4 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateDb2ConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateDb2ConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateDeploymentBackupDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateDeploymentBackupDetails.java index b94cb8ec1cf..771e1c61a70 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateDeploymentBackupDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateDeploymentBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateDeploymentDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateDeploymentDetails.java index efa685e5c26..dadd06d4a5b 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateDeploymentDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateElasticsearchConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateElasticsearchConnectionDetails.java index 9573f60ef65..68b77a633f5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateElasticsearchConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateElasticsearchConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGenericConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGenericConnectionDetails.java index d536452cca2..7d7d797add4 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGenericConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGenericConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGlueIcebergCatalogDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGlueIcebergCatalogDetails.java index c3283abbcea..fecba8e249f 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGlueIcebergCatalogDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGlueIcebergCatalogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGoldenGateConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGoldenGateConnectionDetails.java index a44806831ce..3ac3e769fa6 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGoldenGateConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGoldenGateConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGoogleBigQueryConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGoogleBigQueryConnectionDetails.java index baafffff454..d6834cf9d0d 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGoogleBigQueryConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGoogleBigQueryConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGoogleCloudStorageConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGoogleCloudStorageConnectionDetails.java index d2bb1606e5e..bd4d8f00ec5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGoogleCloudStorageConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGoogleCloudStorageConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGoogleCloudStorageIcebergStorageDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGoogleCloudStorageIcebergStorageDetails.java index a730542b0e1..e1271da2fcf 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGoogleCloudStorageIcebergStorageDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGoogleCloudStorageIcebergStorageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGooglePubSubConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGooglePubSubConnectionDetails.java index 5c98a9a62ba..e218f783105 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGooglePubSubConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateGooglePubSubConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateHadoopIcebergCatalogDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateHadoopIcebergCatalogDetails.java index 690bcb736ed..b99fd2667a6 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateHadoopIcebergCatalogDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateHadoopIcebergCatalogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateHdfsConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateHdfsConnectionDetails.java index 960a7e017c1..60886feed44 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateHdfsConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateHdfsConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateIcebergCatalogDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateIcebergCatalogDetails.java index 5e68625c42b..c41daaae962 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateIcebergCatalogDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateIcebergCatalogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateIcebergConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateIcebergConnectionDetails.java index 8bb7f9a0f4a..5a6d269a159 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateIcebergConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateIcebergConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateIcebergStorageDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateIcebergStorageDetails.java index 001861bb65e..6deb62677b7 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateIcebergStorageDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateIcebergStorageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateJavaMessageServiceConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateJavaMessageServiceConnectionDetails.java index ec5ef93b2da..844573acbf8 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateJavaMessageServiceConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateJavaMessageServiceConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateKafkaConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateKafkaConnectionDetails.java index 265aabc2a5a..d2c0179e1d0 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateKafkaConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateKafkaConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateKafkaSchemaRegistryConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateKafkaSchemaRegistryConnectionDetails.java index a96f2ec709a..28281e3710e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateKafkaSchemaRegistryConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateKafkaSchemaRegistryConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMaintenanceConfigurationDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMaintenanceConfigurationDetails.java index 28cd1cd23a9..3e9147dabcf 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMaintenanceConfigurationDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMaintenanceConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMaintenanceWindowDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMaintenanceWindowDetails.java index ab1f08a3e3c..afa4ccd6d06 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMaintenanceWindowDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMaintenanceWindowDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMicrosoftFabricConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMicrosoftFabricConnectionDetails.java index e444dcb2afa..dda8b97c3af 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMicrosoftFabricConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMicrosoftFabricConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMicrosoftSqlserverConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMicrosoftSqlserverConnectionDetails.java index f2498643f3b..3370260f148 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMicrosoftSqlserverConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMicrosoftSqlserverConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMongoDbConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMongoDbConnectionDetails.java index b2ddd57d31f..3f1208ed866 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMongoDbConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMongoDbConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMysqlConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMysqlConnectionDetails.java index e9ef61d2de1..d8080c743fe 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMysqlConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateMysqlConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateNessieIcebergCatalogDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateNessieIcebergCatalogDetails.java index bc1980a65f7..29af0f6699f 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateNessieIcebergCatalogDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateNessieIcebergCatalogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateOciObjectStorageConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateOciObjectStorageConnectionDetails.java index 284ed387463..46ce41da67a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateOciObjectStorageConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateOciObjectStorageConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateOggDeploymentDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateOggDeploymentDetails.java index beecb69ee7f..1728e77aaa7 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateOggDeploymentDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateOggDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateOracleAiDataPlatformConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateOracleAiDataPlatformConnectionDetails.java index cdf87656c60..0fb4ccf2582 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateOracleAiDataPlatformConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateOracleAiDataPlatformConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateOracleConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateOracleConnectionDetails.java index 3a227d356db..a13d883245a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateOracleConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateOracleConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateOracleNosqlConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateOracleNosqlConnectionDetails.java index f03d31643de..af4eac6b89e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateOracleNosqlConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateOracleNosqlConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreatePipelineDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreatePipelineDetails.java index 8da5ca2c763..611e9ae8df3 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreatePipelineDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreatePipelineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreatePolarisIcebergCatalogDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreatePolarisIcebergCatalogDetails.java index c6378ba91c2..0d8056d102d 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreatePolarisIcebergCatalogDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreatePolarisIcebergCatalogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreatePostgresqlConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreatePostgresqlConnectionDetails.java index 43313dde7a9..d17d3156587 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreatePostgresqlConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreatePostgresqlConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateRedisConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateRedisConnectionDetails.java index a36b40c2261..e315b276e05 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateRedisConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateRedisConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateRestIcebergCatalogDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateRestIcebergCatalogDetails.java index 5b583b010c3..8d310de75c8 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateRestIcebergCatalogDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateRestIcebergCatalogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateSnowflakeConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateSnowflakeConnectionDetails.java index 2fc6a12ca91..3cb514dc95c 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateSnowflakeConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateSnowflakeConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateZeroEtlPipelineDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateZeroEtlPipelineDetails.java index 80525bab98e..2c8f280b45b 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateZeroEtlPipelineDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CreateZeroEtlPipelineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CredentialStore.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CredentialStore.java index c3c848ccbce..bbb03ecd8c3 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CredentialStore.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/CredentialStore.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DatabaseRegistration.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DatabaseRegistration.java index 558a8c894de..9379a99be46 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DatabaseRegistration.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DatabaseRegistration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DatabaseRegistrationCollection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DatabaseRegistrationCollection.java index b5dea6ab537..45f08866492 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DatabaseRegistrationCollection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DatabaseRegistrationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DatabaseRegistrationSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DatabaseRegistrationSummary.java index bdcac878141..8bc130c778e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DatabaseRegistrationSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DatabaseRegistrationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DatabricksConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DatabricksConnection.java index 3a0bebe41db..ebe0a16d815 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DatabricksConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DatabricksConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DatabricksConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DatabricksConnectionSummary.java index 483e3a8a673..c68a936238f 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DatabricksConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DatabricksConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Day.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Day.java index 0481eea4008..853d31ebef5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Day.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Day.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Db2Connection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Db2Connection.java index b9087edeb88..7a53cda5648 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Db2Connection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Db2Connection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Db2ConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Db2ConnectionSummary.java index cda512361cd..1cbb5b26e65 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Db2ConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Db2ConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultCancelDeploymentBackupDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultCancelDeploymentBackupDetails.java index ccdcd0b811d..f6cb2818e85 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultCancelDeploymentBackupDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultCancelDeploymentBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultCancelDeploymentUpgradeDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultCancelDeploymentUpgradeDetails.java index bf967846346..7c943af681c 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultCancelDeploymentUpgradeDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultCancelDeploymentUpgradeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultCancelSnoozeDeploymentUpgradeDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultCancelSnoozeDeploymentUpgradeDetails.java index a2a45783261..eb4de66043e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultCancelSnoozeDeploymentUpgradeDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultCancelSnoozeDeploymentUpgradeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultDeploymentWalletExistsDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultDeploymentWalletExistsDetails.java index 577dab40306..58f7bdeaa12 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultDeploymentWalletExistsDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultDeploymentWalletExistsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultPausePipelineDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultPausePipelineDetails.java index cfadef4a204..ecccd20824f 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultPausePipelineDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultPausePipelineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultRefreshConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultRefreshConnectionDetails.java index 5751b1ca766..f2250520577 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultRefreshConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultRefreshConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultRestoreDeploymentDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultRestoreDeploymentDetails.java index 959ad5e8169..591ba91f719 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultRestoreDeploymentDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultRestoreDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultRollbackDeploymentUpgradeDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultRollbackDeploymentUpgradeDetails.java index eb53d454691..b3a3cd73833 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultRollbackDeploymentUpgradeDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultRollbackDeploymentUpgradeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultSnoozeDeploymentUpgradeDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultSnoozeDeploymentUpgradeDetails.java index cb4d2679389..913fba38cfd 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultSnoozeDeploymentUpgradeDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultSnoozeDeploymentUpgradeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultStartDeploymentDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultStartDeploymentDetails.java index 347cdaefc26..209bda61f70 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultStartDeploymentDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultStartDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultStartPipelineDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultStartPipelineDetails.java index aaa4acb2a4e..b30bca287ff 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultStartPipelineDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultStartPipelineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultStopDeploymentDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultStopDeploymentDetails.java index cf9ca8a483d..219f1b82cee 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultStopDeploymentDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultStopDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultStopPipelineDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultStopPipelineDetails.java index 9a0ad4d00e2..dbcd4fa76fc 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultStopPipelineDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultStopPipelineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultTestConnectionAssignmentDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultTestConnectionAssignmentDetails.java index ab91ba96313..c6d694e10b0 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultTestConnectionAssignmentDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultTestConnectionAssignmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultTestPipelineConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultTestPipelineConnectionDetails.java index 61ca3d7cc73..4963d31ddbf 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultTestPipelineConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultTestPipelineConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultUpgradeDeploymentUpgradeDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultUpgradeDeploymentUpgradeDetails.java index 60de59cfa0e..ae2dd9b7744 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultUpgradeDeploymentUpgradeDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DefaultUpgradeDeploymentUpgradeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Deployment.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Deployment.java index 24046051eaa..4436390a3ba 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Deployment.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Deployment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentBackup.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentBackup.java index 265eff5953e..70a41d2764c 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentBackup.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentBackup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentBackupCollection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentBackupCollection.java index b85c57e322e..219f1233207 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentBackupCollection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentBackupCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentBackupSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentBackupSummary.java index 50edc05e8cc..c28f0cede5b 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentBackupSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentBackupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentBackupType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentBackupType.java index cf2c0ecd4fa..c8ee545333e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentBackupType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentBackupType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentCategory.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentCategory.java index 24c9bdba374..17256810b70 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentCategory.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentCategory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentCollection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentCollection.java index 69d3b51f071..5dca0863e01 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentCollection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentDiagnosticData.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentDiagnosticData.java index 895131191aa..d38ecd357da 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentDiagnosticData.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentDiagnosticData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentDiagnosticState.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentDiagnosticState.java index e1bcc73a7d5..72c8bf4dd3c 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentDiagnosticState.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentDiagnosticState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentEnvironmentCollection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentEnvironmentCollection.java index a1b3b16f3be..3e89f21f3f0 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentEnvironmentCollection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentEnvironmentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentEnvironmentSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentEnvironmentSummary.java index 4e36fdc582d..fda2bb86358 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentEnvironmentSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentEnvironmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentMessageCollection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentMessageCollection.java index 532c0f3e4e1..88902a2b11d 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentMessageCollection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentMessageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentPeerCollection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentPeerCollection.java index 46bdd664393..91956b1783a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentPeerCollection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentPeerCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentPeerSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentPeerSummary.java index bb89e6897b5..f36dc6baf0d 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentPeerSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentPeerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentPeerType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentPeerType.java index e2db4c04a84..5d1b5b26b13 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentPeerType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentPeerType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentPlacementDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentPlacementDetails.java index fb93f7ff30b..294217ae7bc 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentPlacementDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentPlacementDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentPlacementInfo.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentPlacementInfo.java index 738257bd87d..d15d18293b8 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentPlacementInfo.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentPlacementInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentRole.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentRole.java index 036c136e7e9..1176821f903 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentRole.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentRole.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentSummary.java index 8c93c2d0154..e31023a2ed6 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentType.java index 0b765cfd6a8..3bb15b951b1 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentTypeCollection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentTypeCollection.java index 65f75784928..d97be7aed74 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentTypeCollection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentTypeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentTypeSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentTypeSummary.java index 196edd1a7ed..eb47c3b712d 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentTypeSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentTypeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentUpgrade.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentUpgrade.java index a5528d69084..3fcfb101644 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentUpgrade.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentUpgrade.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentUpgradeCollection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentUpgradeCollection.java index 69d7439b82e..cb005c6d855 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentUpgradeCollection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentUpgradeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentUpgradeLifecycleState.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentUpgradeLifecycleState.java index e09b1842430..7f9b528545b 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentUpgradeLifecycleState.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentUpgradeLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentUpgradeSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentUpgradeSummary.java index 9096e05744c..985c2bb3c46 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentUpgradeSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentUpgradeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentUpgradeType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentUpgradeType.java index db8697872d2..9b88ea4415a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentUpgradeType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentUpgradeType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentVersionCollection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentVersionCollection.java index ee336430241..1acacf1bb81 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentVersionCollection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentVersionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentVersionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentVersionSummary.java index 8c9b692128d..4ac45020bd3 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentVersionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletExistsDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletExistsDetails.java index 08149ef64e3..a4fe0629d18 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletExistsDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletExistsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletExistsResponseDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletExistsResponseDetails.java index 6f4d5feb018..e37d322952b 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletExistsResponseDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletExistsResponseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletOperationType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletOperationType.java index ea79693a200..719d059113f 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletOperationType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletOperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletStatus.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletStatus.java index f43835f7daa..94cf02a656b 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletStatus.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletsOperationCollection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletsOperationCollection.java index 10554326c33..cad4f03a95d 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletsOperationCollection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletsOperationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletsOperationSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletsOperationSummary.java index ee3d1816284..d5429218aed 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletsOperationSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/DeploymentWalletsOperationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ElasticsearchConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ElasticsearchConnection.java index 5746a39ddad..339d57d1206 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ElasticsearchConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ElasticsearchConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ElasticsearchConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ElasticsearchConnectionSummary.java index bd21ffc2b6d..223af90950e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ElasticsearchConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ElasticsearchConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/EnvironmentType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/EnvironmentType.java index e025c92fef0..60ba2fcfd23 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/EnvironmentType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/EnvironmentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ExportDeploymentWalletDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ExportDeploymentWalletDetails.java index 4ee114f8626..1f67952b152 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ExportDeploymentWalletDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ExportDeploymentWalletDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GenerateLibraryUrlDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GenerateLibraryUrlDetails.java index 505d5af80bf..3d5d3527dba 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GenerateLibraryUrlDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GenerateLibraryUrlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GenerateLogReaderComponentLibraryUrlDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GenerateLogReaderComponentLibraryUrlDetails.java index b5d40ec636d..100f6deff25 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GenerateLogReaderComponentLibraryUrlDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GenerateLogReaderComponentLibraryUrlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GenericConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GenericConnection.java index e2766697b5e..199595c8ce6 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GenericConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GenericConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GenericConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GenericConnectionSummary.java index 9300245f64a..37c2039f321 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GenericConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GenericConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GlueIcebergCatalog.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GlueIcebergCatalog.java index 686078bb41e..4b4012fbce3 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GlueIcebergCatalog.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GlueIcebergCatalog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GlueIcebergCatalogSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GlueIcebergCatalogSummary.java index 69cf24fc3a9..5495519e3b9 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GlueIcebergCatalogSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GlueIcebergCatalogSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoldenGateConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoldenGateConnection.java index 5969c266fd1..691629f3d42 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoldenGateConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoldenGateConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoldenGateConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoldenGateConnectionSummary.java index c0e194b07b1..3d74f553688 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoldenGateConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoldenGateConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleBigQueryConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleBigQueryConnection.java index 12f8af7de8a..6bd12b92f11 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleBigQueryConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleBigQueryConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleBigQueryConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleBigQueryConnectionSummary.java index ba9c0c95e5d..965a701f999 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleBigQueryConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleBigQueryConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleCloudStorageConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleCloudStorageConnection.java index a4401357f67..5f70fdc8f07 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleCloudStorageConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleCloudStorageConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleCloudStorageConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleCloudStorageConnectionSummary.java index f8491eb4161..29022b802ab 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleCloudStorageConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleCloudStorageConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleCloudStorageIcebergStorage.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleCloudStorageIcebergStorage.java index aff6a9cef52..c0517345c3f 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleCloudStorageIcebergStorage.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleCloudStorageIcebergStorage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleCloudStorageIcebergStorageSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleCloudStorageIcebergStorageSummary.java index cc45550b16d..ae799fb9eda 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleCloudStorageIcebergStorageSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GoogleCloudStorageIcebergStorageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GooglePubSubConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GooglePubSubConnection.java index ec2b385124e..4efedf370ca 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GooglePubSubConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GooglePubSubConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GooglePubSubConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GooglePubSubConnectionSummary.java index 8343bfbd993..71172423fc6 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GooglePubSubConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GooglePubSubConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GroupToRolesMappingDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GroupToRolesMappingDetails.java index bc5a9929d32..e4e27db918b 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GroupToRolesMappingDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/GroupToRolesMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/HadoopIcebergCatalog.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/HadoopIcebergCatalog.java index c0c00d6762d..7c5a1428f1a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/HadoopIcebergCatalog.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/HadoopIcebergCatalog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/HadoopIcebergCatalogSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/HadoopIcebergCatalogSummary.java index ac04746b67a..aae3e2fa4f2 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/HadoopIcebergCatalogSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/HadoopIcebergCatalogSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/HdfsConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/HdfsConnection.java index 2cc07eb848f..19a5b3545a3 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/HdfsConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/HdfsConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/HdfsConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/HdfsConnectionSummary.java index 53473045187..45817bd90b6 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/HdfsConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/HdfsConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergCatalog.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergCatalog.java index 1fa3865a98e..38d3a6cdb66 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergCatalog.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergCatalog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergCatalogSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergCatalogSummary.java index 4f9feb2574f..3012b1b2849 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergCatalogSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergCatalogSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergCatalogType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergCatalogType.java index 246bd497ca4..9f020d1be1c 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergCatalogType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergCatalogType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergConnection.java index 2da7f2d6818..9fc97568146 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergConnectionSummary.java index fc34c5e9db1..da4808e1d78 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergStorage.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergStorage.java index 75b97180da7..0dee870e020 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergStorage.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergStorage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergStorageSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergStorageSummary.java index dfe526d811b..ced2d7a0f96 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergStorageSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergStorageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergStorageType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergStorageType.java index fffbbed4f4a..b647f6ffc15 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergStorageType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IcebergStorageType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ImportDeploymentWalletDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ImportDeploymentWalletDetails.java index 3e9469de2b9..faf499e5f48 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ImportDeploymentWalletDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ImportDeploymentWalletDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IngressIpDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IngressIpDetails.java index 10359c585eb..a047b1d7552 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IngressIpDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/IngressIpDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/InitialDataLoad.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/InitialDataLoad.java index 38fead6f922..f11b0c1ca08 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/InitialDataLoad.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/InitialDataLoad.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/InitialLoadAction.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/InitialLoadAction.java index c5a5ebd7037..b3cd7015864 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/InitialLoadAction.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/InitialLoadAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/JavaMessageServiceConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/JavaMessageServiceConnection.java index e46337f4395..0042d534ab8 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/JavaMessageServiceConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/JavaMessageServiceConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/JavaMessageServiceConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/JavaMessageServiceConnectionSummary.java index 70590a0218b..91c81d8e853 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/JavaMessageServiceConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/JavaMessageServiceConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/KafkaBootstrapServer.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/KafkaBootstrapServer.java index 829da545f29..ac1896b42e9 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/KafkaBootstrapServer.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/KafkaBootstrapServer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/KafkaConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/KafkaConnection.java index 50339aecc27..cd063a64adc 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/KafkaConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/KafkaConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/KafkaConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/KafkaConnectionSummary.java index cc9c768aace..b15b52ef776 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/KafkaConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/KafkaConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/KafkaSchemaRegistryConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/KafkaSchemaRegistryConnection.java index 5a1ba05021f..65d56c4ffad 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/KafkaSchemaRegistryConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/KafkaSchemaRegistryConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/KafkaSchemaRegistryConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/KafkaSchemaRegistryConnectionSummary.java index 67547415fef..c6441b60e6a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/KafkaSchemaRegistryConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/KafkaSchemaRegistryConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/LibraryType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/LibraryType.java index 6c8da7531a5..ff8a9d03e8d 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/LibraryType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/LibraryType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/LibraryUrl.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/LibraryUrl.java index dbeab1bdb09..845527a3fc5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/LibraryUrl.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/LibraryUrl.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/LicenseModel.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/LicenseModel.java index f1f1f043aae..bf2e40337d5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/LicenseModel.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/LicenseModel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/LifecycleState.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/LifecycleState.java index 335eb4e444c..9ef0c455376 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/LifecycleState.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/LifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/LifecycleSubState.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/LifecycleSubState.java index 1c9ed1f7d7b..63a8d72fdd8 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/LifecycleSubState.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/LifecycleSubState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MaintenanceActionType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MaintenanceActionType.java index 9900c9207e9..33d7dbc45d7 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MaintenanceActionType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MaintenanceActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MaintenanceConfiguration.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MaintenanceConfiguration.java index 93bb42900fc..ded9e3031f8 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MaintenanceConfiguration.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MaintenanceConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MaintenanceWindow.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MaintenanceWindow.java index f0bfc2d2175..21bc1ec7848 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MaintenanceWindow.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MaintenanceWindow.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MappingRule.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MappingRule.java index 50d22d7e9cb..33e96eadfb0 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MappingRule.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MappingRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MappingType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MappingType.java index 487a96375e0..8c98d94a2bc 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MappingType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MappingType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MessageSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MessageSummary.java index 0b218076a43..8f1a2f13098 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MessageSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MessageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MicrosoftFabricConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MicrosoftFabricConnection.java index c848fa4da90..8b51e6a148f 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MicrosoftFabricConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MicrosoftFabricConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MicrosoftFabricConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MicrosoftFabricConnectionSummary.java index ce19113e1dd..4768c18abf4 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MicrosoftFabricConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MicrosoftFabricConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MicrosoftSqlserverConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MicrosoftSqlserverConnection.java index 65b8feb6479..9e6e580f494 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MicrosoftSqlserverConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MicrosoftSqlserverConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MicrosoftSqlserverConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MicrosoftSqlserverConnectionSummary.java index bd81179e6ae..fcd3950f1b0 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MicrosoftSqlserverConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MicrosoftSqlserverConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MongoDbConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MongoDbConnection.java index 98102126993..fe5fa8b786c 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MongoDbConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MongoDbConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MongoDbConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MongoDbConnectionSummary.java index 212b56719fb..7662ce9f577 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MongoDbConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MongoDbConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MysqlConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MysqlConnection.java index ac085ffc77a..6798e9707b3 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MysqlConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MysqlConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MysqlConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MysqlConnectionSummary.java index 3d95f3f707d..f693c652ecc 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MysqlConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/MysqlConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/NameValuePair.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/NameValuePair.java index 3074d9ca752..28b3c6bfed4 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/NameValuePair.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/NameValuePair.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/NessieIcebergCatalog.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/NessieIcebergCatalog.java index 9386b3c5304..1b7ea3f746b 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/NessieIcebergCatalog.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/NessieIcebergCatalog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/NessieIcebergCatalogSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/NessieIcebergCatalogSummary.java index 3db1f33caa7..48ac6a6126c 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/NessieIcebergCatalogSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/NessieIcebergCatalogSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OciObjectStorageConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OciObjectStorageConnection.java index 7361f055788..7f630b13fe5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OciObjectStorageConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OciObjectStorageConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OciObjectStorageConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OciObjectStorageConnectionSummary.java index c3245b5d4d8..0fa7a85680b 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OciObjectStorageConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OciObjectStorageConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OggDeployment.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OggDeployment.java index ead5163f7c0..9773d216cfb 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OggDeployment.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OggDeployment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OperationStatus.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OperationStatus.java index 1084d05f4de..b6925b93cc4 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OperationStatus.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OperationType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OperationType.java index dac14f535bc..8af5cbb4c2c 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OperationType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleAiDataPlatformConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleAiDataPlatformConnection.java index 4d81a216f49..c32af6e6637 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleAiDataPlatformConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleAiDataPlatformConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleAiDataPlatformConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleAiDataPlatformConnectionSummary.java index f8c55aed1a2..16a8345e5bd 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleAiDataPlatformConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleAiDataPlatformConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleConnection.java index 74734ab38fd..2083cee1738 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleConnectionSummary.java index 8176ed9dd85..e47ab3971ba 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleNosqlConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleNosqlConnection.java index 7614566110c..f0e7197e1d3 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleNosqlConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleNosqlConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleNosqlConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleNosqlConnectionSummary.java index 492af5dc8d2..3a21a8f34aa 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleNosqlConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/OracleNosqlConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PausePipelineDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PausePipelineDetails.java index 84907e9e9a5..dd1b0780a45 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PausePipelineDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PausePipelineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PausePipelineType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PausePipelineType.java index e1048427167..21c5ec571d0 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PausePipelineType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PausePipelineType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Pipeline.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Pipeline.java index a6a6ffb8635..eced1e29ba8 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Pipeline.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/Pipeline.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineCollection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineCollection.java index a3575c57027..6faefd56cfa 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineCollection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineDiagnosticData.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineDiagnosticData.java index d73ec1b69ca..2ecc8433cf9 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineDiagnosticData.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineDiagnosticData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineDiagnosticState.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineDiagnosticState.java index bc1897d49e2..e272ca2c352 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineDiagnosticState.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineDiagnosticState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineInitializationStep.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineInitializationStep.java index a96c2df6534..a815e88b306 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineInitializationStep.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineInitializationStep.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineInitializationSteps.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineInitializationSteps.java index 560ee966572..5eb870256ee 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineInitializationSteps.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineInitializationSteps.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineLifecycleSubState.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineLifecycleSubState.java index 61ab12d9b94..b1279438931 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineLifecycleSubState.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineLifecycleSubState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineRunningProcessCollection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineRunningProcessCollection.java index e1b433839b4..9c1437de440 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineRunningProcessCollection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineRunningProcessCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineRunningProcessSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineRunningProcessSummary.java index 8196c60410c..fb517f03eb6 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineRunningProcessSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineRunningProcessSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineSchemaCollection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineSchemaCollection.java index b5ab8ad406a..8234b48d110 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineSchemaCollection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineSchemaCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineSchemaSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineSchemaSummary.java index affd5c34093..73ce323ddf6 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineSchemaSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineSchemaSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineSchemaTableCollection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineSchemaTableCollection.java index e89e11216ad..8e21e2e8915 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineSchemaTableCollection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineSchemaTableCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineSchemaTableSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineSchemaTableSummary.java index 2aae7d06b98..fc3179237f5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineSchemaTableSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineSchemaTableSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineSummary.java index 416e17705ca..d038fb2cb1e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PipelineSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PolarisIcebergCatalog.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PolarisIcebergCatalog.java index c09e6d14f39..b4c2d6729d7 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PolarisIcebergCatalog.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PolarisIcebergCatalog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PolarisIcebergCatalogSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PolarisIcebergCatalogSummary.java index 284b90412ec..f24bcb6934d 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PolarisIcebergCatalogSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PolarisIcebergCatalogSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PostgresqlConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PostgresqlConnection.java index 23735e6b9fa..d42370a9f54 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PostgresqlConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PostgresqlConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PostgresqlConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PostgresqlConnectionSummary.java index 750b0a0aac7..74187aa234e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PostgresqlConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/PostgresqlConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ProcessOptions.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ProcessOptions.java index bafef799b1a..24876dcde51 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ProcessOptions.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ProcessOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ProcessStatusType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ProcessStatusType.java index 61322ed1b85..d7c1bf8c2e2 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ProcessStatusType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ProcessStatusType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ProcessType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ProcessType.java index c3799a92fa2..418adeabd02 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ProcessType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ProcessType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RecipeSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RecipeSummary.java index 2ebc86171f9..2ddfa5a9a4c 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RecipeSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RecipeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RecipeSummaryCollection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RecipeSummaryCollection.java index f2dbedbb9bf..3ed461833da 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RecipeSummaryCollection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RecipeSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RecipeType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RecipeType.java index 8eb0381d5cc..e6c9221d7e2 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RecipeType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RecipeType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RedisConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RedisConnection.java index 808b0b13ce6..e5a725f84c7 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RedisConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RedisConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RedisConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RedisConnectionSummary.java index 8df7c0e4c2b..41e09f17acb 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RedisConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RedisConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RefreshConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RefreshConnectionDetails.java index aceaa11825c..77eefa17433 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RefreshConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RefreshConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RefreshConnectionType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RefreshConnectionType.java index 683a4ef11e7..25cd1635d27 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RefreshConnectionType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RefreshConnectionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ReleaseType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ReleaseType.java index 805dbe15a9f..27f3d1dc1e7 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ReleaseType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ReleaseType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RemoveDeploymentLocalPeerDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RemoveDeploymentLocalPeerDetails.java index 68639315b9e..e69b9cc372e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RemoveDeploymentLocalPeerDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RemoveDeploymentLocalPeerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RemoveResourceLockDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RemoveResourceLockDetails.java index 9600d1541b9..ace76686e69 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RemoveResourceLockDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RemoveResourceLockDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ReplicateDdlErrorAction.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ReplicateDdlErrorAction.java index 520208fd393..e3362f37990 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ReplicateDdlErrorAction.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ReplicateDdlErrorAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ReplicateDmlErrorAction.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ReplicateDmlErrorAction.java index e2e19cce26d..115c0da255f 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ReplicateDmlErrorAction.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ReplicateDmlErrorAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ReplicateSchemaChange.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ReplicateSchemaChange.java index 059956275cd..38ba02281ed 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ReplicateSchemaChange.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ReplicateSchemaChange.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RescheduleDeploymentUpgradeDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RescheduleDeploymentUpgradeDetails.java index 0d74146c17b..a316ca7d855 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RescheduleDeploymentUpgradeDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RescheduleDeploymentUpgradeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RescheduleDeploymentUpgradeToDateDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RescheduleDeploymentUpgradeToDateDetails.java index 86a51b2e7e3..6222a3d031e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RescheduleDeploymentUpgradeToDateDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RescheduleDeploymentUpgradeToDateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RescheduleDeploymentUpgradeType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RescheduleDeploymentUpgradeType.java index 7d24ce7d5c6..c1b087debf8 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RescheduleDeploymentUpgradeType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RescheduleDeploymentUpgradeType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ResourceLock.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ResourceLock.java index f185becc95d..9b1af19a33d 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ResourceLock.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ResourceLock.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RestIcebergCatalog.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RestIcebergCatalog.java index 8abf21a1d6d..5b85677824a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RestIcebergCatalog.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RestIcebergCatalog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RestIcebergCatalogSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RestIcebergCatalogSummary.java index b945174a34a..468b89db51e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RestIcebergCatalogSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RestIcebergCatalogSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RestoreDeploymentDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RestoreDeploymentDetails.java index c4927aa5f65..4d431c784bc 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RestoreDeploymentDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RestoreDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RestoreDeploymentType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RestoreDeploymentType.java index c057469c142..44dbe1bb830 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RestoreDeploymentType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RestoreDeploymentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RollbackDeploymentUpgradeDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RollbackDeploymentUpgradeDetails.java index 502057ed77e..4a6097b897d 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RollbackDeploymentUpgradeDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RollbackDeploymentUpgradeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RollbackDeploymentUpgradeType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RollbackDeploymentUpgradeType.java index c614d137143..9034ffd6120 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RollbackDeploymentUpgradeType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RollbackDeploymentUpgradeType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RoutingMethod.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RoutingMethod.java index 25764af2cff..9693300d22c 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RoutingMethod.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/RoutingMethod.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SeverityType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SeverityType.java index c67ed8073bb..be53603a838 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SeverityType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SeverityType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SnoozeDeploymentUpgradeDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SnoozeDeploymentUpgradeDetails.java index e622d877623..a76a8f28926 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SnoozeDeploymentUpgradeDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SnoozeDeploymentUpgradeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SnoozeDeploymentUpgradeType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SnoozeDeploymentUpgradeType.java index 1c5ed3986c3..00b353cb20b 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SnoozeDeploymentUpgradeType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SnoozeDeploymentUpgradeType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SnowflakeConnection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SnowflakeConnection.java index aec4a392b7a..4da8f157056 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SnowflakeConnection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SnowflakeConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SnowflakeConnectionSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SnowflakeConnectionSummary.java index 5be302963bd..69e3687f1c6 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SnowflakeConnectionSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SnowflakeConnectionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SortOrder.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SortOrder.java index 639764a336e..6c00f5e9197 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SortOrder.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SourcePipelineConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SourcePipelineConnectionDetails.java index eb241a0d588..d8a606fe188 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SourcePipelineConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SourcePipelineConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StartDeploymentDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StartDeploymentDetails.java index 936deeb2e99..fe7d2580043 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StartDeploymentDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StartDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StartDeploymentType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StartDeploymentType.java index 034a428f46c..ba2f3fbcf3a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StartDeploymentType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StartDeploymentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StartPipelineDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StartPipelineDetails.java index 3d3422bec60..56a608b7689 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StartPipelineDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StartPipelineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StartPipelineType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StartPipelineType.java index ca863dd88dc..62b7f8bc1fe 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StartPipelineType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StartPipelineType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StepMessage.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StepMessage.java index 975decab4e1..3ee29bc2b03 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StepMessage.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StepMessage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StepStatusType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StepStatusType.java index b07564cf758..11dd0480203 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StepStatusType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StepStatusType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StopDeploymentDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StopDeploymentDetails.java index b5ed507980c..e370de68b80 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StopDeploymentDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StopDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StopDeploymentType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StopDeploymentType.java index 4bb016b8ac6..b57b1403984 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StopDeploymentType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StopDeploymentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StopPipelineDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StopPipelineDetails.java index cabf3eaa25c..e47b83f9c7d 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StopPipelineDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StopPipelineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StopPipelineType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StopPipelineType.java index e762baf3ac0..0bfc760bea7 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StopPipelineType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/StopPipelineType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SupportedCapabilities.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SupportedCapabilities.java index d604ae3e230..25da4863eb7 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SupportedCapabilities.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SupportedCapabilities.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SwitchoverDeploymentPeerDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SwitchoverDeploymentPeerDetails.java index 9bc3bb069ba..20503fbc4e0 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SwitchoverDeploymentPeerDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/SwitchoverDeploymentPeerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TargetPipelineConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TargetPipelineConnectionDetails.java index 4591758151d..7dd830f9add 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TargetPipelineConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TargetPipelineConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TechnologyType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TechnologyType.java index 2def08c2bc8..b6b80fd7730 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TechnologyType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TechnologyType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestConnectionAssignmentDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestConnectionAssignmentDetails.java index 91010ffdafc..54f64089be0 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestConnectionAssignmentDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestConnectionAssignmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestConnectionAssignmentError.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestConnectionAssignmentError.java index e16c2d6df5d..e7a269724b6 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestConnectionAssignmentError.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestConnectionAssignmentError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestConnectionAssignmentResult.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestConnectionAssignmentResult.java index f7490bdce71..05d60b80311 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestConnectionAssignmentResult.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestConnectionAssignmentResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestConnectionAssignmentType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestConnectionAssignmentType.java index 7a4bf8be9f2..1155b2535c0 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestConnectionAssignmentType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestConnectionAssignmentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestPipelineConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestPipelineConnectionDetails.java index a80e9c6931e..398e41ce1fc 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestPipelineConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestPipelineConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestPipelineConnectionError.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestPipelineConnectionError.java index 1899d4201de..401c82a8193 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestPipelineConnectionError.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestPipelineConnectionError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestPipelineConnectionResult.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestPipelineConnectionResult.java index 3c9dfa3efd5..d85c802f675 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestPipelineConnectionResult.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestPipelineConnectionResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestPipelineConnectionType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestPipelineConnectionType.java index cace9a4d4ac..dc96991dded 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestPipelineConnectionType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TestPipelineConnectionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TrailFileCollection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TrailFileCollection.java index f8514791f8b..ff73690a023 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TrailFileCollection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TrailFileCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TrailFileSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TrailFileSummary.java index c738d3fd896..5152a18927a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TrailFileSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TrailFileSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TrailSequenceCollection.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TrailSequenceCollection.java index 2b49b10a630..9b652be4e0b 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TrailSequenceCollection.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TrailSequenceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TrailSequenceSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TrailSequenceSummary.java index 6942d8138a4..dd4cb7692ad 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TrailSequenceSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/TrailSequenceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAmazonKinesisConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAmazonKinesisConnectionDetails.java index 4d0fe839f4d..d93992db7a5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAmazonKinesisConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAmazonKinesisConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAmazonRedshiftConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAmazonRedshiftConnectionDetails.java index 4e965dda156..7078de5b65a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAmazonRedshiftConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAmazonRedshiftConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAmazonS3ConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAmazonS3ConnectionDetails.java index 68d1804e323..d7310e72fcb 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAmazonS3ConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAmazonS3ConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAmazonS3IcebergStorageDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAmazonS3IcebergStorageDetails.java index 6ea5db6d2b2..5edb4e170f5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAmazonS3IcebergStorageDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAmazonS3IcebergStorageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAzureDataLakeStorageConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAzureDataLakeStorageConnectionDetails.java index 253f0fa13ad..0a8e5b4c281 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAzureDataLakeStorageConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAzureDataLakeStorageConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAzureDataLakeStorageIcebergStorageDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAzureDataLakeStorageIcebergStorageDetails.java index 73dd0de6d42..bd6116e5388 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAzureDataLakeStorageIcebergStorageDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAzureDataLakeStorageIcebergStorageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAzureSynapseConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAzureSynapseConnectionDetails.java index 86f8cb8c6ee..dbb6c6a89f0 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAzureSynapseConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateAzureSynapseConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateBackupScheduleDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateBackupScheduleDetails.java index b9f7a239a03..7451b22a3be 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateBackupScheduleDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateBackupScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateConnectionDetails.java index 46cae7e7b8c..a1f5b435cca 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateDatabaseRegistrationDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateDatabaseRegistrationDetails.java index 36f3f6688ce..79582b97afe 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateDatabaseRegistrationDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateDatabaseRegistrationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateDatabricksConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateDatabricksConnectionDetails.java index 8c0a3c837ef..3668b2dfabb 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateDatabricksConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateDatabricksConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateDb2ConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateDb2ConnectionDetails.java index 728d5555a10..01a9a908e9f 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateDb2ConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateDb2ConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateDeploymentBackupDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateDeploymentBackupDetails.java index d39bf73a701..ad610bd6ac0 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateDeploymentBackupDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateDeploymentBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateDeploymentDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateDeploymentDetails.java index 11b6a0f8839..fe0d7a290bf 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateDeploymentDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateElasticsearchConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateElasticsearchConnectionDetails.java index b63d33faa6c..3e6f031e345 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateElasticsearchConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateElasticsearchConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGenericConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGenericConnectionDetails.java index 669225a7bb8..a01c135b2c7 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGenericConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGenericConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGlueIcebergCatalogDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGlueIcebergCatalogDetails.java index 5ac86991439..801f0e2cf54 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGlueIcebergCatalogDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGlueIcebergCatalogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGoldenGateConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGoldenGateConnectionDetails.java index 792b8ae8408..51bc7a0c806 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGoldenGateConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGoldenGateConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGoogleBigQueryConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGoogleBigQueryConnectionDetails.java index db5882c4f55..b5416ced3e5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGoogleBigQueryConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGoogleBigQueryConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGoogleCloudStorageConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGoogleCloudStorageConnectionDetails.java index 22e57499c10..341cb6bdbb6 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGoogleCloudStorageConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGoogleCloudStorageConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGoogleCloudStorageIcebergStorageDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGoogleCloudStorageIcebergStorageDetails.java index 6e0f87166de..d3092e856ca 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGoogleCloudStorageIcebergStorageDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGoogleCloudStorageIcebergStorageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGooglePubSubConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGooglePubSubConnectionDetails.java index dc181014e9d..127ebad8a96 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGooglePubSubConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGooglePubSubConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGroupToRolesMappingDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGroupToRolesMappingDetails.java index 42dd12f41a6..35718679e52 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGroupToRolesMappingDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateGroupToRolesMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateHadoopIcebergCatalogDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateHadoopIcebergCatalogDetails.java index 903c1b975ef..eb9fa96c718 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateHadoopIcebergCatalogDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateHadoopIcebergCatalogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateHdfsConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateHdfsConnectionDetails.java index 1b810005d36..602bb11d40e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateHdfsConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateHdfsConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateIcebergCatalogDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateIcebergCatalogDetails.java index 74c6d216d9a..b028abf5c4a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateIcebergCatalogDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateIcebergCatalogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateIcebergConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateIcebergConnectionDetails.java index 4b0c3ab0460..b8d5fab2ddb 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateIcebergConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateIcebergConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateIcebergStorageDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateIcebergStorageDetails.java index 8ec32adebfe..99922e99e72 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateIcebergStorageDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateIcebergStorageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateJavaMessageServiceConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateJavaMessageServiceConnectionDetails.java index 76ff3a6a598..7d4285f75b1 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateJavaMessageServiceConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateJavaMessageServiceConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateKafkaConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateKafkaConnectionDetails.java index b16ad3bcc65..ca903fac372 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateKafkaConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateKafkaConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateKafkaSchemaRegistryConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateKafkaSchemaRegistryConnectionDetails.java index 10fad55d468..17550a509e0 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateKafkaSchemaRegistryConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateKafkaSchemaRegistryConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMaintenanceConfigurationDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMaintenanceConfigurationDetails.java index e379f375fd1..116dc52953e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMaintenanceConfigurationDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMaintenanceConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMaintenanceWindowDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMaintenanceWindowDetails.java index f2712ba7908..25a5a8968cf 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMaintenanceWindowDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMaintenanceWindowDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMicrosoftFabricConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMicrosoftFabricConnectionDetails.java index cd39236a42c..c8916fe6410 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMicrosoftFabricConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMicrosoftFabricConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMicrosoftSqlserverConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMicrosoftSqlserverConnectionDetails.java index d9f881babaa..b2c76be18f9 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMicrosoftSqlserverConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMicrosoftSqlserverConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMongoDbConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMongoDbConnectionDetails.java index 776f7d8ada8..3a283549c32 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMongoDbConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMongoDbConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMysqlConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMysqlConnectionDetails.java index 3cc612b59a0..6c3ae0f68a0 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMysqlConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateMysqlConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateNessieIcebergCatalogDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateNessieIcebergCatalogDetails.java index 31e60a97071..c05cfbc13cd 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateNessieIcebergCatalogDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateNessieIcebergCatalogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateOciObjectStorageConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateOciObjectStorageConnectionDetails.java index 4569b5a0e68..f5c707cbfc9 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateOciObjectStorageConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateOciObjectStorageConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateOggDeploymentDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateOggDeploymentDetails.java index a1384c3b72f..e327f4f0f3f 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateOggDeploymentDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateOggDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateOracleAiDataPlatformConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateOracleAiDataPlatformConnectionDetails.java index b55f3aeff55..e43b6ad6d0e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateOracleAiDataPlatformConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateOracleAiDataPlatformConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateOracleConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateOracleConnectionDetails.java index cc239eced02..14b81bdd49a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateOracleConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateOracleConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateOracleNosqlConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateOracleNosqlConnectionDetails.java index ce515e77256..6abd2a4e765 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateOracleNosqlConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateOracleNosqlConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdatePipelineDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdatePipelineDetails.java index bbf89614642..52668a5acbb 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdatePipelineDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdatePipelineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdatePolarisIcebergCatalogDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdatePolarisIcebergCatalogDetails.java index b6cf328816f..bdf2fa27a3a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdatePolarisIcebergCatalogDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdatePolarisIcebergCatalogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdatePostgresqlConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdatePostgresqlConnectionDetails.java index d5a15521179..93e73376e61 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdatePostgresqlConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdatePostgresqlConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateRedisConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateRedisConnectionDetails.java index 907280db656..2431b3569c6 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateRedisConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateRedisConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateRestIcebergCatalogDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateRestIcebergCatalogDetails.java index d72b1f57e83..09affa853a0 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateRestIcebergCatalogDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateRestIcebergCatalogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateSnowflakeConnectionDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateSnowflakeConnectionDetails.java index 0a211f3c702..3377eb8ca5f 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateSnowflakeConnectionDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateSnowflakeConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateZeroEtlPipelineDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateZeroEtlPipelineDetails.java index 4e673ac7b87..1fb9e39225d 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateZeroEtlPipelineDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpdateZeroEtlPipelineDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentCurrentReleaseDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentCurrentReleaseDetails.java index b466c85fc3a..4856ce61a69 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentCurrentReleaseDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentCurrentReleaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentDetails.java index 60cd4a8530a..f3e2637ad30 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentSpecificReleaseDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentSpecificReleaseDetails.java index 671a192b06b..aa74c6c9e26 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentSpecificReleaseDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentSpecificReleaseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentType.java index edadfa6ff47..11f3e9ab4a5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentUpgradeDetails.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentUpgradeDetails.java index 9a50a421168..ae4388da42a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentUpgradeDetails.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentUpgradeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentUpgradeType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentUpgradeType.java index 3ca386a29fc..00e6a4f57c6 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentUpgradeType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/UpgradeDeploymentUpgradeType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/WalletExistsDeploymentType.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/WalletExistsDeploymentType.java index 48595a781cf..97869f5e839 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/WalletExistsDeploymentType.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/WalletExistsDeploymentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/WorkRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/WorkRequest.java index b30d557f0f1..0b9740fb76f 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/WorkRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/WorkRequestError.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/WorkRequestError.java index d9e894eed6f..b99069e4751 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/WorkRequestError.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/WorkRequestLogEntry.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/WorkRequestLogEntry.java index bb27a300f92..b872a348d2b 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/WorkRequestLogEntry.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/WorkRequestResource.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/WorkRequestResource.java index 60247bbc94b..aaba317d578 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/WorkRequestResource.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ZeroEtlPipeline.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ZeroEtlPipeline.java index 67d6d0f3b04..0bdb38a556a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ZeroEtlPipeline.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ZeroEtlPipeline.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ZeroEtlPipelineSummary.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ZeroEtlPipelineSummary.java index 91b16c48b9b..56c35fd14bf 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ZeroEtlPipelineSummary.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/model/ZeroEtlPipelineSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.model; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/AddConnectionLockRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/AddConnectionLockRequest.java index 7f9aa9cc592..131c2de2c3d 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/AddConnectionLockRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/AddConnectionLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/AddDeploymentBackupLockRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/AddDeploymentBackupLockRequest.java index 28f16f8bb41..7effda133f9 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/AddDeploymentBackupLockRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/AddDeploymentBackupLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/AddDeploymentLocalPeerRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/AddDeploymentLocalPeerRequest.java index 47923f2c6df..59374f8542b 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/AddDeploymentLocalPeerRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/AddDeploymentLocalPeerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/AddDeploymentLockRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/AddDeploymentLockRequest.java index a953b77379d..84e1fb8bfb7 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/AddDeploymentLockRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/AddDeploymentLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CancelDeploymentBackupRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CancelDeploymentBackupRequest.java index 37477e640f3..6dcd1d0b4a5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CancelDeploymentBackupRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CancelDeploymentBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CancelDeploymentUpgradeRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CancelDeploymentUpgradeRequest.java index 0d96fbee5e7..affa29b71c1 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CancelDeploymentUpgradeRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CancelDeploymentUpgradeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CancelSnoozeDeploymentUpgradeRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CancelSnoozeDeploymentUpgradeRequest.java index a53a7246c05..eb6a5fdb16e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CancelSnoozeDeploymentUpgradeRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CancelSnoozeDeploymentUpgradeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeConnectionCompartmentRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeConnectionCompartmentRequest.java index a856bccc285..525f656af8e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeConnectionCompartmentRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeConnectionCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeConnectionSubscriptionRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeConnectionSubscriptionRequest.java index fe8f25779eb..6cfa1791fe5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeConnectionSubscriptionRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeConnectionSubscriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeDatabaseRegistrationCompartmentRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeDatabaseRegistrationCompartmentRequest.java index b3a6e3c8e6d..ffca4975d9e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeDatabaseRegistrationCompartmentRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeDatabaseRegistrationCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeDeploymentBackupCompartmentRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeDeploymentBackupCompartmentRequest.java index 0a50c950a2c..5baaee535ef 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeDeploymentBackupCompartmentRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeDeploymentBackupCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeDeploymentCompartmentRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeDeploymentCompartmentRequest.java index f0af8c72d10..fe2cb0e67a4 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeDeploymentCompartmentRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeDeploymentCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeDeploymentSubscriptionRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeDeploymentSubscriptionRequest.java index 0f900f8da0b..a5f6896ba8d 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeDeploymentSubscriptionRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangeDeploymentSubscriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangePipelineCompartmentRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangePipelineCompartmentRequest.java index d1993e1653c..15a8514f8c7 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangePipelineCompartmentRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ChangePipelineCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CollectDeploymentDiagnosticRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CollectDeploymentDiagnosticRequest.java index 4ae0ed0221e..21bf37e24dc 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CollectDeploymentDiagnosticRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CollectDeploymentDiagnosticRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CollectPipelineDiagnosticRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CollectPipelineDiagnosticRequest.java index e6d6411c233..c914811776e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CollectPipelineDiagnosticRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CollectPipelineDiagnosticRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CopyDeploymentBackupRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CopyDeploymentBackupRequest.java index f697cba16bd..77febbb7874 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CopyDeploymentBackupRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CopyDeploymentBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateCertificateRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateCertificateRequest.java index 7aa80d8ee76..93b1956847f 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateCertificateRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateCertificateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateConnectionAssignmentRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateConnectionAssignmentRequest.java index 6036de53d87..4999a5f3eb4 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateConnectionAssignmentRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateConnectionAssignmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateConnectionRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateConnectionRequest.java index eba31e0b9f0..eaa8b18f5c3 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateConnectionRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateDatabaseRegistrationRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateDatabaseRegistrationRequest.java index 0a7b6149108..6044966eae0 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateDatabaseRegistrationRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateDatabaseRegistrationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateDeploymentBackupRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateDeploymentBackupRequest.java index 91d21484217..958dfa36923 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateDeploymentBackupRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateDeploymentBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateDeploymentRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateDeploymentRequest.java index 81b22319825..0234789c1d4 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateDeploymentRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreateDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreatePipelineRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreatePipelineRequest.java index f23760473a9..575351cab6b 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreatePipelineRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/CreatePipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteCertificateRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteCertificateRequest.java index f3ed8efa70f..96a5b4f7cbb 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteCertificateRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteCertificateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteConnectionAssignmentRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteConnectionAssignmentRequest.java index 402961326e1..39b20c663d1 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteConnectionAssignmentRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteConnectionAssignmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteConnectionRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteConnectionRequest.java index 3813b360739..4acdae21b7f 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteConnectionRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteDatabaseRegistrationRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteDatabaseRegistrationRequest.java index 0d05f038f75..a55ab729ff1 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteDatabaseRegistrationRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteDatabaseRegistrationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteDeploymentBackupRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteDeploymentBackupRequest.java index 593875b8fc2..5bb69662dff 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteDeploymentBackupRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteDeploymentBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteDeploymentRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteDeploymentRequest.java index f348af8b585..ceaef691bad 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteDeploymentRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeleteDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeletePipelineRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeletePipelineRequest.java index 77b174e52b5..f87aa264bcc 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeletePipelineRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeletePipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeploymentWalletExistsRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeploymentWalletExistsRequest.java index 365affde8b6..c423836aa3c 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeploymentWalletExistsRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/DeploymentWalletExistsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ExportDeploymentWalletRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ExportDeploymentWalletRequest.java index 5fb4658f7f5..f5d9c5dc764 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ExportDeploymentWalletRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ExportDeploymentWalletRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GenerateLibraryUrlRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GenerateLibraryUrlRequest.java index 8ebfbaf6e66..87341536c50 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GenerateLibraryUrlRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GenerateLibraryUrlRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetCertificateRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetCertificateRequest.java index 4376323e188..6db018299ab 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetCertificateRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetCertificateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetConnectionAssignmentRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetConnectionAssignmentRequest.java index 1d988effb08..eaf68d313ea 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetConnectionAssignmentRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetConnectionAssignmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetConnectionRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetConnectionRequest.java index 46e1473d9c1..98da94a875c 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetConnectionRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetDatabaseRegistrationRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetDatabaseRegistrationRequest.java index fe825206451..0b1541b9aa2 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetDatabaseRegistrationRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetDatabaseRegistrationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetDeploymentBackupRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetDeploymentBackupRequest.java index 4e7ad687597..73f25e2d9b4 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetDeploymentBackupRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetDeploymentBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetDeploymentRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetDeploymentRequest.java index 53d64a88c18..ac8bab7cd90 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetDeploymentRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetDeploymentUpgradeRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetDeploymentUpgradeRequest.java index bac37321b74..20962147088 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetDeploymentUpgradeRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetDeploymentUpgradeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetPipelineRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetPipelineRequest.java index cdcd8084c4a..6abb930e8c4 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetPipelineRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetPipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetWorkRequestRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetWorkRequestRequest.java index 90720a72c5a..677c0e6e275 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetWorkRequestRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ImportDeploymentWalletRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ImportDeploymentWalletRequest.java index 26b7a03fb24..79519ff8c00 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ImportDeploymentWalletRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ImportDeploymentWalletRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListCertificatesRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListCertificatesRequest.java index 6db8cc33c08..9dbf5d2ec70 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListCertificatesRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListCertificatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListConnectionAssignmentsRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListConnectionAssignmentsRequest.java index de6f929192d..f2c03e744a5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListConnectionAssignmentsRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListConnectionAssignmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListConnectionsRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListConnectionsRequest.java index fd0b7b5ac3e..b43fe2844e9 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListConnectionsRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListConnectionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDatabaseRegistrationsRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDatabaseRegistrationsRequest.java index 887ddccd5f3..db501ed6cfe 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDatabaseRegistrationsRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDatabaseRegistrationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentBackupsRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentBackupsRequest.java index ef33abbca15..a79045f27e3 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentBackupsRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentBackupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentEnvironmentsRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentEnvironmentsRequest.java index 22545120db9..948bf5df605 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentEnvironmentsRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentEnvironmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentPeersRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentPeersRequest.java index 4b52c3476dc..211ff68b960 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentPeersRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentPeersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentTypesRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentTypesRequest.java index 4432f03ccd3..37aa98230ad 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentTypesRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentUpgradesRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentUpgradesRequest.java index 7f861b02218..29a707bd4d5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentUpgradesRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentUpgradesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentVersionsRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentVersionsRequest.java index cfd95c8a2a5..8d1791fd293 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentVersionsRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentWalletsOperationsRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentWalletsOperationsRequest.java index ad8413fe749..9c71fe24268 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentWalletsOperationsRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentWalletsOperationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentsRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentsRequest.java index 8b36d908dd4..6597f4d5465 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentsRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListDeploymentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListMessagesRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListMessagesRequest.java index 75e43de8ae9..94189dc6f02 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListMessagesRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListMessagesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListPipelineInitializationStepsRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListPipelineInitializationStepsRequest.java index 58e249e7a2a..2b37d00aabd 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListPipelineInitializationStepsRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListPipelineInitializationStepsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListPipelineRunningProcessesRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListPipelineRunningProcessesRequest.java index 99fe481ca5d..8a8ad28cb19 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListPipelineRunningProcessesRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListPipelineRunningProcessesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListPipelineSchemaTablesRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListPipelineSchemaTablesRequest.java index 40355a3477f..cc6666ca0b8 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListPipelineSchemaTablesRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListPipelineSchemaTablesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListPipelineSchemasRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListPipelineSchemasRequest.java index e75aaa419ae..62c44e4727f 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListPipelineSchemasRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListPipelineSchemasRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListPipelinesRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListPipelinesRequest.java index a3b70a3a159..84c79aa1119 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListPipelinesRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListPipelinesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListRecipesRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListRecipesRequest.java index 9d8706d82e5..d05ef04cba9 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListRecipesRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListRecipesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListTrailFilesRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListTrailFilesRequest.java index a7b8fb6ebef..647dfc2b32a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListTrailFilesRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListTrailFilesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListTrailSequencesRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListTrailSequencesRequest.java index 47bc1a47b98..772872b1dcb 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListTrailSequencesRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListTrailSequencesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListWorkRequestErrorsRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListWorkRequestErrorsRequest.java index c48ce1118ad..16c330dc3b5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListWorkRequestLogsRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListWorkRequestLogsRequest.java index 8d639c57b18..3facd8d39f4 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListWorkRequestLogsRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListWorkRequestsRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListWorkRequestsRequest.java index a76522e5c74..2e028f78adc 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListWorkRequestsRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/PausePipelineRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/PausePipelineRequest.java index de733cc984c..db5897a4ad8 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/PausePipelineRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/PausePipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RefreshConnectionRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RefreshConnectionRequest.java index 2146c22e274..aa360acf884 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RefreshConnectionRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RefreshConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RemoveConnectionLockRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RemoveConnectionLockRequest.java index 7e168e78e86..d6f1f3c3eba 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RemoveConnectionLockRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RemoveConnectionLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RemoveDeploymentBackupLockRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RemoveDeploymentBackupLockRequest.java index bfd2e2e0c4d..fa95543ea67 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RemoveDeploymentBackupLockRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RemoveDeploymentBackupLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RemoveDeploymentLocalPeerRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RemoveDeploymentLocalPeerRequest.java index ccbfa706e03..5733fb1ecce 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RemoveDeploymentLocalPeerRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RemoveDeploymentLocalPeerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RemoveDeploymentLockRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RemoveDeploymentLockRequest.java index dad585558f3..c870a6689ba 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RemoveDeploymentLockRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RemoveDeploymentLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RescheduleDeploymentUpgradeRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RescheduleDeploymentUpgradeRequest.java index 971e82a2597..98cf0553955 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RescheduleDeploymentUpgradeRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RescheduleDeploymentUpgradeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RestoreDeploymentRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RestoreDeploymentRequest.java index 5302a7778ff..97083f9ddac 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RestoreDeploymentRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RestoreDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RollbackDeploymentUpgradeRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RollbackDeploymentUpgradeRequest.java index 1e37b5cd65c..d596c037e5c 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RollbackDeploymentUpgradeRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/RollbackDeploymentUpgradeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/SnoozeDeploymentUpgradeRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/SnoozeDeploymentUpgradeRequest.java index a45e76e9776..85bbc8991ad 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/SnoozeDeploymentUpgradeRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/SnoozeDeploymentUpgradeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/StartDeploymentRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/StartDeploymentRequest.java index 426c9c07f5e..c9fcda3b036 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/StartDeploymentRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/StartDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/StartPipelineRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/StartPipelineRequest.java index 6d7e9eabebf..29d682ae647 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/StartPipelineRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/StartPipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/StopDeploymentRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/StopDeploymentRequest.java index dde97b2bb67..152b91b0c64 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/StopDeploymentRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/StopDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/StopPipelineRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/StopPipelineRequest.java index d16238afd3c..da23ee9c819 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/StopPipelineRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/StopPipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/SwitchoverDeploymentPeerRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/SwitchoverDeploymentPeerRequest.java index c7795cfa4d3..44710da0da8 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/SwitchoverDeploymentPeerRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/SwitchoverDeploymentPeerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/TestConnectionAssignmentRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/TestConnectionAssignmentRequest.java index 22a9d81450e..a08846538ae 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/TestConnectionAssignmentRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/TestConnectionAssignmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/TestPipelineConnectionRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/TestPipelineConnectionRequest.java index 3513d67188d..e2431714af5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/TestPipelineConnectionRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/TestPipelineConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpdateConnectionRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpdateConnectionRequest.java index 2de0612b7ca..a41015cb992 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpdateConnectionRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpdateConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpdateDatabaseRegistrationRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpdateDatabaseRegistrationRequest.java index 838afffcde4..48fe90c7886 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpdateDatabaseRegistrationRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpdateDatabaseRegistrationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpdateDeploymentBackupRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpdateDeploymentBackupRequest.java index af7a3def921..7233df7c39e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpdateDeploymentBackupRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpdateDeploymentBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpdateDeploymentRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpdateDeploymentRequest.java index 26bc053920c..31347b3c520 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpdateDeploymentRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpdateDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpdatePipelineRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpdatePipelineRequest.java index b33b74289d2..d372302a64d 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpdatePipelineRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpdatePipelineRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpgradeDeploymentRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpgradeDeploymentRequest.java index 7fb62d2a810..ba41fb0b340 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpgradeDeploymentRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpgradeDeploymentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpgradeDeploymentUpgradeRequest.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpgradeDeploymentUpgradeRequest.java index 3483b76c88b..d1259dbf075 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpgradeDeploymentUpgradeRequest.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/requests/UpgradeDeploymentUpgradeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.requests; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/AddConnectionLockResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/AddConnectionLockResponse.java index 7631db26dc8..27d9277796e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/AddConnectionLockResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/AddConnectionLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/AddDeploymentBackupLockResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/AddDeploymentBackupLockResponse.java index ebad60e12d3..33c2670c4f6 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/AddDeploymentBackupLockResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/AddDeploymentBackupLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/AddDeploymentLocalPeerResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/AddDeploymentLocalPeerResponse.java index 907235084d4..5c3898f5c10 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/AddDeploymentLocalPeerResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/AddDeploymentLocalPeerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/AddDeploymentLockResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/AddDeploymentLockResponse.java index 6e702350ef6..c3ef491d210 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/AddDeploymentLockResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/AddDeploymentLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CancelDeploymentBackupResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CancelDeploymentBackupResponse.java index 0463f58ef52..c1a6c5127cb 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CancelDeploymentBackupResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CancelDeploymentBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CancelDeploymentUpgradeResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CancelDeploymentUpgradeResponse.java index 085b40a1968..a54795dc49c 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CancelDeploymentUpgradeResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CancelDeploymentUpgradeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CancelSnoozeDeploymentUpgradeResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CancelSnoozeDeploymentUpgradeResponse.java index b8f23076b0e..fddf6678817 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CancelSnoozeDeploymentUpgradeResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CancelSnoozeDeploymentUpgradeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeConnectionCompartmentResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeConnectionCompartmentResponse.java index 77246a57c0c..b30e921effe 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeConnectionCompartmentResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeConnectionCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeConnectionSubscriptionResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeConnectionSubscriptionResponse.java index 96b041a43cb..48591daf625 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeConnectionSubscriptionResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeConnectionSubscriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeDatabaseRegistrationCompartmentResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeDatabaseRegistrationCompartmentResponse.java index 04fc3176ab8..60abf915eea 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeDatabaseRegistrationCompartmentResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeDatabaseRegistrationCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeDeploymentBackupCompartmentResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeDeploymentBackupCompartmentResponse.java index 2f5f15539c5..f1a4d80f3cf 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeDeploymentBackupCompartmentResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeDeploymentBackupCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeDeploymentCompartmentResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeDeploymentCompartmentResponse.java index ca91a0f4ad6..971c6499fed 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeDeploymentCompartmentResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeDeploymentCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeDeploymentSubscriptionResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeDeploymentSubscriptionResponse.java index 02cfb49ceab..34a90ad986e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeDeploymentSubscriptionResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangeDeploymentSubscriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangePipelineCompartmentResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangePipelineCompartmentResponse.java index cfd17e0c5da..0ace3170ee6 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangePipelineCompartmentResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ChangePipelineCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CollectDeploymentDiagnosticResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CollectDeploymentDiagnosticResponse.java index 51b80fd4717..b83ab102e56 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CollectDeploymentDiagnosticResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CollectDeploymentDiagnosticResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CollectPipelineDiagnosticResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CollectPipelineDiagnosticResponse.java index 6f51e3889e5..8a4b657756b 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CollectPipelineDiagnosticResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CollectPipelineDiagnosticResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CopyDeploymentBackupResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CopyDeploymentBackupResponse.java index a1b258982fa..ec7504fb221 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CopyDeploymentBackupResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CopyDeploymentBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateCertificateResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateCertificateResponse.java index be3c9203f8b..924f299e6ea 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateCertificateResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateCertificateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateConnectionAssignmentResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateConnectionAssignmentResponse.java index f3420ce082b..b700b007c43 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateConnectionAssignmentResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateConnectionAssignmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateConnectionResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateConnectionResponse.java index ab3743c9a17..7b47dbe7661 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateConnectionResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateDatabaseRegistrationResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateDatabaseRegistrationResponse.java index e0d84af5f43..cb14f1b712e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateDatabaseRegistrationResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateDatabaseRegistrationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateDeploymentBackupResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateDeploymentBackupResponse.java index bbab8e978e5..748317d4d12 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateDeploymentBackupResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateDeploymentBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateDeploymentResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateDeploymentResponse.java index 0ce756a7618..91509f84c27 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateDeploymentResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreateDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreatePipelineResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreatePipelineResponse.java index fe71472fe14..86c0c6b60e9 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreatePipelineResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/CreatePipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteCertificateResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteCertificateResponse.java index 657aad50d7e..59f14bcaa1e 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteCertificateResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteCertificateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteConnectionAssignmentResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteConnectionAssignmentResponse.java index 51c38955cd8..df0d763f40a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteConnectionAssignmentResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteConnectionAssignmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteConnectionResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteConnectionResponse.java index eb5134305a4..6292abfc963 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteConnectionResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteDatabaseRegistrationResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteDatabaseRegistrationResponse.java index fa528a6a4c5..a6435fa0fa1 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteDatabaseRegistrationResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteDatabaseRegistrationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteDeploymentBackupResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteDeploymentBackupResponse.java index 5930730376f..c00f2f7d200 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteDeploymentBackupResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteDeploymentBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteDeploymentResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteDeploymentResponse.java index 4fd562b443b..5e8ab01f13b 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteDeploymentResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeleteDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeletePipelineResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeletePipelineResponse.java index 5fb1b3b5bfb..6230070cdd0 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeletePipelineResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeletePipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeploymentWalletExistsResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeploymentWalletExistsResponse.java index 8002d86eddc..2381851060f 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeploymentWalletExistsResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/DeploymentWalletExistsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ExportDeploymentWalletResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ExportDeploymentWalletResponse.java index 98c67f654cc..99c007bc154 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ExportDeploymentWalletResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ExportDeploymentWalletResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GenerateLibraryUrlResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GenerateLibraryUrlResponse.java index ad7f90e1813..b43aa36a517 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GenerateLibraryUrlResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GenerateLibraryUrlResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetCertificateResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetCertificateResponse.java index 481beaacbc7..6bceb37f7b5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetCertificateResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetCertificateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetConnectionAssignmentResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetConnectionAssignmentResponse.java index 02db8f10960..08b62644b38 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetConnectionAssignmentResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetConnectionAssignmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetConnectionResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetConnectionResponse.java index ae3480c4c0d..9eb41ec8ca5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetConnectionResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetDatabaseRegistrationResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetDatabaseRegistrationResponse.java index d6dbc6d4e76..986c9c363aa 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetDatabaseRegistrationResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetDatabaseRegistrationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetDeploymentBackupResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetDeploymentBackupResponse.java index 575f45f964e..ee7516ec3d7 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetDeploymentBackupResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetDeploymentBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetDeploymentResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetDeploymentResponse.java index f1ce4b0cbb1..76fe46c0951 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetDeploymentResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetDeploymentUpgradeResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetDeploymentUpgradeResponse.java index 0d2906a8daf..b0788f27b72 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetDeploymentUpgradeResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetDeploymentUpgradeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetPipelineResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetPipelineResponse.java index d4d1f65d5bd..6610b08480a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetPipelineResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetPipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetWorkRequestResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetWorkRequestResponse.java index f021e79efaa..472324c7755 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetWorkRequestResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ImportDeploymentWalletResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ImportDeploymentWalletResponse.java index fb821a903d3..12c31bad012 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ImportDeploymentWalletResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ImportDeploymentWalletResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListCertificatesResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListCertificatesResponse.java index 5b6cd7de63e..7a49e0adfc3 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListCertificatesResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListCertificatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListConnectionAssignmentsResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListConnectionAssignmentsResponse.java index 6e42ffd3f9d..d9ee7fb7be1 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListConnectionAssignmentsResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListConnectionAssignmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListConnectionsResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListConnectionsResponse.java index bff07d57848..dd89726a36f 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListConnectionsResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListConnectionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDatabaseRegistrationsResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDatabaseRegistrationsResponse.java index b730814ca7f..b8c2f728456 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDatabaseRegistrationsResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDatabaseRegistrationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentBackupsResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentBackupsResponse.java index 89a3a0b9a92..1887423a1fc 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentBackupsResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentBackupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentEnvironmentsResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentEnvironmentsResponse.java index b8f3895d734..5ae94ea4e69 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentEnvironmentsResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentEnvironmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentPeersResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentPeersResponse.java index 46fd6e67cd6..6ff490d1318 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentPeersResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentPeersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentTypesResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentTypesResponse.java index f1f650b12f7..a6d255f1f09 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentTypesResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentUpgradesResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentUpgradesResponse.java index 5565c2e2f7e..fa65f045466 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentUpgradesResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentUpgradesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentVersionsResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentVersionsResponse.java index 33ddb9f1528..65a5b7bccd4 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentVersionsResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentWalletsOperationsResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentWalletsOperationsResponse.java index 1a461d77159..750a2b141b1 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentWalletsOperationsResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentWalletsOperationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentsResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentsResponse.java index 23620a952cc..aa4864d67ad 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentsResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListDeploymentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListMessagesResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListMessagesResponse.java index 3c78e3ea149..f71cf49e657 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListMessagesResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListMessagesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListPipelineInitializationStepsResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListPipelineInitializationStepsResponse.java index e3ccb5b5dc5..77bef818875 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListPipelineInitializationStepsResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListPipelineInitializationStepsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListPipelineRunningProcessesResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListPipelineRunningProcessesResponse.java index 22345dec958..8e221169eb1 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListPipelineRunningProcessesResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListPipelineRunningProcessesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListPipelineSchemaTablesResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListPipelineSchemaTablesResponse.java index 24461311fad..5c25cabf3a2 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListPipelineSchemaTablesResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListPipelineSchemaTablesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListPipelineSchemasResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListPipelineSchemasResponse.java index 2dede82e343..5adbb3d56d3 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListPipelineSchemasResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListPipelineSchemasResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListPipelinesResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListPipelinesResponse.java index 463eaaa9910..235d48c8827 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListPipelinesResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListPipelinesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListRecipesResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListRecipesResponse.java index 3b342979c3b..1c27b44d980 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListRecipesResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListRecipesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListTrailFilesResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListTrailFilesResponse.java index cf3f36c310e..e01b2453ca1 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListTrailFilesResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListTrailFilesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListTrailSequencesResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListTrailSequencesResponse.java index f4a5f994a4f..53c2af04a93 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListTrailSequencesResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListTrailSequencesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListWorkRequestErrorsResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListWorkRequestErrorsResponse.java index 45f2aeb2571..03e1590ca84 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListWorkRequestLogsResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListWorkRequestLogsResponse.java index 0a2b4aee4ae..dae6d1b44de 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListWorkRequestLogsResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListWorkRequestsResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListWorkRequestsResponse.java index dd340669c13..8bd6ac5d3b9 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListWorkRequestsResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/PausePipelineResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/PausePipelineResponse.java index 8d03d78d3ba..7003aaa18e0 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/PausePipelineResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/PausePipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RefreshConnectionResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RefreshConnectionResponse.java index f615319c0bf..041fa544fb9 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RefreshConnectionResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RefreshConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RemoveConnectionLockResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RemoveConnectionLockResponse.java index a36cdb99b01..b62458a7ff1 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RemoveConnectionLockResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RemoveConnectionLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RemoveDeploymentBackupLockResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RemoveDeploymentBackupLockResponse.java index 4f253d4a846..98c2052d5af 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RemoveDeploymentBackupLockResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RemoveDeploymentBackupLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RemoveDeploymentLocalPeerResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RemoveDeploymentLocalPeerResponse.java index ee7e03f1649..bf41c1c465c 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RemoveDeploymentLocalPeerResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RemoveDeploymentLocalPeerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RemoveDeploymentLockResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RemoveDeploymentLockResponse.java index 643c5dca14b..eb28a410da7 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RemoveDeploymentLockResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RemoveDeploymentLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RescheduleDeploymentUpgradeResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RescheduleDeploymentUpgradeResponse.java index 013b661530a..d53bb48f0de 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RescheduleDeploymentUpgradeResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RescheduleDeploymentUpgradeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RestoreDeploymentResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RestoreDeploymentResponse.java index 1fe1123415c..91d6503f4bf 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RestoreDeploymentResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RestoreDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RollbackDeploymentUpgradeResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RollbackDeploymentUpgradeResponse.java index 35f29f6d231..e5f059cfe4d 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RollbackDeploymentUpgradeResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/RollbackDeploymentUpgradeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/SnoozeDeploymentUpgradeResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/SnoozeDeploymentUpgradeResponse.java index 82f6b129081..c3502d4ea5a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/SnoozeDeploymentUpgradeResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/SnoozeDeploymentUpgradeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/StartDeploymentResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/StartDeploymentResponse.java index a8cfd0e9c5e..28562e9bd04 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/StartDeploymentResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/StartDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/StartPipelineResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/StartPipelineResponse.java index f4012dd32cb..867f92c90f5 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/StartPipelineResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/StartPipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/StopDeploymentResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/StopDeploymentResponse.java index 174e7216f28..69fb2d51008 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/StopDeploymentResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/StopDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/StopPipelineResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/StopPipelineResponse.java index d9e9068fb83..c5ea3fd82c0 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/StopPipelineResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/StopPipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/SwitchoverDeploymentPeerResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/SwitchoverDeploymentPeerResponse.java index 4f05a394904..83234f730f6 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/SwitchoverDeploymentPeerResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/SwitchoverDeploymentPeerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/TestConnectionAssignmentResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/TestConnectionAssignmentResponse.java index 5ea3611e5ba..3ba1b128e29 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/TestConnectionAssignmentResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/TestConnectionAssignmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/TestPipelineConnectionResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/TestPipelineConnectionResponse.java index 81284020b90..39c238b66d6 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/TestPipelineConnectionResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/TestPipelineConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpdateConnectionResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpdateConnectionResponse.java index c7e6ec03306..ce75a1b36aa 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpdateConnectionResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpdateConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpdateDatabaseRegistrationResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpdateDatabaseRegistrationResponse.java index 4a6e8185421..0abff212912 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpdateDatabaseRegistrationResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpdateDatabaseRegistrationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpdateDeploymentBackupResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpdateDeploymentBackupResponse.java index 079f0eb9c8c..72cc55763d8 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpdateDeploymentBackupResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpdateDeploymentBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpdateDeploymentResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpdateDeploymentResponse.java index e946bf53f4a..cde334a900a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpdateDeploymentResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpdateDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpdatePipelineResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpdatePipelineResponse.java index 40af4011cc0..8b50d03af3a 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpdatePipelineResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpdatePipelineResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpgradeDeploymentResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpgradeDeploymentResponse.java index 0574e260cfd..ae6334b2b99 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpgradeDeploymentResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpgradeDeploymentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpgradeDeploymentUpgradeResponse.java b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpgradeDeploymentUpgradeResponse.java index 339c122a6f7..73439732af1 100644 --- a/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpgradeDeploymentUpgradeResponse.java +++ b/bmc-goldengate/src/main/java/com/oracle/bmc/goldengate/responses/UpgradeDeploymentUpgradeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.goldengate.responses; diff --git a/bmc-goldengate/src/main/resources/com/oracle/bmc/goldengate/client.properties b/bmc-goldengate/src/main/resources/com/oracle/bmc/goldengate/client.properties index 622eaf107f7..3ea8a19fa20 100644 --- a/bmc-goldengate/src/main/resources/com/oracle/bmc/goldengate/client.properties +++ b/bmc-goldengate/src/main/resources/com/oracle/bmc/goldengate/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-governancerulescontrolplane/pom.xml b/bmc-governancerulescontrolplane/pom.xml index fda8d118b92..1c6e7e0dc9d 100644 --- a/bmc-governancerulescontrolplane/pom.xml +++ b/bmc-governancerulescontrolplane/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-governancerulescontrolplane @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRule.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRule.java index f7974813c33..ddf4cffcd60 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRule.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRuleAsync.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRuleAsync.java index 65257febca3..3a3cfc5c97c 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRuleAsync.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRuleAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRuleAsyncClient.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRuleAsyncClient.java index c26bf2137f7..83e42769874 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRuleAsyncClient.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRuleAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRuleClient.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRuleClient.java index 2dad793c61b..9b29863b3d7 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRuleClient.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRuleClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRulePaginators.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRulePaginators.java index 870fbcbaed3..100b379b139 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRulePaginators.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRulePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRuleWaiters.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRuleWaiters.java index 532a09053fb..f050c146363 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRuleWaiters.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/GovernanceRuleWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequest.java index a1f6eebac7f..363f0d73373 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequestAsync.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequestAsync.java index 7b1df700c27..012aacc1eef 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequestAsync.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequestAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequestAsyncClient.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequestAsyncClient.java index a34b75894cc..17b85da05f9 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequestAsyncClient.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequestAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequestClient.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequestClient.java index d1b1813b0df..a44d819bd20 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequestClient.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequestClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequestPaginators.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequestPaginators.java index 3957e90b042..de9fcabd440 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequestPaginators.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequestPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequestWaiters.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequestWaiters.java index 36b89623a54..9305fdacca8 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequestWaiters.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/WorkRequestWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/ActionType.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/ActionType.java index 45e4e6ebd2e..eb6c54fb0d6 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/ActionType.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/AllowedRegionsTemplate.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/AllowedRegionsTemplate.java index 4c3f1025468..0eb59a015e1 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/AllowedRegionsTemplate.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/AllowedRegionsTemplate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/Association.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/Association.java index 50a1ca265e2..21d3b9dd9cb 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/Association.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/Association.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/BaseTagDefinitionValidator.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/BaseTagDefinitionValidator.java index b6bc3ba7eed..95a84310098 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/BaseTagDefinitionValidator.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/BaseTagDefinitionValidator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/CreateGovernanceRuleDetails.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/CreateGovernanceRuleDetails.java index 0e2ad100771..02baa8b1b7e 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/CreateGovernanceRuleDetails.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/CreateGovernanceRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/CreateInclusionCriterionDetails.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/CreateInclusionCriterionDetails.java index d81d51b1385..1324d808d0b 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/CreateInclusionCriterionDetails.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/CreateInclusionCriterionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/CreationOption.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/CreationOption.java index cd530b1c93e..065e57bc026 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/CreationOption.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/CreationOption.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/DefaultTagDefinitionValidator.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/DefaultTagDefinitionValidator.java index 36f9f65e6ab..145cefe9042 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/DefaultTagDefinitionValidator.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/DefaultTagDefinitionValidator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/EnforcedGovernanceRule.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/EnforcedGovernanceRule.java index a3d685256db..f15ac304771 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/EnforcedGovernanceRule.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/EnforcedGovernanceRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/EnforcedGovernanceRuleCollection.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/EnforcedGovernanceRuleCollection.java index bee27ce20be..4b48dc4711e 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/EnforcedGovernanceRuleCollection.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/EnforcedGovernanceRuleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/EnforcedGovernanceRuleSummary.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/EnforcedGovernanceRuleSummary.java index aed74745acb..32c95ee53ce 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/EnforcedGovernanceRuleSummary.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/EnforcedGovernanceRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/EnumTagDefinitionValidator.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/EnumTagDefinitionValidator.java index b36e0e0c553..004753e8573 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/EnumTagDefinitionValidator.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/EnumTagDefinitionValidator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/GovernanceRule.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/GovernanceRule.java index d5c97aa242a..96c23a2b37a 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/GovernanceRule.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/GovernanceRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/GovernanceRuleCollection.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/GovernanceRuleCollection.java index 4cc4f56e614..97283216645 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/GovernanceRuleCollection.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/GovernanceRuleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/GovernanceRuleLifecycleState.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/GovernanceRuleLifecycleState.java index c1df55117fa..757b79dc1cd 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/GovernanceRuleLifecycleState.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/GovernanceRuleLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/GovernanceRuleSummary.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/GovernanceRuleSummary.java index ddefd138875..0f2d0d5a890 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/GovernanceRuleSummary.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/GovernanceRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/GovernanceRuleType.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/GovernanceRuleType.java index dca0b811183..327461dd999 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/GovernanceRuleType.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/GovernanceRuleType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/InclusionCriterion.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/InclusionCriterion.java index c5355b9043a..1bc2d39bd75 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/InclusionCriterion.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/InclusionCriterion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/InclusionCriterionCollection.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/InclusionCriterionCollection.java index b169b282985..b341854be1c 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/InclusionCriterionCollection.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/InclusionCriterionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/InclusionCriterionSummary.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/InclusionCriterionSummary.java index f9748089e50..f6ee825b01c 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/InclusionCriterionSummary.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/InclusionCriterionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/OperationStatus.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/OperationStatus.java index 2ad33fc5e20..4c060617573 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/OperationStatus.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/OperationType.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/OperationType.java index 36f10da5bef..0cf82496fd8 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/OperationType.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/QuotaTemplate.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/QuotaTemplate.java index ce3e386c09d..c42fd8f2fad 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/QuotaTemplate.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/QuotaTemplate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/SortOrder.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/SortOrder.java index 0682ba9e8e7..5974c7f9bb0 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/SortOrder.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/Tag.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/Tag.java index 07b15c3ddc4..94c4a7ac20c 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/Tag.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/Tag.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TagDefault.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TagDefault.java index 97b862de54c..e0738455165 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TagDefault.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TagDefault.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TagTemplate.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TagTemplate.java index ad4086696dd..5e07a023603 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TagTemplate.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TagTemplate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/Template.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/Template.java index d80c4bfd7f4..46120a647c2 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/Template.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/Template.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TenancyAssociation.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TenancyAssociation.java index 4ba0ca675ac..a23eef0cc93 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TenancyAssociation.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TenancyAssociation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TenancyAttachment.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TenancyAttachment.java index bae90495452..ad2e69200f1 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TenancyAttachment.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TenancyAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TenancyAttachmentCollection.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TenancyAttachmentCollection.java index 69e9cc580cb..7eb2484fdb0 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TenancyAttachmentCollection.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TenancyAttachmentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TenancyAttachmentSummary.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TenancyAttachmentSummary.java index 799a5bba8b5..05dacb1f9a7 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TenancyAttachmentSummary.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/TenancyAttachmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/UpdateGovernanceRuleDetails.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/UpdateGovernanceRuleDetails.java index a64fab2dcd7..5d3bc2a05ad 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/UpdateGovernanceRuleDetails.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/UpdateGovernanceRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequest.java index 2e41309c83e..23c7616e2c4 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestError.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestError.java index aeaf8203694..01f742dd3fe 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestError.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestErrorCollection.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestErrorCollection.java index e55978c0bb0..96f13fe382b 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestErrorCollection.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestLogEntry.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestLogEntry.java index c6319491b9b..cba63f016e3 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestLogEntry.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestLogEntryCollection.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestLogEntryCollection.java index e869a34019f..1ad01dc667f 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestLogEntryCollection.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestResource.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestResource.java index f349ce6678c..45e3b4a6273 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestResource.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestResourceMetadataKey.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestResourceMetadataKey.java index 3d09ed41ecd..08c9a42b834 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestResourceMetadataKey.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestSummary.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestSummary.java index f33fc8245c2..80a5794da78 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestSummary.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestSummaryCollection.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestSummaryCollection.java index 577833b718d..1f3bac94079 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestSummaryCollection.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.model; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/CancelWorkRequestRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/CancelWorkRequestRequest.java index b13304a684e..9a9a9b79f4e 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/CancelWorkRequestRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.requests; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/CreateGovernanceRuleRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/CreateGovernanceRuleRequest.java index 09aee04b096..0033918d48f 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/CreateGovernanceRuleRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/CreateGovernanceRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.requests; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/CreateInclusionCriterionRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/CreateInclusionCriterionRequest.java index b66eb4baadc..93d82acb580 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/CreateInclusionCriterionRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/CreateInclusionCriterionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.requests; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/DeleteGovernanceRuleRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/DeleteGovernanceRuleRequest.java index 128df0abc33..20bc7b9048f 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/DeleteGovernanceRuleRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/DeleteGovernanceRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.requests; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/DeleteInclusionCriterionRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/DeleteInclusionCriterionRequest.java index 4394464abba..63e7b7ad987 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/DeleteInclusionCriterionRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/DeleteInclusionCriterionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.requests; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/GetEnforcedGovernanceRuleRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/GetEnforcedGovernanceRuleRequest.java index fcabfab7a0f..2978e92aaa3 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/GetEnforcedGovernanceRuleRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/GetEnforcedGovernanceRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.requests; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/GetGovernanceRuleRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/GetGovernanceRuleRequest.java index 1bffcaaeb17..14b99999958 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/GetGovernanceRuleRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/GetGovernanceRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.requests; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/GetInclusionCriterionRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/GetInclusionCriterionRequest.java index d56c6978bd7..1ff4d41170a 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/GetInclusionCriterionRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/GetInclusionCriterionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.requests; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/GetTenancyAttachmentRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/GetTenancyAttachmentRequest.java index 83a706c5d6b..ad010ed2da8 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/GetTenancyAttachmentRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/GetTenancyAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.requests; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/GetWorkRequestRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/GetWorkRequestRequest.java index ac70c5ca10c..9f95096017b 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/GetWorkRequestRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.requests; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListEnforcedGovernanceRulesRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListEnforcedGovernanceRulesRequest.java index fcded2831d7..033387d9af5 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListEnforcedGovernanceRulesRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListEnforcedGovernanceRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.requests; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListGovernanceRulesRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListGovernanceRulesRequest.java index fd9f0d5d13b..55ea6091345 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListGovernanceRulesRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListGovernanceRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.requests; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListInclusionCriteriaRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListInclusionCriteriaRequest.java index f258d3d02fa..bdd17144461 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListInclusionCriteriaRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListInclusionCriteriaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.requests; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListTenancyAttachmentsRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListTenancyAttachmentsRequest.java index a3a2f6c7e04..585dc458582 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListTenancyAttachmentsRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListTenancyAttachmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.requests; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListWorkRequestErrorsRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListWorkRequestErrorsRequest.java index 1fd3fde0251..f8d957543ec 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.requests; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListWorkRequestLogsRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListWorkRequestLogsRequest.java index e77a42344c5..25a435a56b4 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListWorkRequestLogsRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.requests; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListWorkRequestsRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListWorkRequestsRequest.java index 826f2c14288..23ebf8ed879 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListWorkRequestsRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.requests; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/RetryGovernanceRuleRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/RetryGovernanceRuleRequest.java index 401b47a9014..200c4aca4ba 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/RetryGovernanceRuleRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/RetryGovernanceRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.requests; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/RetryTenancyAttachmentRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/RetryTenancyAttachmentRequest.java index 7357d8aa2e1..5c7cdf1ef47 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/RetryTenancyAttachmentRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/RetryTenancyAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.requests; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/UpdateGovernanceRuleRequest.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/UpdateGovernanceRuleRequest.java index dc03b0be382..0795780bba0 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/UpdateGovernanceRuleRequest.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/requests/UpdateGovernanceRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.requests; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/CancelWorkRequestResponse.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/CancelWorkRequestResponse.java index 1936f75e7af..b1bcb019857 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/CancelWorkRequestResponse.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.responses; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/CreateGovernanceRuleResponse.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/CreateGovernanceRuleResponse.java index 657a5c7b6f7..1bde736c86f 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/CreateGovernanceRuleResponse.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/CreateGovernanceRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.responses; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/CreateInclusionCriterionResponse.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/CreateInclusionCriterionResponse.java index 44c17eb2cbb..b5792e67aa2 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/CreateInclusionCriterionResponse.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/CreateInclusionCriterionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.responses; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/DeleteGovernanceRuleResponse.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/DeleteGovernanceRuleResponse.java index cc00a8d29c8..aa5f54bac9f 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/DeleteGovernanceRuleResponse.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/DeleteGovernanceRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.responses; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/DeleteInclusionCriterionResponse.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/DeleteInclusionCriterionResponse.java index 16688c67b32..be148bcd606 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/DeleteInclusionCriterionResponse.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/DeleteInclusionCriterionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.responses; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/GetEnforcedGovernanceRuleResponse.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/GetEnforcedGovernanceRuleResponse.java index afd27866cc1..fad8a24f660 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/GetEnforcedGovernanceRuleResponse.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/GetEnforcedGovernanceRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.responses; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/GetGovernanceRuleResponse.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/GetGovernanceRuleResponse.java index f682717f67a..09923d89ba5 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/GetGovernanceRuleResponse.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/GetGovernanceRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.responses; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/GetInclusionCriterionResponse.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/GetInclusionCriterionResponse.java index bcfab661789..5a4b5d043ac 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/GetInclusionCriterionResponse.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/GetInclusionCriterionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.responses; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/GetTenancyAttachmentResponse.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/GetTenancyAttachmentResponse.java index 4c64272a0b1..72f620eec60 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/GetTenancyAttachmentResponse.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/GetTenancyAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.responses; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/GetWorkRequestResponse.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/GetWorkRequestResponse.java index 647f3b06527..0baa7abf576 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/GetWorkRequestResponse.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.responses; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListEnforcedGovernanceRulesResponse.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListEnforcedGovernanceRulesResponse.java index 929a693e28d..c7fea3e39d1 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListEnforcedGovernanceRulesResponse.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListEnforcedGovernanceRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.responses; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListGovernanceRulesResponse.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListGovernanceRulesResponse.java index cc79654d8ed..aa2efe1152e 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListGovernanceRulesResponse.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListGovernanceRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.responses; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListInclusionCriteriaResponse.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListInclusionCriteriaResponse.java index 5cb357b73e3..05016819028 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListInclusionCriteriaResponse.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListInclusionCriteriaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.responses; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListTenancyAttachmentsResponse.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListTenancyAttachmentsResponse.java index aeb700a09c4..81c2961847a 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListTenancyAttachmentsResponse.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListTenancyAttachmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.responses; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListWorkRequestErrorsResponse.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListWorkRequestErrorsResponse.java index 4077765bec8..563af1338aa 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.responses; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListWorkRequestLogsResponse.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListWorkRequestLogsResponse.java index a589b7cee51..bf038b99a6e 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListWorkRequestLogsResponse.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.responses; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListWorkRequestsResponse.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListWorkRequestsResponse.java index 715a1d2ec95..a53c31baf9c 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListWorkRequestsResponse.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.responses; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/RetryGovernanceRuleResponse.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/RetryGovernanceRuleResponse.java index c856a342327..bfbfaf18635 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/RetryGovernanceRuleResponse.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/RetryGovernanceRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.responses; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/RetryTenancyAttachmentResponse.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/RetryTenancyAttachmentResponse.java index 31d118db310..2dafe39b24b 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/RetryTenancyAttachmentResponse.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/RetryTenancyAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.responses; diff --git a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/UpdateGovernanceRuleResponse.java b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/UpdateGovernanceRuleResponse.java index 2f93615535d..a7da58ec016 100644 --- a/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/UpdateGovernanceRuleResponse.java +++ b/bmc-governancerulescontrolplane/src/main/java/com/oracle/bmc/governancerulescontrolplane/responses/UpdateGovernanceRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.governancerulescontrolplane.responses; diff --git a/bmc-governancerulescontrolplane/src/main/resources/com/oracle/bmc/governancerulescontrolplane/client.properties b/bmc-governancerulescontrolplane/src/main/resources/com/oracle/bmc/governancerulescontrolplane/client.properties index 2315c140cb4..f0d85653d10 100644 --- a/bmc-governancerulescontrolplane/src/main/resources/com/oracle/bmc/governancerulescontrolplane/client.properties +++ b/bmc-governancerulescontrolplane/src/main/resources/com/oracle/bmc/governancerulescontrolplane/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-healthchecks/pom.xml b/bmc-healthchecks/pom.xml index 9e5fa6ca0f0..8143431c076 100644 --- a/bmc-healthchecks/pom.xml +++ b/bmc-healthchecks/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-healthchecks @@ -16,7 +16,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/HealthChecks.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/HealthChecks.java index 5c7bbc8532e..ade7f88ce80 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/HealthChecks.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/HealthChecks.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/HealthChecksAsync.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/HealthChecksAsync.java index 8084e145d24..0302d1545c8 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/HealthChecksAsync.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/HealthChecksAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/HealthChecksAsyncClient.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/HealthChecksAsyncClient.java index 14ec3a24862..371f8a43796 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/HealthChecksAsyncClient.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/HealthChecksAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/HealthChecksClient.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/HealthChecksClient.java index 129e448a46a..f2de63b9a50 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/HealthChecksClient.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/HealthChecksClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/HealthChecksPaginators.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/HealthChecksPaginators.java index 14482a2784e..35d6aa13175 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/HealthChecksPaginators.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/HealthChecksPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/ChangeHttpMonitorCompartmentDetails.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/ChangeHttpMonitorCompartmentDetails.java index 0b6e5276d20..d680c0c3648 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/ChangeHttpMonitorCompartmentDetails.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/ChangeHttpMonitorCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/ChangePingMonitorCompartmentDetails.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/ChangePingMonitorCompartmentDetails.java index face5d27377..5dbb898f498 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/ChangePingMonitorCompartmentDetails.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/ChangePingMonitorCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/Connection.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/Connection.java index 701108d6265..76574954561 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/Connection.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/Connection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/CreateHttpMonitorDetails.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/CreateHttpMonitorDetails.java index c5b3dbe04af..d0a16548246 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/CreateHttpMonitorDetails.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/CreateHttpMonitorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/CreateOnDemandHttpProbeDetails.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/CreateOnDemandHttpProbeDetails.java index 55b8ffc1d94..81f2d54a52a 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/CreateOnDemandHttpProbeDetails.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/CreateOnDemandHttpProbeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/CreateOnDemandPingProbeDetails.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/CreateOnDemandPingProbeDetails.java index 3a216c809f1..2f9ae1a496a 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/CreateOnDemandPingProbeDetails.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/CreateOnDemandPingProbeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/CreatePingMonitorDetails.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/CreatePingMonitorDetails.java index 129574b7bfe..661b74bec0e 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/CreatePingMonitorDetails.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/CreatePingMonitorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/DNS.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/DNS.java index 74b7d9a5315..fb8d9548a86 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/DNS.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/DNS.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/Geolocation.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/Geolocation.java index 665c7964243..45ec9b705c9 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/Geolocation.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/Geolocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HealthChecksVantagePointSummary.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HealthChecksVantagePointSummary.java index 88f01b9fe8e..660375382ca 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HealthChecksVantagePointSummary.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HealthChecksVantagePointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpMonitor.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpMonitor.java index 4476faac875..a5191adedde 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpMonitor.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpMonitor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpMonitorSummary.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpMonitorSummary.java index 4825fcfd425..f58aca069b9 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpMonitorSummary.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpMonitorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpProbe.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpProbe.java index 21b7c74124f..8c65530a431 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpProbe.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpProbe.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpProbeMethod.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpProbeMethod.java index 7c5fd15514e..c5ffe40236e 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpProbeMethod.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpProbeMethod.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpProbeProtocol.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpProbeProtocol.java index 32fd1103c68..9255ea19997 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpProbeProtocol.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpProbeProtocol.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpProbeResultSummary.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpProbeResultSummary.java index c9e0cbade8e..373edca1b87 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpProbeResultSummary.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/HttpProbeResultSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/PingMonitor.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/PingMonitor.java index d6b3a2ad36f..4e52ef66ac0 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/PingMonitor.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/PingMonitor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/PingMonitorSummary.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/PingMonitorSummary.java index ae8cb01dc15..63da7d0efe1 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/PingMonitorSummary.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/PingMonitorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/PingProbe.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/PingProbe.java index 294158ff754..283f0969a07 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/PingProbe.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/PingProbe.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/PingProbeProtocol.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/PingProbeProtocol.java index 84ababf0d4a..514aa7691bf 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/PingProbeProtocol.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/PingProbeProtocol.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/PingProbeResultSummary.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/PingProbeResultSummary.java index e68e052f2e0..af796513d53 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/PingProbeResultSummary.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/PingProbeResultSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/Routing.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/Routing.java index d71019dc039..c807e9de550 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/Routing.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/Routing.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/TcpConnection.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/TcpConnection.java index dfeb5e54700..528469167f3 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/TcpConnection.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/TcpConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/UpdateHttpMonitorDetails.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/UpdateHttpMonitorDetails.java index 55306063a47..664bee93f6f 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/UpdateHttpMonitorDetails.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/UpdateHttpMonitorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/UpdatePingMonitorDetails.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/UpdatePingMonitorDetails.java index d9ee1f78a3e..4120c7ded50 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/UpdatePingMonitorDetails.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/model/UpdatePingMonitorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.model; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ChangeHttpMonitorCompartmentRequest.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ChangeHttpMonitorCompartmentRequest.java index a6bc3274e0b..ec1888746ec 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ChangeHttpMonitorCompartmentRequest.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ChangeHttpMonitorCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.requests; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ChangePingMonitorCompartmentRequest.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ChangePingMonitorCompartmentRequest.java index 3e07ca73144..e65de3ab14b 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ChangePingMonitorCompartmentRequest.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ChangePingMonitorCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.requests; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/CreateHttpMonitorRequest.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/CreateHttpMonitorRequest.java index ef2926bdc59..472caa2bce0 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/CreateHttpMonitorRequest.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/CreateHttpMonitorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.requests; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/CreateOnDemandHttpProbeRequest.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/CreateOnDemandHttpProbeRequest.java index 01771de3b28..03faacd4aa2 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/CreateOnDemandHttpProbeRequest.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/CreateOnDemandHttpProbeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.requests; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/CreateOnDemandPingProbeRequest.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/CreateOnDemandPingProbeRequest.java index a2b45794b8f..83c502c0f17 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/CreateOnDemandPingProbeRequest.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/CreateOnDemandPingProbeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.requests; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/CreatePingMonitorRequest.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/CreatePingMonitorRequest.java index 3e2eeedacee..6f43701f408 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/CreatePingMonitorRequest.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/CreatePingMonitorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.requests; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/DeleteHttpMonitorRequest.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/DeleteHttpMonitorRequest.java index 23667a9c113..47901d0208d 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/DeleteHttpMonitorRequest.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/DeleteHttpMonitorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.requests; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/DeletePingMonitorRequest.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/DeletePingMonitorRequest.java index c1911277625..0e009e66cdc 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/DeletePingMonitorRequest.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/DeletePingMonitorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.requests; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/GetHttpMonitorRequest.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/GetHttpMonitorRequest.java index c3cd77c5dc2..67652c4ce65 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/GetHttpMonitorRequest.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/GetHttpMonitorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.requests; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/GetPingMonitorRequest.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/GetPingMonitorRequest.java index bf67b0c79ed..79d02f100e7 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/GetPingMonitorRequest.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/GetPingMonitorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.requests; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ListHealthChecksVantagePointsRequest.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ListHealthChecksVantagePointsRequest.java index 49cff3600a5..2382ec55a82 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ListHealthChecksVantagePointsRequest.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ListHealthChecksVantagePointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.requests; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ListHttpMonitorsRequest.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ListHttpMonitorsRequest.java index 43c07c59b1f..fe9f513aadf 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ListHttpMonitorsRequest.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ListHttpMonitorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.requests; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ListHttpProbeResultsRequest.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ListHttpProbeResultsRequest.java index 307fbf2d377..41283147c11 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ListHttpProbeResultsRequest.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ListHttpProbeResultsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.requests; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ListPingMonitorsRequest.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ListPingMonitorsRequest.java index a3d99138bba..7ad9647421b 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ListPingMonitorsRequest.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ListPingMonitorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.requests; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ListPingProbeResultsRequest.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ListPingProbeResultsRequest.java index 72c664b8433..708b5d4ca33 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ListPingProbeResultsRequest.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/ListPingProbeResultsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.requests; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/UpdateHttpMonitorRequest.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/UpdateHttpMonitorRequest.java index e4606a70135..8541ebcc2af 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/UpdateHttpMonitorRequest.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/UpdateHttpMonitorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.requests; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/UpdatePingMonitorRequest.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/UpdatePingMonitorRequest.java index 5e0d1eb66ca..efae79044a8 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/UpdatePingMonitorRequest.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/requests/UpdatePingMonitorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.requests; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ChangeHttpMonitorCompartmentResponse.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ChangeHttpMonitorCompartmentResponse.java index daf23ba4457..5f2990cc8ce 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ChangeHttpMonitorCompartmentResponse.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ChangeHttpMonitorCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.responses; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ChangePingMonitorCompartmentResponse.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ChangePingMonitorCompartmentResponse.java index 1b1a26f4027..11404e8fd81 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ChangePingMonitorCompartmentResponse.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ChangePingMonitorCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.responses; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/CreateHttpMonitorResponse.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/CreateHttpMonitorResponse.java index c706498eefb..98ac6440dfd 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/CreateHttpMonitorResponse.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/CreateHttpMonitorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.responses; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/CreateOnDemandHttpProbeResponse.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/CreateOnDemandHttpProbeResponse.java index 542deb32e63..18af830be65 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/CreateOnDemandHttpProbeResponse.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/CreateOnDemandHttpProbeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.responses; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/CreateOnDemandPingProbeResponse.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/CreateOnDemandPingProbeResponse.java index 4383050dd19..9eaab5d6ca9 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/CreateOnDemandPingProbeResponse.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/CreateOnDemandPingProbeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.responses; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/CreatePingMonitorResponse.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/CreatePingMonitorResponse.java index 70eff8eaf2d..eddae51bccf 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/CreatePingMonitorResponse.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/CreatePingMonitorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.responses; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/DeleteHttpMonitorResponse.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/DeleteHttpMonitorResponse.java index 40f7d96c43d..6ff3ff427e3 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/DeleteHttpMonitorResponse.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/DeleteHttpMonitorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.responses; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/DeletePingMonitorResponse.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/DeletePingMonitorResponse.java index 8a9f11f9ad2..e4018a165a4 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/DeletePingMonitorResponse.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/DeletePingMonitorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.responses; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/GetHttpMonitorResponse.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/GetHttpMonitorResponse.java index 99713f8390e..a9f18808934 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/GetHttpMonitorResponse.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/GetHttpMonitorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.responses; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/GetPingMonitorResponse.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/GetPingMonitorResponse.java index 870830866d2..9aa5594ebbf 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/GetPingMonitorResponse.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/GetPingMonitorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.responses; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ListHealthChecksVantagePointsResponse.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ListHealthChecksVantagePointsResponse.java index 36ae55e16f1..906e5690ee2 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ListHealthChecksVantagePointsResponse.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ListHealthChecksVantagePointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.responses; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ListHttpMonitorsResponse.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ListHttpMonitorsResponse.java index f9a06c5e4c2..9b514f9f228 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ListHttpMonitorsResponse.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ListHttpMonitorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.responses; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ListHttpProbeResultsResponse.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ListHttpProbeResultsResponse.java index eeefe600823..d3cd7e8237b 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ListHttpProbeResultsResponse.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ListHttpProbeResultsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.responses; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ListPingMonitorsResponse.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ListPingMonitorsResponse.java index 2fd7bc4bd5a..691c0c12bb9 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ListPingMonitorsResponse.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ListPingMonitorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.responses; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ListPingProbeResultsResponse.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ListPingProbeResultsResponse.java index 76bb022d7e9..60bf190fa23 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ListPingProbeResultsResponse.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/ListPingProbeResultsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.responses; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/UpdateHttpMonitorResponse.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/UpdateHttpMonitorResponse.java index 0e0b5b60ed4..fec9cfdc5bd 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/UpdateHttpMonitorResponse.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/UpdateHttpMonitorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.responses; diff --git a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/UpdatePingMonitorResponse.java b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/UpdatePingMonitorResponse.java index d61c433d01e..bad33796a33 100644 --- a/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/UpdatePingMonitorResponse.java +++ b/bmc-healthchecks/src/main/java/com/oracle/bmc/healthchecks/responses/UpdatePingMonitorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.healthchecks.responses; diff --git a/bmc-healthchecks/src/main/resources/com/oracle/bmc/healthchecks/client.properties b/bmc-healthchecks/src/main/resources/com/oracle/bmc/healthchecks/client.properties index 30ef53c442a..41cb598ea6e 100644 --- a/bmc-healthchecks/src/main/resources/com/oracle/bmc/healthchecks/client.properties +++ b/bmc-healthchecks/src/main/resources/com/oracle/bmc/healthchecks/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-identity/pom.xml b/bmc-identity/pom.xml index b70dd46b8ea..2ac74bd5605 100644 --- a/bmc-identity/pom.xml +++ b/bmc-identity/pom.xml @@ -5,7 +5,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml @@ -18,7 +18,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/Identity.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/Identity.java index 88bd0becf03..2b748cfe22c 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/Identity.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/Identity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/IdentityAsync.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/IdentityAsync.java index d0950fb3fca..946dae68163 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/IdentityAsync.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/IdentityAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/IdentityAsyncClient.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/IdentityAsyncClient.java index f439aa88bba..86f8297b814 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/IdentityAsyncClient.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/IdentityAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/IdentityClient.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/IdentityClient.java index 058c3332755..31f2838ba81 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/IdentityClient.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/IdentityClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/IdentityPaginators.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/IdentityPaginators.java index 3c7ab252c98..e8506077daa 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/IdentityPaginators.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/IdentityPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/IdentityWaiters.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/IdentityWaiters.java index 01330bea6de..b0513628cd6 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/IdentityWaiters.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/IdentityWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AddLockDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AddLockDetails.java index 14f7df8394e..6639d4b186f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AddLockDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AddLockDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AddUserToGroupDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AddUserToGroupDetails.java index cbf373967e9..d7ec859db04 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AddUserToGroupDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AddUserToGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AllowedDomainLicenseTypeSummary.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AllowedDomainLicenseTypeSummary.java index 27444b0e5f8..faeedf5a4f2 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AllowedDomainLicenseTypeSummary.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AllowedDomainLicenseTypeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ApiKey.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ApiKey.java index 243a47f5fdf..5f06e1c3550 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ApiKey.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ApiKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AuthToken.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AuthToken.java index c07d221cbeb..a472f193fd5 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AuthToken.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AuthToken.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AuthenticationPolicy.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AuthenticationPolicy.java index 7d620bf6d6a..ad243a99fc6 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AuthenticationPolicy.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AuthenticationPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AvailabilityDomain.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AvailabilityDomain.java index c7deeadc06f..016e8ac376a 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AvailabilityDomain.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/AvailabilityDomain.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BaseTagDefinitionValidator.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BaseTagDefinitionValidator.java index f61b73329e4..beb9aec5c30 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BaseTagDefinitionValidator.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BaseTagDefinitionValidator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkActionResource.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkActionResource.java index 84040757e85..e2b8e78a2bc 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkActionResource.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkActionResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkActionResourceType.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkActionResourceType.java index 32dc244b47e..f58ec71f158 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkActionResourceType.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkActionResourceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkActionResourceTypeCollection.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkActionResourceTypeCollection.java index 4d7f4c6199d..e1b1f1a9b53 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkActionResourceTypeCollection.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkActionResourceTypeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkDeleteResourcesDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkDeleteResourcesDetails.java index c302dc7734b..cf9b86a6c22 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkDeleteResourcesDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkDeleteResourcesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkDeleteTagsDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkDeleteTagsDetails.java index d6776393026..98e1374d90d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkDeleteTagsDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkDeleteTagsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkEditOperationDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkEditOperationDetails.java index 8cce896335a..504096b0b2e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkEditOperationDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkEditOperationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkEditResource.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkEditResource.java index 8ab1674f67a..f20e57eab70 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkEditResource.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkEditResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkEditTagsDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkEditTagsDetails.java index d1cd222afb0..b42fafbbed6 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkEditTagsDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkEditTagsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkEditTagsResourceType.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkEditTagsResourceType.java index 7211c38aea7..358f9e65348 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkEditTagsResourceType.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkEditTagsResourceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkEditTagsResourceTypeCollection.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkEditTagsResourceTypeCollection.java index be09f86fd2f..02b633d0e20 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkEditTagsResourceTypeCollection.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkEditTagsResourceTypeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkMoveResourcesDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkMoveResourcesDetails.java index 438f526f6cc..049cde72045 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkMoveResourcesDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/BulkMoveResourcesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ChangeDomainCompartmentDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ChangeDomainCompartmentDetails.java index 6c171afc1a4..1e5bb2337ff 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ChangeDomainCompartmentDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ChangeDomainCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ChangeDomainLicenseTypeDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ChangeDomainLicenseTypeDetails.java index 44facd7edc6..a760106c063 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ChangeDomainLicenseTypeDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ChangeDomainLicenseTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ChangeTagNamespaceCompartmentDetail.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ChangeTagNamespaceCompartmentDetail.java index fe93e6b3c85..a4b761e9813 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ChangeTagNamespaceCompartmentDetail.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ChangeTagNamespaceCompartmentDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ChangeTasDomainLicenseTypeDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ChangeTasDomainLicenseTypeDetails.java index f677724ef03..f482274fea0 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ChangeTasDomainLicenseTypeDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ChangeTasDomainLicenseTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Compartment.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Compartment.java index 5914c415078..85856bfd78e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Compartment.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Compartment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateApiKeyDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateApiKeyDetails.java index 1f504bf15b8..a5ded708f82 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateApiKeyDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateApiKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateAuthTokenDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateAuthTokenDetails.java index c4da00c02f3..89ec8ec122a 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateAuthTokenDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateAuthTokenDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateCompartmentDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateCompartmentDetails.java index 7e6ed7980a4..a4500e74773 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateCompartmentDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateCustomerSecretKeyDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateCustomerSecretKeyDetails.java index 5e71f848e43..4c1ad41da5d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateCustomerSecretKeyDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateCustomerSecretKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateDbCredentialDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateDbCredentialDetails.java index f5dce2e17a8..51b7b31aa32 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateDbCredentialDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateDbCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateDomainDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateDomainDetails.java index 279b5f22b90..cc95da89ec3 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateDomainDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateDomainDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateDynamicGroupDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateDynamicGroupDetails.java index 3167aefcd9a..821d108213c 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateDynamicGroupDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateDynamicGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateGroupDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateGroupDetails.java index 6df5a9a4253..7fb0d50be13 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateGroupDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateIdentityProviderDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateIdentityProviderDetails.java index c9944c382f5..5e0fa112636 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateIdentityProviderDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateIdentityProviderDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateIdpGroupMappingDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateIdpGroupMappingDetails.java index 32764f18ab9..3f6859de5b9 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateIdpGroupMappingDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateIdpGroupMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateNetworkSourceDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateNetworkSourceDetails.java index 3cb5e73378a..7763ee3ec97 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateNetworkSourceDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateNetworkSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateOAuth2ClientCredentialDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateOAuth2ClientCredentialDetails.java index 0d639a08c00..4dc9b5a48d1 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateOAuth2ClientCredentialDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateOAuth2ClientCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreatePolicyDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreatePolicyDetails.java index ec63d50f9b6..5898df52b71 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreatePolicyDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreatePolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateRegionSubscriptionDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateRegionSubscriptionDetails.java index 90c5b4178ee..3ec7f12edef 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateRegionSubscriptionDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateRegionSubscriptionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateSaml2IdentityProviderDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateSaml2IdentityProviderDetails.java index 3203fc9bf74..83ae7893597 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateSaml2IdentityProviderDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateSaml2IdentityProviderDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateSmtpCredentialDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateSmtpCredentialDetails.java index f3057dad93f..c49e00a04da 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateSmtpCredentialDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateSmtpCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateSwiftPasswordDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateSwiftPasswordDetails.java index 698b73b67a0..91f437fc839 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateSwiftPasswordDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateSwiftPasswordDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateTagDefaultDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateTagDefaultDetails.java index 3db07d470d9..220fb8eaba4 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateTagDefaultDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateTagDefaultDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateTagDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateTagDetails.java index bc36bfe44fb..4380cfd1690 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateTagDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateTagDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateTagNamespaceDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateTagNamespaceDetails.java index a0637b04a3a..485137ef4fe 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateTagNamespaceDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateTagNamespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateUserDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateUserDetails.java index 49834d3308a..8c19172767b 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateUserDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CreateUserDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CustomerSecretKey.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CustomerSecretKey.java index 2f73cf245d5..c360293d743 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CustomerSecretKey.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CustomerSecretKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CustomerSecretKeySummary.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CustomerSecretKeySummary.java index a7c436159a3..5197e4bac7b 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CustomerSecretKeySummary.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/CustomerSecretKeySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DbCredential.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DbCredential.java index 14ef110c621..962ac996d7d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DbCredential.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DbCredential.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DbCredentialSummary.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DbCredentialSummary.java index 8431e51e447..8acf431a2e3 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DbCredentialSummary.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DbCredentialSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DefaultTagDefinitionValidator.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DefaultTagDefinitionValidator.java index 3da885ab2d0..3bc2eba3c22 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DefaultTagDefinitionValidator.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DefaultTagDefinitionValidator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Domain.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Domain.java index f5f39d76371..98f2d8dacc4 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Domain.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Domain.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DomainReplication.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DomainReplication.java index bf1d4959cfd..164fca2ca78 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DomainReplication.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DomainReplication.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DomainReplicationStates.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DomainReplicationStates.java index 4536f645b85..2ed7eee87e9 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DomainReplicationStates.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DomainReplicationStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DomainSummary.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DomainSummary.java index b9e616990cd..76fc016d648 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DomainSummary.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DomainSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DynamicGroup.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DynamicGroup.java index d35ea831c9f..cca18da8429 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DynamicGroup.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/DynamicGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/EnableReplicationToRegionDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/EnableReplicationToRegionDetails.java index 29e1a18941d..22269b140d7 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/EnableReplicationToRegionDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/EnableReplicationToRegionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/EnumTagDefinitionValidator.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/EnumTagDefinitionValidator.java index a28d7dc474d..6a0a4e2ba2c 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/EnumTagDefinitionValidator.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/EnumTagDefinitionValidator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/FaultDomain.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/FaultDomain.java index 434d48d22a7..383c2185c02 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/FaultDomain.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/FaultDomain.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/FullyQualifiedScope.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/FullyQualifiedScope.java index 9dc5aa6a2e1..301fe7a6e03 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/FullyQualifiedScope.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/FullyQualifiedScope.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Group.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Group.java index 81173a41239..e701ce8450e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Group.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Group.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IamWorkRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IamWorkRequest.java index 77bbeddd59a..73fc6afedf9 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IamWorkRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IamWorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IamWorkRequestErrorSummary.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IamWorkRequestErrorSummary.java index 38d529b3ddb..95c98c28536 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IamWorkRequestErrorSummary.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IamWorkRequestErrorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IamWorkRequestLogSummary.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IamWorkRequestLogSummary.java index 97d0296ff5b..b9d4690da1d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IamWorkRequestLogSummary.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IamWorkRequestLogSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IamWorkRequestResource.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IamWorkRequestResource.java index 41a576f066b..e65219cd7c0 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IamWorkRequestResource.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IamWorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IamWorkRequestSummary.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IamWorkRequestSummary.java index d28f908b39c..0e88753418a 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IamWorkRequestSummary.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IamWorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IdentityProvider.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IdentityProvider.java index 5f655cdf5b4..e25aae41fda 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IdentityProvider.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IdentityProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IdentityProviderGroupSummary.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IdentityProviderGroupSummary.java index b4a0bfdab71..e11fe2f74e5 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IdentityProviderGroupSummary.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IdentityProviderGroupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IdpGroupMapping.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IdpGroupMapping.java index 4fc07c614f7..6efaaf5be76 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IdpGroupMapping.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/IdpGroupMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ImportStandardTagsDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ImportStandardTagsDetails.java index e5daad07ef0..7f2be0daa6d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ImportStandardTagsDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ImportStandardTagsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/MfaTotpDevice.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/MfaTotpDevice.java index 705104f2787..ad7c3f32872 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/MfaTotpDevice.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/MfaTotpDevice.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/MfaTotpDeviceSummary.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/MfaTotpDeviceSummary.java index bfc76fe3d8e..4bc62b10bf5 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/MfaTotpDeviceSummary.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/MfaTotpDeviceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/MfaTotpToken.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/MfaTotpToken.java index d6c4769c073..3fd637ae419 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/MfaTotpToken.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/MfaTotpToken.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/MoveCompartmentDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/MoveCompartmentDetails.java index 618389fe42d..63057d05fd4 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/MoveCompartmentDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/MoveCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/NetworkPolicy.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/NetworkPolicy.java index cd26661c54a..59ee638e656 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/NetworkPolicy.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/NetworkPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/NetworkSources.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/NetworkSources.java index bea72292de9..26fb395c913 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/NetworkSources.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/NetworkSources.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/NetworkSourcesSummary.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/NetworkSourcesSummary.java index da6f568e00b..a01a86db9aa 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/NetworkSourcesSummary.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/NetworkSourcesSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/NetworkSources_virtualSourceList.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/NetworkSources_virtualSourceList.java index 64e597463d3..a11420893b9 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/NetworkSources_virtualSourceList.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/NetworkSources_virtualSourceList.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/OAuth2ClientCredential.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/OAuth2ClientCredential.java index 112934c83f7..9ec6a1fcb46 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/OAuth2ClientCredential.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/OAuth2ClientCredential.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/OAuth2ClientCredentialSummary.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/OAuth2ClientCredentialSummary.java index 63ac15cac27..06517b3ea72 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/OAuth2ClientCredentialSummary.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/OAuth2ClientCredentialSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/PasswordPolicy.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/PasswordPolicy.java index b1ed53283c2..a5c4d32acee 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/PasswordPolicy.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/PasswordPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Policy.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Policy.java index 967be3eb937..00d2d4c7f93 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Policy.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Policy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Region.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Region.java index a234cb70d68..4e654c51161 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Region.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Region.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/RegionSubscription.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/RegionSubscription.java index b430f3fcc19..1cd612c5b2e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/RegionSubscription.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/RegionSubscription.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/RemoveLockDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/RemoveLockDetails.java index 03ad380379b..3e0e1fcd28c 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/RemoveLockDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/RemoveLockDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ReplicatedRegionDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ReplicatedRegionDetails.java index 620fa770eda..7c5d9f5caa6 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ReplicatedRegionDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ReplicatedRegionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ResourceLock.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ResourceLock.java index 56d730cd5b1..fb6e181af2f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ResourceLock.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ResourceLock.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Saml2IdentityProvider.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Saml2IdentityProvider.java index dca0fe3946c..9df68fbbcb3 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Saml2IdentityProvider.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Saml2IdentityProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ScimClientCredentials.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ScimClientCredentials.java index 38f4441c9cb..45f220df4d4 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ScimClientCredentials.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/ScimClientCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/SmtpCredential.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/SmtpCredential.java index d66e607dcc9..323ada3b2ed 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/SmtpCredential.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/SmtpCredential.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/SmtpCredentialSummary.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/SmtpCredentialSummary.java index ea2797d9d86..f0c3756ce68 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/SmtpCredentialSummary.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/SmtpCredentialSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/StandardTagDefinitionTemplate.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/StandardTagDefinitionTemplate.java index 7bb4e130d85..1118e4c9475 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/StandardTagDefinitionTemplate.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/StandardTagDefinitionTemplate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/StandardTagNamespaceTemplate.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/StandardTagNamespaceTemplate.java index 7841b856ef2..7677f90730a 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/StandardTagNamespaceTemplate.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/StandardTagNamespaceTemplate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/StandardTagNamespaceTemplateSummary.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/StandardTagNamespaceTemplateSummary.java index 788ba628bca..1c4aaa1aa67 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/StandardTagNamespaceTemplateSummary.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/StandardTagNamespaceTemplateSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/SwiftPassword.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/SwiftPassword.java index 1537a232b2a..fd31d729712 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/SwiftPassword.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/SwiftPassword.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Tag.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Tag.java index 82cfb04bedb..4c1fc899bae 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Tag.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Tag.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TagDefault.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TagDefault.java index eaf0fb2cf28..633e65a8a9e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TagDefault.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TagDefault.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TagDefaultSummary.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TagDefaultSummary.java index aab5be46743..eee63d2387b 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TagDefaultSummary.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TagDefaultSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TagNamespace.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TagNamespace.java index 53f8fbcea1e..4f9531d9173 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TagNamespace.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TagNamespace.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TagNamespaceSummary.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TagNamespaceSummary.java index 6fa3e587bd9..af95a8e3742 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TagNamespaceSummary.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TagNamespaceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TagSummary.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TagSummary.java index 56ab50767a5..0d2d906b501 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TagSummary.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TagSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TaggingWorkRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TaggingWorkRequest.java index be3b8496054..65378dc3cc1 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TaggingWorkRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TaggingWorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TaggingWorkRequestErrorSummary.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TaggingWorkRequestErrorSummary.java index a0ed01cc358..599b3c3d3ae 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TaggingWorkRequestErrorSummary.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TaggingWorkRequestErrorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TaggingWorkRequestLogSummary.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TaggingWorkRequestLogSummary.java index 9bb2c5e3877..192cfe0d728 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TaggingWorkRequestLogSummary.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TaggingWorkRequestLogSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TaggingWorkRequestSummary.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TaggingWorkRequestSummary.java index b4afde37793..b4dbf1d6e3a 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TaggingWorkRequestSummary.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/TaggingWorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Tenancy.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Tenancy.java index b574e2470f6..338d5fb9978 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Tenancy.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/Tenancy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UIPassword.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UIPassword.java index b4c1e6c1f72..4cf6379a80f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UIPassword.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UIPassword.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UIPasswordInformation.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UIPasswordInformation.java index 846870f83a8..d998f95d6e4 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UIPasswordInformation.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UIPasswordInformation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateAuthTokenDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateAuthTokenDetails.java index 4d979986d08..21c30fdee65 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateAuthTokenDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateAuthTokenDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateAuthenticationPolicyDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateAuthenticationPolicyDetails.java index 87ed9f10319..f6b8928b0b7 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateAuthenticationPolicyDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateAuthenticationPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateCompartmentDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateCompartmentDetails.java index 6b0dcc1c5ee..ca535641542 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateCompartmentDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateCustomerSecretKeyDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateCustomerSecretKeyDetails.java index 178569b7c07..b76869ba495 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateCustomerSecretKeyDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateCustomerSecretKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateDomainDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateDomainDetails.java index 1c5d139db56..8ca372afcbb 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateDomainDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateDomainDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateDynamicGroupDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateDynamicGroupDetails.java index 7534c3def93..45f3ca4e5de 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateDynamicGroupDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateDynamicGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateGroupDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateGroupDetails.java index e366adbcdad..f73bc8b9e15 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateGroupDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateIdentityProviderDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateIdentityProviderDetails.java index b51663b7c45..625da40c1eb 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateIdentityProviderDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateIdentityProviderDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateIdpGroupMappingDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateIdpGroupMappingDetails.java index c85718a297e..4c0526cb60e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateIdpGroupMappingDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateIdpGroupMappingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateNetworkSourceDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateNetworkSourceDetails.java index 39506195279..dc9f21406dc 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateNetworkSourceDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateNetworkSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateOAuth2ClientCredentialDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateOAuth2ClientCredentialDetails.java index 1767569cd46..77e99d9fd39 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateOAuth2ClientCredentialDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateOAuth2ClientCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdatePolicyDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdatePolicyDetails.java index 94318bfe257..c8678b9aee0 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdatePolicyDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdatePolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateSaml2IdentityProviderDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateSaml2IdentityProviderDetails.java index fd2a2c05c4b..7d6d3cd12b0 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateSaml2IdentityProviderDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateSaml2IdentityProviderDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateSmtpCredentialDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateSmtpCredentialDetails.java index 7c5acbb8ff3..1f982bc1cd0 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateSmtpCredentialDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateSmtpCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateStateDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateStateDetails.java index 97fef6e71ec..b9f2907eacb 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateStateDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateStateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateSwiftPasswordDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateSwiftPasswordDetails.java index 572570b0164..b7129ba368e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateSwiftPasswordDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateSwiftPasswordDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateTagDefaultDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateTagDefaultDetails.java index 1462d716b8b..353aa09ea97 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateTagDefaultDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateTagDefaultDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateTagDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateTagDetails.java index 1d26823725a..2b4c456c058 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateTagDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateTagDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateTagNamespaceDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateTagNamespaceDetails.java index 3ff82a17f17..9631d7ef8a6 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateTagNamespaceDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateTagNamespaceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateUserCapabilitiesDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateUserCapabilitiesDetails.java index b48ad936ed5..e2afa5dad09 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateUserCapabilitiesDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateUserCapabilitiesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateUserDetails.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateUserDetails.java index 5a91c9b0bac..7e32369c8f9 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateUserDetails.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UpdateUserDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/User.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/User.java index d8b08a817ec..ff442fe3278 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/User.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/User.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UserCapabilities.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UserCapabilities.java index 53718e317bb..410cd5781e0 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UserCapabilities.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UserCapabilities.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UserGroupMembership.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UserGroupMembership.java index c114f57ea2d..0ed88a5e4f9 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UserGroupMembership.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/UserGroupMembership.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/WorkRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/WorkRequest.java index f175e16cfc4..f075d534c69 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/WorkRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/WorkRequestError.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/WorkRequestError.java index 7a70741f978..edd05ef39bc 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/WorkRequestError.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/WorkRequestLogEntry.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/WorkRequestLogEntry.java index f58ab63e1d3..05bf575b077 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/WorkRequestLogEntry.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/WorkRequestResource.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/WorkRequestResource.java index d07a722079e..29b25bf1df5 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/WorkRequestResource.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/WorkRequestSummary.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/WorkRequestSummary.java index 3f68b563d5b..cda5580ab52 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/model/WorkRequestSummary.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.model; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ActivateDomainRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ActivateDomainRequest.java index 5ff81daf26a..ad638f67c7d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ActivateDomainRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ActivateDomainRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ActivateMfaTotpDeviceRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ActivateMfaTotpDeviceRequest.java index b99a20ff602..2c02a94692f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ActivateMfaTotpDeviceRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ActivateMfaTotpDeviceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/AddTagDefaultLockRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/AddTagDefaultLockRequest.java index 4c42816db03..15fdaafb945 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/AddTagDefaultLockRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/AddTagDefaultLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/AddTagNamespaceLockRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/AddTagNamespaceLockRequest.java index 064c321bf1e..947192f592a 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/AddTagNamespaceLockRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/AddTagNamespaceLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/AddUserToGroupRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/AddUserToGroupRequest.java index 5eec342517a..1d79552679c 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/AddUserToGroupRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/AddUserToGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/AssembleEffectiveTagSetRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/AssembleEffectiveTagSetRequest.java index cc8db003735..d1299e63c3b 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/AssembleEffectiveTagSetRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/AssembleEffectiveTagSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/BulkDeleteResourcesRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/BulkDeleteResourcesRequest.java index 0961d3e160e..7afb28668cc 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/BulkDeleteResourcesRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/BulkDeleteResourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/BulkDeleteTagsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/BulkDeleteTagsRequest.java index 70ddd37cd9c..8a128947973 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/BulkDeleteTagsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/BulkDeleteTagsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/BulkEditTagsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/BulkEditTagsRequest.java index e8e9dc7dfe8..4166595d049 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/BulkEditTagsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/BulkEditTagsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/BulkMoveResourcesRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/BulkMoveResourcesRequest.java index 69fcc7ea145..fd97af227cb 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/BulkMoveResourcesRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/BulkMoveResourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CascadeDeleteTagNamespaceRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CascadeDeleteTagNamespaceRequest.java index a731e8143f5..cafdbf02e65 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CascadeDeleteTagNamespaceRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CascadeDeleteTagNamespaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ChangeDomainCompartmentRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ChangeDomainCompartmentRequest.java index 5a4e97c1e7e..28b92095b8f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ChangeDomainCompartmentRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ChangeDomainCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ChangeDomainLicenseTypeRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ChangeDomainLicenseTypeRequest.java index a7750106e1a..925c8f54b58 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ChangeDomainLicenseTypeRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ChangeDomainLicenseTypeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ChangeTagNamespaceCompartmentRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ChangeTagNamespaceCompartmentRequest.java index b3de7736391..811ac82a7f9 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ChangeTagNamespaceCompartmentRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ChangeTagNamespaceCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateAuthTokenRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateAuthTokenRequest.java index 570aa05b61b..a60bfeaa592 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateAuthTokenRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateAuthTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateCompartmentRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateCompartmentRequest.java index 530080f1eb5..34881d7569c 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateCompartmentRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateCustomerSecretKeyRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateCustomerSecretKeyRequest.java index 0455b3a3fe2..c37452e3857 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateCustomerSecretKeyRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateCustomerSecretKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateDbCredentialRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateDbCredentialRequest.java index 96725da7b49..f34a270dab6 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateDbCredentialRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateDbCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateDomainRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateDomainRequest.java index 7697fcc1e66..7aaa260b38f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateDomainRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateDomainRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateDynamicGroupRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateDynamicGroupRequest.java index 11fed65317a..8ccec8121fa 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateDynamicGroupRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateDynamicGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateGroupRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateGroupRequest.java index 62a9f8e9be7..8c79cdca8f3 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateGroupRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateIdentityProviderRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateIdentityProviderRequest.java index 6eb7016c3b2..d291a0d0520 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateIdentityProviderRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateIdentityProviderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateIdpGroupMappingRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateIdpGroupMappingRequest.java index 48c5d691ffc..c49bdd18d45 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateIdpGroupMappingRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateIdpGroupMappingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateMfaTotpDeviceRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateMfaTotpDeviceRequest.java index 13c516d03f1..1ac916151aa 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateMfaTotpDeviceRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateMfaTotpDeviceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateNetworkSourceRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateNetworkSourceRequest.java index 71332e05635..1cf99a1e982 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateNetworkSourceRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateNetworkSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateOAuthClientCredentialRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateOAuthClientCredentialRequest.java index 0bdaacfb866..b1d1cabc103 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateOAuthClientCredentialRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateOAuthClientCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateOrResetUIPasswordRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateOrResetUIPasswordRequest.java index 0d3b7f86448..466adbd036f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateOrResetUIPasswordRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateOrResetUIPasswordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreatePolicyRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreatePolicyRequest.java index d43127644cf..46747965d2b 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreatePolicyRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreatePolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateRegionSubscriptionRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateRegionSubscriptionRequest.java index aacbfcc5fa3..7759e65dd5e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateRegionSubscriptionRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateRegionSubscriptionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateSmtpCredentialRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateSmtpCredentialRequest.java index f416ce83b8f..fa78120a807 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateSmtpCredentialRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateSmtpCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateSwiftPasswordRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateSwiftPasswordRequest.java index 59bc912db99..e146d505bf3 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateSwiftPasswordRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateSwiftPasswordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateTagDefaultRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateTagDefaultRequest.java index e69cf25a7f5..e2c775f0d3e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateTagDefaultRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateTagDefaultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateTagNamespaceRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateTagNamespaceRequest.java index 77579308733..4b8d084e26f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateTagNamespaceRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateTagNamespaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateTagRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateTagRequest.java index 6a8b9aa1f27..8227cd54ff2 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateTagRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateTagRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateUserRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateUserRequest.java index 57c45906f63..7293a39e09e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateUserRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/CreateUserRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeactivateDomainRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeactivateDomainRequest.java index 3e6e6ecd322..3c196726557 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeactivateDomainRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeactivateDomainRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteApiKeyRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteApiKeyRequest.java index 5a7c42aaa94..ed162f2ea8d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteApiKeyRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteApiKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteAuthTokenRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteAuthTokenRequest.java index 430ee37ea58..e5c710c379f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteAuthTokenRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteAuthTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteCompartmentRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteCompartmentRequest.java index b59365125cd..3145ae6f778 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteCompartmentRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteCustomerSecretKeyRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteCustomerSecretKeyRequest.java index f308ec1e859..553be10dfc5 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteCustomerSecretKeyRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteCustomerSecretKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteDbCredentialRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteDbCredentialRequest.java index c5e511f649d..2a9d6ec2cc9 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteDbCredentialRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteDbCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteDomainRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteDomainRequest.java index 38b0d1ba542..fedbb2a33c6 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteDomainRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteDomainRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteDynamicGroupRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteDynamicGroupRequest.java index b0502a41d46..c084777e221 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteDynamicGroupRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteDynamicGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteGroupRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteGroupRequest.java index 7dcf656cf5a..ffd2508c2c4 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteGroupRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteIdentityProviderRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteIdentityProviderRequest.java index 4c9006abb02..6d5f86cef1d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteIdentityProviderRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteIdentityProviderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteIdpGroupMappingRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteIdpGroupMappingRequest.java index 58e597bf0ae..c2ca5770a73 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteIdpGroupMappingRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteIdpGroupMappingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteMfaTotpDeviceRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteMfaTotpDeviceRequest.java index d0f40a1df0a..3a16a74b43e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteMfaTotpDeviceRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteMfaTotpDeviceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteNetworkSourceRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteNetworkSourceRequest.java index be51842865b..3a895e6b14d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteNetworkSourceRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteNetworkSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteOAuthClientCredentialRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteOAuthClientCredentialRequest.java index 304cb08065c..ee5d14c8143 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteOAuthClientCredentialRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteOAuthClientCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeletePolicyRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeletePolicyRequest.java index 7dc12d05c55..2221384c982 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeletePolicyRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeletePolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteSmtpCredentialRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteSmtpCredentialRequest.java index 9ad5cc0d449..fae2a1df1af 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteSmtpCredentialRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteSmtpCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteSwiftPasswordRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteSwiftPasswordRequest.java index 98b7d691223..df3e77ab6b9 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteSwiftPasswordRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteSwiftPasswordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteTagDefaultRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteTagDefaultRequest.java index 2b6946f71ff..0cd9378114a 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteTagDefaultRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteTagDefaultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteTagNamespaceRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteTagNamespaceRequest.java index e08f7e4214e..aeafd9ea0b2 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteTagNamespaceRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteTagNamespaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteTagRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteTagRequest.java index 7f1583ab125..c4afa7057d2 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteTagRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteTagRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteUserRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteUserRequest.java index bfe2c956d12..bf402d399b4 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteUserRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/DeleteUserRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/EnableReplicationToRegionRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/EnableReplicationToRegionRequest.java index 43b2616f09d..31d723a4d78 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/EnableReplicationToRegionRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/EnableReplicationToRegionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GenerateTotpSeedRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GenerateTotpSeedRequest.java index ed23eb30154..341384ce2eb 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GenerateTotpSeedRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GenerateTotpSeedRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetAuthenticationPolicyRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetAuthenticationPolicyRequest.java index c38818a1f28..6675d1b6d9f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetAuthenticationPolicyRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetAuthenticationPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetCompartmentRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetCompartmentRequest.java index 70ffda19173..fba10e85d7b 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetCompartmentRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetDomainRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetDomainRequest.java index 4ae12e537cc..05a4a2ce03a 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetDomainRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetDomainRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetDynamicGroupRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetDynamicGroupRequest.java index d61f9ff9294..560b6eb0cd0 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetDynamicGroupRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetDynamicGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetGroupRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetGroupRequest.java index 56996a22361..eeeb3fda33f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetGroupRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetIamWorkRequestRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetIamWorkRequestRequest.java index 41240d0a883..d015e97a711 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetIamWorkRequestRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetIamWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetIdentityProviderRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetIdentityProviderRequest.java index 466c250ad89..56e45d01fa2 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetIdentityProviderRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetIdentityProviderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetIdpGroupMappingRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetIdpGroupMappingRequest.java index 398470a875b..261ad321cf1 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetIdpGroupMappingRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetIdpGroupMappingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetMfaTotpDeviceRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetMfaTotpDeviceRequest.java index 4c773caf5ed..bdadcfd016e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetMfaTotpDeviceRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetMfaTotpDeviceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetNetworkSourceRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetNetworkSourceRequest.java index 6722408ff21..0b3925dcbff 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetNetworkSourceRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetNetworkSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetPolicyRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetPolicyRequest.java index f4719eec7e5..8a4701a767b 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetPolicyRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetStandardTagTemplateRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetStandardTagTemplateRequest.java index d44fa73b348..b5996b00c64 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetStandardTagTemplateRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetStandardTagTemplateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetTagDefaultRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetTagDefaultRequest.java index ff557056fcd..09a8148e4cc 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetTagDefaultRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetTagDefaultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetTagNamespaceRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetTagNamespaceRequest.java index 7b4e1b87ff1..6c75251c309 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetTagNamespaceRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetTagNamespaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetTagRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetTagRequest.java index 0d4b8132766..05e015762a6 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetTagRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetTagRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetTaggingWorkRequestRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetTaggingWorkRequestRequest.java index 33797fa0439..ce337a70e5f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetTaggingWorkRequestRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetTaggingWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetTenancyRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetTenancyRequest.java index 66ee02cf61d..dd7d4187c90 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetTenancyRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetTenancyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetUserGroupMembershipRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetUserGroupMembershipRequest.java index c7b749626aa..dccd8e8e8ef 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetUserGroupMembershipRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetUserGroupMembershipRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetUserRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetUserRequest.java index a7ac1b17399..050d06d38eb 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetUserRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetUserRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetUserUIPasswordInformationRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetUserUIPasswordInformationRequest.java index f0adfcc8865..2d8a0258bba 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetUserUIPasswordInformationRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetUserUIPasswordInformationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetWorkRequestRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetWorkRequestRequest.java index 8c7082bdea1..ee2283f320f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetWorkRequestRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ImportStandardTagsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ImportStandardTagsRequest.java index 2191ec22f72..cf1020b0d98 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ImportStandardTagsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ImportStandardTagsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListAllowedDomainLicenseTypesRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListAllowedDomainLicenseTypesRequest.java index 4f2d15e29d9..e7c16be3084 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListAllowedDomainLicenseTypesRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListAllowedDomainLicenseTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListApiKeysRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListApiKeysRequest.java index d5cc945de6f..d24986b7db1 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListApiKeysRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListApiKeysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListAuthTokensRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListAuthTokensRequest.java index 2f582bc878c..310f2bdc427 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListAuthTokensRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListAuthTokensRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListAvailabilityDomainsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListAvailabilityDomainsRequest.java index 552892541d6..119a2a71c2c 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListAvailabilityDomainsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListAvailabilityDomainsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListBulkActionResourceTypesRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListBulkActionResourceTypesRequest.java index aa3d4964f8e..63bf0defd77 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListBulkActionResourceTypesRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListBulkActionResourceTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListBulkEditTagsResourceTypesRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListBulkEditTagsResourceTypesRequest.java index bd2d2d3885d..2350da098b8 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListBulkEditTagsResourceTypesRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListBulkEditTagsResourceTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListCompartmentsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListCompartmentsRequest.java index f0a72eded5f..07606b86f85 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListCompartmentsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListCompartmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListCostTrackingTagsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListCostTrackingTagsRequest.java index a2658c80166..7feb0f55c0d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListCostTrackingTagsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListCostTrackingTagsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListCustomerSecretKeysRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListCustomerSecretKeysRequest.java index 599cad96853..d0ce0f7842d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListCustomerSecretKeysRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListCustomerSecretKeysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListDbCredentialsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListDbCredentialsRequest.java index 18d4240818e..7864d1e977d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListDbCredentialsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListDbCredentialsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListDomainsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListDomainsRequest.java index 77ecafdc6e0..9f3d5bf43d9 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListDomainsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListDomainsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListDynamicGroupsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListDynamicGroupsRequest.java index 1f8ebcdb311..23301da963c 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListDynamicGroupsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListDynamicGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListFaultDomainsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListFaultDomainsRequest.java index 11a98edaa2b..02986aad9d1 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListFaultDomainsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListFaultDomainsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListGroupsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListGroupsRequest.java index acd5d233b19..f2d78ca10a7 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListGroupsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIamWorkRequestErrorsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIamWorkRequestErrorsRequest.java index c44b5e45642..0f2539dc5f1 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIamWorkRequestErrorsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIamWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIamWorkRequestLogsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIamWorkRequestLogsRequest.java index 69e9bf759c6..855d8b6522c 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIamWorkRequestLogsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIamWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIamWorkRequestsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIamWorkRequestsRequest.java index b01a642d422..f6bb3c35d72 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIamWorkRequestsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIamWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIdentityProviderGroupsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIdentityProviderGroupsRequest.java index 0b9a6df51fb..4ee649cb094 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIdentityProviderGroupsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIdentityProviderGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIdentityProvidersRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIdentityProvidersRequest.java index 3ddbe64e587..27e656ae8f0 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIdentityProvidersRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIdentityProvidersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIdpGroupMappingsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIdpGroupMappingsRequest.java index 86ba246f59b..0239b51aa33 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIdpGroupMappingsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListIdpGroupMappingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListMfaTotpDevicesRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListMfaTotpDevicesRequest.java index fc95c6f6b01..b246ad2edfe 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListMfaTotpDevicesRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListMfaTotpDevicesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListNetworkSourcesRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListNetworkSourcesRequest.java index ee644ec2164..10d4fc3d158 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListNetworkSourcesRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListNetworkSourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListOAuthClientCredentialsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListOAuthClientCredentialsRequest.java index e101e9c0bfb..dbc911b4fc8 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListOAuthClientCredentialsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListOAuthClientCredentialsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListPoliciesRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListPoliciesRequest.java index 0d9dcadc77e..6683f29d698 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListPoliciesRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListRegionSubscriptionsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListRegionSubscriptionsRequest.java index 723d770ff06..f62cf966915 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListRegionSubscriptionsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListRegionSubscriptionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListRegionsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListRegionsRequest.java index 45e2e094cdd..810842b17c2 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListRegionsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListRegionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListSmtpCredentialsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListSmtpCredentialsRequest.java index 1580a1f76eb..7ba3f83d760 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListSmtpCredentialsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListSmtpCredentialsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListStandardTagNamespacesRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListStandardTagNamespacesRequest.java index ab577b67fb9..5a9bf19d55d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListStandardTagNamespacesRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListStandardTagNamespacesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListSwiftPasswordsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListSwiftPasswordsRequest.java index 7451616b40d..72c88166138 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListSwiftPasswordsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListSwiftPasswordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTagDefaultsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTagDefaultsRequest.java index c68a3feb6cd..879c4818585 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTagDefaultsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTagDefaultsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTagNamespacesRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTagNamespacesRequest.java index cee38d447e8..c33f59abde2 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTagNamespacesRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTagNamespacesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTaggingWorkRequestErrorsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTaggingWorkRequestErrorsRequest.java index 97cb3861027..77ae97053f9 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTaggingWorkRequestErrorsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTaggingWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTaggingWorkRequestLogsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTaggingWorkRequestLogsRequest.java index 1b1b67c14c5..65d4194f7a9 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTaggingWorkRequestLogsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTaggingWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTaggingWorkRequestsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTaggingWorkRequestsRequest.java index df7a63c6b2c..15fb34da22c 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTaggingWorkRequestsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTaggingWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTagsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTagsRequest.java index 78590b61398..d878e767ef3 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTagsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListTagsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListUserGroupMembershipsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListUserGroupMembershipsRequest.java index 83fbfea4194..b706c843d25 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListUserGroupMembershipsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListUserGroupMembershipsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListUsersRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListUsersRequest.java index 4bb9fa1c5e1..e5a96be4801 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListUsersRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListUsersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListWorkRequestsRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListWorkRequestsRequest.java index f79568168ec..955bd885f10 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListWorkRequestsRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/MoveCompartmentRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/MoveCompartmentRequest.java index 80b76e44f6e..2ab3f9ea5d1 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/MoveCompartmentRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/MoveCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/RecoverCompartmentRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/RecoverCompartmentRequest.java index 7b3fba09d9d..5bde51cc8a4 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/RecoverCompartmentRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/RecoverCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/RemoveTagDefaultLockRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/RemoveTagDefaultLockRequest.java index 2e5b5a84e80..547bed40e36 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/RemoveTagDefaultLockRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/RemoveTagDefaultLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/RemoveTagNamespaceLockRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/RemoveTagNamespaceLockRequest.java index 806b280ad4e..871e883fb32 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/RemoveTagNamespaceLockRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/RemoveTagNamespaceLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/RemoveUserFromGroupRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/RemoveUserFromGroupRequest.java index 0f7447af0c7..b98f51e6f45 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/RemoveUserFromGroupRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/RemoveUserFromGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ResetIdpScimClientRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ResetIdpScimClientRequest.java index 9f3842e9842..cb224c11438 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ResetIdpScimClientRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/ResetIdpScimClientRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateAuthTokenRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateAuthTokenRequest.java index aea3793c403..c3ea89b5b95 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateAuthTokenRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateAuthTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateAuthenticationPolicyRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateAuthenticationPolicyRequest.java index 4aaef4081e3..5bd1fe64cce 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateAuthenticationPolicyRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateAuthenticationPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateCompartmentRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateCompartmentRequest.java index 16457ea48c3..68765fd8276 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateCompartmentRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateCustomerSecretKeyRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateCustomerSecretKeyRequest.java index 82dd51c537d..e4c996c3a1e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateCustomerSecretKeyRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateCustomerSecretKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateDomainRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateDomainRequest.java index 66e517a92a2..afdf98efc00 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateDomainRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateDomainRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateDynamicGroupRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateDynamicGroupRequest.java index c4dc33e9d51..ceece8115d8 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateDynamicGroupRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateDynamicGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateGroupRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateGroupRequest.java index cb927d214d5..57133d08438 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateGroupRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateIdentityProviderRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateIdentityProviderRequest.java index 5d08b57d092..50e78263805 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateIdentityProviderRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateIdentityProviderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateIdpGroupMappingRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateIdpGroupMappingRequest.java index fd1420fcf2e..d3e2271e87d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateIdpGroupMappingRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateIdpGroupMappingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateNetworkSourceRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateNetworkSourceRequest.java index d21d5aa4c6c..05e4dac1066 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateNetworkSourceRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateNetworkSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateOAuthClientCredentialRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateOAuthClientCredentialRequest.java index b56cd7e8dbc..e036b92ba54 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateOAuthClientCredentialRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateOAuthClientCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdatePolicyRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdatePolicyRequest.java index 13e83ed838f..e8e1d09b154 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdatePolicyRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdatePolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateSmtpCredentialRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateSmtpCredentialRequest.java index 54a8249abe6..854d90ad428 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateSmtpCredentialRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateSmtpCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateSwiftPasswordRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateSwiftPasswordRequest.java index 36737b2d69a..34cfbf5872e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateSwiftPasswordRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateSwiftPasswordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateTagDefaultRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateTagDefaultRequest.java index dd1a5cf5610..80175aaf0f2 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateTagDefaultRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateTagDefaultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateTagNamespaceRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateTagNamespaceRequest.java index 866ec7b3d7c..5a36f5fa86c 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateTagNamespaceRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateTagNamespaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateTagRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateTagRequest.java index 3bb72030db9..e17cefa311e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateTagRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateTagRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateUserCapabilitiesRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateUserCapabilitiesRequest.java index ed3c39b2f01..5fd7961abe8 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateUserCapabilitiesRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateUserCapabilitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateUserRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateUserRequest.java index 8fc5b9f76d1..4dd1c5f77f3 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateUserRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateUserRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateUserStateRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateUserStateRequest.java index cd24218a3bd..cb37fbbf3d5 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateUserStateRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UpdateUserStateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UploadApiKeyRequest.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UploadApiKeyRequest.java index fc5b8f62ade..400e6ce7547 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UploadApiKeyRequest.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/requests/UploadApiKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.requests; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ActivateDomainResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ActivateDomainResponse.java index 0f2e23edf77..a7589a116ea 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ActivateDomainResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ActivateDomainResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ActivateMfaTotpDeviceResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ActivateMfaTotpDeviceResponse.java index 4993ab622da..c271882b287 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ActivateMfaTotpDeviceResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ActivateMfaTotpDeviceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/AddTagDefaultLockResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/AddTagDefaultLockResponse.java index ede4393991f..a6e5b94e443 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/AddTagDefaultLockResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/AddTagDefaultLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/AddTagNamespaceLockResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/AddTagNamespaceLockResponse.java index 30ed8c2d8d7..3e1356568b1 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/AddTagNamespaceLockResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/AddTagNamespaceLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/AddUserToGroupResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/AddUserToGroupResponse.java index 6b464248456..bc5a45094a2 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/AddUserToGroupResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/AddUserToGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/AssembleEffectiveTagSetResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/AssembleEffectiveTagSetResponse.java index 0b9f94c69fa..059cb16e4fb 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/AssembleEffectiveTagSetResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/AssembleEffectiveTagSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/BulkDeleteResourcesResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/BulkDeleteResourcesResponse.java index eb10ec5e687..70dc5d7cf36 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/BulkDeleteResourcesResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/BulkDeleteResourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/BulkDeleteTagsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/BulkDeleteTagsResponse.java index baac3c45ae2..e918f3c25ea 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/BulkDeleteTagsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/BulkDeleteTagsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/BulkEditTagsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/BulkEditTagsResponse.java index 691baa24711..27e8c996b1f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/BulkEditTagsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/BulkEditTagsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/BulkMoveResourcesResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/BulkMoveResourcesResponse.java index 4fde479ba2f..e014b09194f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/BulkMoveResourcesResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/BulkMoveResourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CascadeDeleteTagNamespaceResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CascadeDeleteTagNamespaceResponse.java index 8c0770ea47d..7850177bc1d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CascadeDeleteTagNamespaceResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CascadeDeleteTagNamespaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ChangeDomainCompartmentResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ChangeDomainCompartmentResponse.java index 5ddc47d46a5..47453e9b45f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ChangeDomainCompartmentResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ChangeDomainCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ChangeDomainLicenseTypeResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ChangeDomainLicenseTypeResponse.java index 9208f14a954..6799fc48c70 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ChangeDomainLicenseTypeResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ChangeDomainLicenseTypeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ChangeTagNamespaceCompartmentResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ChangeTagNamespaceCompartmentResponse.java index f1b0f89ffe6..4e566c2d10f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ChangeTagNamespaceCompartmentResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ChangeTagNamespaceCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateAuthTokenResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateAuthTokenResponse.java index f4e5f094975..a596934d5c2 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateAuthTokenResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateAuthTokenResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateCompartmentResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateCompartmentResponse.java index 4357e698974..e95f1297dc7 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateCompartmentResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateCustomerSecretKeyResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateCustomerSecretKeyResponse.java index 7de8b107a84..e885dde1b5d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateCustomerSecretKeyResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateCustomerSecretKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateDbCredentialResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateDbCredentialResponse.java index ef646dbd74c..9f64730aceb 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateDbCredentialResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateDbCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateDomainResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateDomainResponse.java index a9366462a67..4d0a655e5d3 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateDomainResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateDomainResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateDynamicGroupResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateDynamicGroupResponse.java index babfe993707..f3c9012bb59 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateDynamicGroupResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateDynamicGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateGroupResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateGroupResponse.java index b78d52653e8..c70a730bb31 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateGroupResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateIdentityProviderResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateIdentityProviderResponse.java index 4cdc3aaeaff..9421a3c01d2 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateIdentityProviderResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateIdentityProviderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateIdpGroupMappingResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateIdpGroupMappingResponse.java index d28a5b9bb17..ac36a033472 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateIdpGroupMappingResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateIdpGroupMappingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateMfaTotpDeviceResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateMfaTotpDeviceResponse.java index 5587d607c0b..32315826d99 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateMfaTotpDeviceResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateMfaTotpDeviceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateNetworkSourceResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateNetworkSourceResponse.java index 1d19276f2db..1f378deddd6 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateNetworkSourceResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateNetworkSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateOAuthClientCredentialResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateOAuthClientCredentialResponse.java index a0849e27df4..bf44d83010a 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateOAuthClientCredentialResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateOAuthClientCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateOrResetUIPasswordResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateOrResetUIPasswordResponse.java index d850fdb09da..c93d500d8ac 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateOrResetUIPasswordResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateOrResetUIPasswordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreatePolicyResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreatePolicyResponse.java index 4ea1fbb0185..e9bbf346da9 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreatePolicyResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreatePolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateRegionSubscriptionResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateRegionSubscriptionResponse.java index e49aa46d9a0..b96222dd888 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateRegionSubscriptionResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateRegionSubscriptionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateSmtpCredentialResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateSmtpCredentialResponse.java index 46563f6b2aa..0d7eb572a0c 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateSmtpCredentialResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateSmtpCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateSwiftPasswordResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateSwiftPasswordResponse.java index a20966e934e..cb2135a61db 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateSwiftPasswordResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateSwiftPasswordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateTagDefaultResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateTagDefaultResponse.java index 49d659755b2..201a811d83a 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateTagDefaultResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateTagDefaultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateTagNamespaceResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateTagNamespaceResponse.java index 34a5ad38c51..a6a7313a912 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateTagNamespaceResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateTagNamespaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateTagResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateTagResponse.java index 5b241088f90..c252400b48c 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateTagResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateTagResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateUserResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateUserResponse.java index cb5e4cf50bd..4a7b1830a42 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateUserResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/CreateUserResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeactivateDomainResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeactivateDomainResponse.java index 9a7a52f130a..35ef7310938 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeactivateDomainResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeactivateDomainResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteApiKeyResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteApiKeyResponse.java index bd65d9e24cd..c1bbbc8f45c 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteApiKeyResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteApiKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteAuthTokenResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteAuthTokenResponse.java index 3ff3f2bcd5d..820365c4d7d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteAuthTokenResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteAuthTokenResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteCompartmentResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteCompartmentResponse.java index e6786587308..7d0e45adae7 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteCompartmentResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteCustomerSecretKeyResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteCustomerSecretKeyResponse.java index 6820a90f223..fd55ab96692 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteCustomerSecretKeyResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteCustomerSecretKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteDbCredentialResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteDbCredentialResponse.java index c1c7249af6c..455d7b107e6 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteDbCredentialResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteDbCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteDomainResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteDomainResponse.java index 49052eb80bb..f8a3cdaf82c 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteDomainResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteDomainResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteDynamicGroupResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteDynamicGroupResponse.java index 55153f8c8e5..a78f7e6256f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteDynamicGroupResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteDynamicGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteGroupResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteGroupResponse.java index 48993b156c1..7ce5547282e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteGroupResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteIdentityProviderResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteIdentityProviderResponse.java index 71f388f5bfa..50702ae7d7d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteIdentityProviderResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteIdentityProviderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteIdpGroupMappingResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteIdpGroupMappingResponse.java index 5c54111cd51..69e153a11b6 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteIdpGroupMappingResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteIdpGroupMappingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteMfaTotpDeviceResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteMfaTotpDeviceResponse.java index 8775d0639c7..2c78fe19c07 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteMfaTotpDeviceResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteMfaTotpDeviceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteNetworkSourceResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteNetworkSourceResponse.java index 050b38a6f85..d0995021e44 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteNetworkSourceResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteNetworkSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteOAuthClientCredentialResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteOAuthClientCredentialResponse.java index d00e7395b99..beebf9296b6 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteOAuthClientCredentialResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteOAuthClientCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeletePolicyResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeletePolicyResponse.java index 0029258fc22..6945b1b0d53 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeletePolicyResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeletePolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteSmtpCredentialResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteSmtpCredentialResponse.java index dd1b2a5dc75..53eece7278d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteSmtpCredentialResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteSmtpCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteSwiftPasswordResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteSwiftPasswordResponse.java index 8e4476e16d1..446e41cdf56 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteSwiftPasswordResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteSwiftPasswordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteTagDefaultResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteTagDefaultResponse.java index b190a814b04..f78bf6c358f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteTagDefaultResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteTagDefaultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteTagNamespaceResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteTagNamespaceResponse.java index 40221f1fa0c..ce752334e79 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteTagNamespaceResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteTagNamespaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteTagResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteTagResponse.java index d1d617a155e..f1678e2bd06 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteTagResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteTagResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteUserResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteUserResponse.java index 0c2f9752e77..59f9e2cfff7 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteUserResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/DeleteUserResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/EnableReplicationToRegionResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/EnableReplicationToRegionResponse.java index 8caaa6af4c3..c05e18ecedb 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/EnableReplicationToRegionResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/EnableReplicationToRegionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GenerateTotpSeedResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GenerateTotpSeedResponse.java index fc6bb8fdbd3..e8f3d16fa64 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GenerateTotpSeedResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GenerateTotpSeedResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetAuthenticationPolicyResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetAuthenticationPolicyResponse.java index 1cc241925b5..0418d59ecff 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetAuthenticationPolicyResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetAuthenticationPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetCompartmentResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetCompartmentResponse.java index 4fc4317019a..333d01abec2 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetCompartmentResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetDomainResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetDomainResponse.java index c91ca0d5bdd..c2960d969b0 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetDomainResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetDomainResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetDynamicGroupResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetDynamicGroupResponse.java index 4c91cd916bd..f5e68c01d80 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetDynamicGroupResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetDynamicGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetGroupResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetGroupResponse.java index a88c13ae7bd..28dfc9cb8f9 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetGroupResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetIamWorkRequestResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetIamWorkRequestResponse.java index f23402314fb..0e8e20d8e49 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetIamWorkRequestResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetIamWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetIdentityProviderResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetIdentityProviderResponse.java index f7ee4618a96..710e911f7a8 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetIdentityProviderResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetIdentityProviderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetIdpGroupMappingResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetIdpGroupMappingResponse.java index cbf4b825490..af3cbaedafb 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetIdpGroupMappingResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetIdpGroupMappingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetMfaTotpDeviceResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetMfaTotpDeviceResponse.java index 140429d4606..265c02dd3d3 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetMfaTotpDeviceResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetMfaTotpDeviceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetNetworkSourceResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetNetworkSourceResponse.java index 36342ca2258..35050e377cb 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetNetworkSourceResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetNetworkSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetPolicyResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetPolicyResponse.java index 52e9a51c1f3..90b871696a6 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetPolicyResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetStandardTagTemplateResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetStandardTagTemplateResponse.java index e986133c835..ce59279e30d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetStandardTagTemplateResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetStandardTagTemplateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetTagDefaultResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetTagDefaultResponse.java index 27018af94e2..a4209d64155 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetTagDefaultResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetTagDefaultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetTagNamespaceResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetTagNamespaceResponse.java index 6d53e73e3e7..8518d4880d5 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetTagNamespaceResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetTagNamespaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetTagResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetTagResponse.java index a929721827e..ccd3f635e31 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetTagResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetTagResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetTaggingWorkRequestResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetTaggingWorkRequestResponse.java index 58ab5edebfe..f62ca77d654 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetTaggingWorkRequestResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetTaggingWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetTenancyResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetTenancyResponse.java index 1a857e5993c..e9db1e749d6 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetTenancyResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetTenancyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetUserGroupMembershipResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetUserGroupMembershipResponse.java index a7ae9a12e16..a1c39ecb27b 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetUserGroupMembershipResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetUserGroupMembershipResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetUserResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetUserResponse.java index 62f0eb5e060..9a5fec214fa 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetUserResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetUserResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetUserUIPasswordInformationResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetUserUIPasswordInformationResponse.java index 14306562b3f..eae03f2849a 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetUserUIPasswordInformationResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetUserUIPasswordInformationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetWorkRequestResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetWorkRequestResponse.java index 1bac3b4678c..182e9dfaccb 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetWorkRequestResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ImportStandardTagsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ImportStandardTagsResponse.java index 948b05d75d2..af4e9b869d3 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ImportStandardTagsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ImportStandardTagsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListAllowedDomainLicenseTypesResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListAllowedDomainLicenseTypesResponse.java index 95e95fd2adc..13e43fb3b4e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListAllowedDomainLicenseTypesResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListAllowedDomainLicenseTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListApiKeysResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListApiKeysResponse.java index 1df7d7f6b87..2d49bf873f9 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListApiKeysResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListApiKeysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListAuthTokensResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListAuthTokensResponse.java index 37764223d73..d2bf6b937be 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListAuthTokensResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListAuthTokensResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListAvailabilityDomainsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListAvailabilityDomainsResponse.java index 402f30805f9..04a53f388ff 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListAvailabilityDomainsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListAvailabilityDomainsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListBulkActionResourceTypesResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListBulkActionResourceTypesResponse.java index 2349458ae88..44db26b5f4e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListBulkActionResourceTypesResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListBulkActionResourceTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListBulkEditTagsResourceTypesResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListBulkEditTagsResourceTypesResponse.java index c52510215cb..a4de16fece9 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListBulkEditTagsResourceTypesResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListBulkEditTagsResourceTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListCompartmentsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListCompartmentsResponse.java index 6fead85b8cb..440d9a8418a 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListCompartmentsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListCompartmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListCostTrackingTagsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListCostTrackingTagsResponse.java index a3c91788147..4f47fb5c448 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListCostTrackingTagsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListCostTrackingTagsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListCustomerSecretKeysResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListCustomerSecretKeysResponse.java index 8db3dfd7b9b..cc9e01376cb 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListCustomerSecretKeysResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListCustomerSecretKeysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListDbCredentialsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListDbCredentialsResponse.java index cc26c214b20..5c19c900913 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListDbCredentialsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListDbCredentialsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListDomainsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListDomainsResponse.java index baafcc1dde2..34d14080078 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListDomainsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListDomainsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListDynamicGroupsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListDynamicGroupsResponse.java index 2a96ebab460..e6db437b754 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListDynamicGroupsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListDynamicGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListFaultDomainsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListFaultDomainsResponse.java index 578994f1727..bd50559d5b0 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListFaultDomainsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListFaultDomainsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListGroupsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListGroupsResponse.java index 856169a88f6..346f68966a6 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListGroupsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIamWorkRequestErrorsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIamWorkRequestErrorsResponse.java index 48717ba0e92..2cf2730e43d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIamWorkRequestErrorsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIamWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIamWorkRequestLogsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIamWorkRequestLogsResponse.java index 2a9a7c9350f..46e68bcf297 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIamWorkRequestLogsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIamWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIamWorkRequestsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIamWorkRequestsResponse.java index 6b603b6eef5..62e5cb4110e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIamWorkRequestsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIamWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIdentityProviderGroupsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIdentityProviderGroupsResponse.java index be4b1b6116b..b4d8bba1533 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIdentityProviderGroupsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIdentityProviderGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIdentityProvidersResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIdentityProvidersResponse.java index 6ad1dd386f7..8a64a0e0566 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIdentityProvidersResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIdentityProvidersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIdpGroupMappingsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIdpGroupMappingsResponse.java index 121a042950b..1947ee1f9cc 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIdpGroupMappingsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListIdpGroupMappingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListMfaTotpDevicesResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListMfaTotpDevicesResponse.java index dc0242f8b12..dd154e4fa79 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListMfaTotpDevicesResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListMfaTotpDevicesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListNetworkSourcesResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListNetworkSourcesResponse.java index 6ce9e2b032f..efd68e7380d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListNetworkSourcesResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListNetworkSourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListOAuthClientCredentialsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListOAuthClientCredentialsResponse.java index 461f8c58a52..84fd1194700 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListOAuthClientCredentialsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListOAuthClientCredentialsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListPoliciesResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListPoliciesResponse.java index 9e9ce26be46..80628d61b7e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListPoliciesResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListRegionSubscriptionsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListRegionSubscriptionsResponse.java index 19034a39894..5a23929e211 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListRegionSubscriptionsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListRegionSubscriptionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListRegionsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListRegionsResponse.java index 9f7e852314d..86e2edd930e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListRegionsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListRegionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListSmtpCredentialsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListSmtpCredentialsResponse.java index 063ad8a34d3..de5fc14429f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListSmtpCredentialsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListSmtpCredentialsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListStandardTagNamespacesResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListStandardTagNamespacesResponse.java index 759f17a9ae7..a910a1d223b 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListStandardTagNamespacesResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListStandardTagNamespacesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListSwiftPasswordsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListSwiftPasswordsResponse.java index 9f13f859497..8bc6287d6fb 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListSwiftPasswordsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListSwiftPasswordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTagDefaultsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTagDefaultsResponse.java index 1cae45dede7..a06083b8a1b 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTagDefaultsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTagDefaultsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTagNamespacesResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTagNamespacesResponse.java index 541c24acb98..ce9326d21c5 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTagNamespacesResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTagNamespacesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTaggingWorkRequestErrorsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTaggingWorkRequestErrorsResponse.java index ce700307380..b65f3ff0263 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTaggingWorkRequestErrorsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTaggingWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTaggingWorkRequestLogsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTaggingWorkRequestLogsResponse.java index eb732b8f65a..04bd07ec333 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTaggingWorkRequestLogsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTaggingWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTaggingWorkRequestsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTaggingWorkRequestsResponse.java index b004bbdf294..7b959ec4f69 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTaggingWorkRequestsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTaggingWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTagsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTagsResponse.java index 9b12a960cc1..44e44845184 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTagsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListTagsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListUserGroupMembershipsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListUserGroupMembershipsResponse.java index bc1ab0611c2..7ba9a0d545b 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListUserGroupMembershipsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListUserGroupMembershipsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListUsersResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListUsersResponse.java index 2b07c838e0d..039a97e361e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListUsersResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListUsersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListWorkRequestsResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListWorkRequestsResponse.java index 0432a6912a6..69f6dbf7c1d 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListWorkRequestsResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/MoveCompartmentResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/MoveCompartmentResponse.java index 2e043f8d059..6956e2fe9c2 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/MoveCompartmentResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/MoveCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/RecoverCompartmentResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/RecoverCompartmentResponse.java index 32a2c7db300..61eb2f71b8f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/RecoverCompartmentResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/RecoverCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/RemoveTagDefaultLockResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/RemoveTagDefaultLockResponse.java index 6b85830635a..93da5092704 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/RemoveTagDefaultLockResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/RemoveTagDefaultLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/RemoveTagNamespaceLockResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/RemoveTagNamespaceLockResponse.java index f530f379197..6bbe6782880 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/RemoveTagNamespaceLockResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/RemoveTagNamespaceLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/RemoveUserFromGroupResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/RemoveUserFromGroupResponse.java index f8b51fe3ae2..3accfa987ed 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/RemoveUserFromGroupResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/RemoveUserFromGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ResetIdpScimClientResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ResetIdpScimClientResponse.java index f099479499c..efcc894ce17 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ResetIdpScimClientResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/ResetIdpScimClientResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateAuthTokenResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateAuthTokenResponse.java index ba6a717e721..e068a95045f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateAuthTokenResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateAuthTokenResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateAuthenticationPolicyResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateAuthenticationPolicyResponse.java index a08a9d23c09..83954eb829f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateAuthenticationPolicyResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateAuthenticationPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateCompartmentResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateCompartmentResponse.java index ff3ad0d4ecc..c9ef20d82c0 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateCompartmentResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateCustomerSecretKeyResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateCustomerSecretKeyResponse.java index d3559d5f5f8..1bf4b53fa51 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateCustomerSecretKeyResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateCustomerSecretKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateDomainResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateDomainResponse.java index bf436e42cba..a516fde5996 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateDomainResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateDomainResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateDynamicGroupResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateDynamicGroupResponse.java index 3336844fceb..0c844f6d99e 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateDynamicGroupResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateDynamicGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateGroupResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateGroupResponse.java index 74a62ee34f7..3c675417c78 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateGroupResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateIdentityProviderResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateIdentityProviderResponse.java index 200b6677a31..e590907937a 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateIdentityProviderResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateIdentityProviderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateIdpGroupMappingResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateIdpGroupMappingResponse.java index 5792a82fba0..3c5fe9bf2c2 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateIdpGroupMappingResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateIdpGroupMappingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateNetworkSourceResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateNetworkSourceResponse.java index ef4dce01b37..d8dc6688c93 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateNetworkSourceResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateNetworkSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateOAuthClientCredentialResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateOAuthClientCredentialResponse.java index 71488be4be3..bfb89e36bc7 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateOAuthClientCredentialResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateOAuthClientCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdatePolicyResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdatePolicyResponse.java index dcae9e6423a..ed4eea616b5 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdatePolicyResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdatePolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateSmtpCredentialResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateSmtpCredentialResponse.java index 945e0d1911d..cfe4b855ffc 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateSmtpCredentialResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateSmtpCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateSwiftPasswordResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateSwiftPasswordResponse.java index fd8a48b783b..0a7c45cc994 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateSwiftPasswordResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateSwiftPasswordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateTagDefaultResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateTagDefaultResponse.java index 5108b4afe14..19d6624bb67 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateTagDefaultResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateTagDefaultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateTagNamespaceResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateTagNamespaceResponse.java index dfa8275c50f..7530cd8e945 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateTagNamespaceResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateTagNamespaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateTagResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateTagResponse.java index 20e24a622ce..1998522556f 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateTagResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateTagResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateUserCapabilitiesResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateUserCapabilitiesResponse.java index 3455c6370d1..c678918d7f4 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateUserCapabilitiesResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateUserCapabilitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateUserResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateUserResponse.java index 16ef0d3329b..f00a424ec1c 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateUserResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateUserResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateUserStateResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateUserStateResponse.java index 6103cd94481..746f62df0a6 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateUserStateResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UpdateUserStateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UploadApiKeyResponse.java b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UploadApiKeyResponse.java index 46bc3bf6ae6..15e5dd2bd83 100644 --- a/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UploadApiKeyResponse.java +++ b/bmc-identity/src/main/java/com/oracle/bmc/identity/responses/UploadApiKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identity.responses; diff --git a/bmc-identity/src/main/resources/com/oracle/bmc/identity/client.properties b/bmc-identity/src/main/resources/com/oracle/bmc/identity/client.properties index 03c9ae88318..57fa7f4b072 100644 --- a/bmc-identity/src/main/resources/com/oracle/bmc/identity/client.properties +++ b/bmc-identity/src/main/resources/com/oracle/bmc/identity/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-identitydataplane/pom.xml b/bmc-identitydataplane/pom.xml index b6375f16a15..f49d445396f 100644 --- a/bmc-identitydataplane/pom.xml +++ b/bmc-identitydataplane/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-identitydataplane @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/Dataplane.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/Dataplane.java index c8c6993223a..34901863502 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/Dataplane.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/Dataplane.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/DataplaneAsync.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/DataplaneAsync.java index 939e6d3a78e..f4568219c91 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/DataplaneAsync.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/DataplaneAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/DataplaneAsyncClient.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/DataplaneAsyncClient.java index 549b9b588b0..f3d6d8d01b6 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/DataplaneAsyncClient.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/DataplaneAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/DataplaneClient.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/DataplaneClient.java index c553da0fc20..3c6f7f8b525 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/DataplaneClient.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/DataplaneClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AccessibleCompartmentRequest.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AccessibleCompartmentRequest.java index 80230561055..2300e33bbfb 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AccessibleCompartmentRequest.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AccessibleCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AccessibleCompartmentResponse.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AccessibleCompartmentResponse.java index 0fc3ee95db5..a960b6b197a 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AccessibleCompartmentResponse.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AccessibleCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AssociationAuthorizationRequest.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AssociationAuthorizationRequest.java index cd99e5907c3..5b02dfdc917 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AssociationAuthorizationRequest.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AssociationAuthorizationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthServiceUser.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthServiceUser.java index 6f23b6dcdb3..23ede74a5b1 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthServiceUser.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthServiceUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticateClientDetails.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticateClientDetails.java index e08b61993d8..9e052de8a62 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticateClientDetails.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticateClientDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticateClientResult.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticateClientResult.java index fb87aec9fbe..f098b08f909 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticateClientResult.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticateClientResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticateUserResult.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticateUserResult.java index 900fe58bca8..b6b72d3df37 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticateUserResult.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticateUserResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticationPolicy.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticationPolicy.java index 5354165972e..76c181262d5 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticationPolicy.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticationPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticationPrincipal.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticationPrincipal.java index 777c1cdad37..2707b5540df 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticationPrincipal.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticationPrincipal.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticationRequest.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticationRequest.java index 7b42b403648..3d4355ac8f9 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticationRequest.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthenticationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthorizationRequest.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthorizationRequest.java index e20ced0fc4a..7745d87c400 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthorizationRequest.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/AuthorizationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/BadUserStateAuthenticateUserResult.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/BadUserStateAuthenticateUserResult.java index 0435979880a..bcede9549db 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/BadUserStateAuthenticateUserResult.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/BadUserStateAuthenticateUserResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/Claim.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/Claim.java index f8045c1b8f9..92f0dcc4bf8 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/Claim.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/Claim.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ClientCredentialsResponse.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ClientCredentialsResponse.java index e0a5e94e96d..86281d86ff1 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ClientCredentialsResponse.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ClientCredentialsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/CommonPrincipal.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/CommonPrincipal.java index 2f22f1fb840..9a8f74ffa59 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/CommonPrincipal.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/CommonPrincipal.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/Compartment.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/Compartment.java index a22dbea86d0..c6e5e69c9e1 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/Compartment.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/Compartment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/CompartmentMetadata.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/CompartmentMetadata.java index dfd8ba92f91..fa6b05f2f7e 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/CompartmentMetadata.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/CompartmentMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ContextVariable.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ContextVariable.java index 922b6eea778..836cd581df2 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ContextVariable.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ContextVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/CostTrackingTag.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/CostTrackingTag.java index 0b8225d77b0..e06519e9a78 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/CostTrackingTag.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/CostTrackingTag.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/CredentialAuthenticatorInfo.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/CredentialAuthenticatorInfo.java index ca2a3f79137..6891038a660 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/CredentialAuthenticatorInfo.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/CredentialAuthenticatorInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/DerivedKeyResponse.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/DerivedKeyResponse.java index 03243e5022c..32ab4c6beae 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/DerivedKeyResponse.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/DerivedKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/EntityStatus.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/EntityStatus.java index aea03b25f34..794f1872827 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/EntityStatus.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/EntityStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/FilterGroupMembershipDetails.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/FilterGroupMembershipDetails.java index 5553c07b9cc..ef9affdb449 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/FilterGroupMembershipDetails.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/FilterGroupMembershipDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/FilterGroupMembershipResult.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/FilterGroupMembershipResult.java index e49bd360cd2..bb7624757bf 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/FilterGroupMembershipResult.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/FilterGroupMembershipResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/GenerateScopedAccessTokenDetails.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/GenerateScopedAccessTokenDetails.java index 0be1414aeba..41fa2bcf332 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/GenerateScopedAccessTokenDetails.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/GenerateScopedAccessTokenDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/GenerateUserSecurityTokenDetails.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/GenerateUserSecurityTokenDetails.java index 8bfce300788..03eb8170c96 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/GenerateUserSecurityTokenDetails.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/GenerateUserSecurityTokenDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/IdentityProvider.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/IdentityProvider.java index 95328e3981f..c030773dd4a 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/IdentityProvider.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/IdentityProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/JWK.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/JWK.java index 17fb793a04b..fec3cd7c916 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/JWK.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/JWK.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/OnBehalfOfRequest.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/OnBehalfOfRequest.java index 8abde891d08..3e53feb5cad 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/OnBehalfOfRequest.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/OnBehalfOfRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/PasswordPolicy.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/PasswordPolicy.java index 6014878b7f8..0422616ed62 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/PasswordPolicy.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/PasswordPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/PasswordResetAuthenticationRequest.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/PasswordResetAuthenticationRequest.java index fa93ca1d081..b82f604e6ec 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/PasswordResetAuthenticationRequest.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/PasswordResetAuthenticationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/Permission.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/Permission.java index f2bdea9243e..bd131fbbe5a 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/Permission.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/Permission.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/PermissionContext.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/PermissionContext.java index 05af227b925..b94ff250515 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/PermissionContext.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/PermissionContext.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/Principal.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/Principal.java index 9f933afd6a8..ff1190e18a0 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/Principal.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/Principal.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/RefreshRequest.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/RefreshRequest.java index 2b561610d71..3e0ffe11b53 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/RefreshRequest.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/RefreshRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ResourcePrincipalSessionTokenRequest.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ResourcePrincipalSessionTokenRequest.java index 8cf23eab511..cf1420981db 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ResourcePrincipalSessionTokenRequest.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ResourcePrincipalSessionTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/SecurityToken.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/SecurityToken.java index 6562fcd099a..de040f11111 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/SecurityToken.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/SecurityToken.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/Tenant.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/Tenant.java index 5afe482f909..ee6420a167a 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/Tenant.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/Tenant.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/TenantNotFoundAuthenticateUserResult.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/TenantNotFoundAuthenticateUserResult.java index 2754f479a0a..742c70701a6 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/TenantNotFoundAuthenticateUserResult.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/TenantNotFoundAuthenticateUserResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ThickAuthorizationResponse.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ThickAuthorizationResponse.java index 3e82b8c7a7b..f0bb68e88a5 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ThickAuthorizationResponse.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ThickAuthorizationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ThinAssociationAuthorizationResponse.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ThinAssociationAuthorizationResponse.java index 02625a384e3..7ae5bce4e8c 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ThinAssociationAuthorizationResponse.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ThinAssociationAuthorizationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ThinAuthorizationResponse.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ThinAuthorizationResponse.java index d42aeba910f..7bc93be3a39 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ThinAuthorizationResponse.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ThinAuthorizationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/User.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/User.java index bbbe81e6356..c8350bd1b3a 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/User.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/User.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/UserNotFoundAuthenticateUserResult.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/UserNotFoundAuthenticateUserResult.java index 540232b3089..f87aeaf12cd 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/UserNotFoundAuthenticateUserResult.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/UserNotFoundAuthenticateUserResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ValidAuthenticateUserResult.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ValidAuthenticateUserResult.java index 6cdac815a0e..6477c2d7bd0 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ValidAuthenticateUserResult.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/ValidAuthenticateUserResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/X509FederationRequest.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/X509FederationRequest.java index e544ffa71e1..1df8982ed8c 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/X509FederationRequest.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/model/X509FederationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.model; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/requests/GenerateScopedAccessTokenRequest.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/requests/GenerateScopedAccessTokenRequest.java index e973950e4ca..76e85711886 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/requests/GenerateScopedAccessTokenRequest.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/requests/GenerateScopedAccessTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.requests; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/requests/GenerateUserSecurityTokenRequest.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/requests/GenerateUserSecurityTokenRequest.java index 9367d78b98d..840a6d373b0 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/requests/GenerateUserSecurityTokenRequest.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/requests/GenerateUserSecurityTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.requests; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/responses/GenerateScopedAccessTokenResponse.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/responses/GenerateScopedAccessTokenResponse.java index d35b8a800b2..c62273fdea5 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/responses/GenerateScopedAccessTokenResponse.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/responses/GenerateScopedAccessTokenResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.responses; diff --git a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/responses/GenerateUserSecurityTokenResponse.java b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/responses/GenerateUserSecurityTokenResponse.java index 35a115298a2..a221a38eae9 100644 --- a/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/responses/GenerateUserSecurityTokenResponse.java +++ b/bmc-identitydataplane/src/main/java/com/oracle/bmc/identitydataplane/responses/GenerateUserSecurityTokenResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydataplane.responses; diff --git a/bmc-identitydataplane/src/main/resources/com/oracle/bmc/identitydataplane/client.properties b/bmc-identitydataplane/src/main/resources/com/oracle/bmc/identitydataplane/client.properties index 34d8cb14237..454cf6b6432 100644 --- a/bmc-identitydataplane/src/main/resources/com/oracle/bmc/identitydataplane/client.properties +++ b/bmc-identitydataplane/src/main/resources/com/oracle/bmc/identitydataplane/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-identitydomains/pom.xml b/bmc-identitydomains/pom.xml index 5893e7aae69..0a23ae41aec 100644 --- a/bmc-identitydomains/pom.xml +++ b/bmc-identitydomains/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-identitydomains @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/IdentityDomains.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/IdentityDomains.java index 3e5cc46b9ae..67bc5aa511e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/IdentityDomains.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/IdentityDomains.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/IdentityDomainsAsync.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/IdentityDomainsAsync.java index e17d60d5d9a..ce8286b68e2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/IdentityDomainsAsync.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/IdentityDomainsAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/IdentityDomainsAsyncClient.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/IdentityDomainsAsyncClient.java index 5ef0370e7a9..1e8d9282e4a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/IdentityDomainsAsyncClient.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/IdentityDomainsAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/IdentityDomainsClient.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/IdentityDomainsClient.java index 1d79483b311..976a2aeb699 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/IdentityDomainsClient.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/IdentityDomainsClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfo.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfo.java index 612ed9df969..61720a3b891 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfo.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoApp.java index 7bed945cbff..dab37e5f082 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoMatchingOwners.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoMatchingOwners.java index 94654d23aa3..5d13f3e00c2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoMatchingOwners.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoMatchingOwners.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoObjectClass.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoObjectClass.java index cf4d8fd9ac1..430620a0657 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoObjectClass.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoObjectClass.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoOwner.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoOwner.java index 42b5ab6b38e..5c5ff7b8851 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoOwner.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoOwner.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoResourceType.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoResourceType.java index e8b6bafc384..e7325e734f1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoResourceType.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoResourceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoSearchRequest.java index ed6075d8210..cac903d1b9c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoUserWalletArtifact.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoUserWalletArtifact.java index 3da81b642ff..b8d88719d49 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoUserWalletArtifact.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfoUserWalletArtifact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfos.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfos.java index 16f51b0971f..94e5f1e0e0d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfos.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountMgmtInfos.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountRecoverySetting.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountRecoverySetting.java index b478e8eac51..11fa3889d3a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountRecoverySetting.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountRecoverySetting.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountRecoverySettings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountRecoverySettings.java index e97323c92d3..f8e26cec4d3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountRecoverySettings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AccountRecoverySettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Addresses.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Addresses.java index 63c7073767a..a3656d976d0 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Addresses.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Addresses.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApiKey.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApiKey.java index 2eff770f4d0..6f06f30e53e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApiKey.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApiKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApiKeySearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApiKeySearchRequest.java index efaeb371580..5f1d72a5994 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApiKeySearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApiKeySearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApiKeyUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApiKeyUser.java index d7f536269a3..40d72431910 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApiKeyUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApiKeyUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApiKeys.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApiKeys.java index bb4d3cf4b67..7cafaf85804 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApiKeys.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApiKeys.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/App.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/App.java index aeca50cbdb5..a5f5380cb03 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/App.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/App.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAccounts.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAccounts.java index 81c14458943..56bff82b4f1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAccounts.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAccounts.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAdminRoles.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAdminRoles.java index f15d37f97bf..b7cdd3d302b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAdminRoles.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAdminRoles.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAliasApps.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAliasApps.java index 54c569965ab..9d37be36fbb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAliasApps.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAliasApps.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAllowAuthzPolicy.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAllowAuthzPolicy.java index bb1ce6cadbf..62e7bdc2d0e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAllowAuthzPolicy.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAllowAuthzPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAllowedScopes.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAllowedScopes.java index 594cf1f072f..b3425df04cd 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAllowedScopes.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAllowedScopes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAllowedTags.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAllowedTags.java index 7211a064434..2c4e1411e60 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAllowedTags.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAllowedTags.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAppResources.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAppResources.java index f16bd0b6eb9..8de42789a8c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAppResources.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAppResources.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAppSignonPolicy.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAppSignonPolicy.java index 9f0df266516..a19cad2bfbc 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAppSignonPolicy.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAppSignonPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAppsNetworkPerimeters.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAppsNetworkPerimeters.java index ee356dcbebf..74f993f3385 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAppsNetworkPerimeters.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAppsNetworkPerimeters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAsOPCService.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAsOPCService.java index 4e31b08683a..4e1a7822067 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAsOPCService.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAsOPCService.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAttrRenderingMetadata.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAttrRenderingMetadata.java index 5353874b861..7627ef34a53 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAttrRenderingMetadata.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppAttrRenderingMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppBasedOnTemplate.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppBasedOnTemplate.java index c3472f06756..ba88291d83d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppBasedOnTemplate.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppBasedOnTemplate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppBundleConfigurationProperties.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppBundleConfigurationProperties.java index 73b1a96f911..9e2ac49d086 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppBundleConfigurationProperties.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppBundleConfigurationProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppBundlePoolConfiguration.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppBundlePoolConfiguration.java index fa1dd80d357..6d36ed4c2d6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppBundlePoolConfiguration.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppBundlePoolConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppCertificates.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppCertificates.java index f7201801a5c..7ea0ea8e9cb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppCertificates.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppCertificates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppCloudControlProperties.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppCloudControlProperties.java index 35d12e457d5..8f04f07492f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppCloudControlProperties.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppCloudControlProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppConnectorBundle.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppConnectorBundle.java index d2359be8c87..ee91b2265a0 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppConnectorBundle.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppConnectorBundle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppDenyAuthzPolicy.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppDenyAuthzPolicy.java index f313246c9c0..25c0fdbeb96 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppDenyAuthzPolicy.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppDenyAuthzPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppDomainApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppDomainApp.java index c3988ac52cc..32886bc110d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppDomainApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppDomainApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppEditableAttributes.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppEditableAttributes.java index 23bcb95feaf..98654430f51 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppEditableAttributes.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppEditableAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionDbcsApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionDbcsApp.java index 6ace81bb491..072d422b762 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionDbcsApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionDbcsApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionEnterpriseAppApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionEnterpriseAppApp.java index abf8bb1d633..63145477d49 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionEnterpriseAppApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionEnterpriseAppApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionFormFillAppApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionFormFillAppApp.java index 750b7a66cca..cf2575d17ed 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionFormFillAppApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionFormFillAppApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionFormFillAppTemplateAppTemplate.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionFormFillAppTemplateAppTemplate.java index 42d901ed553..268d895deba 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionFormFillAppTemplateAppTemplate.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionFormFillAppTemplateAppTemplate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionKerberosRealmApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionKerberosRealmApp.java index 1c9da4b1655..82e4058ee1a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionKerberosRealmApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionKerberosRealmApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionManagedappApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionManagedappApp.java index 9717f879150..f94a1ae947a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionManagedappApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionManagedappApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionMulticloudServiceAppApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionMulticloudServiceAppApp.java index 1e2014c7b98..589b0487028 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionMulticloudServiceAppApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionMulticloudServiceAppApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionOpcServiceApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionOpcServiceApp.java index 58c8110fa3e..0569bbc4bab 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionOpcServiceApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionOpcServiceApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionRadiusAppApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionRadiusAppApp.java index 99b4efdb757..2ef505ba1d6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionRadiusAppApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionRadiusAppApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionRequestableApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionRequestableApp.java index 8f3532a0823..1f9c3c9f66f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionRequestableApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionRequestableApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionSamlServiceProviderApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionSamlServiceProviderApp.java index 06b1f0b0022..c21209c0cea 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionSamlServiceProviderApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionSamlServiceProviderApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionWebTierPolicyApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionWebTierPolicyApp.java index 09050333aca..41fd7ca0b6d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionWebTierPolicyApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppExtensionWebTierPolicyApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppFlatFileBundleConfigurationProperties.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppFlatFileBundleConfigurationProperties.java index b71991010f5..97e050f448f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppFlatFileBundleConfigurationProperties.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppFlatFileBundleConfigurationProperties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppFlatFileConnectorBundle.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppFlatFileConnectorBundle.java index 5d39ca303f0..cb30590b3dd 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppFlatFileConnectorBundle.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppFlatFileConnectorBundle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppFormFillUrlMatch.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppFormFillUrlMatch.java index c592821210b..afb3c39fa6c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppFormFillUrlMatch.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppFormFillUrlMatch.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppGrantedAppRoles.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppGrantedAppRoles.java index bb56c972c39..84e41def5dc 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppGrantedAppRoles.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppGrantedAppRoles.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppGrants.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppGrants.java index 0b8fac54478..2c42ceff412 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppGrants.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppGrants.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppGroupAssertionAttributes.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppGroupAssertionAttributes.java index 056321d94b8..9332aad692a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppGroupAssertionAttributes.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppGroupAssertionAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppGroupMembershipToReturn.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppGroupMembershipToReturn.java index 2726da25c18..7a61c990da5 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppGroupMembershipToReturn.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppGroupMembershipToReturn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppIdentityBridges.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppIdentityBridges.java index 248588a91e6..0b0281c3fb9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppIdentityBridges.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppIdentityBridges.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppIdentityProviders.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppIdentityProviders.java index 1bf3951b9d8..5d07e7e4ee8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppIdentityProviders.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppIdentityProviders.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppIdpPolicy.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppIdpPolicy.java index c7bf973a994..6120841d9d6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppIdpPolicy.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppIdpPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppObjectClasses.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppObjectClasses.java index f6663d864f2..c97e4b551bc 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppObjectClasses.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppObjectClasses.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppOutboundAssertionAttributes.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppOutboundAssertionAttributes.java index 332198d6f0c..5d06a4401cc 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppOutboundAssertionAttributes.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppOutboundAssertionAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppProtectableSecondaryAudiences.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppProtectableSecondaryAudiences.java index 64c6af33b6e..9ff16c8555d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppProtectableSecondaryAudiences.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppProtectableSecondaryAudiences.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRadiusPolicy.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRadiusPolicy.java index 041804757c9..e5c97b06fae 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRadiusPolicy.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRadiusPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRole.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRole.java index 407a89a8ef5..e22b7122f80 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRole.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRole.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRoleApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRoleApp.java index f51ccfc9101..14b66dab21a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRoleApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRoleApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRoleMembers.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRoleMembers.java index 20870f71107..37e9aa981d8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRoleMembers.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRoleMembers.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRoleSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRoleSearchRequest.java index a1c44d4b2c8..36da1337855 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRoleSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRoleSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRoles.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRoles.java index 693adf6a615..96045c3baab 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRoles.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppRoles.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppSamlServiceProvider.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppSamlServiceProvider.java index 9cb9b0775a6..fec3f4e7e25 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppSamlServiceProvider.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppSamlServiceProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppScopes.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppScopes.java index 32d37b6f299..cbc3c5ab6c5 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppScopes.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppScopes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppSearchRequest.java index d2ac1f40b88..84b6d0b1d15 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppServiceParams.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppServiceParams.java index d11cd4f0754..db4a5f17413 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppServiceParams.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppServiceParams.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppSignonPolicy.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppSignonPolicy.java index 8661c82278a..8b7faa5535a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppSignonPolicy.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppSignonPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppStatusChanger.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppStatusChanger.java index f01407a1507..2b634b6b774 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppStatusChanger.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppStatusChanger.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppTermsOfUse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppTermsOfUse.java index c706e9a26fe..fc84677e7d9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppTermsOfUse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppTermsOfUse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppThreeLeggedOAuthCredential.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppThreeLeggedOAuthCredential.java index 01bc28febb3..afcecf7e033 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppThreeLeggedOAuthCredential.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppThreeLeggedOAuthCredential.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppTrustPolicies.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppTrustPolicies.java index 737be5ca030..c2221f7f8fb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppTrustPolicies.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppTrustPolicies.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppUserAssertionAttributes.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppUserAssertionAttributes.java index be7ce8ec157..94dd88f1c72 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppUserAssertionAttributes.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppUserAssertionAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppUserRoles.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppUserRoles.java index 5e279fa878d..e1e9181145c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppUserRoles.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AppUserRoles.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflow.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflow.java index df4ca4ffec0..32bd9be8f52 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflow.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflow.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowApprovalWorkflowSteps.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowApprovalWorkflowSteps.java index 6bdd1893de9..67b5ac4d602 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowApprovalWorkflowSteps.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowApprovalWorkflowSteps.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowAssignment.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowAssignment.java index 585afa9861a..ea4687b14fe 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowAssignment.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowAssignment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowAssignmentApprovalWorkflow.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowAssignmentApprovalWorkflow.java index 51d0b6539f7..16a42813c2e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowAssignmentApprovalWorkflow.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowAssignmentApprovalWorkflow.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowAssignmentAssignedTo.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowAssignmentAssignedTo.java index eaaa5040861..b81278c382c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowAssignmentAssignedTo.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowAssignmentAssignedTo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowAssignments.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowAssignments.java index 31d061fab13..3031356607e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowAssignments.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowAssignments.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowMaxDuration.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowMaxDuration.java index de1d224bf23..00c75d27499 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowMaxDuration.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowMaxDuration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowStep.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowStep.java index bd29533861b..95860df9027 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowStep.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowStep.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowStepApprovers.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowStepApprovers.java index 3467f9ab2c2..c8c17921e4a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowStepApprovers.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowStepApprovers.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowSteps.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowSteps.java index 0a673c56ac0..d8b1d0626ce 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowSteps.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflowSteps.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflows.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflows.java index c4da5335fa1..181dbebb4a4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflows.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ApprovalWorkflows.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Apps.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Apps.java index 6a0f4e9ea42..c6a03307d01 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Apps.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Apps.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AttributeSets.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AttributeSets.java index b2ff11d2e0e..25f87520043 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AttributeSets.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AttributeSets.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthToken.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthToken.java index 6ceab4abfd6..37fa7a63951 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthToken.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthToken.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthTokenSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthTokenSearchRequest.java index b311d8eb2bb..590e6dbde74 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthTokenSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthTokenSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthTokenUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthTokenUser.java index df8d9e0054c..fe1de6d5de0 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthTokenUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthTokenUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthTokens.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthTokens.java index acab0bbd8f5..f46d5745d5b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthTokens.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthTokens.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSetting.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSetting.java index 3531fdbfa5a..0b47aa350b7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSetting.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSetting.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettings.java index a9f09b501fc..20c68857b28 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsBypassCodeSettings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsBypassCodeSettings.java index 9978e4e50c7..c92d9b17326 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsBypassCodeSettings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsBypassCodeSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsClientAppSettings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsClientAppSettings.java index 65bd6d115db..d36d10f7e01 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsClientAppSettings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsClientAppSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsCompliancePolicy.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsCompliancePolicy.java index 405d944d0a0..6c50d1d4aee 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsCompliancePolicy.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsCompliancePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsDuoSecuritySettings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsDuoSecuritySettings.java index 0c967e962c3..ceef2267a6f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsDuoSecuritySettings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsDuoSecuritySettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsEmailSettings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsEmailSettings.java index 436180d6d93..13e70d894b7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsEmailSettings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsEmailSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsEndpointRestrictions.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsEndpointRestrictions.java index 70bf96bb382..1341edc923b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsEndpointRestrictions.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsEndpointRestrictions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsIdentityStoreSettings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsIdentityStoreSettings.java index a521379a1f9..3804d65ae94 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsIdentityStoreSettings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsIdentityStoreSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsNotificationSettings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsNotificationSettings.java index c5918813b8f..8b50bf9a731 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsNotificationSettings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsNotificationSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsSearchRequest.java index 47bbe83bd01..f93aec99fa4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsThirdPartyFactor.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsThirdPartyFactor.java index 25cbcad636e..c461fa3e671 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsThirdPartyFactor.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsThirdPartyFactor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsTotpSettings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsTotpSettings.java index 66c22e9fed1..638563e98c1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsTotpSettings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorSettingsTotpSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorsRemover.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorsRemover.java index 7be8826c926..fae82e85da2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorsRemover.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorsRemover.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorsRemoverUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorsRemoverUser.java index 9f1e4a14493..cd49fbef49c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorsRemoverUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/AuthenticationFactorsRemoverUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSetting.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSetting.java index b6315a473bc..958a31aa621 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSetting.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSetting.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettings.java index 2af5a8ddfcb..e6cd6e72924 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsCompanyNames.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsCompanyNames.java index f52ff3468ec..0662c0c26dd 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsCompanyNames.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsCompanyNames.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsDefaultCompanyNames.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsDefaultCompanyNames.java index ca057dd4619..36d0d45c4db 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsDefaultCompanyNames.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsDefaultCompanyNames.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsDefaultImages.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsDefaultImages.java index 4502df0afbc..f34e36897b2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsDefaultImages.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsDefaultImages.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsDefaultLoginTexts.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsDefaultLoginTexts.java index d7a2b397256..e36ab706cf8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsDefaultLoginTexts.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsDefaultLoginTexts.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsImages.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsImages.java index 6d655ed2104..663e6d0ac3a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsImages.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsImages.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsLoginTexts.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsLoginTexts.java index a1c555bf05c..aa77688633d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsLoginTexts.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/BrandingSettingsLoginTexts.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGate.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGate.java index 88aa1989efd..2b9f58c1130 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGate.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateExtMappings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateExtMappings.java index 0dc74a715b7..51b0039cae9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateExtMappings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateExtMappings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateExtServers.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateExtServers.java index e872516c72e..0efd75258a1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateExtServers.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateExtServers.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateExtUpstreamServerGroups.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateExtUpstreamServerGroups.java index cb64b237f26..e9339de198a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateExtUpstreamServerGroups.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateExtUpstreamServerGroups.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateExtUpstreamServers.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateExtUpstreamServers.java index 2a72c6ab1f9..9d6b52efd46 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateExtUpstreamServers.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateExtUpstreamServers.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMapping.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMapping.java index 6a54c298811..74fcb30d700 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMapping.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappingCloudGate.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappingCloudGate.java index bf2753efb85..40e47b28d2d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappingCloudGate.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappingCloudGate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappingGatewayApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappingGatewayApp.java index f6241bdaf77..0c5deed622f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappingGatewayApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappingGatewayApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappingSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappingSearchRequest.java index 5d1db6ba0d8..3ec4e5bb648 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappingSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappingSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappingServer.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappingServer.java index 028142ad711..2ce3ccca636 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappingServer.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappingServer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappingUpstreamServerGroup.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappingUpstreamServerGroup.java index 2e0d5195424..565ac46dcb9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappingUpstreamServerGroup.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappingUpstreamServerGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappings.java index d3b575f8dd4..48cdb43a1e7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateMappings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateOauthClient.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateOauthClient.java index ad136435103..6a32ddecc2a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateOauthClient.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateOauthClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateSearchRequest.java index e51f8d32cd1..2f0cf6bfe8c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateServer.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateServer.java index 1a75783500e..93573d4cccb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateServer.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateServer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateServerCloudGate.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateServerCloudGate.java index 28954cff9b1..162976377f4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateServerCloudGate.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateServerCloudGate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateServerSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateServerSearchRequest.java index 91f7f3c21ee..974233eea3f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateServerSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateServerSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateServers.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateServers.java index 23ad6299d37..3afd76d9393 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateServers.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGateServers.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGates.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGates.java index 3dcd305df72..e748d58f7e3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGates.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CloudGates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Condition.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Condition.java index a70a4013144..6103595fec6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Condition.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Condition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ConditionExtensionOciconsolesignonpolicyconsentPolicy.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ConditionExtensionOciconsolesignonpolicyconsentPolicy.java index 5a011596335..4a8dcefd2a1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ConditionExtensionOciconsolesignonpolicyconsentPolicy.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ConditionExtensionOciconsolesignonpolicyconsentPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ConditionSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ConditionSearchRequest.java index bdfcdc59ecf..590531f8e9d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ConditionSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ConditionSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Conditions.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Conditions.java index 88da10fe53d..3321ad0adab 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Conditions.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Conditions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CustomerSecretKey.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CustomerSecretKey.java index 9208a64db1d..2196c408c49 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CustomerSecretKey.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CustomerSecretKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CustomerSecretKeySearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CustomerSecretKeySearchRequest.java index 84d8b0c39bd..96a857aeb9a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CustomerSecretKeySearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CustomerSecretKeySearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CustomerSecretKeyUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CustomerSecretKeyUser.java index 902e87536dd..53aa374453c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CustomerSecretKeyUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CustomerSecretKeyUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CustomerSecretKeys.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CustomerSecretKeys.java index a4d55686a44..6de0407b83e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CustomerSecretKeys.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/CustomerSecretKeys.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DefinedTags.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DefinedTags.java index 29fdda5e876..2ea8d90aa52 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DefinedTags.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DefinedTags.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DynamicResourceGroup.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DynamicResourceGroup.java index 7bb47430328..3f80ab286d0 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DynamicResourceGroup.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DynamicResourceGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DynamicResourceGroupDynamicGroupAppRoles.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DynamicResourceGroupDynamicGroupAppRoles.java index bf18499a0bf..2fa3b64caca 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DynamicResourceGroupDynamicGroupAppRoles.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DynamicResourceGroupDynamicGroupAppRoles.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DynamicResourceGroupGrants.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DynamicResourceGroupGrants.java index 9fcffdc5c1c..9fc19a771ef 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DynamicResourceGroupGrants.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DynamicResourceGroupGrants.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DynamicResourceGroupSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DynamicResourceGroupSearchRequest.java index 8e22b9da2fc..d5c3d50849c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DynamicResourceGroupSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DynamicResourceGroupSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DynamicResourceGroups.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DynamicResourceGroups.java index 538c9691ca5..08bc54fa080 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DynamicResourceGroups.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/DynamicResourceGroups.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionAdaptiveUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionAdaptiveUser.java index 1f157212f15..f758e4b4335 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionAdaptiveUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionAdaptiveUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionCapabilitiesUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionCapabilitiesUser.java index a81ce21e364..58b6fdaafcc 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionCapabilitiesUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionCapabilitiesUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionDbCredentialsUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionDbCredentialsUser.java index 8eb431d9686..c19e26c95d1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionDbCredentialsUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionDbCredentialsUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionDbUserUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionDbUserUser.java index 77fe3e9dca0..89ee36810e2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionDbUserUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionDbUserUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionDbcsGroup.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionDbcsGroup.java index 15ed2daa3b0..6e4cdd1b372 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionDbcsGroup.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionDbcsGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionDynamicGroup.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionDynamicGroup.java index f89cabb0e29..adf891d0632 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionDynamicGroup.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionDynamicGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionEnterprise20User.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionEnterprise20User.java index 4363b38b802..824126f90c7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionEnterprise20User.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionEnterprise20User.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionFidoAuthenticationFactorSettings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionFidoAuthenticationFactorSettings.java index 84de04db407..ba51bb39d74 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionFidoAuthenticationFactorSettings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionFidoAuthenticationFactorSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionGroupGroup.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionGroupGroup.java index 082bef02c7f..717061cb805 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionGroupGroup.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionGroupGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionKerberosUserUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionKerberosUserUser.java index b99a81e66d4..99467f86427 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionKerberosUserUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionKerberosUserUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionMeUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionMeUser.java index 96f1cb39e8b..2cc02f9bed5 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionMeUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionMeUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionMessagesError.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionMessagesError.java index dc1e6664c0a..9c99c2cc443 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionMessagesError.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionMessagesError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionMfaUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionMfaUser.java index 5bc8c37f2fd..1ff20ab6dcf 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionMfaUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionMfaUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionOCITags.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionOCITags.java index 6c8e2af4910..5db567218f1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionOCITags.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionOCITags.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionPasswordStateUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionPasswordStateUser.java index adf1359609f..c0c4ee4e5c3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionPasswordStateUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionPasswordStateUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionPasswordlessUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionPasswordlessUser.java index bba6cf28127..e3be1531a62 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionPasswordlessUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionPasswordlessUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionPosixGroup.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionPosixGroup.java index bbd87d95389..9925971138e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionPosixGroup.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionPosixGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionPosixUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionPosixUser.java index ba6fb436af5..6ad791337cf 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionPosixUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionPosixUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionRequestableGroup.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionRequestableGroup.java index e1814045020..fe87e4ecd5b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionRequestableGroup.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionRequestableGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSecurityQuestionsUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSecurityQuestionsUser.java index ec062383fd8..699cda945a3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSecurityQuestionsUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSecurityQuestionsUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSelfChangeUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSelfChangeUser.java index b0d526a7e44..726815599a3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSelfChangeUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSelfChangeUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSelfRegistrationUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSelfRegistrationUser.java index 27b31eac8ad..321d149bc6d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSelfRegistrationUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSelfRegistrationUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSffUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSffUser.java index e3d062f13cc..7030a60130d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSffUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSffUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSocialAccountUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSocialAccountUser.java index fb626137e1e..263f1bd9d15 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSocialAccountUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSocialAccountUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSocialIdentityProvider.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSocialIdentityProvider.java index 8f00dbcc86a..32f86931eeb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSocialIdentityProvider.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionSocialIdentityProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionTermsOfUseUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionTermsOfUseUser.java index 29b604b5622..8b5209260f3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionTermsOfUseUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionTermsOfUseUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionThirdPartyAuthenticationFactorSettings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionThirdPartyAuthenticationFactorSettings.java index ab1e3d54d1e..abe7b784ce7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionThirdPartyAuthenticationFactorSettings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionThirdPartyAuthenticationFactorSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionUserCredentialsUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionUserCredentialsUser.java index 268997daf73..dbe095d15b0 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionUserCredentialsUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionUserCredentialsUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionUserStateUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionUserStateUser.java index 491bed49818..0be112d6c87 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionUserStateUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionUserStateUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionUserUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionUserUser.java index 8215b04abd5..ebec39b09af 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionUserUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionUserUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionX509IdentityProvider.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionX509IdentityProvider.java index 4f5bbba391b..93fb4e1eb65 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionX509IdentityProvider.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ExtensionX509IdentityProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/FreeformTags.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/FreeformTags.java index 48ab9d10787..2dd2ab7fd89 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/FreeformTags.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/FreeformTags.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Grant.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Grant.java index 32439b4dedb..3e6399dff41 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Grant.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Grant.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantApp.java index 812c0b9a171..d16e473213b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantAppEntitlementCollection.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantAppEntitlementCollection.java index 76cbcdba847..ffdddf6d9f9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantAppEntitlementCollection.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantAppEntitlementCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantEntitlement.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantEntitlement.java index c31d89e0d46..df6339777c9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantEntitlement.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantEntitlement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantGrantee.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantGrantee.java index b966c2bf3e4..416ed004d6f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantGrantee.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantGrantee.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantGrantor.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantGrantor.java index 2e5588aee9b..aca0b952b1d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantGrantor.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantGrantor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantSearchRequest.java index 321323930d6..7609498b51f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GrantSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Grants.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Grants.java index 2f5a3891644..ce335b1cda7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Grants.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Grants.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Group.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Group.java index 7227af7d3a5..badda325245 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Group.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Group.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtAppRoles.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtAppRoles.java index 65657c13baa..af709915ce0 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtAppRoles.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtAppRoles.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtDomainLevelSchemaNames.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtDomainLevelSchemaNames.java index a47ec42d281..96b22b550ab 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtDomainLevelSchemaNames.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtDomainLevelSchemaNames.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtGrants.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtGrants.java index 74d01a38b0c..8563acc4629 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtGrants.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtGrants.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtInstanceLevelSchemaNames.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtInstanceLevelSchemaNames.java index 87e8ce9cd57..24372b4d422 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtInstanceLevelSchemaNames.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtInstanceLevelSchemaNames.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtOwners.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtOwners.java index 9bf0057c059..d7546a4f859 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtOwners.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtOwners.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtPasswordPolicy.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtPasswordPolicy.java index a56247d0aeb..7b39f73d2ab 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtPasswordPolicy.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtPasswordPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtSyncedFromApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtSyncedFromApp.java index 909a2ea3f24..22ff08e1dd0 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtSyncedFromApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupExtSyncedFromApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupMembers.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupMembers.java index 530577d26c8..33027303752 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupMembers.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupMembers.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupSearchRequest.java index e25b47fe095..116366fcef2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/GroupSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Groups.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Groups.java index e1dae9881ee..859bc48db47 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Groups.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Groups.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdcsCreatedBy.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdcsCreatedBy.java index 0cc52c8df06..557284f4ce3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdcsCreatedBy.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdcsCreatedBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdcsLastModifiedBy.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdcsLastModifiedBy.java index 12af097f268..1e709b724b8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdcsLastModifiedBy.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdcsLastModifiedBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdcsPreventedOperations.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdcsPreventedOperations.java index 5156ab9fd8e..ca0f1bca4e7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdcsPreventedOperations.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdcsPreventedOperations.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityPropagationTrust.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityPropagationTrust.java index cf777dc46d8..70535cbda2e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityPropagationTrust.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityPropagationTrust.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityPropagationTrustImpersonationServiceUsers.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityPropagationTrustImpersonationServiceUsers.java index e54eac77458..ec8fffc5833 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityPropagationTrustImpersonationServiceUsers.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityPropagationTrustImpersonationServiceUsers.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityPropagationTrustKeytab.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityPropagationTrustKeytab.java index 5cb92bc106f..737fb4c0d5d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityPropagationTrustKeytab.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityPropagationTrustKeytab.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityPropagationTrusts.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityPropagationTrusts.java index 0fda2e4c476..92a157b64d2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityPropagationTrusts.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityPropagationTrusts.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProvider.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProvider.java index ab59ca34f08..b6d7cb1c769 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProvider.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderCorrelationPolicy.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderCorrelationPolicy.java index 5515b3b54fb..020ddc659b3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderCorrelationPolicy.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderCorrelationPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderJitProvAssignedGroups.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderJitProvAssignedGroups.java index e150bf80430..b1095030333 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderJitProvAssignedGroups.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderJitProvAssignedGroups.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderJitUserProvAssignedGroups.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderJitUserProvAssignedGroups.java index b8d93554d05..196963355ce 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderJitUserProvAssignedGroups.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderJitUserProvAssignedGroups.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderJitUserProvAttributes.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderJitUserProvAttributes.java index b7abf4c5092..41e7f87c1f8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderJitUserProvAttributes.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderJitUserProvAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderJitUserProvGroupMappings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderJitUserProvGroupMappings.java index 8e02c1cb26a..74b07063deb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderJitUserProvGroupMappings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderJitUserProvGroupMappings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderRelayIdpParamMappings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderRelayIdpParamMappings.java index ecf7a1065cc..ebdc4843a49 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderRelayIdpParamMappings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderRelayIdpParamMappings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderSearchRequest.java index 918b1d70850..a258a87543a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviderSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviders.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviders.java index 3c38cc37df6..0c8f994ee6b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviders.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentityProviders.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySetting.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySetting.java index 73799378f92..d2f97e4ceef 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySetting.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySetting.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettings.java index 3ae6bbff731..128eb4b967c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettingsMyProfile.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettingsMyProfile.java index d8dd6c4fe42..5365fe4120f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettingsMyProfile.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettingsMyProfile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettingsPOSIXGid.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettingsPOSIXGid.java index f1bd1c5139f..d8bd9bc35d8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettingsPOSIXGid.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettingsPOSIXGid.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettingsPOSIXUid.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettingsPOSIXUid.java index 02bbe5854be..dabb50fa4e1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettingsPOSIXUid.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettingsPOSIXUid.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettingsSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettingsSearchRequest.java index 3ecb2693aa7..7362c9a9690 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettingsSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettingsSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettingsTokens.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettingsTokens.java index f29a6bdbba5..054aec9b805 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettingsTokens.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/IdentitySettingsTokens.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/KmsiSetting.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/KmsiSetting.java index 54b395171c6..bde2fd5043c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/KmsiSetting.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/KmsiSetting.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/KmsiSettings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/KmsiSettings.java index 93e298f54dd..51abe458771 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/KmsiSettings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/KmsiSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/KmsiSettingsSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/KmsiSettingsSearchRequest.java index c302d288ee1..5ddf68f1eff 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/KmsiSettingsSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/KmsiSettingsSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MappedAttribute.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MappedAttribute.java index a4e2bbd1cd2..019ceeb8668 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MappedAttribute.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MappedAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MappedAttributeAttributeMappings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MappedAttributeAttributeMappings.java index 4fe3cbe3e5d..2e4ed3b8f40 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MappedAttributeAttributeMappings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MappedAttributeAttributeMappings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MappedAttributeSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MappedAttributeSearchRequest.java index dd4c07eae98..4958ff78a2f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MappedAttributeSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MappedAttributeSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MappedAttributes.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MappedAttributes.java index 205d78080b0..da94d262a08 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MappedAttributes.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MappedAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Me.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Me.java index 86e39574717..967a2ed55bb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Me.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Me.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeEmails.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeEmails.java index cd9222175d0..68690a96cd6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeEmails.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeEmails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeEntitlements.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeEntitlements.java index f40fffcdf00..8afb3424ea5 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeEntitlements.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeEntitlements.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeGroups.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeGroups.java index 017cb6a8911..9798919dcf2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeGroups.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeGroups.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeIms.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeIms.java index bc798bfa010..e4892e72c5a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeIms.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeIms.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeName.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeName.java index 25b7e21934b..488232e7545 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeName.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeName.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MePasswordChanger.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MePasswordChanger.java index 629af68250e..37e7798dccb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MePasswordChanger.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MePasswordChanger.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MePhoneNumbers.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MePhoneNumbers.java index 3177c9bcb29..76b357aea2b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MePhoneNumbers.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MePhoneNumbers.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MePhotos.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MePhotos.java index 74c3891ea8a..4130b4a28c1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MePhotos.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MePhotos.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeRoles.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeRoles.java index 84be830fe3f..0c7b0d3c1f5 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeRoles.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeRoles.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeX509Certificates.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeX509Certificates.java index cd87fa88f73..e2e96d22e5a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeX509Certificates.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MeX509Certificates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Meta.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Meta.java index d5c28517935..fc8029f735a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Meta.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Meta.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyApiKey.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyApiKey.java index f79b26d8243..fb44410972e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyApiKey.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyApiKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyApiKeyUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyApiKeyUser.java index 8162b93013d..9c487385635 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyApiKeyUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyApiKeyUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyApiKeys.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyApiKeys.java index 79eb2efbf5e..c9cdd79259f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyApiKeys.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyApiKeys.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyApp.java index 1fc035f941a..b44dd87516e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAppApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAppApp.java index 09dd747e5a4..e6daff82be2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAppApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAppApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAppOwner.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAppOwner.java index 351ebd66e88..6f3d3a22340 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAppOwner.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAppOwner.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAppSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAppSearchRequest.java index 4a2ff5cb3d9..102c863888c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAppSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAppSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAppUserWalletArtifact.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAppUserWalletArtifact.java index 5cd7c4bfceb..9ef31ef4a73 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAppUserWalletArtifact.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAppUserWalletArtifact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyApps.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyApps.java index d5e80b1d362..2b3220b264f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyApps.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyApps.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthToken.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthToken.java index 8de0aca7f4e..b8d25bf69e5 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthToken.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthToken.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthTokenUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthTokenUser.java index 76f7b26d0a8..59cab876fb8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthTokenUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthTokenUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthTokens.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthTokens.java index 658a30f743f..220fa7fbdbc 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthTokens.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthTokens.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorInitiator.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorInitiator.java index 9433016109d..98f59289488 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorInitiator.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorInitiator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorInitiatorAdditionalAttributes.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorInitiatorAdditionalAttributes.java index bee8e4bb8ae..92b48bf8a96 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorInitiatorAdditionalAttributes.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorInitiatorAdditionalAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorInitiatorThirdPartyFactor.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorInitiatorThirdPartyFactor.java index 667ee48868f..1d38946a498 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorInitiatorThirdPartyFactor.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorInitiatorThirdPartyFactor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorValidator.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorValidator.java index 980598f3cbd..81c7404b3c4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorValidator.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorValidator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorValidatorAdditionalAttributes.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorValidatorAdditionalAttributes.java index 4da2e2207e7..68e5772bccd 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorValidatorAdditionalAttributes.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorValidatorAdditionalAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorValidatorSecurityQuestions.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorValidatorSecurityQuestions.java index 95bfeedf26c..04f488b454d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorValidatorSecurityQuestions.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorValidatorSecurityQuestions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorValidatorThirdPartyFactor.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorValidatorThirdPartyFactor.java index 4c2700f7d63..b47fad35623 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorValidatorThirdPartyFactor.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorValidatorThirdPartyFactor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorsRemover.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorsRemover.java index daea0aac5ce..685c3c1a794 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorsRemover.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorsRemover.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorsRemoverUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorsRemoverUser.java index 92faedff36a..cbc4c1c4926 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorsRemoverUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyAuthenticationFactorsRemoverUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyCompletedApproval.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyCompletedApproval.java index 00e7e5060a7..b0afdb3f7b1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyCompletedApproval.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyCompletedApproval.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyCompletedApprovals.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyCompletedApprovals.java index 4ed3ebcf069..4ea58624d27 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyCompletedApprovals.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyCompletedApprovals.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyCustomerSecretKey.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyCustomerSecretKey.java index 3ebbab0ecd9..21a1f6e2632 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyCustomerSecretKey.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyCustomerSecretKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyCustomerSecretKeyUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyCustomerSecretKeyUser.java index 412f145fc3d..c77d3d02ba8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyCustomerSecretKeyUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyCustomerSecretKeyUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyCustomerSecretKeys.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyCustomerSecretKeys.java index b64d52e9e32..1118590064e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyCustomerSecretKeys.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyCustomerSecretKeys.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDevice.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDevice.java index ed3794226d1..3dacd88a42d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDevice.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDevice.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDeviceAdditionalAttributes.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDeviceAdditionalAttributes.java index a372af3b4e9..222fc6ce60b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDeviceAdditionalAttributes.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDeviceAdditionalAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDeviceAuthenticationFactors.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDeviceAuthenticationFactors.java index e5d98879d50..6edba36ce51 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDeviceAuthenticationFactors.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDeviceAuthenticationFactors.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDeviceNonCompliances.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDeviceNonCompliances.java index 689039db54f..e25af824b4b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDeviceNonCompliances.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDeviceNonCompliances.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDevicePushNotificationTarget.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDevicePushNotificationTarget.java index b0ff84c2d5a..d060c13ddd5 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDevicePushNotificationTarget.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDevicePushNotificationTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDeviceThirdPartyFactor.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDeviceThirdPartyFactor.java index 8548372c35e..19a1407f6c2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDeviceThirdPartyFactor.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDeviceThirdPartyFactor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDeviceUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDeviceUser.java index dee605851e2..e9057a75f0d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDeviceUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDeviceUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDevices.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDevices.java index 8606234d12a..52209674523 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDevices.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyDevices.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyGroup.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyGroup.java index eeb3c2e68d9..aab8ca55bc2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyGroup.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyGroupMembers.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyGroupMembers.java index c4acf61e9e8..f5d0b08b62d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyGroupMembers.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyGroupMembers.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyGroupSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyGroupSearchRequest.java index 3c081fa43b3..ce53765e098 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyGroupSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyGroupSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyGroups.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyGroups.java index 49fdbbe5759..9c138ac8dfb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyGroups.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyGroups.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyOAuth2ClientCredential.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyOAuth2ClientCredential.java index c4e6ffa1a44..b08aa01219a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyOAuth2ClientCredential.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyOAuth2ClientCredential.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyOAuth2ClientCredentialScopes.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyOAuth2ClientCredentialScopes.java index cc088662b76..8b559249ae3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyOAuth2ClientCredentialScopes.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyOAuth2ClientCredentialScopes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyOAuth2ClientCredentialUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyOAuth2ClientCredentialUser.java index 1f88519e663..9e4f00a46aa 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyOAuth2ClientCredentialUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyOAuth2ClientCredentialUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyOAuth2ClientCredentials.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyOAuth2ClientCredentials.java index 0de74e54c4c..c0751e4784b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyOAuth2ClientCredentials.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyOAuth2ClientCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyPendingApproval.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyPendingApproval.java index 124a60b4cc7..d7f7bf8a9b0 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyPendingApproval.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyPendingApproval.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyPendingApprovals.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyPendingApprovals.java index 81cdcd6463f..e8b80469a91 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyPendingApprovals.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyPendingApprovals.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequest.java index 33e4703f169..0ddaefe0da7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestApprovalDetails.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestApprovalDetails.java index dfbf25a5b71..d57d524b2dd 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestApprovalDetails.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestApprovalDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestRequesting.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestRequesting.java index 29fe9955147..021332ba947 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestRequesting.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestRequesting.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestRequestor.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestRequestor.java index cb3f9cac06e..e93092103d7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestRequestor.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestRequestor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestSearchRequest.java index 698b8fb1e7e..d3efbb582df 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestableGroup.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestableGroup.java index f6387c64968..5ef2b08564b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestableGroup.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestableGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestableGroupMembers.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestableGroupMembers.java index 4912d70cbdd..84af1155f07 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestableGroupMembers.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestableGroupMembers.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestableGroupSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestableGroupSearchRequest.java index 37a58c49fe8..7e56a26ad20 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestableGroupSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestableGroupSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestableGroups.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestableGroups.java index e16687c0e50..88ab5a73258 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestableGroups.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequestableGroups.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequests.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequests.java index 08037419603..852ee362532 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequests.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyRequests.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySmtpCredential.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySmtpCredential.java index 300cc073511..2952aa4fdae 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySmtpCredential.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySmtpCredential.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySmtpCredentialUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySmtpCredentialUser.java index dfdeb9dda25..a05d00aa0c1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySmtpCredentialUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySmtpCredentialUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySmtpCredentials.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySmtpCredentials.java index f23069bf5bf..bd60e4736da 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySmtpCredentials.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySmtpCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySupportAccount.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySupportAccount.java index 1ef92b3f4cf..8326810d70b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySupportAccount.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySupportAccount.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySupportAccountUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySupportAccountUser.java index 208097e44e0..bf7b7474171 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySupportAccountUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySupportAccountUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySupportAccounts.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySupportAccounts.java index 8692202a30f..fd29db55529 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySupportAccounts.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MySupportAccounts.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyTrustedUserAgent.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyTrustedUserAgent.java index c265a20a910..62b1920c385 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyTrustedUserAgent.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyTrustedUserAgent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyTrustedUserAgentTrustedFactors.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyTrustedUserAgentTrustedFactors.java index df822cfb8d5..1ebdcdf1fb0 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyTrustedUserAgentTrustedFactors.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyTrustedUserAgentTrustedFactors.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyTrustedUserAgentUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyTrustedUserAgentUser.java index d7c899ad819..9dfb1dc2f1a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyTrustedUserAgentUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyTrustedUserAgentUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyTrustedUserAgents.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyTrustedUserAgents.java index 5d3316fc10b..28bdcd05879 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyTrustedUserAgents.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyTrustedUserAgents.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyUserDbCredential.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyUserDbCredential.java index b07ccdd4d4e..d0077761771 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyUserDbCredential.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyUserDbCredential.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyUserDbCredentials.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyUserDbCredentials.java index 2dc971740f4..77ecb80f0f7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyUserDbCredentials.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyUserDbCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyUserDbCredentialsUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyUserDbCredentialsUser.java index c3725e26f0d..5f29084e92f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyUserDbCredentialsUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/MyUserDbCredentialsUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NetworkPerimeter.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NetworkPerimeter.java index 7477a05d357..c476b3a7aff 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NetworkPerimeter.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NetworkPerimeter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NetworkPerimeterIpAddresses.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NetworkPerimeterIpAddresses.java index a136b9d8fbd..9b97b048918 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NetworkPerimeterIpAddresses.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NetworkPerimeterIpAddresses.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NetworkPerimeterSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NetworkPerimeterSearchRequest.java index d1d7dec4a1a..1cecb5cee6b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NetworkPerimeterSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NetworkPerimeterSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NetworkPerimeters.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NetworkPerimeters.java index 496def00dcb..1ec2765bd88 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NetworkPerimeters.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NetworkPerimeters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NotificationSetting.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NotificationSetting.java index ed43e9f5793..562208cc93e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NotificationSetting.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NotificationSetting.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NotificationSettings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NotificationSettings.java index 945566cd92e..5b8535d2c00 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NotificationSettings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NotificationSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NotificationSettingsEventSettings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NotificationSettingsEventSettings.java index 609df6ec8c8..babc172a5b8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NotificationSettingsEventSettings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NotificationSettingsEventSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NotificationSettingsFromEmailAddress.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NotificationSettingsFromEmailAddress.java index 21f48a39bbe..9612b536cbf 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NotificationSettingsFromEmailAddress.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NotificationSettingsFromEmailAddress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NotificationSettingsSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NotificationSettingsSearchRequest.java index fce012f515d..3df2d9038f0 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NotificationSettingsSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/NotificationSettingsSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuth2ClientCredential.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuth2ClientCredential.java index b2ffb9e3c6d..2bdeb943796 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuth2ClientCredential.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuth2ClientCredential.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuth2ClientCredentialScopes.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuth2ClientCredentialScopes.java index 6453d6c1bb0..2a9d532c5ba 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuth2ClientCredentialScopes.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuth2ClientCredentialScopes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuth2ClientCredentialSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuth2ClientCredentialSearchRequest.java index f8e50772658..c54eddb42cc 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuth2ClientCredentialSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuth2ClientCredentialSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuth2ClientCredentialUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuth2ClientCredentialUser.java index 76c0fd52664..17b9aec80c3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuth2ClientCredentialUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuth2ClientCredentialUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuth2ClientCredentials.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuth2ClientCredentials.java index 21ad126c1cc..b3e3b9800c9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuth2ClientCredentials.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuth2ClientCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthClientCertificate.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthClientCertificate.java index ff8d6cf34dd..81000779d3b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthClientCertificate.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthClientCertificate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthClientCertificateSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthClientCertificateSearchRequest.java index eacd30effc3..711bc996dd5 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthClientCertificateSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthClientCertificateSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthClientCertificates.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthClientCertificates.java index 6860f22307c..8138ce1a96e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthClientCertificates.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthClientCertificates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthPartnerCertificate.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthPartnerCertificate.java index aff07d75d50..928ba68761a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthPartnerCertificate.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthPartnerCertificate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthPartnerCertificateSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthPartnerCertificateSearchRequest.java index b05f24d00af..076098c8b7f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthPartnerCertificateSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthPartnerCertificateSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthPartnerCertificates.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthPartnerCertificates.java index 5fd88defcdf..96b49d81529 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthPartnerCertificates.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OAuthPartnerCertificates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsent.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsent.java index 221e1fa655b..b71dbb78244 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsent.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsentConsentSignedBy.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsentConsentSignedBy.java index fb8a375ddc6..c60af240136 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsentConsentSignedBy.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsentConsentSignedBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsentModifiedResource.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsentModifiedResource.java index bf8f475d81b..c5233e2e38c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsentModifiedResource.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsentModifiedResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsentPolicyResource.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsentPolicyResource.java index 19feac2ec1d..84e9b264430 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsentPolicyResource.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsentPolicyResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsentSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsentSearchRequest.java index 63efb095037..a7f293ad1cc 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsentSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsentSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsents.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsents.java index 5ab1f214dd5..a8396f58d07 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsents.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/OciConsoleSignOnPolicyConsents.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Operations.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Operations.java index 1502dcd3300..6aab641dbac 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Operations.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Operations.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PasswordPolicies.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PasswordPolicies.java index 99d94244b0b..aac56a0dac7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PasswordPolicies.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PasswordPolicies.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PasswordPolicy.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PasswordPolicy.java index 583c7b95a75..2739be2f7f3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PasswordPolicy.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PasswordPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PasswordPolicyConfiguredPasswordPolicyRules.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PasswordPolicyConfiguredPasswordPolicyRules.java index 0a6567aad94..13ec2a77f3c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PasswordPolicyConfiguredPasswordPolicyRules.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PasswordPolicyConfiguredPasswordPolicyRules.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PasswordPolicyGroups.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PasswordPolicyGroups.java index e7f3e54eaeb..c7b26f13144 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PasswordPolicyGroups.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PasswordPolicyGroups.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PasswordPolicySearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PasswordPolicySearchRequest.java index a74e13a1a2d..ec95c02d234 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PasswordPolicySearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PasswordPolicySearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PatchOp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PatchOp.java index 43a33a05726..a9139aedef8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PatchOp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PatchOp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Policies.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Policies.java index 8c1f17a0332..9c3d55b137f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Policies.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Policies.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Policy.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Policy.java index bb92f5b7c29..135dcba422c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Policy.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Policy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PolicyExtensionOciconsolesignonpolicyconsentPolicy.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PolicyExtensionOciconsolesignonpolicyconsentPolicy.java index 3c9aaa6d16c..9e07612c484 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PolicyExtensionOciconsolesignonpolicyconsentPolicy.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PolicyExtensionOciconsolesignonpolicyconsentPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PolicyPolicyType.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PolicyPolicyType.java index 701f318c9c2..d1e87207fd8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PolicyPolicyType.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PolicyPolicyType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PolicyRules.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PolicyRules.java index 2a3c2c4b97e..3a489b5ca99 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PolicyRules.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PolicyRules.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PolicySearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PolicySearchRequest.java index 300c08c922e..c2efbe091b9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PolicySearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/PolicySearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ResourceTypeSchemaAttribute.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ResourceTypeSchemaAttribute.java index 1848c673ea0..228309f52a7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ResourceTypeSchemaAttribute.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ResourceTypeSchemaAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ResourceTypeSchemaAttributeSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ResourceTypeSchemaAttributeSearchRequest.java index 08391c6e8f3..1b780c7f66f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ResourceTypeSchemaAttributeSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ResourceTypeSchemaAttributeSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ResourceTypeSchemaAttributes.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ResourceTypeSchemaAttributes.java index c38c97db87e..c0634f1dc9b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ResourceTypeSchemaAttributes.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/ResourceTypeSchemaAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RestoreOciConsolePolicy.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RestoreOciConsolePolicy.java index a8cf9ec042e..7660a2f3dde 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RestoreOciConsolePolicy.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RestoreOciConsolePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Rule.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Rule.java index dad3e694c21..1569d2bb075 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Rule.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Rule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RuleConditionGroup.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RuleConditionGroup.java index 9fa850d8c82..b0133baac9c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RuleConditionGroup.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RuleConditionGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RuleExtensionOciconsolesignonpolicyconsentPolicy.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RuleExtensionOciconsolesignonpolicyconsentPolicy.java index ecf8f4b67f1..71a1e01bc3a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RuleExtensionOciconsolesignonpolicyconsentPolicy.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RuleExtensionOciconsolesignonpolicyconsentPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RulePolicyType.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RulePolicyType.java index 1380d5b697f..c98ba72ea35 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RulePolicyType.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RulePolicyType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RuleReturn.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RuleReturn.java index a91a508dd84..829e5fa461c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RuleReturn.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RuleReturn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RuleSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RuleSearchRequest.java index c25296d3afd..e4e452eb067 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RuleSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/RuleSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Rules.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Rules.java index 40768647678..7e5361b75e4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Rules.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Rules.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Schema.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Schema.java index 89bf64f9a18..835667f1c02 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Schema.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Schema.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaAttributes.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaAttributes.java index 33d5c5375fa..8ec18bc3a7e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaAttributes.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaIdcsComplexAttributeNameMappings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaIdcsComplexAttributeNameMappings.java index d5eb3400374..727a2858a8c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaIdcsComplexAttributeNameMappings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaIdcsComplexAttributeNameMappings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaIdcsCsvAttributeNameMappings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaIdcsCsvAttributeNameMappings.java index 89602254ec0..d38e134f2ef 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaIdcsCsvAttributeNameMappings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaIdcsCsvAttributeNameMappings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaLocalizedCanonicalValues.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaLocalizedCanonicalValues.java index 94a9e2255f9..2f38b393a43 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaLocalizedCanonicalValues.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaLocalizedCanonicalValues.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaLocalizedDisplayName.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaLocalizedDisplayName.java index 96f50f23a16..5c39a58902a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaLocalizedDisplayName.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaLocalizedDisplayName.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaReferencedResourceTypeUniqueAttributeNameMappings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaReferencedResourceTypeUniqueAttributeNameMappings.java index 4a1ad0d16b1..60bd791c032 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaReferencedResourceTypeUniqueAttributeNameMappings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaReferencedResourceTypeUniqueAttributeNameMappings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaResolveValueUsingResourceType.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaResolveValueUsingResourceType.java index 1dd24a75f95..6cc38250bf8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaResolveValueUsingResourceType.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaResolveValueUsingResourceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaSearchRequest.java index a86647fa187..72e4217c99a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaSubAttributes.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaSubAttributes.java index 4dc82bd9053..07a158a8e40 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaSubAttributes.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SchemaSubAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Schemas.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Schemas.java index 8868e124963..fad62e1986e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Schemas.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Schemas.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestion.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestion.java index cb45b53ac57..873595cd6c7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestion.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestionQuestionText.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestionQuestionText.java index 50322deaa9f..b0f9f59b1d7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestionQuestionText.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestionQuestionText.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestionSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestionSearchRequest.java index a05535c5953..5a0bddd51cf 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestionSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestionSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestionSetting.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestionSetting.java index 7b5be3f3fdf..b48bf499aad 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestionSetting.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestionSetting.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestionSettings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestionSettings.java index 3fb9abf65d0..ee38043442e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestionSettings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestionSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestionSettingsSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestionSettingsSearchRequest.java index 5b97df8b3b1..fb54e284461 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestionSettingsSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestionSettingsSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestions.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestions.java index f70a985261b..38169ccc48e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestions.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SecurityQuestions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfile.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfile.java index 0e433b08a12..10ec592f8f8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfile.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileAfterSubmitText.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileAfterSubmitText.java index edc93a23bb1..5b7431f85a7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileAfterSubmitText.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileAfterSubmitText.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileConsentText.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileConsentText.java index 40f4b65a3a3..00860042f19 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileConsentText.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileConsentText.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileDefaultGroups.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileDefaultGroups.java index ad057f7bee0..74034b2a98d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileDefaultGroups.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileDefaultGroups.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileDisplayName.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileDisplayName.java index a0374f5e8dd..6b3b3c62450 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileDisplayName.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileDisplayName.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileEmailTemplate.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileEmailTemplate.java index 80065cb7dda..63f52f81ff9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileEmailTemplate.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileEmailTemplate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileFooterText.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileFooterText.java index bd6c955851d..67ad5ed217f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileFooterText.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileFooterText.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileHeaderText.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileHeaderText.java index 351b4272c07..935b283b6db 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileHeaderText.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileHeaderText.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileSearchRequest.java index 56363fd78b9..19b061e4bbe 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileUserAttributes.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileUserAttributes.java index ebf35476f53..05667f1f7ab 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileUserAttributes.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfileUserAttributes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfiles.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfiles.java index e34c8506539..0f01bc7e006 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfiles.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SelfRegistrationProfiles.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Setting.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Setting.java index 4d77155f0c5..bcc3659f36d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Setting.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Setting.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Settings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Settings.java index b071f66407f..d58eab82ee5 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Settings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Settings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsCertificateValidation.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsCertificateValidation.java index e2a40d8bad5..ca7a707b8b9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsCertificateValidation.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsCertificateValidation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsCloudGateCorsSettings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsCloudGateCorsSettings.java index 75f09d51677..95f417a2c37 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsCloudGateCorsSettings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsCloudGateCorsSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsCompanyNames.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsCompanyNames.java index 43fe3b93049..089301c88da 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsCompanyNames.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsCompanyNames.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsDefaultCompanyNames.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsDefaultCompanyNames.java index 36dd0595662..9b74a4a16ea 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsDefaultCompanyNames.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsDefaultCompanyNames.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsDefaultImages.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsDefaultImages.java index d16188ee2d8..2b5131d5482 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsDefaultImages.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsDefaultImages.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsDefaultLoginTexts.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsDefaultLoginTexts.java index 78823aab2c7..de5c743e76b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsDefaultLoginTexts.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsDefaultLoginTexts.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsImages.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsImages.java index 734f55e884d..e23f2e3cd42 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsImages.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsImages.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsLoginTexts.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsLoginTexts.java index 79dbb865c99..87da877e160 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsLoginTexts.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsLoginTexts.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsPurgeConfigs.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsPurgeConfigs.java index 87870fdc217..2a67f083700 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsPurgeConfigs.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsPurgeConfigs.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsSearchRequest.java index e4903eaedd8..c2663844d02 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsTenantCustomClaims.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsTenantCustomClaims.java index 63d7f5ecc16..2544bc97fdb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsTenantCustomClaims.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SettingsTenantCustomClaims.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SmtpCredential.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SmtpCredential.java index 0b932068b8d..093034a1b17 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SmtpCredential.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SmtpCredential.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SmtpCredentialSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SmtpCredentialSearchRequest.java index ad7898ee870..864136d8007 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SmtpCredentialSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SmtpCredentialSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SmtpCredentialUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SmtpCredentialUser.java index d6626a70f2a..91b05adef79 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SmtpCredentialUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SmtpCredentialUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SmtpCredentials.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SmtpCredentials.java index cc9b7ec6e1b..eecb24b985a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SmtpCredentials.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SmtpCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SocialIdentityProvider.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SocialIdentityProvider.java index 127984780a2..5a16d92a1c2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SocialIdentityProvider.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SocialIdentityProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SocialIdentityProviderJitProvAssignedGroups.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SocialIdentityProviderJitProvAssignedGroups.java index 4c97a75ccf0..d14ccce4494 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SocialIdentityProviderJitProvAssignedGroups.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SocialIdentityProviderJitProvAssignedGroups.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SocialIdentityProviderRelayIdpParamMappings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SocialIdentityProviderRelayIdpParamMappings.java index 217cba89261..e4b3e413953 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SocialIdentityProviderRelayIdpParamMappings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SocialIdentityProviderRelayIdpParamMappings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SocialIdentityProviderSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SocialIdentityProviderSearchRequest.java index d71b14136ce..c5518cd18b6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SocialIdentityProviderSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SocialIdentityProviderSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SocialIdentityProviders.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SocialIdentityProviders.java index 2f96747ba11..bbfc3ba97ed 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SocialIdentityProviders.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SocialIdentityProviders.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SortOrder.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SortOrder.java index 477da989a13..b6e43175730 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SortOrder.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Tags.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Tags.java index ddd107f135e..d0620bb5ea3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Tags.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Tags.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/User.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/User.java index fd2b54df91c..0c619f1fe88 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/User.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/User.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserAttributesSetting.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserAttributesSetting.java index ccffeee19a8..b3519f4c874 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserAttributesSetting.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserAttributesSetting.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserAttributesSettings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserAttributesSettings.java index b3e7b424963..8151c045ec0 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserAttributesSettings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserAttributesSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserAttributesSettingsAttributeSettings.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserAttributesSettingsAttributeSettings.java index 2d934a26e8c..8cb219a742b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserAttributesSettingsAttributeSettings.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserAttributesSettingsAttributeSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserAttributesSettingsSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserAttributesSettingsSearchRequest.java index db060c1d265..45244714b17 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserAttributesSettingsSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserAttributesSettingsSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserCapabilitiesChanger.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserCapabilitiesChanger.java index 129d3313365..87f519f4bd6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserCapabilitiesChanger.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserCapabilitiesChanger.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserDbCredential.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserDbCredential.java index ab5fba1382f..af2388d079a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserDbCredential.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserDbCredential.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserDbCredentials.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserDbCredentials.java index fa5fb3fb834..12a2792339e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserDbCredentials.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserDbCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserDbCredentialsSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserDbCredentialsSearchRequest.java index 0e3a08dbf48..e519b9e6b63 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserDbCredentialsSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserDbCredentialsSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserDbCredentialsUser.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserDbCredentialsUser.java index d0c28f8f7ea..95e95382f5e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserDbCredentialsUser.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserDbCredentialsUser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserEmails.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserEmails.java index e072e0a4bdc..859e59be5c9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserEmails.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserEmails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserEntitlements.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserEntitlements.java index 82449fc6970..1579e85e462 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserEntitlements.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserEntitlements.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtAccounts.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtAccounts.java index bbe0d0ba3ce..389b0373868 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtAccounts.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtAccounts.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtApiKeys.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtApiKeys.java index aa5db749d84..3c94ebfcd19 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtApiKeys.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtApiKeys.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtAppRoles.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtAppRoles.java index 35c475b2343..3ec514aff28 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtAppRoles.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtAppRoles.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtApplicableAuthenticationTargetApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtApplicableAuthenticationTargetApp.java index 823d8d55ea3..6814b8b9f07 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtApplicableAuthenticationTargetApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtApplicableAuthenticationTargetApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtApplicablePasswordPolicy.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtApplicablePasswordPolicy.java index eb3e7b73480..c583769305b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtApplicablePasswordPolicy.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtApplicablePasswordPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtAuthTokens.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtAuthTokens.java index adb8a5a3816..c79fb5b0d8c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtAuthTokens.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtAuthTokens.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtBypassCodes.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtBypassCodes.java index 8982fe3f69a..79660bf188c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtBypassCodes.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtBypassCodes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtCustomerSecretKeys.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtCustomerSecretKeys.java index 6edd3f3f598..c74af5d1a54 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtCustomerSecretKeys.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtCustomerSecretKeys.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtDbCredentials.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtDbCredentials.java index e66a64b37b9..5ae4345b00e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtDbCredentials.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtDbCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtDelegatedAuthenticationTargetApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtDelegatedAuthenticationTargetApp.java index 9af77d8fd4f..b6d535a1e3d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtDelegatedAuthenticationTargetApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtDelegatedAuthenticationTargetApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtDevices.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtDevices.java index 72a5c8ccd11..bac8578d4c4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtDevices.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtDevices.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtFactorIdentifier.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtFactorIdentifier.java index dad6612b0d7..631b43204d6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtFactorIdentifier.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtFactorIdentifier.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtGrants.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtGrants.java index 982fd2d88ec..2b8f2e66868 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtGrants.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtGrants.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtIdcsAppRolesLimitedToGroups.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtIdcsAppRolesLimitedToGroups.java index f1747432d2b..6257337aeff 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtIdcsAppRolesLimitedToGroups.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtIdcsAppRolesLimitedToGroups.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtLocked.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtLocked.java index d72ae088903..3e7a874ab24 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtLocked.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtLocked.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtManager.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtManager.java index ab66f4b5a1e..fb2741faed7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtManager.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtManager.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtOAuth2ClientCredentials.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtOAuth2ClientCredentials.java index 30351403981..35c9d86246f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtOAuth2ClientCredentials.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtOAuth2ClientCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtPasswordVerifiers.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtPasswordVerifiers.java index 17ccf197da8..6f2436996c1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtPasswordVerifiers.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtPasswordVerifiers.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtPreferredDevice.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtPreferredDevice.java index a2615b4d4fd..bb49e6a69a2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtPreferredDevice.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtPreferredDevice.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtRealmUsers.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtRealmUsers.java index c52a9635a2d..1f0b5db0083 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtRealmUsers.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtRealmUsers.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtRecoveryLocked.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtRecoveryLocked.java index 8545f7492be..78cedb6dce2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtRecoveryLocked.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtRecoveryLocked.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtRiskScores.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtRiskScores.java index 014e4805d0e..67c2691cfa9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtRiskScores.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtRiskScores.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSecQuestions.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSecQuestions.java index 518a6305efb..72809bf710f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSecQuestions.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSecQuestions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSelfRegistrationProfile.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSelfRegistrationProfile.java index b604dde7938..e6d89c6e51e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSelfRegistrationProfile.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSelfRegistrationProfile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSmtpCredentials.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSmtpCredentials.java index 1dde33eae10..62f222bf218 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSmtpCredentials.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSmtpCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSocialAccounts.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSocialAccounts.java index 2f6618b12dd..6e01e394331 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSocialAccounts.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSocialAccounts.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSupportAccounts.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSupportAccounts.java index a49ad714a25..54d069bff83 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSupportAccounts.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSupportAccounts.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSyncedFromApp.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSyncedFromApp.java index 38b366a98e4..70f106aa276 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSyncedFromApp.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtSyncedFromApp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtTermsOfUseConsents.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtTermsOfUseConsents.java index bdb17915cab..8b4a8c4eceb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtTermsOfUseConsents.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtTermsOfUseConsents.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtTrustedUserAgents.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtTrustedUserAgents.java index a2ab64a9fd3..9bf5492ad5a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtTrustedUserAgents.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtTrustedUserAgents.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtUserToken.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtUserToken.java index e892e093a9f..ede52bdb1fd 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtUserToken.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserExtUserToken.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserGroups.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserGroups.java index 1b2b661d8ab..cd25c44e9f7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserGroups.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserGroups.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserIms.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserIms.java index 5b5af9745bc..3886b47374c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserIms.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserIms.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserName.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserName.java index 10cd467e1af..230f10d93f4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserName.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserName.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserPasswordChanger.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserPasswordChanger.java index 7b77cb7bd3b..e9b38eeec58 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserPasswordChanger.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserPasswordChanger.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserPasswordResetter.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserPasswordResetter.java index df4d9d8cc55..0d4999ffc36 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserPasswordResetter.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserPasswordResetter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserPasswordResetterUserToken.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserPasswordResetterUserToken.java index 917bde05506..cba169872c2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserPasswordResetterUserToken.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserPasswordResetterUserToken.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserPhoneNumbers.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserPhoneNumbers.java index 90fba732247..da37f8ad76d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserPhoneNumbers.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserPhoneNumbers.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserPhotos.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserPhotos.java index d60416ff704..994196ac29c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserPhotos.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserPhotos.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserRoles.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserRoles.java index 9d944039563..deec513bbce 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserRoles.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserRoles.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserSearchRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserSearchRequest.java index c26c5a338be..b712edfb22d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserSearchRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserStatusChanger.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserStatusChanger.java index 99fb84c31d9..76cf2d3282d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserStatusChanger.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserStatusChanger.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserX509Certificates.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserX509Certificates.java index aeb52e13715..3ac9e4df09a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserX509Certificates.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/UserX509Certificates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Users.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Users.java index 0a5b7f608b3..a794d2a7731 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Users.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/model/Users.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.model; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateApiKeyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateApiKeyRequest.java index be9c9c1f3ea..02927979520 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateApiKeyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateApiKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateAppRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateAppRequest.java index aafdf8a252b..87ee0a5e2ba 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateAppRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateAppRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateAppRoleRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateAppRoleRequest.java index 45984a999cb..502baf0b323 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateAppRoleRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateAppRoleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateApprovalWorkflowAssignmentRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateApprovalWorkflowAssignmentRequest.java index ef7b4d396ba..f128f9cf9ba 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateApprovalWorkflowAssignmentRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateApprovalWorkflowAssignmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateApprovalWorkflowRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateApprovalWorkflowRequest.java index a0d9f71ad17..38faecab42f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateApprovalWorkflowRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateApprovalWorkflowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateApprovalWorkflowStepRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateApprovalWorkflowStepRequest.java index 296e1c0b8cb..b3ee78db75b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateApprovalWorkflowStepRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateApprovalWorkflowStepRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateAuthTokenRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateAuthTokenRequest.java index c8d4f2819bd..160e42e8e41 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateAuthTokenRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateAuthTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateAuthenticationFactorsRemoverRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateAuthenticationFactorsRemoverRequest.java index 85b81c2a9fe..94edbcf588c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateAuthenticationFactorsRemoverRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateAuthenticationFactorsRemoverRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateCloudGateMappingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateCloudGateMappingRequest.java index e5a5bc478e1..75dd0b819a1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateCloudGateMappingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateCloudGateMappingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateCloudGateRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateCloudGateRequest.java index 33156d072bc..116d753278d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateCloudGateRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateCloudGateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateCloudGateServerRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateCloudGateServerRequest.java index ea24dd0f5bb..17e3d7c702e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateCloudGateServerRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateCloudGateServerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateConditionRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateConditionRequest.java index 09fde97d1fb..d1a51f6dc36 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateConditionRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateConditionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateCustomerSecretKeyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateCustomerSecretKeyRequest.java index 3f86f006523..46cb0f75218 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateCustomerSecretKeyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateCustomerSecretKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateDynamicResourceGroupRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateDynamicResourceGroupRequest.java index 4c1b6d3a88c..cfcc669368f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateDynamicResourceGroupRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateDynamicResourceGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateGrantRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateGrantRequest.java index 9c6535dfc6e..a7b4f884101 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateGrantRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateGrantRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateGroupRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateGroupRequest.java index 329fc1a2680..02ab3971740 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateGroupRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateIdentityPropagationTrustRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateIdentityPropagationTrustRequest.java index 1cc9689904c..05494dbc3cb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateIdentityPropagationTrustRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateIdentityPropagationTrustRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateIdentityProviderRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateIdentityProviderRequest.java index d64ec95d958..00b3fc18df9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateIdentityProviderRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateIdentityProviderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMeRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMeRequest.java index 26163fc385b..a544d7cfdf8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMeRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyApiKeyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyApiKeyRequest.java index 18377180352..1a8a5f34fdc 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyApiKeyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyApiKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyAuthTokenRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyAuthTokenRequest.java index b0d05ab013a..ed432f5f337 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyAuthTokenRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyAuthTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyAuthenticationFactorInitiatorRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyAuthenticationFactorInitiatorRequest.java index d338ae3dea0..7477ef60676 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyAuthenticationFactorInitiatorRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyAuthenticationFactorInitiatorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyAuthenticationFactorValidatorRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyAuthenticationFactorValidatorRequest.java index 2aafd31f7bc..b57973e3456 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyAuthenticationFactorValidatorRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyAuthenticationFactorValidatorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyAuthenticationFactorsRemoverRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyAuthenticationFactorsRemoverRequest.java index 269fc07aa80..6fa639a1d42 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyAuthenticationFactorsRemoverRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyAuthenticationFactorsRemoverRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyCustomerSecretKeyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyCustomerSecretKeyRequest.java index 4b5b542323a..010a2fd2895 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyCustomerSecretKeyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyCustomerSecretKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyOAuth2ClientCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyOAuth2ClientCredentialRequest.java index e522bebde1d..bf5cec7aeac 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyOAuth2ClientCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyOAuth2ClientCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyRequestRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyRequestRequest.java index af500ae2611..d49058d0382 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyRequestRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMySmtpCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMySmtpCredentialRequest.java index ae7c5328d98..7b07c253a02 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMySmtpCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMySmtpCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMySupportAccountRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMySupportAccountRequest.java index 9c653e81778..9a987ed3db7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMySupportAccountRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMySupportAccountRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyUserDbCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyUserDbCredentialRequest.java index 490862ce7e6..d3df48accad 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyUserDbCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateMyUserDbCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateNetworkPerimeterRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateNetworkPerimeterRequest.java index d609bc5a330..12bf379f20f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateNetworkPerimeterRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateNetworkPerimeterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateOAuth2ClientCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateOAuth2ClientCredentialRequest.java index 443e85f3990..329c13f24d8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateOAuth2ClientCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateOAuth2ClientCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateOAuthClientCertificateRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateOAuthClientCertificateRequest.java index 06ae493b703..a2827c46f71 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateOAuthClientCertificateRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateOAuthClientCertificateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateOAuthPartnerCertificateRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateOAuthPartnerCertificateRequest.java index b4710776d04..1cc34d78a4e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateOAuthPartnerCertificateRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateOAuthPartnerCertificateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreatePasswordPolicyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreatePasswordPolicyRequest.java index 74577515886..8b3cce5b956 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreatePasswordPolicyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreatePasswordPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreatePolicyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreatePolicyRequest.java index d7df115f1c2..f29f63368ba 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreatePolicyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreatePolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateRestoreOciConsolePolicyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateRestoreOciConsolePolicyRequest.java index 4a4756d0a74..c29a35ae473 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateRestoreOciConsolePolicyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateRestoreOciConsolePolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateRuleRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateRuleRequest.java index f5ddee9481c..5b432b1f268 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateRuleRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateSecurityQuestionRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateSecurityQuestionRequest.java index 82c1497551d..65923dbdf2c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateSecurityQuestionRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateSecurityQuestionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateSelfRegistrationProfileRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateSelfRegistrationProfileRequest.java index c284840167e..4f821d72305 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateSelfRegistrationProfileRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateSelfRegistrationProfileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateSmtpCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateSmtpCredentialRequest.java index bf8d546245b..007b62eee27 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateSmtpCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateSmtpCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateSocialIdentityProviderRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateSocialIdentityProviderRequest.java index 132d8aa9957..1434b9fb882 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateSocialIdentityProviderRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateSocialIdentityProviderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateUserDbCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateUserDbCredentialRequest.java index 813d7136839..dff020856c9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateUserDbCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateUserDbCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateUserRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateUserRequest.java index e796ae5f523..d24b743e297 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateUserRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/CreateUserRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteApiKeyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteApiKeyRequest.java index e8d0a3bcb34..05154bc4263 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteApiKeyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteApiKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteAppRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteAppRequest.java index 783c818c208..a69b3232f90 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteAppRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteAppRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteAppRoleRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteAppRoleRequest.java index 35a66e86584..0f310540530 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteAppRoleRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteAppRoleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteApprovalWorkflowAssignmentRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteApprovalWorkflowAssignmentRequest.java index 84f52245b74..8172cf5ace4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteApprovalWorkflowAssignmentRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteApprovalWorkflowAssignmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteApprovalWorkflowRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteApprovalWorkflowRequest.java index e21fc6c9c5b..c46b615d40d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteApprovalWorkflowRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteApprovalWorkflowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteApprovalWorkflowStepRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteApprovalWorkflowStepRequest.java index 9e33733b5ed..d6caf19badc 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteApprovalWorkflowStepRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteApprovalWorkflowStepRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteAuthTokenRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteAuthTokenRequest.java index dc3a66a492e..1ab83ad0c96 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteAuthTokenRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteAuthTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteCloudGateMappingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteCloudGateMappingRequest.java index b2f93fe88e2..db818f5e7fd 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteCloudGateMappingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteCloudGateMappingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteCloudGateRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteCloudGateRequest.java index 4a1224d9830..48a642fea93 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteCloudGateRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteCloudGateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteCloudGateServerRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteCloudGateServerRequest.java index 38050a50c1d..6606e69075d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteCloudGateServerRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteCloudGateServerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteConditionRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteConditionRequest.java index 7153b242bf8..1e05ca70ade 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteConditionRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteConditionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteCustomerSecretKeyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteCustomerSecretKeyRequest.java index b1d353a09fa..74a13b6a563 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteCustomerSecretKeyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteCustomerSecretKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteDynamicResourceGroupRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteDynamicResourceGroupRequest.java index 294d5a2e218..f8dba480b5f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteDynamicResourceGroupRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteDynamicResourceGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteGrantRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteGrantRequest.java index 733669850ab..e1267117f4a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteGrantRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteGrantRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteGroupRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteGroupRequest.java index a04aac21226..995dd482f57 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteGroupRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteIdentityPropagationTrustRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteIdentityPropagationTrustRequest.java index 938b4088ea7..ed5f94ba307 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteIdentityPropagationTrustRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteIdentityPropagationTrustRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteIdentityProviderRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteIdentityProviderRequest.java index 2147d3feee3..781c17f866c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteIdentityProviderRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteIdentityProviderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyApiKeyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyApiKeyRequest.java index 2bd888af5b9..bb8f43b9b91 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyApiKeyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyApiKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyAuthTokenRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyAuthTokenRequest.java index 752b6b44cf5..e729baffb37 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyAuthTokenRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyAuthTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyCustomerSecretKeyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyCustomerSecretKeyRequest.java index a352d7bf568..10fec6e60bb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyCustomerSecretKeyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyCustomerSecretKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyDeviceRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyDeviceRequest.java index 5771ee4693b..340bb84d963 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyDeviceRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyDeviceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyOAuth2ClientCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyOAuth2ClientCredentialRequest.java index 1b7840d7665..2f2e6232733 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyOAuth2ClientCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyOAuth2ClientCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMySmtpCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMySmtpCredentialRequest.java index f2553efe084..a52ad959830 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMySmtpCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMySmtpCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMySupportAccountRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMySupportAccountRequest.java index 2853e0d598b..2d95c7e84d9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMySupportAccountRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMySupportAccountRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyTrustedUserAgentRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyTrustedUserAgentRequest.java index 353937f4961..4c27f78cc2e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyTrustedUserAgentRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyTrustedUserAgentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyUserDbCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyUserDbCredentialRequest.java index 34efcd20df2..0ba03664418 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyUserDbCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteMyUserDbCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteNetworkPerimeterRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteNetworkPerimeterRequest.java index 460cc304918..bb1b0c9fd72 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteNetworkPerimeterRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteNetworkPerimeterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteOAuth2ClientCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteOAuth2ClientCredentialRequest.java index 304635e2668..fbfb1649272 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteOAuth2ClientCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteOAuth2ClientCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteOAuthClientCertificateRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteOAuthClientCertificateRequest.java index 369922e5132..304a9537ada 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteOAuthClientCertificateRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteOAuthClientCertificateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteOAuthPartnerCertificateRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteOAuthPartnerCertificateRequest.java index c11b6de8312..266c9174966 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteOAuthPartnerCertificateRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteOAuthPartnerCertificateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeletePasswordPolicyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeletePasswordPolicyRequest.java index eb2f258dc51..03249126226 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeletePasswordPolicyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeletePasswordPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeletePolicyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeletePolicyRequest.java index 9569095e5a4..542d29c4952 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeletePolicyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeletePolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteRuleRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteRuleRequest.java index a223e2d0e0e..1c2c7c4376a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteRuleRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteSecurityQuestionRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteSecurityQuestionRequest.java index 7ed71663744..8831a01ba49 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteSecurityQuestionRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteSecurityQuestionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteSelfRegistrationProfileRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteSelfRegistrationProfileRequest.java index de1db273d2c..219fe08851b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteSelfRegistrationProfileRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteSelfRegistrationProfileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteSmtpCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteSmtpCredentialRequest.java index 55aee27c5ba..cdb616af072 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteSmtpCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteSmtpCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteSocialIdentityProviderRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteSocialIdentityProviderRequest.java index 6b70a1ce8a5..e499e373e26 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteSocialIdentityProviderRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteSocialIdentityProviderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteUserDbCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteUserDbCredentialRequest.java index 067a470e0ed..5ac07deb230 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteUserDbCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteUserDbCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteUserRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteUserRequest.java index cec58affe76..c509a0561a4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteUserRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/DeleteUserRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAccountMgmtInfoRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAccountMgmtInfoRequest.java index 1fb2ab7c33b..39536bfa95d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAccountMgmtInfoRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAccountMgmtInfoRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAccountRecoverySettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAccountRecoverySettingRequest.java index ea3c79d1017..c70f542cc5e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAccountRecoverySettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAccountRecoverySettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetApiKeyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetApiKeyRequest.java index fe39081e646..231fc6c74f1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetApiKeyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetApiKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAppRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAppRequest.java index 856be49b883..6d2fdaa18d6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAppRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAppRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAppRoleRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAppRoleRequest.java index d0d0529489c..4c2bdf91b04 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAppRoleRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAppRoleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetApprovalWorkflowAssignmentRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetApprovalWorkflowAssignmentRequest.java index db443f00569..ea372518c7a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetApprovalWorkflowAssignmentRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetApprovalWorkflowAssignmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetApprovalWorkflowRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetApprovalWorkflowRequest.java index 653328479f4..b3b46025cf3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetApprovalWorkflowRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetApprovalWorkflowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetApprovalWorkflowStepRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetApprovalWorkflowStepRequest.java index e8ead1b7975..f949f0726bb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetApprovalWorkflowStepRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetApprovalWorkflowStepRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAuthTokenRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAuthTokenRequest.java index 9274e163fc9..d638ce811e9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAuthTokenRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAuthTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAuthenticationFactorSettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAuthenticationFactorSettingRequest.java index cbcd14039c5..f2bdcebcd5b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAuthenticationFactorSettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetAuthenticationFactorSettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetBrandingSettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetBrandingSettingRequest.java index 536c33c2415..bb65f52256d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetBrandingSettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetBrandingSettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetCloudGateMappingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetCloudGateMappingRequest.java index be501c87c31..78daf0551be 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetCloudGateMappingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetCloudGateMappingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetCloudGateRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetCloudGateRequest.java index 28cfe54c87b..9f1401aabce 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetCloudGateRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetCloudGateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetCloudGateServerRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetCloudGateServerRequest.java index 65a30674338..1e80b45712d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetCloudGateServerRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetCloudGateServerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetConditionRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetConditionRequest.java index 627f8da3e0f..9a614dbc97c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetConditionRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetConditionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetCustomerSecretKeyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetCustomerSecretKeyRequest.java index c6799dfff3e..5e6aa76c2ae 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetCustomerSecretKeyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetCustomerSecretKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetDynamicResourceGroupRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetDynamicResourceGroupRequest.java index acae83ea648..afd0bc5c984 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetDynamicResourceGroupRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetDynamicResourceGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetGrantRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetGrantRequest.java index befca9d603f..bfce3c96007 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetGrantRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetGrantRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetGroupRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetGroupRequest.java index 2f446795e0d..a5baa9ba0cf 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetGroupRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetIdentityPropagationTrustRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetIdentityPropagationTrustRequest.java index f3b8161ecd9..c5f638ce4c3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetIdentityPropagationTrustRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetIdentityPropagationTrustRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetIdentityProviderRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetIdentityProviderRequest.java index 2e9bae360eb..02a0b34bee1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetIdentityProviderRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetIdentityProviderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetIdentitySettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetIdentitySettingRequest.java index b0d0298b8fc..fa8dd65a3ca 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetIdentitySettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetIdentitySettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetKmsiSettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetKmsiSettingRequest.java index 31cc787b362..9c1a678a7ef 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetKmsiSettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetKmsiSettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMappedAttributeRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMappedAttributeRequest.java index 487696280f2..6e1b46ebcc4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMappedAttributeRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMappedAttributeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMeRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMeRequest.java index df1c84dfd5a..0f3be4f57a1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMeRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyApiKeyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyApiKeyRequest.java index 5a6ef4bc837..cd4e5a55abb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyApiKeyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyApiKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyAuthTokenRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyAuthTokenRequest.java index 6ba422d6c63..c3a61ce5018 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyAuthTokenRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyAuthTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyCompletedApprovalRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyCompletedApprovalRequest.java index 3b3ceb62114..20286af9519 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyCompletedApprovalRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyCompletedApprovalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyCustomerSecretKeyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyCustomerSecretKeyRequest.java index af3c8e0b653..78c2c86b019 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyCustomerSecretKeyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyCustomerSecretKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyDeviceRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyDeviceRequest.java index aaa43896c71..f247d2a6070 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyDeviceRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyDeviceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyOAuth2ClientCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyOAuth2ClientCredentialRequest.java index dc5e02be2a2..1737c35e1ae 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyOAuth2ClientCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyOAuth2ClientCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyPendingApprovalRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyPendingApprovalRequest.java index aa15d1364b6..13c8906040e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyPendingApprovalRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyPendingApprovalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyRequestRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyRequestRequest.java index 7b05a922ad5..8bc804a40a0 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyRequestRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMySmtpCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMySmtpCredentialRequest.java index d12b37de7a4..ac5fbc38907 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMySmtpCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMySmtpCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMySupportAccountRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMySupportAccountRequest.java index fddbf498655..68521254bd6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMySupportAccountRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMySupportAccountRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyTrustedUserAgentRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyTrustedUserAgentRequest.java index 74726ee35ae..b2de2b63982 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyTrustedUserAgentRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyTrustedUserAgentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyUserDbCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyUserDbCredentialRequest.java index 5351f988d02..990887001a3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyUserDbCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetMyUserDbCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetNetworkPerimeterRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetNetworkPerimeterRequest.java index 9a09eea04d0..3774b028977 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetNetworkPerimeterRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetNetworkPerimeterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetNotificationSettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetNotificationSettingRequest.java index ccbb8e00417..d0a8029984c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetNotificationSettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetNotificationSettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetOAuth2ClientCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetOAuth2ClientCredentialRequest.java index 6ce3de73425..7966aab48a2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetOAuth2ClientCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetOAuth2ClientCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetOAuthClientCertificateRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetOAuthClientCertificateRequest.java index 2c7e6424387..c864fab7e0c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetOAuthClientCertificateRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetOAuthClientCertificateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetOAuthPartnerCertificateRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetOAuthPartnerCertificateRequest.java index 2ed0014bbbe..992ccb3d5f3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetOAuthPartnerCertificateRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetOAuthPartnerCertificateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetOciConsoleSignOnPolicyConsentRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetOciConsoleSignOnPolicyConsentRequest.java index 43bc79f97bd..11b47848bda 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetOciConsoleSignOnPolicyConsentRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetOciConsoleSignOnPolicyConsentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetPasswordPolicyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetPasswordPolicyRequest.java index 1beb29c5531..da320427028 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetPasswordPolicyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetPasswordPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetPolicyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetPolicyRequest.java index ca0ef7b48ed..d0e4cf1007f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetPolicyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetRuleRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetRuleRequest.java index 09f96cc045a..0aae17cea09 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetRuleRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSchemaRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSchemaRequest.java index 0f96744506b..8d2c2904969 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSchemaRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSchemaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSecurityQuestionRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSecurityQuestionRequest.java index 1b7d5c252a1..01085873c2d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSecurityQuestionRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSecurityQuestionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSecurityQuestionSettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSecurityQuestionSettingRequest.java index f28aaf2cee0..c7cfd496fd8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSecurityQuestionSettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSecurityQuestionSettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSelfRegistrationProfileRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSelfRegistrationProfileRequest.java index 3a17bbc4fc9..a28cc460270 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSelfRegistrationProfileRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSelfRegistrationProfileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSettingRequest.java index 0c8703254e9..f5ba4732be7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSmtpCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSmtpCredentialRequest.java index 15dafbd4ee3..c2e87d17531 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSmtpCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSmtpCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSocialIdentityProviderRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSocialIdentityProviderRequest.java index 2b0036d4dc3..decd2e36fe3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSocialIdentityProviderRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetSocialIdentityProviderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetUserAttributesSettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetUserAttributesSettingRequest.java index dabe77a2ca4..57ca949265a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetUserAttributesSettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetUserAttributesSettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetUserDbCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetUserDbCredentialRequest.java index de4e67e9f9a..9cedb37a219 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetUserDbCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetUserDbCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetUserRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetUserRequest.java index ee90520a2da..b34d3b12e0a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetUserRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/GetUserRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAccountMgmtInfosRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAccountMgmtInfosRequest.java index 0ecd1f38e43..30bd87d861f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAccountMgmtInfosRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAccountMgmtInfosRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAccountRecoverySettingsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAccountRecoverySettingsRequest.java index 16ced054cba..b7ddcd9db2a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAccountRecoverySettingsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAccountRecoverySettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListApiKeysRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListApiKeysRequest.java index d7937240808..70f88993403 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListApiKeysRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListApiKeysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAppRolesRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAppRolesRequest.java index c0cd0781721..6ee769d68b7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAppRolesRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAppRolesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListApprovalWorkflowAssignmentsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListApprovalWorkflowAssignmentsRequest.java index 69762015700..4b1744f2038 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListApprovalWorkflowAssignmentsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListApprovalWorkflowAssignmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListApprovalWorkflowStepsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListApprovalWorkflowStepsRequest.java index 0ebda75a495..7d8ee749c05 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListApprovalWorkflowStepsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListApprovalWorkflowStepsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListApprovalWorkflowsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListApprovalWorkflowsRequest.java index a8fcbfdf4ba..38eaa5d19ba 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListApprovalWorkflowsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListApprovalWorkflowsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAppsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAppsRequest.java index 1990d87cfe8..e24e4516c43 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAppsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAppsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAuthTokensRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAuthTokensRequest.java index 5a4cc14b4b6..749b8c5ea9e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAuthTokensRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAuthTokensRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAuthenticationFactorSettingsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAuthenticationFactorSettingsRequest.java index 4d9951bbad4..ec031636e43 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAuthenticationFactorSettingsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListAuthenticationFactorSettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListBrandingSettingsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListBrandingSettingsRequest.java index 9d72b4febc0..6a874199eac 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListBrandingSettingsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListBrandingSettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListCloudGateMappingsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListCloudGateMappingsRequest.java index 2a44460f072..a82462f1673 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListCloudGateMappingsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListCloudGateMappingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListCloudGateServersRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListCloudGateServersRequest.java index a440617ede9..463d090130a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListCloudGateServersRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListCloudGateServersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListCloudGatesRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListCloudGatesRequest.java index dd78ef00b64..485cb908c33 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListCloudGatesRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListCloudGatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListConditionsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListConditionsRequest.java index a3caca5bf27..7940cbf66ea 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListConditionsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListConditionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListCustomerSecretKeysRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListCustomerSecretKeysRequest.java index 7089c3424cb..6123491d136 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListCustomerSecretKeysRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListCustomerSecretKeysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListDynamicResourceGroupsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListDynamicResourceGroupsRequest.java index 735bc3faee2..a67a3ca62fe 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListDynamicResourceGroupsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListDynamicResourceGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListGrantsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListGrantsRequest.java index 81d92fc801d..cc26cec4ae8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListGrantsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListGrantsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListGroupsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListGroupsRequest.java index 145697a9866..2012c1d8127 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListGroupsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListIdentityPropagationTrustsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListIdentityPropagationTrustsRequest.java index d75a7c35666..bbca6ee6180 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListIdentityPropagationTrustsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListIdentityPropagationTrustsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListIdentityProvidersRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListIdentityProvidersRequest.java index 763ae501fc1..602b3250554 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListIdentityProvidersRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListIdentityProvidersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListIdentitySettingsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListIdentitySettingsRequest.java index 2427807a165..f6360d44404 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListIdentitySettingsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListIdentitySettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListKmsiSettingsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListKmsiSettingsRequest.java index f9adacac195..d2c3556d515 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListKmsiSettingsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListKmsiSettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMappedAttributesRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMappedAttributesRequest.java index e17d1537154..09a2cc7bb7c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMappedAttributesRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMappedAttributesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyApiKeysRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyApiKeysRequest.java index 5e04dd28939..7972e443a8a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyApiKeysRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyApiKeysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyAppsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyAppsRequest.java index 3c8548efd5c..373e54419f4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyAppsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyAppsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyAuthTokensRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyAuthTokensRequest.java index 9cd9212b6af..d7447e41584 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyAuthTokensRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyAuthTokensRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyCompletedApprovalsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyCompletedApprovalsRequest.java index a7bd604bddc..aa2bfeb475c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyCompletedApprovalsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyCompletedApprovalsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyCustomerSecretKeysRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyCustomerSecretKeysRequest.java index 8fa9c26f9ab..7c81a2bda40 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyCustomerSecretKeysRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyCustomerSecretKeysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyDevicesRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyDevicesRequest.java index c5a25d33a99..5d1feb8e304 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyDevicesRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyDevicesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyGroupsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyGroupsRequest.java index 52ce2555e72..86c3fc4362e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyGroupsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyOAuth2ClientCredentialsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyOAuth2ClientCredentialsRequest.java index df9420ee4dc..32c3c3a766a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyOAuth2ClientCredentialsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyOAuth2ClientCredentialsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyPendingApprovalsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyPendingApprovalsRequest.java index 4a26a640db8..6218fb53a41 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyPendingApprovalsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyPendingApprovalsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyRequestableGroupsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyRequestableGroupsRequest.java index 71d03f85961..b150d817e56 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyRequestableGroupsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyRequestableGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyRequestsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyRequestsRequest.java index 9365df35518..dfc759458d7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyRequestsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMySmtpCredentialsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMySmtpCredentialsRequest.java index 95d9cbad4ba..e76c6027d6c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMySmtpCredentialsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMySmtpCredentialsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMySupportAccountsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMySupportAccountsRequest.java index 83f79e55cfc..5912fce92cf 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMySupportAccountsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMySupportAccountsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyTrustedUserAgentsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyTrustedUserAgentsRequest.java index 56152c5b857..cc2b0106428 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyTrustedUserAgentsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyTrustedUserAgentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyUserDbCredentialsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyUserDbCredentialsRequest.java index d491625887e..17cd3010dd4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyUserDbCredentialsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListMyUserDbCredentialsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListNetworkPerimetersRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListNetworkPerimetersRequest.java index 06e3377082d..1a7e305a66c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListNetworkPerimetersRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListNetworkPerimetersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListNotificationSettingsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListNotificationSettingsRequest.java index d685cad186c..9e7ed5d1d99 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListNotificationSettingsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListNotificationSettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListOAuth2ClientCredentialsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListOAuth2ClientCredentialsRequest.java index d09b4164cb1..40d85efdd96 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListOAuth2ClientCredentialsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListOAuth2ClientCredentialsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListOAuthClientCertificatesRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListOAuthClientCertificatesRequest.java index 21378b6996a..dea6fbe53c4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListOAuthClientCertificatesRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListOAuthClientCertificatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListOAuthPartnerCertificatesRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListOAuthPartnerCertificatesRequest.java index d0fa2cf88eb..1aec86ad6bf 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListOAuthPartnerCertificatesRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListOAuthPartnerCertificatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListOciConsoleSignOnPolicyConsentsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListOciConsoleSignOnPolicyConsentsRequest.java index 6223dc132aa..cd18380fc9e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListOciConsoleSignOnPolicyConsentsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListOciConsoleSignOnPolicyConsentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListPasswordPoliciesRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListPasswordPoliciesRequest.java index 32685c69100..07eb81d21f8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListPasswordPoliciesRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListPasswordPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListPoliciesRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListPoliciesRequest.java index d9a21107474..9145a05749d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListPoliciesRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListResourceTypeSchemaAttributesRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListResourceTypeSchemaAttributesRequest.java index 6d4409b1496..5e69f209740 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListResourceTypeSchemaAttributesRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListResourceTypeSchemaAttributesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListRulesRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListRulesRequest.java index 5c37d45289d..241f35b52d7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListRulesRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSchemasRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSchemasRequest.java index cc3f2c75e46..5317dde8d57 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSchemasRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSchemasRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSecurityQuestionSettingsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSecurityQuestionSettingsRequest.java index 0f9a7d0d29b..3c5d8d1c377 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSecurityQuestionSettingsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSecurityQuestionSettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSecurityQuestionsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSecurityQuestionsRequest.java index 9f714859cd7..d724c0d2c5c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSecurityQuestionsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSecurityQuestionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSelfRegistrationProfilesRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSelfRegistrationProfilesRequest.java index 4ea331145b3..14d02569670 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSelfRegistrationProfilesRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSelfRegistrationProfilesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSettingsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSettingsRequest.java index c4f27de7493..ffdbedac411 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSettingsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSmtpCredentialsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSmtpCredentialsRequest.java index da4d3494bb1..f2f08daa07e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSmtpCredentialsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSmtpCredentialsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSocialIdentityProvidersRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSocialIdentityProvidersRequest.java index c8c61bc1fd9..3cf658a5e96 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSocialIdentityProvidersRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListSocialIdentityProvidersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListUserAttributesSettingsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListUserAttributesSettingsRequest.java index cf1a84d9115..24bb3a1df2d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListUserAttributesSettingsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListUserAttributesSettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListUserDbCredentialsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListUserDbCredentialsRequest.java index a95e7d0577b..01012b6487a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListUserDbCredentialsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListUserDbCredentialsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListUsersRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListUsersRequest.java index fd01f54a537..671cd470f82 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListUsersRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/ListUsersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchAccountRecoverySettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchAccountRecoverySettingRequest.java index b7689c1aa3e..a700e08c6fb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchAccountRecoverySettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchAccountRecoverySettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchApiKeyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchApiKeyRequest.java index 83002b2b5b1..af19f390f56 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchApiKeyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchApiKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchAppRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchAppRequest.java index af0174149da..ea069e242ac 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchAppRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchAppRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchAppRoleRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchAppRoleRequest.java index c04a62f4dbc..f4999eb49d8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchAppRoleRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchAppRoleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchApprovalWorkflowRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchApprovalWorkflowRequest.java index e0a6070301b..1a68104dcff 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchApprovalWorkflowRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchApprovalWorkflowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchApprovalWorkflowStepRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchApprovalWorkflowStepRequest.java index 29c6b799737..925c8c00b7c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchApprovalWorkflowStepRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchApprovalWorkflowStepRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchAuthTokenRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchAuthTokenRequest.java index ebb43c6efd4..056fc3c1822 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchAuthTokenRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchAuthTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchCloudGateMappingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchCloudGateMappingRequest.java index 0c1c78c15c2..4ecbf23f2e4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchCloudGateMappingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchCloudGateMappingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchCloudGateRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchCloudGateRequest.java index 70a1a231a2c..c4d7a2f8983 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchCloudGateRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchCloudGateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchCloudGateServerRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchCloudGateServerRequest.java index 6cf42ebe7ae..bc2085d920f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchCloudGateServerRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchCloudGateServerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchConditionRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchConditionRequest.java index ad1e0640773..c8eba6320a5 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchConditionRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchConditionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchCustomerSecretKeyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchCustomerSecretKeyRequest.java index f939fa2a6fb..7f66a6f4dc1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchCustomerSecretKeyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchCustomerSecretKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchDynamicResourceGroupRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchDynamicResourceGroupRequest.java index 1fe778f2fed..243252f0411 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchDynamicResourceGroupRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchDynamicResourceGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchGrantRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchGrantRequest.java index 951b95b236b..91040e3783e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchGrantRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchGrantRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchGroupRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchGroupRequest.java index 1656be8286b..daae0cab7f3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchGroupRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchIdentityPropagationTrustRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchIdentityPropagationTrustRequest.java index 2823f3b46f1..c66e04c40b4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchIdentityPropagationTrustRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchIdentityPropagationTrustRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchIdentityProviderRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchIdentityProviderRequest.java index 6d8a42cf1df..a85ea388ed6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchIdentityProviderRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchIdentityProviderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchIdentitySettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchIdentitySettingRequest.java index d35258c120e..054b25ef220 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchIdentitySettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchIdentitySettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchKmsiSettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchKmsiSettingRequest.java index 071e454cbdf..740a771d875 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchKmsiSettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchKmsiSettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMappedAttributeRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMappedAttributeRequest.java index 4ad7dd9e8f0..abf92206586 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMappedAttributeRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMappedAttributeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMeRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMeRequest.java index 4b5230f8e89..e0ea20e0112 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMeRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyApiKeyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyApiKeyRequest.java index 20337f75558..aa147dddf78 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyApiKeyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyApiKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyAuthTokenRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyAuthTokenRequest.java index cebf679691a..9cd6aba4fab 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyAuthTokenRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyAuthTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyCustomerSecretKeyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyCustomerSecretKeyRequest.java index cdd17b54c5a..31f006c18c3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyCustomerSecretKeyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyCustomerSecretKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyDeviceRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyDeviceRequest.java index ee767e9cba6..108daf49daa 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyDeviceRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyDeviceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyOAuth2ClientCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyOAuth2ClientCredentialRequest.java index 1963ee43f52..5b0e34165f9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyOAuth2ClientCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyOAuth2ClientCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyPendingApprovalRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyPendingApprovalRequest.java index bc9fb152f7c..c6c50b7c336 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyPendingApprovalRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyPendingApprovalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyRequestRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyRequestRequest.java index 3cfaf1e9912..7861592612c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyRequestRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMyRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMySmtpCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMySmtpCredentialRequest.java index 2200916e45c..2998568d6e4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMySmtpCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchMySmtpCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchNetworkPerimeterRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchNetworkPerimeterRequest.java index cb16319cb81..363a30b75a4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchNetworkPerimeterRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchNetworkPerimeterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchOAuth2ClientCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchOAuth2ClientCredentialRequest.java index 41609f793f9..80e1c20f3a3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchOAuth2ClientCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchOAuth2ClientCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchPasswordPolicyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchPasswordPolicyRequest.java index 42d03a4ba14..256cd76a0db 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchPasswordPolicyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchPasswordPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchPolicyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchPolicyRequest.java index 75ba696a390..3661ddb1b5a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchPolicyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchRuleRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchRuleRequest.java index 7a2553325c4..2f741f7de0d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchRuleRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSchemaRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSchemaRequest.java index 7ffbfbbcd07..f6409e04f50 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSchemaRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSchemaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSecurityQuestionRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSecurityQuestionRequest.java index 5da23643de8..19ea794ccc7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSecurityQuestionRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSecurityQuestionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSecurityQuestionSettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSecurityQuestionSettingRequest.java index 790c985c2d4..11bd3d9076e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSecurityQuestionSettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSecurityQuestionSettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSelfRegistrationProfileRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSelfRegistrationProfileRequest.java index 4123096104d..864c2dea40b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSelfRegistrationProfileRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSelfRegistrationProfileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSettingRequest.java index 3797d8cebdf..adaf9a47fe9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSmtpCredentialRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSmtpCredentialRequest.java index cc9f8815305..0401d8675e9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSmtpCredentialRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSmtpCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSocialIdentityProviderRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSocialIdentityProviderRequest.java index 96f0db5e672..4c2d26bcb8e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSocialIdentityProviderRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchSocialIdentityProviderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchUserAttributesSettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchUserAttributesSettingRequest.java index 6a228ff7543..d3d55712260 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchUserAttributesSettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchUserAttributesSettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchUserRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchUserRequest.java index f21c4d25ea5..d01fbb77ded 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchUserRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PatchUserRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutAccountRecoverySettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutAccountRecoverySettingRequest.java index f47cd8c85c3..aa7189802b3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutAccountRecoverySettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutAccountRecoverySettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutAppRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutAppRequest.java index fb7e39fffdb..1d696acf43c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutAppRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutAppRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutAppStatusChangerRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutAppStatusChangerRequest.java index 35c748da01a..5992da4a5a8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutAppStatusChangerRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutAppStatusChangerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutApprovalWorkflowRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutApprovalWorkflowRequest.java index eb10d63bc64..1be874f6c53 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutApprovalWorkflowRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutApprovalWorkflowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutAuthenticationFactorSettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutAuthenticationFactorSettingRequest.java index 52bee3d7b75..247a878cd72 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutAuthenticationFactorSettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutAuthenticationFactorSettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutCloudGateMappingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutCloudGateMappingRequest.java index c0605934e1c..28619297439 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutCloudGateMappingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutCloudGateMappingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutCloudGateRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutCloudGateRequest.java index 154230385da..82f5cb2b49e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutCloudGateRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutCloudGateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutCloudGateServerRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutCloudGateServerRequest.java index a1a2196b845..b075a424a1f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutCloudGateServerRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutCloudGateServerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutConditionRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutConditionRequest.java index a288157f80b..7e9cab8190c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutConditionRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutConditionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutDynamicResourceGroupRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutDynamicResourceGroupRequest.java index 12eb343f9aa..26fed32c2f8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutDynamicResourceGroupRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutDynamicResourceGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutGroupRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutGroupRequest.java index 1e948afe61f..8c82d2ec555 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutGroupRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutIdentityPropagationTrustRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutIdentityPropagationTrustRequest.java index 0cb28e588b3..f0d661bf1c3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutIdentityPropagationTrustRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutIdentityPropagationTrustRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutIdentityProviderRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutIdentityProviderRequest.java index 58ad1060a50..4100fed099c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutIdentityProviderRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutIdentityProviderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutIdentitySettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutIdentitySettingRequest.java index 12d837a5cb1..def71a0e48c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutIdentitySettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutIdentitySettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutKmsiSettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutKmsiSettingRequest.java index 681e5d0a882..07f6f1c5563 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutKmsiSettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutKmsiSettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutMappedAttributeRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutMappedAttributeRequest.java index af7fead6975..773c5e8c9c1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutMappedAttributeRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutMappedAttributeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutMePasswordChangerRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutMePasswordChangerRequest.java index f95de756134..f509468a18f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutMePasswordChangerRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutMePasswordChangerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutMeRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutMeRequest.java index c931a97b872..2b58761232e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutMeRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutMeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutNetworkPerimeterRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutNetworkPerimeterRequest.java index 8dd2d3f3094..d642e2ceccf 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutNetworkPerimeterRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutNetworkPerimeterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutNotificationSettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutNotificationSettingRequest.java index f7ee18bc458..61ec06328f1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutNotificationSettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutNotificationSettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutPasswordPolicyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutPasswordPolicyRequest.java index 6b728308df0..e571aada14c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutPasswordPolicyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutPasswordPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutPolicyRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutPolicyRequest.java index e289b3014e3..44ea3752e91 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutPolicyRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutRuleRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutRuleRequest.java index 0608fddfcbf..62af219e455 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutRuleRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutSchemaRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutSchemaRequest.java index 15a3e17db47..bd60b00c8ee 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutSchemaRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutSchemaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutSecurityQuestionSettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutSecurityQuestionSettingRequest.java index 76db94ea19c..2b6ea49a8e7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutSecurityQuestionSettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutSecurityQuestionSettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutSelfRegistrationProfileRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutSelfRegistrationProfileRequest.java index 5894dccdd0c..3407f740761 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutSelfRegistrationProfileRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutSelfRegistrationProfileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutSettingRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutSettingRequest.java index fa7f5499745..4523fada8e7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutSettingRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutSettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutSocialIdentityProviderRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutSocialIdentityProviderRequest.java index 7486e82ec9d..bc68690b034 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutSocialIdentityProviderRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutSocialIdentityProviderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutUserCapabilitiesChangerRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutUserCapabilitiesChangerRequest.java index 373f73798fb..471b5507e76 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutUserCapabilitiesChangerRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutUserCapabilitiesChangerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutUserPasswordChangerRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutUserPasswordChangerRequest.java index 13dee39f2ea..10c34ffb3fd 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutUserPasswordChangerRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutUserPasswordChangerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutUserPasswordResetterRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutUserPasswordResetterRequest.java index 78057a97af5..31aff476d6b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutUserPasswordResetterRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutUserPasswordResetterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutUserRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutUserRequest.java index 157541f9414..ca5b686683e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutUserRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutUserRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutUserStatusChangerRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutUserStatusChangerRequest.java index 87c44b39af3..dd9e8597f02 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutUserStatusChangerRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/PutUserStatusChangerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchAccountMgmtInfosRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchAccountMgmtInfosRequest.java index e5a7d9d6431..7dea0ecaeb5 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchAccountMgmtInfosRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchAccountMgmtInfosRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchApiKeysRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchApiKeysRequest.java index 0c27938e628..ce6d5081a55 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchApiKeysRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchApiKeysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchAppRolesRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchAppRolesRequest.java index cf001b74a58..28df1d6720a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchAppRolesRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchAppRolesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchAppsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchAppsRequest.java index 14d70ffb897..c1f5c935bb8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchAppsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchAppsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchAuthTokensRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchAuthTokensRequest.java index 5626567cf0c..e143f2db2c4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchAuthTokensRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchAuthTokensRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchAuthenticationFactorSettingsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchAuthenticationFactorSettingsRequest.java index b846179113f..4848c4cdf48 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchAuthenticationFactorSettingsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchAuthenticationFactorSettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchCloudGateMappingsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchCloudGateMappingsRequest.java index 2eed4d7ae65..c78cb8e9727 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchCloudGateMappingsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchCloudGateMappingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchCloudGateServersRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchCloudGateServersRequest.java index 999e4982b05..b242766e3ff 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchCloudGateServersRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchCloudGateServersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchCloudGatesRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchCloudGatesRequest.java index 1ef97bd6a68..1de34a76394 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchCloudGatesRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchCloudGatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchConditionsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchConditionsRequest.java index b48c1fbd9ba..ada6d71c8ae 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchConditionsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchConditionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchCustomerSecretKeysRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchCustomerSecretKeysRequest.java index ce5c41518ca..9628a3bed1a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchCustomerSecretKeysRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchCustomerSecretKeysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchDynamicResourceGroupsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchDynamicResourceGroupsRequest.java index 490f3253e85..21c3ea6a28a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchDynamicResourceGroupsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchDynamicResourceGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchGrantsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchGrantsRequest.java index 468afaeb147..067e098d27a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchGrantsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchGrantsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchGroupsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchGroupsRequest.java index da678468d97..a77f99d9881 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchGroupsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchIdentityProvidersRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchIdentityProvidersRequest.java index 9b79a1a0ee0..08c4396f8d3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchIdentityProvidersRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchIdentityProvidersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchIdentitySettingsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchIdentitySettingsRequest.java index 6e3b68bc299..eca7c712f5b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchIdentitySettingsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchIdentitySettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchKmsiSettingsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchKmsiSettingsRequest.java index 45cf18fb18d..bbacf3a49be 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchKmsiSettingsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchKmsiSettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchMappedAttributesRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchMappedAttributesRequest.java index 71586a5c0a6..7871e373187 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchMappedAttributesRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchMappedAttributesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchMyAppsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchMyAppsRequest.java index 1e7b4b0a555..f3c54e469b7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchMyAppsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchMyAppsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchMyGroupsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchMyGroupsRequest.java index cbe2d4b2bbb..a314e36f792 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchMyGroupsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchMyGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchMyRequestableGroupsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchMyRequestableGroupsRequest.java index 4772a0b60c6..5efab668a7d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchMyRequestableGroupsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchMyRequestableGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchMyRequestsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchMyRequestsRequest.java index d2704c2f179..9e1f63bdbef 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchMyRequestsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchMyRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchNetworkPerimetersRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchNetworkPerimetersRequest.java index 005cf0f63e8..0bf207323c6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchNetworkPerimetersRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchNetworkPerimetersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchNotificationSettingsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchNotificationSettingsRequest.java index 2b0b9d2cb05..3b35cec6050 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchNotificationSettingsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchNotificationSettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchOAuth2ClientCredentialsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchOAuth2ClientCredentialsRequest.java index aba5641ba1b..64e4795e843 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchOAuth2ClientCredentialsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchOAuth2ClientCredentialsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchOAuthClientCertificatesRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchOAuthClientCertificatesRequest.java index c7a19d368dd..c8597bf2484 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchOAuthClientCertificatesRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchOAuthClientCertificatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchOAuthPartnerCertificatesRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchOAuthPartnerCertificatesRequest.java index 8a16186369e..feab440940f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchOAuthPartnerCertificatesRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchOAuthPartnerCertificatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchOciConsoleSignOnPolicyConsentsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchOciConsoleSignOnPolicyConsentsRequest.java index d3a2148b0df..c313d07356b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchOciConsoleSignOnPolicyConsentsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchOciConsoleSignOnPolicyConsentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchPasswordPoliciesRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchPasswordPoliciesRequest.java index e18806011e7..e136c3f6460 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchPasswordPoliciesRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchPasswordPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchPoliciesRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchPoliciesRequest.java index c4b1b30b3f4..d334c3a81e4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchPoliciesRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchResourceTypeSchemaAttributesRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchResourceTypeSchemaAttributesRequest.java index e77fcacabc3..3fe0becf910 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchResourceTypeSchemaAttributesRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchResourceTypeSchemaAttributesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchRulesRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchRulesRequest.java index 04df91de503..c4139eed1f1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchRulesRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSchemasRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSchemasRequest.java index 73cfee553e0..4b94279775c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSchemasRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSchemasRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSecurityQuestionSettingsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSecurityQuestionSettingsRequest.java index 5d7217b87a5..7ee554b9c47 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSecurityQuestionSettingsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSecurityQuestionSettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSecurityQuestionsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSecurityQuestionsRequest.java index 5043904cba0..ff2075a6574 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSecurityQuestionsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSecurityQuestionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSelfRegistrationProfilesRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSelfRegistrationProfilesRequest.java index 1a14c706509..e04367ea772 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSelfRegistrationProfilesRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSelfRegistrationProfilesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSettingsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSettingsRequest.java index 041b291ae93..b42b6cf7dab 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSettingsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSmtpCredentialsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSmtpCredentialsRequest.java index e3d4b276b6f..90de2e9cfc4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSmtpCredentialsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSmtpCredentialsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSocialIdentityProvidersRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSocialIdentityProvidersRequest.java index e40fa07d8da..769bef02ef6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSocialIdentityProvidersRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchSocialIdentityProvidersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchUserAttributesSettingsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchUserAttributesSettingsRequest.java index 1ae780e5c52..42a68b43dc3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchUserAttributesSettingsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchUserAttributesSettingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchUserDbCredentialsRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchUserDbCredentialsRequest.java index bf1972cdf50..067ef4b86be 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchUserDbCredentialsRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchUserDbCredentialsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchUsersRequest.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchUsersRequest.java index 3fb90ff70c1..f5fc11dc51d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchUsersRequest.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/requests/SearchUsersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.requests; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateApiKeyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateApiKeyResponse.java index 758871b0594..65428451acd 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateApiKeyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateApiKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateAppResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateAppResponse.java index 6f2ac63e2b0..957e5046640 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateAppResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateAppResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateAppRoleResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateAppRoleResponse.java index ce26c16062b..f5094e5b34e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateAppRoleResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateAppRoleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateApprovalWorkflowAssignmentResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateApprovalWorkflowAssignmentResponse.java index 4027ad89bfc..e477ccac5ea 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateApprovalWorkflowAssignmentResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateApprovalWorkflowAssignmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateApprovalWorkflowResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateApprovalWorkflowResponse.java index 725fa688605..e4ab3f89f1e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateApprovalWorkflowResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateApprovalWorkflowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateApprovalWorkflowStepResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateApprovalWorkflowStepResponse.java index 84c0564fe56..892d605e3bb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateApprovalWorkflowStepResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateApprovalWorkflowStepResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateAuthTokenResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateAuthTokenResponse.java index da4cbdc9983..2a5bd38c068 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateAuthTokenResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateAuthTokenResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateAuthenticationFactorsRemoverResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateAuthenticationFactorsRemoverResponse.java index 7de1d223eff..fd544d36145 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateAuthenticationFactorsRemoverResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateAuthenticationFactorsRemoverResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateCloudGateMappingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateCloudGateMappingResponse.java index f3b6be3b6ab..2f7e9f0bfd7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateCloudGateMappingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateCloudGateMappingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateCloudGateResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateCloudGateResponse.java index 86655e3fe24..bbbff50e70f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateCloudGateResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateCloudGateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateCloudGateServerResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateCloudGateServerResponse.java index ae61de988a2..35a18e506be 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateCloudGateServerResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateCloudGateServerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateConditionResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateConditionResponse.java index 519e6de1e7e..dcad188702b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateConditionResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateConditionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateCustomerSecretKeyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateCustomerSecretKeyResponse.java index da8f8341a2e..c12b9c81300 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateCustomerSecretKeyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateCustomerSecretKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateDynamicResourceGroupResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateDynamicResourceGroupResponse.java index ba18b29f9ce..070f097d749 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateDynamicResourceGroupResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateDynamicResourceGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateGrantResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateGrantResponse.java index e6aa1dcdefc..246706d54ab 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateGrantResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateGrantResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateGroupResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateGroupResponse.java index 94d6b42cb5b..8d417011a4a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateGroupResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateIdentityPropagationTrustResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateIdentityPropagationTrustResponse.java index a9326876747..cf560d095a1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateIdentityPropagationTrustResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateIdentityPropagationTrustResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateIdentityProviderResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateIdentityProviderResponse.java index 10f952e9b45..464d9f1c877 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateIdentityProviderResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateIdentityProviderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMeResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMeResponse.java index ea2fd857d0c..4ce6469060d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMeResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyApiKeyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyApiKeyResponse.java index 5ab2080f8d7..c16ecc81d0a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyApiKeyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyApiKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyAuthTokenResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyAuthTokenResponse.java index 2d61b500a31..6f321d41690 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyAuthTokenResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyAuthTokenResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyAuthenticationFactorInitiatorResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyAuthenticationFactorInitiatorResponse.java index 2655bb742b1..aa476b00983 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyAuthenticationFactorInitiatorResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyAuthenticationFactorInitiatorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyAuthenticationFactorValidatorResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyAuthenticationFactorValidatorResponse.java index 012787f5340..b35a82b38c3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyAuthenticationFactorValidatorResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyAuthenticationFactorValidatorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyAuthenticationFactorsRemoverResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyAuthenticationFactorsRemoverResponse.java index 98d51f9a496..753663515b9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyAuthenticationFactorsRemoverResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyAuthenticationFactorsRemoverResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyCustomerSecretKeyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyCustomerSecretKeyResponse.java index 8763ad8a17c..6b8a9384ee8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyCustomerSecretKeyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyCustomerSecretKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyOAuth2ClientCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyOAuth2ClientCredentialResponse.java index 29216399c93..f7320629c53 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyOAuth2ClientCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyOAuth2ClientCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyRequestResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyRequestResponse.java index 82a8105dbc2..55caf57ef7e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyRequestResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMySmtpCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMySmtpCredentialResponse.java index 381c8203456..7af7212fe63 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMySmtpCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMySmtpCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMySupportAccountResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMySupportAccountResponse.java index 3a050cd2339..dbe8a3174a0 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMySupportAccountResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMySupportAccountResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyUserDbCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyUserDbCredentialResponse.java index 07846ecd8a2..e234df2ecc5 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyUserDbCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateMyUserDbCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateNetworkPerimeterResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateNetworkPerimeterResponse.java index ccae381ea21..d084d6d2872 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateNetworkPerimeterResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateNetworkPerimeterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateOAuth2ClientCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateOAuth2ClientCredentialResponse.java index 752a92cbd5f..49d3cf4dd02 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateOAuth2ClientCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateOAuth2ClientCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateOAuthClientCertificateResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateOAuthClientCertificateResponse.java index eb56e6d5941..b98a4cfb8b3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateOAuthClientCertificateResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateOAuthClientCertificateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateOAuthPartnerCertificateResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateOAuthPartnerCertificateResponse.java index 22a35d9adaa..55a40557c0a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateOAuthPartnerCertificateResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateOAuthPartnerCertificateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreatePasswordPolicyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreatePasswordPolicyResponse.java index 72aad017cb7..80961c167df 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreatePasswordPolicyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreatePasswordPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreatePolicyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreatePolicyResponse.java index 8116ad84561..e927ee26b34 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreatePolicyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreatePolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateRestoreOciConsolePolicyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateRestoreOciConsolePolicyResponse.java index b430a0e1cb3..45355451b2f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateRestoreOciConsolePolicyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateRestoreOciConsolePolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateRuleResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateRuleResponse.java index a169115d70c..40cf953053a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateRuleResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateSecurityQuestionResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateSecurityQuestionResponse.java index e76714e778a..08cb10ae56d 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateSecurityQuestionResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateSecurityQuestionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateSelfRegistrationProfileResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateSelfRegistrationProfileResponse.java index 37df6f42f83..1a3970e1d86 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateSelfRegistrationProfileResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateSelfRegistrationProfileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateSmtpCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateSmtpCredentialResponse.java index 7dba821839a..7df7779a602 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateSmtpCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateSmtpCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateSocialIdentityProviderResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateSocialIdentityProviderResponse.java index 9cff0fd4c39..88841101b74 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateSocialIdentityProviderResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateSocialIdentityProviderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateUserDbCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateUserDbCredentialResponse.java index d8f5e1ec00e..4d56d17d541 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateUserDbCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateUserDbCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateUserResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateUserResponse.java index 315e2df0a83..557da1c90df 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateUserResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/CreateUserResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteApiKeyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteApiKeyResponse.java index 6bc58486609..f1a128b9d63 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteApiKeyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteApiKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteAppResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteAppResponse.java index 2cc6c6cf377..1c3f4d2dbae 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteAppResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteAppResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteAppRoleResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteAppRoleResponse.java index db84554b074..44fa1cc63f5 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteAppRoleResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteAppRoleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteApprovalWorkflowAssignmentResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteApprovalWorkflowAssignmentResponse.java index 83c7fb351b6..e33b619be97 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteApprovalWorkflowAssignmentResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteApprovalWorkflowAssignmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteApprovalWorkflowResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteApprovalWorkflowResponse.java index 2a026befd47..67f94b2ad6c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteApprovalWorkflowResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteApprovalWorkflowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteApprovalWorkflowStepResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteApprovalWorkflowStepResponse.java index 56b0becee43..42b07a80c10 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteApprovalWorkflowStepResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteApprovalWorkflowStepResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteAuthTokenResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteAuthTokenResponse.java index b653bf47d4c..f6b80f0de10 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteAuthTokenResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteAuthTokenResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteCloudGateMappingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteCloudGateMappingResponse.java index a4c97b20f65..8e67d9a8aca 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteCloudGateMappingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteCloudGateMappingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteCloudGateResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteCloudGateResponse.java index eb1ae69b0d5..3cb43e31c68 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteCloudGateResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteCloudGateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteCloudGateServerResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteCloudGateServerResponse.java index 6318bde6fcf..1051deb0600 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteCloudGateServerResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteCloudGateServerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteConditionResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteConditionResponse.java index 533dae32139..010b4af4eae 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteConditionResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteConditionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteCustomerSecretKeyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteCustomerSecretKeyResponse.java index 509de752949..d0bd030013b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteCustomerSecretKeyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteCustomerSecretKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteDynamicResourceGroupResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteDynamicResourceGroupResponse.java index 00fc51f5bf4..548bdbf5e13 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteDynamicResourceGroupResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteDynamicResourceGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteGrantResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteGrantResponse.java index 7d5f4a1e676..3d08740f18b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteGrantResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteGrantResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteGroupResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteGroupResponse.java index fccba4f1a29..d9920822fa1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteGroupResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteIdentityPropagationTrustResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteIdentityPropagationTrustResponse.java index 792b25032b7..258a545a7fc 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteIdentityPropagationTrustResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteIdentityPropagationTrustResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteIdentityProviderResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteIdentityProviderResponse.java index 6c1d1e12d51..22f6de530cd 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteIdentityProviderResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteIdentityProviderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyApiKeyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyApiKeyResponse.java index 1ef4e39db4a..0bf13f9f182 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyApiKeyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyApiKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyAuthTokenResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyAuthTokenResponse.java index a2012e5cda4..94a54005a84 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyAuthTokenResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyAuthTokenResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyCustomerSecretKeyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyCustomerSecretKeyResponse.java index 8e8af4a9640..2f66a612056 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyCustomerSecretKeyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyCustomerSecretKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyDeviceResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyDeviceResponse.java index e5d60e3ef26..a968bbb48f1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyDeviceResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyDeviceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyOAuth2ClientCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyOAuth2ClientCredentialResponse.java index 5c415bcf362..362cf966c35 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyOAuth2ClientCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyOAuth2ClientCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMySmtpCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMySmtpCredentialResponse.java index 7a2e744a6ee..9de2ea99115 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMySmtpCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMySmtpCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMySupportAccountResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMySupportAccountResponse.java index ed1b1202c50..5c178d7900c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMySupportAccountResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMySupportAccountResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyTrustedUserAgentResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyTrustedUserAgentResponse.java index 58f0c362320..e8190650a8c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyTrustedUserAgentResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyTrustedUserAgentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyUserDbCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyUserDbCredentialResponse.java index d286f91e90c..5853bd4d11e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyUserDbCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteMyUserDbCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteNetworkPerimeterResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteNetworkPerimeterResponse.java index 906e39776de..fa40368718e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteNetworkPerimeterResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteNetworkPerimeterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteOAuth2ClientCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteOAuth2ClientCredentialResponse.java index 869402a8509..8793d3f05ac 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteOAuth2ClientCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteOAuth2ClientCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteOAuthClientCertificateResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteOAuthClientCertificateResponse.java index 83749ed2ff5..a738c365090 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteOAuthClientCertificateResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteOAuthClientCertificateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteOAuthPartnerCertificateResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteOAuthPartnerCertificateResponse.java index 4ef8e84ab4e..85af19ff2af 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteOAuthPartnerCertificateResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteOAuthPartnerCertificateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeletePasswordPolicyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeletePasswordPolicyResponse.java index b7c7b3b39c8..f3e0f2025ea 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeletePasswordPolicyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeletePasswordPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeletePolicyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeletePolicyResponse.java index 32d0c1ae296..85b28d95920 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeletePolicyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeletePolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteRuleResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteRuleResponse.java index 956a3bf179f..2762c49a3b2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteRuleResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteSecurityQuestionResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteSecurityQuestionResponse.java index 34d87ad009e..978c6076bad 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteSecurityQuestionResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteSecurityQuestionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteSelfRegistrationProfileResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteSelfRegistrationProfileResponse.java index c141e3dcf03..76d745d658a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteSelfRegistrationProfileResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteSelfRegistrationProfileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteSmtpCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteSmtpCredentialResponse.java index a57e552ccfa..e9a02dd457e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteSmtpCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteSmtpCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteSocialIdentityProviderResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteSocialIdentityProviderResponse.java index 12aada6fc66..d2235a017e6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteSocialIdentityProviderResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteSocialIdentityProviderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteUserDbCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteUserDbCredentialResponse.java index 56684c8b3cd..a6e3d99e597 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteUserDbCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteUserDbCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteUserResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteUserResponse.java index c2cd4149f9a..2bbacd5dad8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteUserResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/DeleteUserResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAccountMgmtInfoResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAccountMgmtInfoResponse.java index ce11eb23740..4a052522406 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAccountMgmtInfoResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAccountMgmtInfoResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAccountRecoverySettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAccountRecoverySettingResponse.java index 25539b62f6f..f8d876402cd 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAccountRecoverySettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAccountRecoverySettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetApiKeyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetApiKeyResponse.java index 267b9513190..5d67797d371 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetApiKeyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetApiKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAppResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAppResponse.java index 3cc7238ffc4..20f9823a64c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAppResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAppResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAppRoleResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAppRoleResponse.java index 7a7f9a9d1b3..8e994b0baa9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAppRoleResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAppRoleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetApprovalWorkflowAssignmentResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetApprovalWorkflowAssignmentResponse.java index 40c2428abf2..6e7b2f66e0c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetApprovalWorkflowAssignmentResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetApprovalWorkflowAssignmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetApprovalWorkflowResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetApprovalWorkflowResponse.java index b75ef48e7bd..ed87d3fb904 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetApprovalWorkflowResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetApprovalWorkflowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetApprovalWorkflowStepResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetApprovalWorkflowStepResponse.java index a812ec69e8f..8dc502623b9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetApprovalWorkflowStepResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetApprovalWorkflowStepResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAuthTokenResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAuthTokenResponse.java index 5d085cf7842..1fb06889109 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAuthTokenResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAuthTokenResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAuthenticationFactorSettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAuthenticationFactorSettingResponse.java index c6542b1a533..47e23a7cf30 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAuthenticationFactorSettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetAuthenticationFactorSettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetBrandingSettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetBrandingSettingResponse.java index f3c4d9b31f6..27a9ab48819 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetBrandingSettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetBrandingSettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetCloudGateMappingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetCloudGateMappingResponse.java index 03482dca383..a59d5916165 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetCloudGateMappingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetCloudGateMappingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetCloudGateResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetCloudGateResponse.java index 4064597ddc0..4e877e1fa44 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetCloudGateResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetCloudGateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetCloudGateServerResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetCloudGateServerResponse.java index 7132098610f..7f29ec66168 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetCloudGateServerResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetCloudGateServerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetConditionResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetConditionResponse.java index ee046c2744f..0d0522dc909 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetConditionResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetConditionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetCustomerSecretKeyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetCustomerSecretKeyResponse.java index bc6bef4ddc0..9be5239871a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetCustomerSecretKeyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetCustomerSecretKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetDynamicResourceGroupResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetDynamicResourceGroupResponse.java index aac6dd1ea43..b5996bd9fc5 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetDynamicResourceGroupResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetDynamicResourceGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetGrantResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetGrantResponse.java index 81db908d89a..8d7a9212a10 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetGrantResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetGrantResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetGroupResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetGroupResponse.java index 70c22b75aa8..a85797b66b6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetGroupResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetIdentityPropagationTrustResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetIdentityPropagationTrustResponse.java index f00a8bcdc3d..55968c36eb9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetIdentityPropagationTrustResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetIdentityPropagationTrustResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetIdentityProviderResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetIdentityProviderResponse.java index 9cc83f0006b..06dc32f54bc 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetIdentityProviderResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetIdentityProviderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetIdentitySettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetIdentitySettingResponse.java index 4e8a8e9e9ae..935e88cb152 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetIdentitySettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetIdentitySettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetKmsiSettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetKmsiSettingResponse.java index 7df5e1f7239..afb70da47a8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetKmsiSettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetKmsiSettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMappedAttributeResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMappedAttributeResponse.java index c71e3b3771f..0faa0cf5ebf 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMappedAttributeResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMappedAttributeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMeResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMeResponse.java index 66614143765..ce5b3594357 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMeResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyApiKeyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyApiKeyResponse.java index ebff836f833..b0c451ca6cb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyApiKeyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyApiKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyAuthTokenResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyAuthTokenResponse.java index f8fc5ec25b8..6f5b63d9ac1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyAuthTokenResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyAuthTokenResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyCompletedApprovalResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyCompletedApprovalResponse.java index cfda42cd4b5..dd0c38aaa08 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyCompletedApprovalResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyCompletedApprovalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyCustomerSecretKeyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyCustomerSecretKeyResponse.java index 46a9ab880c5..19ab6fb0e89 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyCustomerSecretKeyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyCustomerSecretKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyDeviceResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyDeviceResponse.java index 901da9c4449..d51bfb1fd06 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyDeviceResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyDeviceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyOAuth2ClientCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyOAuth2ClientCredentialResponse.java index 6380eb75a1e..70f33cb2d05 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyOAuth2ClientCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyOAuth2ClientCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyPendingApprovalResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyPendingApprovalResponse.java index f9d1e2ed75b..8ffff090069 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyPendingApprovalResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyPendingApprovalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyRequestResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyRequestResponse.java index 9d1a1aa52fc..87f4871f973 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyRequestResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMySmtpCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMySmtpCredentialResponse.java index 4ff669dcaff..045f4aace2a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMySmtpCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMySmtpCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMySupportAccountResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMySupportAccountResponse.java index 5c83d3adb25..f8c439c5f1e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMySupportAccountResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMySupportAccountResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyTrustedUserAgentResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyTrustedUserAgentResponse.java index 49f4915115c..1409bef3df5 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyTrustedUserAgentResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyTrustedUserAgentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyUserDbCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyUserDbCredentialResponse.java index f62b65acf10..ace9a965cbf 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyUserDbCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetMyUserDbCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetNetworkPerimeterResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetNetworkPerimeterResponse.java index 5143859e16a..88115c253c1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetNetworkPerimeterResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetNetworkPerimeterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetNotificationSettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetNotificationSettingResponse.java index 00d7c2cfa03..93ce226cca6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetNotificationSettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetNotificationSettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetOAuth2ClientCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetOAuth2ClientCredentialResponse.java index 1c309a5416b..d90fa4c1c92 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetOAuth2ClientCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetOAuth2ClientCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetOAuthClientCertificateResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetOAuthClientCertificateResponse.java index 2e106540a5e..e1ff43048fb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetOAuthClientCertificateResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetOAuthClientCertificateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetOAuthPartnerCertificateResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetOAuthPartnerCertificateResponse.java index 030f993ef0c..a55d900eb92 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetOAuthPartnerCertificateResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetOAuthPartnerCertificateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetOciConsoleSignOnPolicyConsentResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetOciConsoleSignOnPolicyConsentResponse.java index 2008e9fa472..e7b3a93b873 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetOciConsoleSignOnPolicyConsentResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetOciConsoleSignOnPolicyConsentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetPasswordPolicyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetPasswordPolicyResponse.java index e1e33427428..eb72ded6094 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetPasswordPolicyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetPasswordPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetPolicyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetPolicyResponse.java index a3c96d998ab..06b977099d1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetPolicyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetRuleResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetRuleResponse.java index 6b948e8c8b1..6adb700ab32 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetRuleResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSchemaResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSchemaResponse.java index 03f34b3621a..5b3293086d9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSchemaResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSchemaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSecurityQuestionResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSecurityQuestionResponse.java index ebbebf496f5..49735394b46 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSecurityQuestionResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSecurityQuestionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSecurityQuestionSettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSecurityQuestionSettingResponse.java index 718cf2feede..2e0b8af0d55 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSecurityQuestionSettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSecurityQuestionSettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSelfRegistrationProfileResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSelfRegistrationProfileResponse.java index 93b5d5f2ce1..a0f059f524f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSelfRegistrationProfileResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSelfRegistrationProfileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSettingResponse.java index 37f95738474..69d254215a4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSmtpCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSmtpCredentialResponse.java index 29b4ce41da0..edc4172d642 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSmtpCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSmtpCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSocialIdentityProviderResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSocialIdentityProviderResponse.java index f84efbf889c..02e3d4eac4a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSocialIdentityProviderResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetSocialIdentityProviderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetUserAttributesSettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetUserAttributesSettingResponse.java index 760b88360c2..08b86437617 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetUserAttributesSettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetUserAttributesSettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetUserDbCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetUserDbCredentialResponse.java index 622286111f4..0e426506e53 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetUserDbCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetUserDbCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetUserResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetUserResponse.java index 5606b0d7254..15ddf1da39f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetUserResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/GetUserResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAccountMgmtInfosResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAccountMgmtInfosResponse.java index de50988a04a..dee630d1146 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAccountMgmtInfosResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAccountMgmtInfosResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAccountRecoverySettingsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAccountRecoverySettingsResponse.java index 6fd00ffe9ca..4611b363059 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAccountRecoverySettingsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAccountRecoverySettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListApiKeysResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListApiKeysResponse.java index ea616b8b13a..72741a4b871 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListApiKeysResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListApiKeysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAppRolesResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAppRolesResponse.java index b5d862d4366..606f9fc59a1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAppRolesResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAppRolesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListApprovalWorkflowAssignmentsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListApprovalWorkflowAssignmentsResponse.java index 9bec709caed..e3175b9132c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListApprovalWorkflowAssignmentsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListApprovalWorkflowAssignmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListApprovalWorkflowStepsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListApprovalWorkflowStepsResponse.java index 8b021994be1..0b85a944fe8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListApprovalWorkflowStepsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListApprovalWorkflowStepsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListApprovalWorkflowsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListApprovalWorkflowsResponse.java index 175eeae9fc1..5563a3a527b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListApprovalWorkflowsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListApprovalWorkflowsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAppsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAppsResponse.java index dce35eb1481..56a52c3f46b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAppsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAppsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAuthTokensResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAuthTokensResponse.java index 83dbfda9892..beb0acc7da5 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAuthTokensResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAuthTokensResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAuthenticationFactorSettingsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAuthenticationFactorSettingsResponse.java index 09b7a65830d..0641d152dd3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAuthenticationFactorSettingsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListAuthenticationFactorSettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListBrandingSettingsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListBrandingSettingsResponse.java index 8ac9d03efda..63d7f0ebce2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListBrandingSettingsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListBrandingSettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListCloudGateMappingsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListCloudGateMappingsResponse.java index 1ec2af17603..45b6c2912f3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListCloudGateMappingsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListCloudGateMappingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListCloudGateServersResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListCloudGateServersResponse.java index 3ec77e2d7f1..76e1054cdb5 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListCloudGateServersResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListCloudGateServersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListCloudGatesResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListCloudGatesResponse.java index b2d64b4d121..f330e95188e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListCloudGatesResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListCloudGatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListConditionsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListConditionsResponse.java index 6e1d50e8c84..ef4493de0f0 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListConditionsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListConditionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListCustomerSecretKeysResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListCustomerSecretKeysResponse.java index 3401aa17295..640d6a199f5 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListCustomerSecretKeysResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListCustomerSecretKeysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListDynamicResourceGroupsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListDynamicResourceGroupsResponse.java index 49435e2836b..16e2f508270 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListDynamicResourceGroupsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListDynamicResourceGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListGrantsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListGrantsResponse.java index 4551dc7cc59..1a998ca2f0f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListGrantsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListGrantsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListGroupsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListGroupsResponse.java index 8f2203610c4..abb77b7e92f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListGroupsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListIdentityPropagationTrustsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListIdentityPropagationTrustsResponse.java index f7f79cbb82e..0d909fe0fb3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListIdentityPropagationTrustsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListIdentityPropagationTrustsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListIdentityProvidersResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListIdentityProvidersResponse.java index 6c5ee958eec..e68bd8d2ffb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListIdentityProvidersResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListIdentityProvidersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListIdentitySettingsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListIdentitySettingsResponse.java index 62ec9b5c600..65c66e8dcdd 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListIdentitySettingsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListIdentitySettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListKmsiSettingsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListKmsiSettingsResponse.java index 5367f1d3b82..ab7cd8f7024 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListKmsiSettingsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListKmsiSettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMappedAttributesResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMappedAttributesResponse.java index 72940f1e632..e046329a89b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMappedAttributesResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMappedAttributesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyApiKeysResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyApiKeysResponse.java index c8692ec7328..44cb32ba386 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyApiKeysResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyApiKeysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyAppsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyAppsResponse.java index b214ca278d6..2bfd695141e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyAppsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyAppsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyAuthTokensResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyAuthTokensResponse.java index 79cade7df83..7e27f954ec9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyAuthTokensResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyAuthTokensResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyCompletedApprovalsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyCompletedApprovalsResponse.java index efbe57babcf..f251b69eee6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyCompletedApprovalsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyCompletedApprovalsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyCustomerSecretKeysResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyCustomerSecretKeysResponse.java index 8e3a38aedd0..0004f219e85 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyCustomerSecretKeysResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyCustomerSecretKeysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyDevicesResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyDevicesResponse.java index 7225b05d5b2..b715cccbb80 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyDevicesResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyDevicesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyGroupsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyGroupsResponse.java index 6aceb4d0944..dab5ae5675c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyGroupsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyOAuth2ClientCredentialsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyOAuth2ClientCredentialsResponse.java index 4e75834a106..4592dee3cd5 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyOAuth2ClientCredentialsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyOAuth2ClientCredentialsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyPendingApprovalsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyPendingApprovalsResponse.java index 9861ccd6759..c6e8f406ea6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyPendingApprovalsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyPendingApprovalsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyRequestableGroupsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyRequestableGroupsResponse.java index f3cd22b48d3..758cca3acb6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyRequestableGroupsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyRequestableGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyRequestsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyRequestsResponse.java index c4118355544..0c65d58355a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyRequestsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMySmtpCredentialsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMySmtpCredentialsResponse.java index 1ba91e707fe..8d4ef2bb0e5 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMySmtpCredentialsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMySmtpCredentialsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMySupportAccountsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMySupportAccountsResponse.java index a437b3c5fe8..57b9bf7c50a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMySupportAccountsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMySupportAccountsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyTrustedUserAgentsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyTrustedUserAgentsResponse.java index bff298fda91..43e9506787a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyTrustedUserAgentsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyTrustedUserAgentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyUserDbCredentialsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyUserDbCredentialsResponse.java index 58363c2db2f..6613f1f6509 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyUserDbCredentialsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListMyUserDbCredentialsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListNetworkPerimetersResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListNetworkPerimetersResponse.java index 2ee82aad2ca..3037c940319 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListNetworkPerimetersResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListNetworkPerimetersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListNotificationSettingsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListNotificationSettingsResponse.java index 59c73c6a238..477c4868b15 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListNotificationSettingsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListNotificationSettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListOAuth2ClientCredentialsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListOAuth2ClientCredentialsResponse.java index 035c52ee8ba..8460520bdc0 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListOAuth2ClientCredentialsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListOAuth2ClientCredentialsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListOAuthClientCertificatesResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListOAuthClientCertificatesResponse.java index 69e80d29f7a..ca29b784b98 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListOAuthClientCertificatesResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListOAuthClientCertificatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListOAuthPartnerCertificatesResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListOAuthPartnerCertificatesResponse.java index aa2aa41c7bf..0a3a2fbbd60 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListOAuthPartnerCertificatesResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListOAuthPartnerCertificatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListOciConsoleSignOnPolicyConsentsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListOciConsoleSignOnPolicyConsentsResponse.java index 7ae5defbe3d..17b1ca0149a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListOciConsoleSignOnPolicyConsentsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListOciConsoleSignOnPolicyConsentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListPasswordPoliciesResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListPasswordPoliciesResponse.java index 906b8d0ebc4..a0f24fca1ec 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListPasswordPoliciesResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListPasswordPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListPoliciesResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListPoliciesResponse.java index db3c4279dad..6333300ec60 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListPoliciesResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListResourceTypeSchemaAttributesResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListResourceTypeSchemaAttributesResponse.java index 0d1e3765478..17aaad20ddc 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListResourceTypeSchemaAttributesResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListResourceTypeSchemaAttributesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListRulesResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListRulesResponse.java index b4d35943553..425bab68abc 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListRulesResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSchemasResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSchemasResponse.java index da42f593b7d..6b2f171d9d3 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSchemasResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSchemasResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSecurityQuestionSettingsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSecurityQuestionSettingsResponse.java index 284b80169c1..bd654b9c475 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSecurityQuestionSettingsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSecurityQuestionSettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSecurityQuestionsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSecurityQuestionsResponse.java index e7cb4837b05..ea306b03c70 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSecurityQuestionsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSecurityQuestionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSelfRegistrationProfilesResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSelfRegistrationProfilesResponse.java index 06c7a908f94..ffc5675076a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSelfRegistrationProfilesResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSelfRegistrationProfilesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSettingsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSettingsResponse.java index 647f47ec48e..d7c7a4a0a8b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSettingsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSmtpCredentialsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSmtpCredentialsResponse.java index ddf0fa20904..23f920093a2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSmtpCredentialsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSmtpCredentialsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSocialIdentityProvidersResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSocialIdentityProvidersResponse.java index ee4f65554b6..072aa39d989 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSocialIdentityProvidersResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListSocialIdentityProvidersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListUserAttributesSettingsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListUserAttributesSettingsResponse.java index 4f8b2bcf865..bedb302c52a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListUserAttributesSettingsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListUserAttributesSettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListUserDbCredentialsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListUserDbCredentialsResponse.java index 72a93dca5b8..df68f62a909 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListUserDbCredentialsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListUserDbCredentialsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListUsersResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListUsersResponse.java index 7ac62d3ba2f..418eed8dc36 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListUsersResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/ListUsersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchAccountRecoverySettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchAccountRecoverySettingResponse.java index 2d0a7f10214..c65d79892a0 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchAccountRecoverySettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchAccountRecoverySettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchApiKeyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchApiKeyResponse.java index e4577e24a60..c7c87017fee 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchApiKeyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchApiKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchAppResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchAppResponse.java index 7241515618f..33391977567 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchAppResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchAppResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchAppRoleResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchAppRoleResponse.java index 6c02d3b90db..fb8a6b3728f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchAppRoleResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchAppRoleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchApprovalWorkflowResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchApprovalWorkflowResponse.java index f2c4d4685b0..9fae135b6a9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchApprovalWorkflowResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchApprovalWorkflowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchApprovalWorkflowStepResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchApprovalWorkflowStepResponse.java index 085790e2e47..93e62321d5e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchApprovalWorkflowStepResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchApprovalWorkflowStepResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchAuthTokenResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchAuthTokenResponse.java index 3cada97d34e..ef859947c68 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchAuthTokenResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchAuthTokenResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchCloudGateMappingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchCloudGateMappingResponse.java index 80ef0e1a66a..2fb17a4f900 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchCloudGateMappingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchCloudGateMappingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchCloudGateResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchCloudGateResponse.java index bf5b34d8eb0..26d8bd16a8e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchCloudGateResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchCloudGateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchCloudGateServerResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchCloudGateServerResponse.java index ac8052bcc42..259e68b2f8f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchCloudGateServerResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchCloudGateServerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchConditionResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchConditionResponse.java index 4e7842c9dfa..94944479608 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchConditionResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchConditionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchCustomerSecretKeyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchCustomerSecretKeyResponse.java index c423d569923..27f080b3df5 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchCustomerSecretKeyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchCustomerSecretKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchDynamicResourceGroupResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchDynamicResourceGroupResponse.java index f57f4aa2e4e..e900d51f811 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchDynamicResourceGroupResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchDynamicResourceGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchGrantResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchGrantResponse.java index fb5ce6ba0b0..69df2b2c44c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchGrantResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchGrantResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchGroupResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchGroupResponse.java index 7cdf5316a63..c2a38155747 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchGroupResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchIdentityPropagationTrustResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchIdentityPropagationTrustResponse.java index a73be16ae68..e79f4333b86 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchIdentityPropagationTrustResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchIdentityPropagationTrustResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchIdentityProviderResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchIdentityProviderResponse.java index 9c152be885b..f1177859467 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchIdentityProviderResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchIdentityProviderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchIdentitySettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchIdentitySettingResponse.java index 2aba7f3db14..01ed6352b75 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchIdentitySettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchIdentitySettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchKmsiSettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchKmsiSettingResponse.java index 0e30846997c..c87c6a7d288 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchKmsiSettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchKmsiSettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMappedAttributeResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMappedAttributeResponse.java index 69524ddda89..da6017a847a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMappedAttributeResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMappedAttributeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMeResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMeResponse.java index 70e1a15834f..4c1cc25d80b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMeResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyApiKeyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyApiKeyResponse.java index e444d6034f9..8ee630ec8af 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyApiKeyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyApiKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyAuthTokenResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyAuthTokenResponse.java index 8bf165c8f92..aef9c4facb8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyAuthTokenResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyAuthTokenResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyCustomerSecretKeyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyCustomerSecretKeyResponse.java index e8d0dd48481..09e4fb200c2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyCustomerSecretKeyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyCustomerSecretKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyDeviceResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyDeviceResponse.java index 40f3cf1a12b..e8406a532b4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyDeviceResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyDeviceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyOAuth2ClientCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyOAuth2ClientCredentialResponse.java index 75edf2743b2..eeaa9bfc056 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyOAuth2ClientCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyOAuth2ClientCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyPendingApprovalResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyPendingApprovalResponse.java index 0f985f68752..bdae9a3e568 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyPendingApprovalResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyPendingApprovalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyRequestResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyRequestResponse.java index ef5fc9a8b11..484e93cf437 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyRequestResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMyRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMySmtpCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMySmtpCredentialResponse.java index 54eb274f5c6..852667effcd 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMySmtpCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchMySmtpCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchNetworkPerimeterResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchNetworkPerimeterResponse.java index 16dd566022e..27932099e89 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchNetworkPerimeterResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchNetworkPerimeterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchOAuth2ClientCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchOAuth2ClientCredentialResponse.java index 2e09f1c78f7..e9e858d57f6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchOAuth2ClientCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchOAuth2ClientCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchPasswordPolicyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchPasswordPolicyResponse.java index bf8dc94bdc5..294246f71fa 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchPasswordPolicyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchPasswordPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchPolicyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchPolicyResponse.java index f5509790b82..e134c7fd6ec 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchPolicyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchRuleResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchRuleResponse.java index ba6d71e8a61..9c9f9403421 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchRuleResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSchemaResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSchemaResponse.java index 275113d1663..74eef849703 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSchemaResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSchemaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSecurityQuestionResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSecurityQuestionResponse.java index 72c44ca7633..ee9ac024468 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSecurityQuestionResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSecurityQuestionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSecurityQuestionSettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSecurityQuestionSettingResponse.java index a90014524a4..c89e6c6fa16 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSecurityQuestionSettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSecurityQuestionSettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSelfRegistrationProfileResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSelfRegistrationProfileResponse.java index b03b6cc03f5..9ba6359d8b9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSelfRegistrationProfileResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSelfRegistrationProfileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSettingResponse.java index 4318dd26e66..0e6144c1814 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSmtpCredentialResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSmtpCredentialResponse.java index 54fc76165f0..3eee7db9605 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSmtpCredentialResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSmtpCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSocialIdentityProviderResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSocialIdentityProviderResponse.java index b169fae9e77..3edfffea478 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSocialIdentityProviderResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchSocialIdentityProviderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchUserAttributesSettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchUserAttributesSettingResponse.java index 22b4bbd856b..09397d4e7cc 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchUserAttributesSettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchUserAttributesSettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchUserResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchUserResponse.java index 137fc1e5b46..d1dfe55947c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchUserResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PatchUserResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutAccountRecoverySettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutAccountRecoverySettingResponse.java index 7f08b5e48ce..c6bc973a12f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutAccountRecoverySettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutAccountRecoverySettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutAppResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutAppResponse.java index 354724b177c..b842320c609 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutAppResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutAppResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutAppStatusChangerResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutAppStatusChangerResponse.java index 8154cc3de41..5eb5947f893 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutAppStatusChangerResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutAppStatusChangerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutApprovalWorkflowResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutApprovalWorkflowResponse.java index b9213e649df..758c8add700 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutApprovalWorkflowResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutApprovalWorkflowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutAuthenticationFactorSettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutAuthenticationFactorSettingResponse.java index 4c938874225..2cb384871dc 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutAuthenticationFactorSettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutAuthenticationFactorSettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutCloudGateMappingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutCloudGateMappingResponse.java index 69f0af457c2..e668c7e048a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutCloudGateMappingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutCloudGateMappingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutCloudGateResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutCloudGateResponse.java index f5396edd000..b925968a06a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutCloudGateResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutCloudGateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutCloudGateServerResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutCloudGateServerResponse.java index 7e9e652f5b9..51c0c276213 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutCloudGateServerResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutCloudGateServerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutConditionResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutConditionResponse.java index aae3149a538..6e0b3ac1b65 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutConditionResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutConditionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutDynamicResourceGroupResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutDynamicResourceGroupResponse.java index f42aea0774e..1587d090e33 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutDynamicResourceGroupResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutDynamicResourceGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutGroupResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutGroupResponse.java index f941e73e243..41c904cbd6e 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutGroupResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutIdentityPropagationTrustResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutIdentityPropagationTrustResponse.java index fd5fb7bd1f8..07372703061 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutIdentityPropagationTrustResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutIdentityPropagationTrustResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutIdentityProviderResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutIdentityProviderResponse.java index e79d134ad64..65a682b77b6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutIdentityProviderResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutIdentityProviderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutIdentitySettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutIdentitySettingResponse.java index 50c73bdfb69..3a79332c81a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutIdentitySettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutIdentitySettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutKmsiSettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutKmsiSettingResponse.java index e547e9bd249..e9240c5d14f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutKmsiSettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutKmsiSettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutMappedAttributeResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutMappedAttributeResponse.java index 276e77b77d9..f3b98428ba1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutMappedAttributeResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutMappedAttributeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutMePasswordChangerResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutMePasswordChangerResponse.java index 3949a88f96d..3ad489551e0 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutMePasswordChangerResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutMePasswordChangerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutMeResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutMeResponse.java index efc9e7bd264..da496633373 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutMeResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutMeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutNetworkPerimeterResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutNetworkPerimeterResponse.java index 03c5e427a22..1ddab71748b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutNetworkPerimeterResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutNetworkPerimeterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutNotificationSettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutNotificationSettingResponse.java index 3ddc18aa1a1..6ae72ee2c32 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutNotificationSettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutNotificationSettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutPasswordPolicyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutPasswordPolicyResponse.java index 54cca44af1b..874d04b9d20 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutPasswordPolicyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutPasswordPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutPolicyResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutPolicyResponse.java index 0d86155f8d7..76293d14902 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutPolicyResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutRuleResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutRuleResponse.java index 4df24f2e693..b06798135ae 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutRuleResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutSchemaResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutSchemaResponse.java index ba8d9a6c076..bf7b2f7b575 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutSchemaResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutSchemaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutSecurityQuestionSettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutSecurityQuestionSettingResponse.java index 4f1c54ffe93..388da985237 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutSecurityQuestionSettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutSecurityQuestionSettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutSelfRegistrationProfileResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutSelfRegistrationProfileResponse.java index bd11a59a86b..a48face932a 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutSelfRegistrationProfileResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutSelfRegistrationProfileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutSettingResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutSettingResponse.java index 6e43972caac..bb7ff68db2b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutSettingResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutSettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutSocialIdentityProviderResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutSocialIdentityProviderResponse.java index ee8967db641..ac012b353fa 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutSocialIdentityProviderResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutSocialIdentityProviderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutUserCapabilitiesChangerResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutUserCapabilitiesChangerResponse.java index 043f265a920..29607943aa6 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutUserCapabilitiesChangerResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutUserCapabilitiesChangerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutUserPasswordChangerResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutUserPasswordChangerResponse.java index 04b7e2c5c89..f0a71201636 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutUserPasswordChangerResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutUserPasswordChangerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutUserPasswordResetterResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutUserPasswordResetterResponse.java index 256df1ee1ff..ee34d8906ab 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutUserPasswordResetterResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutUserPasswordResetterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutUserResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutUserResponse.java index cb5ed657898..61d1c965ed7 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutUserResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutUserResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutUserStatusChangerResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutUserStatusChangerResponse.java index 53f6ca1b25d..d64f7956723 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutUserStatusChangerResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/PutUserStatusChangerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchAccountMgmtInfosResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchAccountMgmtInfosResponse.java index 581813e6bce..13583357f01 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchAccountMgmtInfosResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchAccountMgmtInfosResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchApiKeysResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchApiKeysResponse.java index 2e6fe4c235b..43e1f67b0bc 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchApiKeysResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchApiKeysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchAppRolesResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchAppRolesResponse.java index ead4ed6ac68..5858f0490f2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchAppRolesResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchAppRolesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchAppsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchAppsResponse.java index ae7d357dd1e..164421fec01 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchAppsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchAppsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchAuthTokensResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchAuthTokensResponse.java index e83edd27be6..569e4cc8bdf 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchAuthTokensResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchAuthTokensResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchAuthenticationFactorSettingsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchAuthenticationFactorSettingsResponse.java index 458e3a2bd6f..6a05d8bb493 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchAuthenticationFactorSettingsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchAuthenticationFactorSettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchCloudGateMappingsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchCloudGateMappingsResponse.java index b3d0ecfa25c..b76856ebba4 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchCloudGateMappingsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchCloudGateMappingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchCloudGateServersResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchCloudGateServersResponse.java index 96ea42f7a32..cfc51eb90bc 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchCloudGateServersResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchCloudGateServersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchCloudGatesResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchCloudGatesResponse.java index 034b99c4204..1ef96954b7b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchCloudGatesResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchCloudGatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchConditionsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchConditionsResponse.java index 566573f5c56..7c22f6cc493 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchConditionsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchConditionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchCustomerSecretKeysResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchCustomerSecretKeysResponse.java index a6c9257c749..b5c2e53bcb8 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchCustomerSecretKeysResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchCustomerSecretKeysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchDynamicResourceGroupsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchDynamicResourceGroupsResponse.java index 67551c3c4eb..99675607978 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchDynamicResourceGroupsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchDynamicResourceGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchGrantsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchGrantsResponse.java index 561fa205e9b..0b94d6c2ade 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchGrantsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchGrantsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchGroupsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchGroupsResponse.java index a4a5852e93d..c35a23bfc0f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchGroupsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchIdentityProvidersResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchIdentityProvidersResponse.java index 36edc59e88e..89b269ef15f 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchIdentityProvidersResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchIdentityProvidersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchIdentitySettingsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchIdentitySettingsResponse.java index d5bd62b8b75..51fa27353b0 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchIdentitySettingsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchIdentitySettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchKmsiSettingsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchKmsiSettingsResponse.java index 3394b009987..ec4a8fdc2e2 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchKmsiSettingsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchKmsiSettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchMappedAttributesResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchMappedAttributesResponse.java index 72c5ee0aba6..ac630e06910 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchMappedAttributesResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchMappedAttributesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchMyAppsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchMyAppsResponse.java index 5146ad36267..e10e47df636 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchMyAppsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchMyAppsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchMyGroupsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchMyGroupsResponse.java index bcbe8094431..a20705032fe 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchMyGroupsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchMyGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchMyRequestableGroupsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchMyRequestableGroupsResponse.java index 7db9a716b0a..154b0ec8654 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchMyRequestableGroupsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchMyRequestableGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchMyRequestsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchMyRequestsResponse.java index b0409122c85..f68ee710d99 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchMyRequestsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchMyRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchNetworkPerimetersResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchNetworkPerimetersResponse.java index 36d23fd15c6..ce05d04f2da 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchNetworkPerimetersResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchNetworkPerimetersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchNotificationSettingsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchNotificationSettingsResponse.java index a159e6e7b7f..0ea672e1b7b 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchNotificationSettingsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchNotificationSettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchOAuth2ClientCredentialsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchOAuth2ClientCredentialsResponse.java index 8314fcb450a..59fddd88efb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchOAuth2ClientCredentialsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchOAuth2ClientCredentialsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchOAuthClientCertificatesResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchOAuthClientCertificatesResponse.java index 2ebc03b957f..7f231ab5fa1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchOAuthClientCertificatesResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchOAuthClientCertificatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchOAuthPartnerCertificatesResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchOAuthPartnerCertificatesResponse.java index af5d2347816..13217ba392c 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchOAuthPartnerCertificatesResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchOAuthPartnerCertificatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchOciConsoleSignOnPolicyConsentsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchOciConsoleSignOnPolicyConsentsResponse.java index be2165e5ebd..c40844f5894 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchOciConsoleSignOnPolicyConsentsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchOciConsoleSignOnPolicyConsentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchPasswordPoliciesResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchPasswordPoliciesResponse.java index 857d112b73e..9553d219c96 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchPasswordPoliciesResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchPasswordPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchPoliciesResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchPoliciesResponse.java index ad40379cba9..3033d8523de 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchPoliciesResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchResourceTypeSchemaAttributesResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchResourceTypeSchemaAttributesResponse.java index 27762a429cd..894fd8c28f0 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchResourceTypeSchemaAttributesResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchResourceTypeSchemaAttributesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchRulesResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchRulesResponse.java index 779e7e664ff..5a6e0ee6ccb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchRulesResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSchemasResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSchemasResponse.java index cbf8f767530..9e9ebdcf2c9 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSchemasResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSchemasResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSecurityQuestionSettingsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSecurityQuestionSettingsResponse.java index f0d02fe3945..7c2471c27ce 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSecurityQuestionSettingsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSecurityQuestionSettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSecurityQuestionsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSecurityQuestionsResponse.java index 3c034726f60..0cb413a9bfb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSecurityQuestionsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSecurityQuestionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSelfRegistrationProfilesResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSelfRegistrationProfilesResponse.java index a88fce6afb2..c768cbf12f0 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSelfRegistrationProfilesResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSelfRegistrationProfilesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSettingsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSettingsResponse.java index 0fb3485f161..81bdd0c33cb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSettingsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSmtpCredentialsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSmtpCredentialsResponse.java index cc0b1b9bef8..1e8cdc3e827 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSmtpCredentialsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSmtpCredentialsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSocialIdentityProvidersResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSocialIdentityProvidersResponse.java index 07a6cb027ee..7f15e5b9bbb 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSocialIdentityProvidersResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchSocialIdentityProvidersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchUserAttributesSettingsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchUserAttributesSettingsResponse.java index be65258f9f7..36d6c7cd4c1 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchUserAttributesSettingsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchUserAttributesSettingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchUserDbCredentialsResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchUserDbCredentialsResponse.java index ab141230037..d864c34cb09 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchUserDbCredentialsResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchUserDbCredentialsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchUsersResponse.java b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchUsersResponse.java index 5097746d223..bc75f653323 100644 --- a/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchUsersResponse.java +++ b/bmc-identitydomains/src/main/java/com/oracle/bmc/identitydomains/responses/SearchUsersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.identitydomains.responses; diff --git a/bmc-identitydomains/src/main/resources/com/oracle/bmc/identitydomains/client.properties b/bmc-identitydomains/src/main/resources/com/oracle/bmc/identitydomains/client.properties index 34d8cb14237..454cf6b6432 100644 --- a/bmc-identitydomains/src/main/resources/com/oracle/bmc/identitydomains/client.properties +++ b/bmc-identitydomains/src/main/resources/com/oracle/bmc/identitydomains/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-integration/pom.xml b/bmc-integration/pom.xml index 16df5c2d1a8..41bda313017 100644 --- a/bmc-integration/pom.xml +++ b/bmc-integration/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-integration @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstance.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstance.java index 388144afc76..1afd14bfc41 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstance.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstanceAsync.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstanceAsync.java index 2a5d0533c94..a8df7d33143 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstanceAsync.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstanceAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstanceAsyncClient.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstanceAsyncClient.java index ff6403c8fa2..0839e98b117 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstanceAsyncClient.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstanceAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstanceClient.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstanceClient.java index 3290f7c2a4e..3357981734f 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstanceClient.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstanceClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstancePaginators.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstancePaginators.java index 9343577679f..82b787d5664 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstancePaginators.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstancePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstanceWaiters.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstanceWaiters.java index d4a2205b83e..9df3fd2022e 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstanceWaiters.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/IntegrationInstanceWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/AddLogAnalyticsLogGroupDetails.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/AddLogAnalyticsLogGroupDetails.java index e211a0a8e5a..dbd7b9d652d 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/AddLogAnalyticsLogGroupDetails.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/AddLogAnalyticsLogGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/AddOracleManagedCustomEndpointDetails.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/AddOracleManagedCustomEndpointDetails.java index f2e42436f10..443250c74bb 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/AddOracleManagedCustomEndpointDetails.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/AddOracleManagedCustomEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/AttachmentDetails.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/AttachmentDetails.java index ff4d6c7ff0d..2c323dd0297 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/AttachmentDetails.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/AttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ChangeIntegrationInstanceCompartmentDetails.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ChangeIntegrationInstanceCompartmentDetails.java index 6a4d7c4aa61..4c885b7b8c8 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ChangeIntegrationInstanceCompartmentDetails.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ChangeIntegrationInstanceCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ChangeIntegrationInstanceNetworkEndpointDetails.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ChangeIntegrationInstanceNetworkEndpointDetails.java index 24f86e20130..e78399f5511 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ChangeIntegrationInstanceNetworkEndpointDetails.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ChangeIntegrationInstanceNetworkEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ChangePrivateEndpointOutboundConnectionDetails.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ChangePrivateEndpointOutboundConnectionDetails.java index 884ffdacddc..d3fb92678e6 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ChangePrivateEndpointOutboundConnectionDetails.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ChangePrivateEndpointOutboundConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ComponentAllowListDetails.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ComponentAllowListDetails.java index 7f6c1a68742..ce9522ae82f 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ComponentAllowListDetails.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ComponentAllowListDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ConvertInstanceDetails.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ConvertInstanceDetails.java index da042941f6c..5d1226691d4 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ConvertInstanceDetails.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ConvertInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/CreateCustomEndpointDetails.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/CreateCustomEndpointDetails.java index 52ddcc99e44..9f0bbedd345 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/CreateCustomEndpointDetails.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/CreateCustomEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/CreateIntegrationInstanceDetails.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/CreateIntegrationInstanceDetails.java index 038089fe623..daa4c0be8d5 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/CreateIntegrationInstanceDetails.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/CreateIntegrationInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/CrossRegionIntegrationInstanceDetails.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/CrossRegionIntegrationInstanceDetails.java index 63245aa1821..462f3476243 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/CrossRegionIntegrationInstanceDetails.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/CrossRegionIntegrationInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/CustomEndpointDetails.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/CustomEndpointDetails.java index 7d0e2707fa3..b7bedf8a00e 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/CustomEndpointDetails.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/CustomEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/DisasterRecoveryDetails.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/DisasterRecoveryDetails.java index 464e754548b..b5c45f8ecc1 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/DisasterRecoveryDetails.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/DisasterRecoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ExtendDataRetentionDetails.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ExtendDataRetentionDetails.java index d740d6000ea..faaaa267d10 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ExtendDataRetentionDetails.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/ExtendDataRetentionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/IdcsInfoDetails.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/IdcsInfoDetails.java index 5d472893444..e38a4605ebb 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/IdcsInfoDetails.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/IdcsInfoDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/IntegrationInstance.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/IntegrationInstance.java index b0c30203661..0ac2a52236f 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/IntegrationInstance.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/IntegrationInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/IntegrationInstanceSummary.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/IntegrationInstanceSummary.java index a9c13c1ea3a..5e4b274b07a 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/IntegrationInstanceSummary.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/IntegrationInstanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/NetworkEndpointDetails.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/NetworkEndpointDetails.java index 34e98924b0f..7ce931156c9 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/NetworkEndpointDetails.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/NetworkEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/NetworkEndpointType.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/NetworkEndpointType.java index d33c3a19247..724217f841a 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/NetworkEndpointType.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/NetworkEndpointType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/NoneOutboundConnection.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/NoneOutboundConnection.java index 25f77993839..8f7f021df0c 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/NoneOutboundConnection.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/NoneOutboundConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/OutboundConnection.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/OutboundConnection.java index 086c5e9d7ff..1736200aba2 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/OutboundConnection.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/OutboundConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/PrivateEndpointOutboundConnection.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/PrivateEndpointOutboundConnection.java index 2157d2228e5..af59b91e445 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/PrivateEndpointOutboundConnection.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/PrivateEndpointOutboundConnection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/PublicEndpointDetails.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/PublicEndpointDetails.java index 3542c1d1257..e4d830c286d 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/PublicEndpointDetails.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/PublicEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/UpdateCustomEndpointDetails.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/UpdateCustomEndpointDetails.java index 1e5c9ccfa7f..bd1d99d9c21 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/UpdateCustomEndpointDetails.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/UpdateCustomEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/UpdateIntegrationInstanceDetails.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/UpdateIntegrationInstanceDetails.java index f94d8e10d04..3e553aa9d12 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/UpdateIntegrationInstanceDetails.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/UpdateIntegrationInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/VirtualCloudNetwork.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/VirtualCloudNetwork.java index dafe50ee908..75154c72a06 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/VirtualCloudNetwork.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/VirtualCloudNetwork.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/WorkRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/WorkRequest.java index f17c560eb77..53608cf8c7a 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/WorkRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/WorkRequestError.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/WorkRequestError.java index 9b2df62314e..75eb7bd2a22 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/WorkRequestError.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/WorkRequestLogEntry.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/WorkRequestLogEntry.java index 576ccf442d4..7048332b1e6 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/WorkRequestLogEntry.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/WorkRequestResource.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/WorkRequestResource.java index 2a9b37ca200..959823ac762 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/WorkRequestResource.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/WorkRequestSummary.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/WorkRequestSummary.java index 79a63f55ccd..9150ce33a62 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/model/WorkRequestSummary.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.model; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/AddLogAnalyticsLogGroupRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/AddLogAnalyticsLogGroupRequest.java index e4396ca4f46..0487bbb2f6e 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/AddLogAnalyticsLogGroupRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/AddLogAnalyticsLogGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/AddOracleManagedCustomEndpointRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/AddOracleManagedCustomEndpointRequest.java index 98a5c1372f3..3033d2e0055 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/AddOracleManagedCustomEndpointRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/AddOracleManagedCustomEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ChangeIntegrationInstanceCompartmentRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ChangeIntegrationInstanceCompartmentRequest.java index e15a9e885a0..fcf513c7b3d 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ChangeIntegrationInstanceCompartmentRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ChangeIntegrationInstanceCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ChangeIntegrationInstanceNetworkEndpointRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ChangeIntegrationInstanceNetworkEndpointRequest.java index 3c0d327f847..95fc7f914cb 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ChangeIntegrationInstanceNetworkEndpointRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ChangeIntegrationInstanceNetworkEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ChangePrivateEndpointOutboundConnectionRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ChangePrivateEndpointOutboundConnectionRequest.java index 03ec75b668b..6e4ebee23fc 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ChangePrivateEndpointOutboundConnectionRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ChangePrivateEndpointOutboundConnectionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ConvertInstanceRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ConvertInstanceRequest.java index 2622e203921..ac59787c148 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ConvertInstanceRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ConvertInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/CreateIntegrationInstanceRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/CreateIntegrationInstanceRequest.java index 518da76c367..f496a350309 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/CreateIntegrationInstanceRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/CreateIntegrationInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/DeleteIntegrationInstanceRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/DeleteIntegrationInstanceRequest.java index ae3b211152f..9157a794094 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/DeleteIntegrationInstanceRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/DeleteIntegrationInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/DisableProcessAutomationRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/DisableProcessAutomationRequest.java index 6476aedc222..f5f309f3c0f 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/DisableProcessAutomationRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/DisableProcessAutomationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/DisasterRecoveryFailoverRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/DisasterRecoveryFailoverRequest.java index 5a460fd4a40..99d0d0ae1e5 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/DisasterRecoveryFailoverRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/DisasterRecoveryFailoverRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/EnableProcessAutomationRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/EnableProcessAutomationRequest.java index b2d124b1ede..3956b98afe9 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/EnableProcessAutomationRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/EnableProcessAutomationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ExtendDataRetentionRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ExtendDataRetentionRequest.java index 6da32af7fbf..d38a5d18f10 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ExtendDataRetentionRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ExtendDataRetentionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/GetIntegrationInstanceRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/GetIntegrationInstanceRequest.java index 3bdb3a7cbb9..76549b64ae8 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/GetIntegrationInstanceRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/GetIntegrationInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/GetWorkRequestRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/GetWorkRequestRequest.java index c8d6835a675..6ea59e247f9 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/GetWorkRequestRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ListIntegrationInstancesRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ListIntegrationInstancesRequest.java index 35f67db0d89..bb591c7b4aa 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ListIntegrationInstancesRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ListIntegrationInstancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ListWorkRequestErrorsRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ListWorkRequestErrorsRequest.java index 74ee31bcffc..a4af3d602f8 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ListWorkRequestLogsRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ListWorkRequestLogsRequest.java index 5187e4aff96..22aef2a41bf 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ListWorkRequestLogsRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ListWorkRequestsRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ListWorkRequestsRequest.java index 80e45c37628..c540e060443 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ListWorkRequestsRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/RemoveLogAnalyticsLogGroupRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/RemoveLogAnalyticsLogGroupRequest.java index e83cfddbd7f..4901a1ab411 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/RemoveLogAnalyticsLogGroupRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/RemoveLogAnalyticsLogGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/RemoveOracleManagedCustomEndpointRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/RemoveOracleManagedCustomEndpointRequest.java index 3f5f3b405a5..5dd5a79f4f4 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/RemoveOracleManagedCustomEndpointRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/RemoveOracleManagedCustomEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/StartIntegrationInstanceRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/StartIntegrationInstanceRequest.java index fd8c875f43b..084577a7e87 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/StartIntegrationInstanceRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/StartIntegrationInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/StopIntegrationInstanceRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/StopIntegrationInstanceRequest.java index 9119fe3b76c..218d0caa5da 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/StopIntegrationInstanceRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/StopIntegrationInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/UpdateIntegrationInstanceRequest.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/UpdateIntegrationInstanceRequest.java index bdb935b5648..18cf89482bd 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/UpdateIntegrationInstanceRequest.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/requests/UpdateIntegrationInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.requests; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/AddLogAnalyticsLogGroupResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/AddLogAnalyticsLogGroupResponse.java index 0140a82d0ce..838488223c6 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/AddLogAnalyticsLogGroupResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/AddLogAnalyticsLogGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/AddOracleManagedCustomEndpointResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/AddOracleManagedCustomEndpointResponse.java index ea5823b8eca..c8bd8bc6839 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/AddOracleManagedCustomEndpointResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/AddOracleManagedCustomEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ChangeIntegrationInstanceCompartmentResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ChangeIntegrationInstanceCompartmentResponse.java index 79f3645ebf1..bea0794d134 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ChangeIntegrationInstanceCompartmentResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ChangeIntegrationInstanceCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ChangeIntegrationInstanceNetworkEndpointResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ChangeIntegrationInstanceNetworkEndpointResponse.java index 2f805bacfe7..9180aeb4a99 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ChangeIntegrationInstanceNetworkEndpointResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ChangeIntegrationInstanceNetworkEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ChangePrivateEndpointOutboundConnectionResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ChangePrivateEndpointOutboundConnectionResponse.java index f3d14fe46cb..dfd67c76a8d 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ChangePrivateEndpointOutboundConnectionResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ChangePrivateEndpointOutboundConnectionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ConvertInstanceResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ConvertInstanceResponse.java index afdda5fa47c..efaa8256376 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ConvertInstanceResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ConvertInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/CreateIntegrationInstanceResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/CreateIntegrationInstanceResponse.java index 08717fee52f..317f19b88de 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/CreateIntegrationInstanceResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/CreateIntegrationInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/DeleteIntegrationInstanceResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/DeleteIntegrationInstanceResponse.java index 814ce00a90a..1e8a5f5e933 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/DeleteIntegrationInstanceResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/DeleteIntegrationInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/DisableProcessAutomationResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/DisableProcessAutomationResponse.java index 643f27c6e71..9918f20482c 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/DisableProcessAutomationResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/DisableProcessAutomationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/DisasterRecoveryFailoverResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/DisasterRecoveryFailoverResponse.java index 1a6e5d79f59..48f1988923b 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/DisasterRecoveryFailoverResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/DisasterRecoveryFailoverResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/EnableProcessAutomationResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/EnableProcessAutomationResponse.java index 6bf03c599e2..94cca223451 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/EnableProcessAutomationResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/EnableProcessAutomationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ExtendDataRetentionResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ExtendDataRetentionResponse.java index 8ed350058ae..0ccf304e508 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ExtendDataRetentionResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ExtendDataRetentionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/GetIntegrationInstanceResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/GetIntegrationInstanceResponse.java index 1107aa02273..d1b7b079276 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/GetIntegrationInstanceResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/GetIntegrationInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/GetWorkRequestResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/GetWorkRequestResponse.java index 9cdc458dc34..8e40e50f1f4 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/GetWorkRequestResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ListIntegrationInstancesResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ListIntegrationInstancesResponse.java index 61e36689d1f..5515cff7215 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ListIntegrationInstancesResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ListIntegrationInstancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ListWorkRequestErrorsResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ListWorkRequestErrorsResponse.java index 481087526c3..ff0197b7f2a 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ListWorkRequestLogsResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ListWorkRequestLogsResponse.java index 0fa4bd36b62..03152522ca8 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ListWorkRequestLogsResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ListWorkRequestsResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ListWorkRequestsResponse.java index e43e1716a51..75b51eb4193 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ListWorkRequestsResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/RemoveLogAnalyticsLogGroupResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/RemoveLogAnalyticsLogGroupResponse.java index b3b542b91d7..ccc2c70f4a6 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/RemoveLogAnalyticsLogGroupResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/RemoveLogAnalyticsLogGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/RemoveOracleManagedCustomEndpointResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/RemoveOracleManagedCustomEndpointResponse.java index 66766f8c893..b3d414a2849 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/RemoveOracleManagedCustomEndpointResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/RemoveOracleManagedCustomEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/StartIntegrationInstanceResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/StartIntegrationInstanceResponse.java index 6ab0dbf9d65..1227e11254d 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/StartIntegrationInstanceResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/StartIntegrationInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/StopIntegrationInstanceResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/StopIntegrationInstanceResponse.java index bf9211b274d..b0ba656e2db 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/StopIntegrationInstanceResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/StopIntegrationInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/UpdateIntegrationInstanceResponse.java b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/UpdateIntegrationInstanceResponse.java index 0ee29d66440..5d7e6e3130e 100644 --- a/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/UpdateIntegrationInstanceResponse.java +++ b/bmc-integration/src/main/java/com/oracle/bmc/integration/responses/UpdateIntegrationInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.integration.responses; diff --git a/bmc-integration/src/main/resources/com/oracle/bmc/integration/client.properties b/bmc-integration/src/main/resources/com/oracle/bmc/integration/client.properties index 859c9223aa4..948d167f4d3 100644 --- a/bmc-integration/src/main/resources/com/oracle/bmc/integration/client.properties +++ b/bmc-integration/src/main/resources/com/oracle/bmc/integration/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-iot/pom.xml b/bmc-iot/pom.xml index 4327ede1e10..788833e6711 100644 --- a/bmc-iot/pom.xml +++ b/bmc-iot/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-iot @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/Iot.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/Iot.java index 47290d5aefb..481741e2534 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/Iot.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/Iot.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/IotAsync.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/IotAsync.java index 0633b2cfd88..930d92d65f9 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/IotAsync.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/IotAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/IotAsyncClient.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/IotAsyncClient.java index 183ba9dba4a..b48afcd8e4c 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/IotAsyncClient.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/IotAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/IotClient.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/IotClient.java index d5dbc01ccfd..49b26f4beb2 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/IotClient.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/IotClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/IotPaginators.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/IotPaginators.java index d6a7149f1cc..e6d670b23d0 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/IotPaginators.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/IotPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/IotWaiters.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/IotWaiters.java index d31af624dcb..710316aaddf 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/IotWaiters.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/IotWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ActionType.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ActionType.java index f20f0394c79..6f3b735a59a 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ActionType.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ApexDataAccessDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ApexDataAccessDetails.java index b52a6fe7c00..e2b0abc94ff 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ApexDataAccessDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ApexDataAccessDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ChangeIotDomainCompartmentDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ChangeIotDomainCompartmentDetails.java index d7a2018741c..6fb537bf298 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ChangeIotDomainCompartmentDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ChangeIotDomainCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ChangeIotDomainDataRetentionPeriodDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ChangeIotDomainDataRetentionPeriodDetails.java index ee97b58d6cf..e63d318778d 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ChangeIotDomainDataRetentionPeriodDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ChangeIotDomainDataRetentionPeriodDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ChangeIotDomainGroupCompartmentDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ChangeIotDomainGroupCompartmentDetails.java index 4b015da3a30..1f200badef1 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ChangeIotDomainGroupCompartmentDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ChangeIotDomainGroupCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ConfigureIotDomainDataAccessDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ConfigureIotDomainDataAccessDetails.java index 3829e34d947..e818e349703 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ConfigureIotDomainDataAccessDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ConfigureIotDomainDataAccessDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ConfigureIotDomainGroupDataAccessDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ConfigureIotDomainGroupDataAccessDetails.java index dc60fa65f1a..2df34f84d30 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ConfigureIotDomainGroupDataAccessDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ConfigureIotDomainGroupDataAccessDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateDigitalTwinAdapterDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateDigitalTwinAdapterDetails.java index 0b2e33207ee..258eaf462f8 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateDigitalTwinAdapterDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateDigitalTwinAdapterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateDigitalTwinInstanceDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateDigitalTwinInstanceDetails.java index 41a170fd3a1..ef2efe3aa41 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateDigitalTwinInstanceDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateDigitalTwinInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateDigitalTwinModelDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateDigitalTwinModelDetails.java index 9238066e19d..18f74ba03c1 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateDigitalTwinModelDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateDigitalTwinModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateDigitalTwinRelationshipDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateDigitalTwinRelationshipDetails.java index 8405620c158..7f771b6e860 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateDigitalTwinRelationshipDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateDigitalTwinRelationshipDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateIotDomainDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateIotDomainDetails.java index 6b0af0424c3..407a11b0fc9 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateIotDomainDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateIotDomainDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateIotDomainGroupDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateIotDomainGroupDetails.java index b822c180ee5..f4b5ffefd58 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateIotDomainGroupDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/CreateIotDomainGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DataRetentionPeriodsInDays.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DataRetentionPeriodsInDays.java index 750736fc28d..e92f061ae56 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DataRetentionPeriodsInDays.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DataRetentionPeriodsInDays.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapter.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapter.java index 5dc73a7cca7..b8895cb2bde 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapter.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterCollection.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterCollection.java index 55a248b4fc1..8c30d5c960a 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterCollection.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterEnvelopeMapping.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterEnvelopeMapping.java index 63b04281f22..cf6d835de65 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterEnvelopeMapping.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterEnvelopeMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterInboundEnvelope.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterInboundEnvelope.java index 3dcbea2b1e6..233b30cd7a3 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterInboundEnvelope.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterInboundEnvelope.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterInboundRoute.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterInboundRoute.java index 67889f09862..b03e15b0bfc 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterInboundRoute.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterInboundRoute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterJsonPayload.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterJsonPayload.java index 8c59bca0107..8851e0e0b6d 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterJsonPayload.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterJsonPayload.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterPayload.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterPayload.java index 3620bf5a294..941e05ee611 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterPayload.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterPayload.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterSummary.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterSummary.java index a9f8c022162..5c5c291a93a 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterSummary.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinAdapterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinInstance.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinInstance.java index d12c9b9701e..7561ffa8e49 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinInstance.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinInstanceCollection.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinInstanceCollection.java index d9961e18c51..62a771de5f5 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinInstanceCollection.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinInstanceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinInstanceSummary.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinInstanceSummary.java index 294c2f8461f..ca749646fe2 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinInstanceSummary.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinInstanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinModel.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinModel.java index 51973a86f4c..bf3130ac664 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinModel.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinModel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinModelCollection.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinModelCollection.java index 367e5630a91..66592a60588 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinModelCollection.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinModelCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinModelSummary.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinModelSummary.java index bee109ba504..baeed23b485 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinModelSummary.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinModelSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinRelationship.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinRelationship.java index 92b6ac7c71c..fb7adaf371f 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinRelationship.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinRelationship.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinRelationshipCollection.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinRelationshipCollection.java index 5e650540bf6..21c16077f31 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinRelationshipCollection.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinRelationshipCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinRelationshipSummary.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinRelationshipSummary.java index 5d876ef6f28..888eafa2dcc 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinRelationshipSummary.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DigitalTwinRelationshipSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DirectDataAccessDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DirectDataAccessDetails.java index 7df564cfc2a..8a3af49b611 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DirectDataAccessDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/DirectDataAccessDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ErrorDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ErrorDetails.java index e5a916da0c6..b6e238aedb6 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ErrorDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/ErrorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/InvokeRawBinaryCommandDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/InvokeRawBinaryCommandDetails.java index 1b56cdbd467..e44a9bc8011 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/InvokeRawBinaryCommandDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/InvokeRawBinaryCommandDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/InvokeRawCommandDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/InvokeRawCommandDetails.java index 6007ab08909..9c046715233 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/InvokeRawCommandDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/InvokeRawCommandDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/InvokeRawJsonCommandDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/InvokeRawJsonCommandDetails.java index 5317cecf448..feb4ae4b386 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/InvokeRawJsonCommandDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/InvokeRawJsonCommandDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/InvokeRawTextCommandDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/InvokeRawTextCommandDetails.java index 7525c8d63f2..ac7a6ee37bd 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/InvokeRawTextCommandDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/InvokeRawTextCommandDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomain.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomain.java index 6d552f7975c..02fece26ec2 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomain.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomain.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomainCollection.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomainCollection.java index 8958bc092ea..6981ec9fcf4 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomainCollection.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomainCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomainGroup.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomainGroup.java index ddecf5174ae..247fff9bffd 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomainGroup.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomainGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomainGroupCollection.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomainGroupCollection.java index 01a92f8ef63..f2eaa181c85 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomainGroupCollection.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomainGroupCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomainGroupSummary.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomainGroupSummary.java index ffca26ae761..84d86a479a0 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomainGroupSummary.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomainGroupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomainSummary.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomainSummary.java index 11f7ddf646f..dc93ab2541e 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomainSummary.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/IotDomainSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/LifecycleState.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/LifecycleState.java index a1427f96103..26155d93b80 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/LifecycleState.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/LifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/OperationStatus.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/OperationStatus.java index 8ee81fecc6f..96cb747dd27 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/OperationStatus.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/OperationType.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/OperationType.java index b08348280e9..582c1327fd9 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/OperationType.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/OrdsDataAccessDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/OrdsDataAccessDetails.java index 455c5f01a0b..0aad29eeb18 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/OrdsDataAccessDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/OrdsDataAccessDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateDigitalTwinAdapterDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateDigitalTwinAdapterDetails.java index 2bc6e4a19ed..775eb359bd2 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateDigitalTwinAdapterDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateDigitalTwinAdapterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateDigitalTwinInstanceDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateDigitalTwinInstanceDetails.java index c8e953cd8be..df84ae5d427 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateDigitalTwinInstanceDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateDigitalTwinInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateDigitalTwinModelDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateDigitalTwinModelDetails.java index 933fb5cd821..856b6e89b02 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateDigitalTwinModelDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateDigitalTwinModelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateDigitalTwinRelationshipDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateDigitalTwinRelationshipDetails.java index 3d0f5465610..3c259d67f23 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateDigitalTwinRelationshipDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateDigitalTwinRelationshipDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateIotDomainDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateIotDomainDetails.java index 7bd57bd5685..f96abed2edf 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateIotDomainDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateIotDomainDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateIotDomainGroupDetails.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateIotDomainGroupDetails.java index e413bc9d867..7dfd6d451aa 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateIotDomainGroupDetails.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/UpdateIotDomainGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/Vcn.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/Vcn.java index a502c0f1df5..1ec2ff21d2f 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/Vcn.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/Vcn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequest.java index fbb3068142a..095c5358e3e 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestError.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestError.java index a80b0fb48c1..49f1d65ae7f 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestError.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestErrorCollection.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestErrorCollection.java index 7b44e32d479..90be1353305 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestErrorCollection.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestLogEntry.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestLogEntry.java index 27df03e93a7..4e079785eb7 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestLogEntry.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestLogEntryCollection.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestLogEntryCollection.java index 5fe3e61adc3..297474b1e7c 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestLogEntryCollection.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestResource.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestResource.java index 736b749aaf2..b3050c04e29 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestResource.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestResourceMetadataKey.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestResourceMetadataKey.java index de6231c334f..b8c598a98db 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestResourceMetadataKey.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestSummary.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestSummary.java index fb66d7ea0b3..bc40e8af190 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestSummary.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestSummaryCollection.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestSummaryCollection.java index 68e08520bd2..57fdc50ac5d 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestSummaryCollection.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.model; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ChangeIotDomainCompartmentRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ChangeIotDomainCompartmentRequest.java index 8e96681c9a3..cfb6eb871ca 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ChangeIotDomainCompartmentRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ChangeIotDomainCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ChangeIotDomainDataRetentionPeriodRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ChangeIotDomainDataRetentionPeriodRequest.java index 8bdf494bfc6..3443ba5251f 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ChangeIotDomainDataRetentionPeriodRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ChangeIotDomainDataRetentionPeriodRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ChangeIotDomainGroupCompartmentRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ChangeIotDomainGroupCompartmentRequest.java index 47a23a5dc1e..9e66dee1bad 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ChangeIotDomainGroupCompartmentRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ChangeIotDomainGroupCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ConfigureIotDomainDataAccessRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ConfigureIotDomainDataAccessRequest.java index f6a77f3dba4..5ed9881e8e1 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ConfigureIotDomainDataAccessRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ConfigureIotDomainDataAccessRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ConfigureIotDomainGroupDataAccessRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ConfigureIotDomainGroupDataAccessRequest.java index 8a1e3faf870..10e03d45dc7 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ConfigureIotDomainGroupDataAccessRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ConfigureIotDomainGroupDataAccessRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateDigitalTwinAdapterRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateDigitalTwinAdapterRequest.java index 263432dea20..ac14e4f9a6f 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateDigitalTwinAdapterRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateDigitalTwinAdapterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateDigitalTwinInstanceRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateDigitalTwinInstanceRequest.java index e7101808887..5b5b71234b4 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateDigitalTwinInstanceRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateDigitalTwinInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateDigitalTwinModelRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateDigitalTwinModelRequest.java index bce5e918ad8..65501010edc 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateDigitalTwinModelRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateDigitalTwinModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateDigitalTwinRelationshipRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateDigitalTwinRelationshipRequest.java index 06fa683fc09..d7ffc285202 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateDigitalTwinRelationshipRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateDigitalTwinRelationshipRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateIotDomainGroupRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateIotDomainGroupRequest.java index 6e1bfab5bdc..8dc9e1447ff 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateIotDomainGroupRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateIotDomainGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateIotDomainRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateIotDomainRequest.java index 5c24cf61720..8b305471347 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateIotDomainRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/CreateIotDomainRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteDigitalTwinAdapterRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteDigitalTwinAdapterRequest.java index 410338cc6ec..a74fe82277f 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteDigitalTwinAdapterRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteDigitalTwinAdapterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteDigitalTwinInstanceRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteDigitalTwinInstanceRequest.java index cb55b128ac4..6ffb2a87daa 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteDigitalTwinInstanceRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteDigitalTwinInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteDigitalTwinModelRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteDigitalTwinModelRequest.java index e62f6a1241e..c708e058f7a 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteDigitalTwinModelRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteDigitalTwinModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteDigitalTwinRelationshipRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteDigitalTwinRelationshipRequest.java index be8e472d4b5..deaca1caf92 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteDigitalTwinRelationshipRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteDigitalTwinRelationshipRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteIotDomainGroupRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteIotDomainGroupRequest.java index f5b6fc4bf64..2f894065129 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteIotDomainGroupRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteIotDomainGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteIotDomainRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteIotDomainRequest.java index 46b3ac78695..55f047498e4 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteIotDomainRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/DeleteIotDomainRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinAdapterRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinAdapterRequest.java index 5b0ccd3014a..7313c2fa640 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinAdapterRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinAdapterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinInstanceContentRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinInstanceContentRequest.java index dd133bcb021..283cfc7397b 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinInstanceContentRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinInstanceContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinInstanceRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinInstanceRequest.java index de58335cecc..bbc84b58ebd 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinInstanceRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinModelRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinModelRequest.java index 3f43c02f6f0..ad6dff38258 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinModelRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinModelSpecRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinModelSpecRequest.java index 2ab77aabae5..e26e91a6bc2 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinModelSpecRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinModelSpecRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinRelationshipRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinRelationshipRequest.java index 0a0a3b7b964..04b590f67bd 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinRelationshipRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetDigitalTwinRelationshipRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetIotDomainGroupRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetIotDomainGroupRequest.java index 1d651413f8c..b8ed7abed0b 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetIotDomainGroupRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetIotDomainGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetIotDomainRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetIotDomainRequest.java index c66af436bb1..ace8c58eecf 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetIotDomainRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetIotDomainRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetWorkRequestRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetWorkRequestRequest.java index d1f87e58899..c4e1d2dc448 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetWorkRequestRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/InvokeRawCommandRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/InvokeRawCommandRequest.java index dff29f62359..223190d67f6 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/InvokeRawCommandRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/InvokeRawCommandRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListDigitalTwinAdaptersRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListDigitalTwinAdaptersRequest.java index 0aaf2bb527c..de213ebcf8d 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListDigitalTwinAdaptersRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListDigitalTwinAdaptersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListDigitalTwinInstancesRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListDigitalTwinInstancesRequest.java index 4535b0f73d3..d6ce6b3a920 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListDigitalTwinInstancesRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListDigitalTwinInstancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListDigitalTwinModelsRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListDigitalTwinModelsRequest.java index 21360608784..1582aee6fec 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListDigitalTwinModelsRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListDigitalTwinModelsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListDigitalTwinRelationshipsRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListDigitalTwinRelationshipsRequest.java index fbfa29ab938..75869d179fa 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListDigitalTwinRelationshipsRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListDigitalTwinRelationshipsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListIotDomainGroupsRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListIotDomainGroupsRequest.java index 4f236f1e22b..c0a6a1cbcd6 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListIotDomainGroupsRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListIotDomainGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListIotDomainsRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListIotDomainsRequest.java index 572cfa8cbe0..d754d141ef7 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListIotDomainsRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListIotDomainsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListWorkRequestErrorsRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListWorkRequestErrorsRequest.java index 51aa5fbb7ab..cf134bca5dd 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListWorkRequestLogsRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListWorkRequestLogsRequest.java index d1dad5cc887..565338f0b90 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListWorkRequestLogsRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListWorkRequestsRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListWorkRequestsRequest.java index 47e164146c3..37213900b45 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListWorkRequestsRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateDigitalTwinAdapterRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateDigitalTwinAdapterRequest.java index 3195e56001c..4d45bfb487f 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateDigitalTwinAdapterRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateDigitalTwinAdapterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateDigitalTwinInstanceRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateDigitalTwinInstanceRequest.java index 1efa397e0c6..ee07196e135 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateDigitalTwinInstanceRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateDigitalTwinInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateDigitalTwinModelRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateDigitalTwinModelRequest.java index 61dd67d1ceb..e670f993f69 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateDigitalTwinModelRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateDigitalTwinModelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateDigitalTwinRelationshipRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateDigitalTwinRelationshipRequest.java index 34e3ce5133b..cc756aa7ca2 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateDigitalTwinRelationshipRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateDigitalTwinRelationshipRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateIotDomainGroupRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateIotDomainGroupRequest.java index 5147d58e2e7..61e958895c7 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateIotDomainGroupRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateIotDomainGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateIotDomainRequest.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateIotDomainRequest.java index f21af08904a..05ec3b30982 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateIotDomainRequest.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/requests/UpdateIotDomainRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.requests; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ChangeIotDomainCompartmentResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ChangeIotDomainCompartmentResponse.java index 2561555bdf7..1fb897c470c 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ChangeIotDomainCompartmentResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ChangeIotDomainCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ChangeIotDomainDataRetentionPeriodResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ChangeIotDomainDataRetentionPeriodResponse.java index 2d624212618..9d570a90516 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ChangeIotDomainDataRetentionPeriodResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ChangeIotDomainDataRetentionPeriodResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ChangeIotDomainGroupCompartmentResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ChangeIotDomainGroupCompartmentResponse.java index bbdf5461e12..5aefac71b9f 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ChangeIotDomainGroupCompartmentResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ChangeIotDomainGroupCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ConfigureIotDomainDataAccessResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ConfigureIotDomainDataAccessResponse.java index e6c97ace54a..f01fa121133 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ConfigureIotDomainDataAccessResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ConfigureIotDomainDataAccessResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ConfigureIotDomainGroupDataAccessResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ConfigureIotDomainGroupDataAccessResponse.java index d7ca3af7e13..ddc2d7e4d7b 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ConfigureIotDomainGroupDataAccessResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ConfigureIotDomainGroupDataAccessResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateDigitalTwinAdapterResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateDigitalTwinAdapterResponse.java index f34afcdb76a..967f7d005fe 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateDigitalTwinAdapterResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateDigitalTwinAdapterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateDigitalTwinInstanceResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateDigitalTwinInstanceResponse.java index 435ea23c8dc..fd4896e4916 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateDigitalTwinInstanceResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateDigitalTwinInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateDigitalTwinModelResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateDigitalTwinModelResponse.java index 6cdb8a98c8c..d29508a210c 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateDigitalTwinModelResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateDigitalTwinModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateDigitalTwinRelationshipResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateDigitalTwinRelationshipResponse.java index 16c2ca35ac8..7e322740abb 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateDigitalTwinRelationshipResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateDigitalTwinRelationshipResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateIotDomainGroupResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateIotDomainGroupResponse.java index 250f70ac319..f63245a10c0 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateIotDomainGroupResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateIotDomainGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateIotDomainResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateIotDomainResponse.java index 3a9071cee1e..3416235965b 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateIotDomainResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/CreateIotDomainResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteDigitalTwinAdapterResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteDigitalTwinAdapterResponse.java index 29936376a35..abef8ff879b 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteDigitalTwinAdapterResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteDigitalTwinAdapterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteDigitalTwinInstanceResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteDigitalTwinInstanceResponse.java index 9444cf0bc11..077d2853691 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteDigitalTwinInstanceResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteDigitalTwinInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteDigitalTwinModelResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteDigitalTwinModelResponse.java index 98e77a951ae..943949b9a8b 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteDigitalTwinModelResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteDigitalTwinModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteDigitalTwinRelationshipResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteDigitalTwinRelationshipResponse.java index 640f30061d5..9b9154484a0 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteDigitalTwinRelationshipResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteDigitalTwinRelationshipResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteIotDomainGroupResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteIotDomainGroupResponse.java index 035856cf207..3d848758107 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteIotDomainGroupResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteIotDomainGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteIotDomainResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteIotDomainResponse.java index 37c720bbf92..cd7f2fdfdeb 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteIotDomainResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/DeleteIotDomainResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinAdapterResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinAdapterResponse.java index 6ef91207f8e..061b7471ca5 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinAdapterResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinAdapterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinInstanceContentResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinInstanceContentResponse.java index 9878030424c..fe513feb6ab 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinInstanceContentResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinInstanceContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinInstanceResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinInstanceResponse.java index babfb83664e..179d3eff2b0 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinInstanceResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinModelResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinModelResponse.java index daea50292ad..3682f93cb54 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinModelResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinModelSpecResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinModelSpecResponse.java index c51acd8cbe0..76515bb1b6b 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinModelSpecResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinModelSpecResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinRelationshipResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinRelationshipResponse.java index f5408d5256f..3a38427574e 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinRelationshipResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetDigitalTwinRelationshipResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetIotDomainGroupResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetIotDomainGroupResponse.java index 88c29236c41..4cd7ab32d58 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetIotDomainGroupResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetIotDomainGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetIotDomainResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetIotDomainResponse.java index dc9228a2005..aa485ac4491 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetIotDomainResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetIotDomainResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetWorkRequestResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetWorkRequestResponse.java index 6cdefbe1db8..add7d8728c9 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetWorkRequestResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/InvokeRawCommandResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/InvokeRawCommandResponse.java index 628b898e4e9..d3e5d13b69d 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/InvokeRawCommandResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/InvokeRawCommandResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListDigitalTwinAdaptersResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListDigitalTwinAdaptersResponse.java index 3da5761ae52..964fedd9c0b 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListDigitalTwinAdaptersResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListDigitalTwinAdaptersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListDigitalTwinInstancesResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListDigitalTwinInstancesResponse.java index 931fb4df2e3..1406d714c8e 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListDigitalTwinInstancesResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListDigitalTwinInstancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListDigitalTwinModelsResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListDigitalTwinModelsResponse.java index ca80075261e..babe1454319 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListDigitalTwinModelsResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListDigitalTwinModelsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListDigitalTwinRelationshipsResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListDigitalTwinRelationshipsResponse.java index c284b265a67..6679010ca91 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListDigitalTwinRelationshipsResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListDigitalTwinRelationshipsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListIotDomainGroupsResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListIotDomainGroupsResponse.java index b05b4dea763..0f336a68f38 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListIotDomainGroupsResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListIotDomainGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListIotDomainsResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListIotDomainsResponse.java index 8ff2387805f..043bfcb1138 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListIotDomainsResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListIotDomainsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListWorkRequestErrorsResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListWorkRequestErrorsResponse.java index 2e273788416..a74287d0c90 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListWorkRequestLogsResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListWorkRequestLogsResponse.java index 110664512a1..eba5a875080 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListWorkRequestLogsResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListWorkRequestsResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListWorkRequestsResponse.java index 356401f8bb6..e6ed5316a48 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListWorkRequestsResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateDigitalTwinAdapterResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateDigitalTwinAdapterResponse.java index 2d5337d09ed..d593f0d3464 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateDigitalTwinAdapterResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateDigitalTwinAdapterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateDigitalTwinInstanceResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateDigitalTwinInstanceResponse.java index caaf2f244e9..7dcfd90d9bd 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateDigitalTwinInstanceResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateDigitalTwinInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateDigitalTwinModelResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateDigitalTwinModelResponse.java index 5dd82e6510c..7058bcc1213 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateDigitalTwinModelResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateDigitalTwinModelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateDigitalTwinRelationshipResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateDigitalTwinRelationshipResponse.java index 28388983724..85c1413d2b5 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateDigitalTwinRelationshipResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateDigitalTwinRelationshipResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateIotDomainGroupResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateIotDomainGroupResponse.java index b837d33359b..2f4696c7f93 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateIotDomainGroupResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateIotDomainGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateIotDomainResponse.java b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateIotDomainResponse.java index bb397182f4e..4920747abb6 100644 --- a/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateIotDomainResponse.java +++ b/bmc-iot/src/main/java/com/oracle/bmc/iot/responses/UpdateIotDomainResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.iot.responses; diff --git a/bmc-iot/src/main/resources/com/oracle/bmc/iot/client.properties b/bmc-iot/src/main/resources/com/oracle/bmc/iot/client.properties index 990bb0a0104..84f5e04fcca 100644 --- a/bmc-iot/src/main/resources/com/oracle/bmc/iot/client.properties +++ b/bmc-iot/src/main/resources/com/oracle/bmc/iot/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-jms/pom.xml b/bmc-jms/pom.xml index 8bc5cb3ba9c..fa722a1ff9c 100644 --- a/bmc-jms/pom.xml +++ b/bmc-jms/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-jms @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementService.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementService.java index 9b58881749a..8500d54cd07 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementService.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementService.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementServiceAsync.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementServiceAsync.java index 5588c4d58ec..4d87742150a 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementServiceAsync.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementServiceAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementServiceAsyncClient.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementServiceAsyncClient.java index 9694e54f2db..6d4efb87fd2 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementServiceAsyncClient.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementServiceAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementServiceClient.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementServiceClient.java index 5d0695768e4..437b9ce4b0a 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementServiceClient.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementServiceClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementServicePaginators.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementServicePaginators.java index fd9a9995fcd..1eb3677056a 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementServicePaginators.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementServicePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementServiceWaiters.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementServiceWaiters.java index b54e4a211b2..27162518c97 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementServiceWaiters.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/JavaManagementServiceWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ActionType.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ActionType.java index 5bd558aef77..adbb8cb76b3 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ActionType.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AddFleetInstallationSitesDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AddFleetInstallationSitesDetails.java index 3d40491ad96..753dc4fc3eb 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AddFleetInstallationSitesDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AddFleetInstallationSitesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AddInstallationSiteTaskDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AddInstallationSiteTaskDetails.java index cef1f6d6655..f2a55b83cd3 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AddInstallationSiteTaskDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AddInstallationSiteTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AdvancedUsageTracking.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AdvancedUsageTracking.java index cfd6c5b17e2..251e63c4021 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AdvancedUsageTracking.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AdvancedUsageTracking.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Agent.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Agent.java index f39607bd913..05487813f10 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Agent.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Agent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AgentInstallerCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AgentInstallerCollection.java index b344af0857d..8b54951dce0 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AgentInstallerCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AgentInstallerCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AgentInstallerSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AgentInstallerSortBy.java index aa023a57ef3..c866ae655cd 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AgentInstallerSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AgentInstallerSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AgentInstallerSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AgentInstallerSummary.java index d84277258d2..1fc2a219e7c 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AgentInstallerSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AgentInstallerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AgentType.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AgentType.java index 3a51ad9dc4d..e687b0b0f3d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AgentType.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AgentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Algorithms.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Algorithms.java index 502f8c6d2f3..193088e6594 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Algorithms.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Algorithms.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AnnouncementCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AnnouncementCollection.java index da01678e23f..80d547f209d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AnnouncementCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AnnouncementCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AnnouncementSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AnnouncementSortBy.java index 36306e67992..72a3361e4a0 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AnnouncementSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AnnouncementSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AnnouncementSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AnnouncementSummary.java index 17efeb2b6a8..6cac7d39184 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AnnouncementSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/AnnouncementSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationExecutionType.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationExecutionType.java index 3ffe43fbb24..3c81841653f 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationExecutionType.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationExecutionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationInstallationSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationInstallationSortBy.java index 066770fd25f..dc54d8b8b46 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationInstallationSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationInstallationSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationInstallationUsageSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationInstallationUsageSummary.java index 367bde0bc35..763f7abb444 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationInstallationUsageSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationInstallationUsageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationInstallationUsageSummaryCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationInstallationUsageSummaryCollection.java index 11c6470e91f..21c1e230917 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationInstallationUsageSummaryCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationInstallationUsageSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationSortBy.java index 34f124dde92..1a93a3ead58 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationUsage.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationUsage.java index 6f8b8005f7b..a19ffbec496 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationUsage.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationUsageCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationUsageCollection.java index abd840cc3eb..528786e74cb 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationUsageCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationUsageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationWorkItemDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationWorkItemDetails.java index effdcb4b02f..df147bd0fe8 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationWorkItemDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ApplicationWorkItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ArtifactContentType.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ArtifactContentType.java index 8c51ccd5822..5d4c5b566d6 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ArtifactContentType.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ArtifactContentType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/BasicWorkItemDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/BasicWorkItemDetails.java index bc74221cc4e..c50df355d3f 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/BasicWorkItemDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/BasicWorkItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Blocklist.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Blocklist.java index f3f80aca991..f88fc00853d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Blocklist.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Blocklist.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/BlocklistCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/BlocklistCollection.java index f076502a6a2..bccd9edd67a 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/BlocklistCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/BlocklistCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/BlocklistEntry.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/BlocklistEntry.java index cf2d7b88d5f..ce8e4e29e18 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/BlocklistEntry.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/BlocklistEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/BlocklistSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/BlocklistSortBy.java index 68ef3efa59b..7a38b198051 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/BlocklistSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/BlocklistSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/BlocklistTarget.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/BlocklistTarget.java index 6d56161d691..33099a02a53 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/BlocklistTarget.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/BlocklistTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ChangeFleetCompartmentDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ChangeFleetCompartmentDetails.java index 6cbf463f58c..56d658868fb 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ChangeFleetCompartmentDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ChangeFleetCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ClusterDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ClusterDetails.java index 6f4e2425d3a..53eac4084d7 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ClusterDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ConfidenceLevel.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ConfidenceLevel.java index 64cb58510c5..142f10108c6 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ConfidenceLevel.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ConfidenceLevel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ContainerCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ContainerCollection.java index 8e765430f7c..3072a1d22a2 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ContainerCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ContainerCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ContainerSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ContainerSortBy.java index cfcef9ff8f7..a905216552b 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ContainerSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ContainerSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ContainerSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ContainerSummary.java index a7ad2031da4..d6eb7fa65b0 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ContainerSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ContainerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CreateBlocklistDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CreateBlocklistDetails.java index 134dbea3151..eadd83863ec 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CreateBlocklistDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CreateBlocklistDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CreateDrsFileDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CreateDrsFileDetails.java index 1deefa46f74..94a369d6a53 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CreateDrsFileDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CreateDrsFileDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CreateFleetDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CreateFleetDetails.java index dfa7de9e8bd..c4cf7947707 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CreateFleetDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CreateFleetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CreateJmsPluginDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CreateJmsPluginDetails.java index 76db092cf3b..3b9ef0279fe 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CreateJmsPluginDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CreateJmsPluginDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CreateTaskScheduleDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CreateTaskScheduleDetails.java index 3a042950f1d..d8711b8f74d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CreateTaskScheduleDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CreateTaskScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoAnalysisResult.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoAnalysisResult.java index 89cf3cfb99a..a717a33a19d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoAnalysisResult.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoAnalysisResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoAnalysisResultCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoAnalysisResultCollection.java index 1be50305d75..c9fc25b14aa 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoAnalysisResultCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoAnalysisResultCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoAnalysisResultMode.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoAnalysisResultMode.java index aa1653f7972..d3465929cdc 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoAnalysisResultMode.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoAnalysisResultMode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoAnalysisResultSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoAnalysisResultSortBy.java index 150266308f5..b0fe70e26ae 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoAnalysisResultSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoAnalysisResultSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoAnalysisResultSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoAnalysisResultSummary.java index 81b0796c8c4..bc0d1f926aa 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoAnalysisResultSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoAnalysisResultSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoEventAnalysis.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoEventAnalysis.java index 01edf4f53f0..d6163b28d44 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoEventAnalysis.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoEventAnalysis.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoTaskDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoTaskDetails.java index 1a343ebf360..75855bed85c 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoTaskDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CryptoTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CustomLog.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CustomLog.java index d3b8d7f641c..6d8f948e6db 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CustomLog.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/CustomLog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationInstallationSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationInstallationSortBy.java index c458ec13590..8a41d52a989 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationInstallationSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationInstallationSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationInstallationUsageSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationInstallationUsageSummary.java index 2ab5be1368b..57b1de91b28 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationInstallationUsageSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationInstallationUsageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationInstallationUsageSummaryCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationInstallationUsageSummaryCollection.java index 542d8d78856..1d857d22e85 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationInstallationUsageSummaryCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationInstallationUsageSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationMigrationAnalysesTarget.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationMigrationAnalysesTarget.java index 36f3fd05013..a2ecb18e0a8 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationMigrationAnalysesTarget.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationMigrationAnalysesTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationMigrationTaskDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationMigrationTaskDetails.java index f6ff55505f9..8d35cb23a9b 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationMigrationTaskDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationMigrationTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationSortBy.java index f78aa786d1e..3d8325de8dc 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationUsage.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationUsage.java index b4e82208ab6..fb69c767d52 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationUsage.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationUsageCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationUsageCollection.java index a3ceb7ee6b9..1aa113d9c4c 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationUsageCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationUsageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationWorkItemDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationWorkItemDetails.java index ebac144a882..5498f62c7f0 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationWorkItemDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DeployedApplicationWorkItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DisableDrsDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DisableDrsDetails.java index 16b7b5701d9..2a9f67e8565 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DisableDrsDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DisableDrsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsFile.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsFile.java index bdf4e4df294..effdbf5c0ae 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsFile.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsFile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsFileCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsFileCollection.java index 220ac80f872..bd68c6bdd16 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsFileCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsFileCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsFileSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsFileSortBy.java index bedd79e8e6e..f3b72933276 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsFileSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsFileSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsFileStatus.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsFileStatus.java index b3036afd0d2..ae971fef249 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsFileStatus.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsFileStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsFileSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsFileSummary.java index 04dee3b2ee8..686b1d4742b 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsFileSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsFileSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsTarget.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsTarget.java index aef42fb030d..50830ff4060 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsTarget.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/DrsTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/EnableDrsDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/EnableDrsDetails.java index f35223fb48b..0fabb19916d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/EnableDrsDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/EnableDrsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExistingInstallationSiteId.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExistingInstallationSiteId.java index 595d9cac441..410027d894d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExistingInstallationSiteId.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExistingInstallationSiteId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportDataFilters.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportDataFilters.java index b4e6b7ccc50..aef38d71885 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportDataFilters.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportDataFilters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportDuration.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportDuration.java index 57d3878ca9b..dda3c604f1c 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportDuration.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportDuration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportFrequency.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportFrequency.java index 42fd1694615..01888c45c4a 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportFrequency.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportFrequency.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportResources.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportResources.java index 4b050842cce..0f26784da0e 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportResources.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportResources.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportRunStatus.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportRunStatus.java index 11b234f7fb8..d6eaa732cd5 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportRunStatus.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportRunStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportSetting.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportSetting.java index df9a3bbb407..5d82958201b 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportSetting.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportSetting.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportStatus.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportStatus.java index c9470f8515e..b39e173859b 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportStatus.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ExportStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Fleet.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Fleet.java index 7b4d23b8911..041cd6e7d0f 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Fleet.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Fleet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetAdvancedFeatureConfiguration.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetAdvancedFeatureConfiguration.java index b8b4a96c279..05073458963 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetAdvancedFeatureConfiguration.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetAdvancedFeatureConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetAgentConfiguration.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetAgentConfiguration.java index e6b159d4dca..a308a9081be 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetAgentConfiguration.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetAgentConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetAgentOsConfiguration.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetAgentOsConfiguration.java index cb309c46aa4..28cf9ae0742 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetAgentOsConfiguration.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetAgentOsConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetCollection.java index 435a2a56ceb..de6d5cb0f62 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetDiagnosisCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetDiagnosisCollection.java index 98c030a0d38..d668f2012e2 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetDiagnosisCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetDiagnosisCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetDiagnosisSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetDiagnosisSummary.java index e9d3e5c454c..7ae0019b981 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetDiagnosisSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetDiagnosisSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorAggregation.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorAggregation.java index 95a6c85a51f..fbb87640b38 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorAggregation.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorAggregationCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorAggregationCollection.java index 960f08f2c29..0a20fc6de82 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorAggregationCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorAggregationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorAggregationSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorAggregationSummary.java index 374350e23c0..bd82ef962c8 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorAggregationSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorAggregationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorCollection.java index a303d9fd6b7..1e42f202c3c 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorDetails.java index 568c3be4df6..657f0adb40c 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorReason.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorReason.java index 88ae331306b..c7b1637a0bc 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorReason.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorReason.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorSortBy.java index b092e4239a4..0b58a4af15e 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorSummary.java index 51df178dc32..5bc90d488f0 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetErrorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetSummary.java index b2959babba6..3db67a58565 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/FleetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/GenerateAgentDeployScriptDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/GenerateAgentDeployScriptDetails.java index f6fe290ae7e..62e1407dd9a 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/GenerateAgentDeployScriptDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/GenerateAgentDeployScriptDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/GenerateAgentInstallerConfigurationDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/GenerateAgentInstallerConfigurationDetails.java index 446cbc5250c..a4fe5b19adf 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/GenerateAgentInstallerConfigurationDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/GenerateAgentInstallerConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/GenerateLoadPipelineScriptDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/GenerateLoadPipelineScriptDetails.java index d434c5431c2..06461d26fae 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/GenerateLoadPipelineScriptDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/GenerateLoadPipelineScriptDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/GlobalLoggingLevel.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/GlobalLoggingLevel.java index 34980aa530c..0699a05130a 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/GlobalLoggingLevel.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/GlobalLoggingLevel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationSite.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationSite.java index 912b15fdca7..089db4efe7a 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationSite.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationSite.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationSiteCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationSiteCollection.java index 214b8ad50e9..bb21228aed9 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationSiteCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationSiteCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationSiteSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationSiteSortBy.java index d301c2244c6..8db7c85a6d4 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationSiteSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationSiteSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationSiteSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationSiteSummary.java index 60bc5d4f4f9..0dff25c687a 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationSiteSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationSiteSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationSortBy.java index 87a7d8c9ae5..f2d6852b926 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationUsage.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationUsage.java index a1460862d2b..4e849b2e3df 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationUsage.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationUsageCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationUsageCollection.java index 31bd14a3d74..e14297fed31 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationUsageCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/InstallationUsageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaArtifact.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaArtifact.java index 5b2ce8a3f86..63be27d9437 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaArtifact.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaArtifact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaFamily.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaFamily.java index 4bb5d550403..be4a05fc906 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaFamily.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaFamily.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaFamilyCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaFamilyCollection.java index f257727562b..2d8700df8a2 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaFamilyCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaFamilyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaFamilySortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaFamilySortBy.java index 11401b829ce..68b93925a15 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaFamilySortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaFamilySortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaFamilySummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaFamilySummary.java index 35288f36676..f7a4b8e86e1 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaFamilySummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaFamilySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaLicense.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaLicense.java index 90ede421d70..6c12f428d39 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaLicense.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaLicense.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysis.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysis.java index ababb398d03..00a6d2266b5 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysis.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysis.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysisResult.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysisResult.java index 5719d7db2da..158ff529498 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysisResult.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysisResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysisResultCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysisResultCollection.java index 3af6ec6e073..6cb4183af16 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysisResultCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysisResultCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysisResultSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysisResultSortBy.java index 39a888396de..6843a9db4d9 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysisResultSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysisResultSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysisResultSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysisResultSummary.java index 01f69a6b899..d1183b7b8f7 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysisResultSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysisResultSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysisTarget.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysisTarget.java index ab308b84ef5..65801268ccf 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysisTarget.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationAnalysisTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationApplicationWorkItemDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationApplicationWorkItemDetails.java index 1b055b92c31..12db3abd618 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationApplicationWorkItemDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationApplicationWorkItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationDeployedApplicationWorkItemDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationDeployedApplicationWorkItemDetails.java index e84f57ed5f2..5601466dc4d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationDeployedApplicationWorkItemDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationDeployedApplicationWorkItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationTaskDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationTaskDetails.java index 09e4bef84bc..34b5c7eab82 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationTaskDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaMigrationTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaRelease.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaRelease.java index 2d9bd76b568..327e3a6efd6 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaRelease.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaRelease.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaReleaseCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaReleaseCollection.java index fb835f05509..1ed5163dfac 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaReleaseCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaReleaseCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaReleaseSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaReleaseSortBy.java index ce95ef30afd..6d5fb55a823 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaReleaseSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaReleaseSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaReleaseSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaReleaseSummary.java index e2c0275ec8a..03f33f47b30 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaReleaseSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaReleaseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaRuntimeId.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaRuntimeId.java index 59e55c4470b..de3da588c71 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaRuntimeId.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaRuntimeId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerInstanceSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerInstanceSortBy.java index 1559f018e05..098a72483aa 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerInstanceSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerInstanceSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerInstanceUsage.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerInstanceUsage.java index 3bf72179f40..165cb442c0a 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerInstanceUsage.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerInstanceUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerInstanceUsageCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerInstanceUsageCollection.java index 2ed6babb8b9..62c41fd872d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerInstanceUsageCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerInstanceUsageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerSortBy.java index aae1125e517..de1b0858134 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerUsage.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerUsage.java index 760c78617ee..d733ca07cd4 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerUsage.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerUsageCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerUsageCollection.java index df2c2904195..12814669cbf 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerUsageCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JavaServerUsageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JfrAttachmentTarget.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JfrAttachmentTarget.java index 36a37c48eae..ad82c31a590 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JfrAttachmentTarget.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JfrAttachmentTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JfrRecording.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JfrRecording.java index 02b4562085f..30fe8f7a69f 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JfrRecording.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JfrRecording.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JfrTaskDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JfrTaskDetails.java index 2642de33ae4..76fae79f2af 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JfrTaskDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JfrTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPlugin.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPlugin.java index f47396ed60f..80dcadec2f9 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPlugin.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPlugin.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPluginAvailabilityStatus.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPluginAvailabilityStatus.java index 8f418baffc1..f534a2cbf2f 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPluginAvailabilityStatus.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPluginAvailabilityStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPluginCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPluginCollection.java index 843ad4e4e50..7edd306956d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPluginCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPluginCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPluginLifecycleState.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPluginLifecycleState.java index 3dead821be4..6a2cbba5250 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPluginLifecycleState.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPluginLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPluginSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPluginSortBy.java index 6d8a6d0b744..70d15d9ccf6 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPluginSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPluginSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPluginSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPluginSummary.java index 0bc6239db93..15c5e2e79f5 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPluginSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JmsPluginSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JreSecurityStatus.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JreSecurityStatus.java index 5fb8f5c3526..5050bb60d67 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JreSecurityStatus.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JreSecurityStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JreSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JreSortBy.java index c2120206efd..0753c359b2f 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JreSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JreSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JreUsage.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JreUsage.java index 9343277014f..6688cdaf6db 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JreUsage.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JreUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JreUsageCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JreUsageCollection.java index 4fb1c51d1d7..ff8f3615cbb 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JreUsageCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/JreUsageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/KeySizeAlgorithm.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/KeySizeAlgorithm.java index b8fc763ae7d..d26159a2494 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/KeySizeAlgorithm.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/KeySizeAlgorithm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Lcm.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Lcm.java index 1da0e478475..65faa13d48a 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Lcm.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Lcm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LcmWorkItemDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LcmWorkItemDetails.java index 1adf7c81fa1..1589824f297 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LcmWorkItemDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LcmWorkItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryApplicationSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryApplicationSortBy.java index e544692f59d..917be745b28 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryApplicationSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryApplicationSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryApplicationUsageCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryApplicationUsageCollection.java index 6be5ce16eaa..fb3d7094fa2 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryApplicationUsageCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryApplicationUsageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryApplicationUsageSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryApplicationUsageSummary.java index 30c69859a99..f082154dc1a 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryApplicationUsageSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryApplicationUsageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryInventory.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryInventory.java index fa70acb6217..8f28d70e5f6 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryInventory.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryInventory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryManagedInstanceSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryManagedInstanceSortBy.java index 5d44227194f..c44aefed387 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryManagedInstanceSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryManagedInstanceSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryManagedInstanceUsageCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryManagedInstanceUsageCollection.java index 0346fd3cf6a..f431c7968ca 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryManagedInstanceUsageCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryManagedInstanceUsageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryManagedInstanceUsageSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryManagedInstanceUsageSummary.java index 6ba4d8374ea..12b6a2536da 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryManagedInstanceUsageSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryManagedInstanceUsageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibrarySortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibrarySortBy.java index 930711f75ab..a934e1a35a2 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibrarySortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibrarySortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryUsage.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryUsage.java index db8ebc54b32..02922ee80a3 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryUsage.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryUsageCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryUsageCollection.java index b3e560128c8..4b36e633273 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryUsageCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryUsageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryVulnerability.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryVulnerability.java index c2bc1bea4db..bf8be7ee490 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryVulnerability.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LibraryVulnerability.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LicenseType.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LicenseType.java index ed472bc7e18..89fb23e95a9 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LicenseType.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LicenseType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LifecycleState.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LifecycleState.java index afeeb9d4edd..f0c851a5dda 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LifecycleState.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/LifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ManageDrsDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ManageDrsDetails.java index 4638fd447df..d6b723e8e8c 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ManageDrsDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ManageDrsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ManagedInstanceSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ManagedInstanceSortBy.java index 6b2c466815a..3b604c08918 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ManagedInstanceSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ManagedInstanceSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ManagedInstanceType.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ManagedInstanceType.java index 22adfe4ef8c..eec39511b84 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ManagedInstanceType.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ManagedInstanceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ManagedInstanceUsage.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ManagedInstanceUsage.java index 9a262ca4582..57d4e142974 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ManagedInstanceUsage.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ManagedInstanceUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ManagedInstanceUsageCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ManagedInstanceUsageCollection.java index 4f003f63cab..3ba55d4adf4 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ManagedInstanceUsageCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ManagedInstanceUsageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/MinimumKeySizeSettings.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/MinimumKeySizeSettings.java index 6785057b276..12fa4cbffc5 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/MinimumKeySizeSettings.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/MinimumKeySizeSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/NewInstallationSite.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/NewInstallationSite.java index 327aac42faf..9917a35683c 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/NewInstallationSite.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/NewInstallationSite.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/OperatingSystem.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/OperatingSystem.java index d1b49147437..46b932ca9bb 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/OperatingSystem.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/OperatingSystem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/OperationStatus.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/OperationStatus.java index 263fadf0049..c380adf62f7 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/OperationStatus.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/OperationType.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/OperationType.java index 40b54e9b1e3..757efdaa7bf 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/OperationType.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/OsFamily.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/OsFamily.java index 5be1cd10aa6..df1ba22e774 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/OsFamily.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/OsFamily.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PackageSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PackageSortBy.java index 11ec7cbbf9c..809bf4083e7 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PackageSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PackageSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PackageType.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PackageType.java index e9f50616664..78aa5809f3d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PackageType.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PackageType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PatchDetail.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PatchDetail.java index 80b22693ee1..9b6888f371e 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PatchDetail.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PatchDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningAnalysis.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningAnalysis.java index 4dd1f7a5dfd..195828d5257 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningAnalysis.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningAnalysis.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningAnalysisResult.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningAnalysisResult.java index 8ceeaf36545..d10d1b25f6a 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningAnalysisResult.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningAnalysisResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningAnalysisResultCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningAnalysisResultCollection.java index 42c4c2dec34..f203294b8bb 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningAnalysisResultCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningAnalysisResultCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningAnalysisResultSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningAnalysisResultSortBy.java index dd89ae25bbe..28db49c7887 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningAnalysisResultSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningAnalysisResultSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningAnalysisResultSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningAnalysisResultSummary.java index 8ed7b65a7ed..1fe287f4f5b 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningAnalysisResultSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningAnalysisResultSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningResultStatus.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningResultStatus.java index 123c4578e50..b1c81ad0dd5 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningResultStatus.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningResultStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningTaskDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningTaskDetails.java index 99a7e353d4d..1cb2f323cbd 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningTaskDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PerformanceTuningTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PlatformArchitectureType.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PlatformArchitectureType.java index 30ff097d014..00bdbaa5e5c 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PlatformArchitectureType.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PlatformArchitectureType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Plugin.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Plugin.java index 75ee02f85a8..d69ecd71f7d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Plugin.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Plugin.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorAggregation.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorAggregation.java index ed05b6a0639..0275fa9fe98 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorAggregation.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorAggregationCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorAggregationCollection.java index 8e500a22b83..d00588dd49c 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorAggregationCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorAggregationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorAggregationSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorAggregationSummary.java index f54d9d07f4c..23f00f126b4 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorAggregationSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorAggregationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorCollection.java index 38e555dd201..c89e2280623 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorDetails.java index a87d2ae5abf..277db375bf9 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorReason.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorReason.java index 375fce3fb4a..2e7ba6cb694 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorReason.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorReason.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorSortBy.java index 24e5f24d3fd..46872299994 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorSummary.java index 02d1e6947ff..fd4041b351e 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PluginErrorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PostInstallationActionSettings.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PostInstallationActionSettings.java index dd02a759ff1..9eefa3e7afa 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PostInstallationActionSettings.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PostInstallationActionSettings.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PostInstallationActions.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PostInstallationActions.java index acd36144a94..653cd293c30 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PostInstallationActions.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/PostInstallationActions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Principal.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Principal.java index 5323e2ef818..3f853c629c5 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Principal.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Principal.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Proxies.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Proxies.java index 24ce31a9175..c797dd17893 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Proxies.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/Proxies.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ReleaseType.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ReleaseType.java index 320c4977819..97c26174119 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ReleaseType.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ReleaseType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RemoveFleetInstallationSitesDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RemoveFleetInstallationSitesDetails.java index 7f1684894e2..941bf6bc9c1 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RemoveFleetInstallationSitesDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RemoveFleetInstallationSitesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RemoveInstallationSiteTaskDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RemoveInstallationSiteTaskDetails.java index a4cbb2e4fcf..ad918073c4f 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RemoveInstallationSiteTaskDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RemoveInstallationSiteTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RequestCryptoAnalysesDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RequestCryptoAnalysesDetails.java index 565d08228a5..2ec0dd54a1f 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RequestCryptoAnalysesDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RequestCryptoAnalysesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RequestDeployedApplicationMigrationAnalysesDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RequestDeployedApplicationMigrationAnalysesDetails.java index 201bd933fb9..b13d34fac18 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RequestDeployedApplicationMigrationAnalysesDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RequestDeployedApplicationMigrationAnalysesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RequestJavaMigrationAnalysesDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RequestJavaMigrationAnalysesDetails.java index 78c785db819..6cf5f682f85 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RequestJavaMigrationAnalysesDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RequestJavaMigrationAnalysesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RequestJfrRecordingsDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RequestJfrRecordingsDetails.java index 66ad81d3717..12df5cd5cce 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RequestJfrRecordingsDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RequestJfrRecordingsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RequestPerformanceTuningAnalysesDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RequestPerformanceTuningAnalysesDetails.java index 2ff0cdba153..a5eb1f7215c 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RequestPerformanceTuningAnalysesDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/RequestPerformanceTuningAnalysesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ResourceInventory.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ResourceInventory.java index 983e0ad9af3..1389f90363b 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ResourceInventory.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ResourceInventory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ScanJavaServerTaskDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ScanJavaServerTaskDetails.java index 876f20b4601..7383da6b227 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ScanJavaServerTaskDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ScanJavaServerTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ScanJavaServerUsageDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ScanJavaServerUsageDetails.java index 50701f63187..45bed108925 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ScanJavaServerUsageDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ScanJavaServerUsageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ScanLibraryTaskDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ScanLibraryTaskDetails.java index d48ac334bce..bb320686898 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ScanLibraryTaskDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ScanLibraryTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ScanLibraryUsageDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ScanLibraryUsageDetails.java index 1a8a996fabd..fdca7e69ce3 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ScanLibraryUsageDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/ScanLibraryUsageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SortBy.java index 7c948dad4d4..6276588fc84 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SortOrder.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SortOrder.java index 63c53311a4b..e60a1a2cc62 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SortOrder.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SummarizeApplicationUsageFields.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SummarizeApplicationUsageFields.java index 0215cf82309..5793b47527d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SummarizeApplicationUsageFields.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SummarizeApplicationUsageFields.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SummarizeInstallationUsageFields.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SummarizeInstallationUsageFields.java index 6ec3ef8a684..396edc2df89 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SummarizeInstallationUsageFields.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SummarizeInstallationUsageFields.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SummarizeJreUsageFields.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SummarizeJreUsageFields.java index 8fdd63baf00..68328b8e76c 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SummarizeJreUsageFields.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SummarizeJreUsageFields.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SummarizeManagedInstanceUsageFields.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SummarizeManagedInstanceUsageFields.java index ff473c50c94..3c1181675d8 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SummarizeManagedInstanceUsageFields.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SummarizeManagedInstanceUsageFields.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SummarizedEventsLog.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SummarizedEventsLog.java index 4792d260536..fa7abb90429 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SummarizedEventsLog.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SummarizedEventsLog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SupportType.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SupportType.java index a1699e6edee..5ade28c10c4 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SupportType.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/SupportType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TaskDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TaskDetails.java index a1662348c9a..ecc154dcfc9 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TaskDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TaskSchedule.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TaskSchedule.java index bf1c2140035..081b2b1994d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TaskSchedule.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TaskSchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TaskScheduleCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TaskScheduleCollection.java index 9035739fe95..53f2d578fa5 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TaskScheduleCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TaskScheduleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TaskScheduleSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TaskScheduleSortBy.java index 35f3a35262e..1a9ae1def5d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TaskScheduleSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TaskScheduleSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TaskScheduleSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TaskScheduleSummary.java index 5c4d910f69f..5cac8778b42 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TaskScheduleSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TaskScheduleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TlsVersions.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TlsVersions.java index 2b89919eee5..95f7aff85f6 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TlsVersions.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/TlsVersions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageApplicationSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageApplicationSortBy.java index fddccb1545e..fa7cf81340c 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageApplicationSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageApplicationSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageApplicationUsageCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageApplicationUsageCollection.java index f3922501fb9..95b5f2e1252 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageApplicationUsageCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageApplicationUsageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageApplicationUsageSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageApplicationUsageSummary.java index a5328263036..1ae5c025b4a 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageApplicationUsageSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageApplicationUsageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageManagedInstanceSortBy.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageManagedInstanceSortBy.java index 38ef61549d0..0cd8116a147 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageManagedInstanceSortBy.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageManagedInstanceSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageManagedInstanceUsageCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageManagedInstanceUsageCollection.java index 1bee381b4a1..b0562c07ba4 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageManagedInstanceUsageCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageManagedInstanceUsageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageManagedInstanceUsageSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageManagedInstanceUsageSummary.java index 80e74127a41..2ad9a92f9ba 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageManagedInstanceUsageSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageManagedInstanceUsageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageUsageCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageUsageCollection.java index 2f60d10e13b..8997322927b 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageUsageCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageUsageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageUsageSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageUsageSummary.java index 507847a42a2..97bd701bfc5 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageUsageSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UncorrelatedPackageUsageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateDrsFileDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateDrsFileDetails.java index 18871e6ed0c..b5241e58a14 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateDrsFileDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateDrsFileDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateExportSettingDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateExportSettingDetails.java index 9e3d35312aa..6c66d32a037 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateExportSettingDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateExportSettingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateFleetAdvancedFeatureConfigurationDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateFleetAdvancedFeatureConfigurationDetails.java index 1d2afb75957..8dd31fc382f 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateFleetAdvancedFeatureConfigurationDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateFleetAdvancedFeatureConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateFleetAgentConfigurationDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateFleetAgentConfigurationDetails.java index ef495a0471c..8fef8b32852 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateFleetAgentConfigurationDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateFleetAgentConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateFleetDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateFleetDetails.java index e457ab6bcd2..46a833ac6c6 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateFleetDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateFleetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateJmsPluginDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateJmsPluginDetails.java index 18feb0c5495..48a84b05504 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateJmsPluginDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateJmsPluginDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateTaskScheduleDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateTaskScheduleDetails.java index b8ff1f32501..f0f92f0823e 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateTaskScheduleDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/UpdateTaskScheduleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkItemCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkItemCollection.java index 8e542a747d6..3ad35096d51 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkItemCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkItemCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkItemDetails.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkItemDetails.java index a08276ee6aa..db769095f72 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkItemDetails.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkItemStatus.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkItemStatus.java index fd8cabd1f9b..aaa36cc55e6 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkItemStatus.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkItemStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkItemSummary.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkItemSummary.java index 0a906c45cb6..3eb23499f6a 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkItemSummary.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkItemSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkItemType.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkItemType.java index 59ce9699eac..4b484859791 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkItemType.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkItemType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequest.java index fd962f3966d..fe41d900ca6 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestCollection.java index feade7b62fe..6e7e9c53363 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestError.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestError.java index 9a65dceac60..e4fab601481 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestError.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestErrorCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestErrorCollection.java index e951a732045..f98d990a713 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestErrorCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestLogEntry.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestLogEntry.java index 34a52f4a98c..9b5c7c7a778 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestLogEntry.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestLogEntryCollection.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestLogEntryCollection.java index cf36c377be3..4e16333fd23 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestLogEntryCollection.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestResource.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestResource.java index db473f4fb91..00179853387 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestResource.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.model; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/AddFleetInstallationSitesRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/AddFleetInstallationSitesRequest.java index 5a286430179..04f20a2ce7b 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/AddFleetInstallationSitesRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/AddFleetInstallationSitesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CancelWorkRequestRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CancelWorkRequestRequest.java index dca014c11ae..1af9df3f184 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CancelWorkRequestRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ChangeFleetCompartmentRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ChangeFleetCompartmentRequest.java index b3874864563..3f5e0e2071f 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ChangeFleetCompartmentRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ChangeFleetCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CreateBlocklistRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CreateBlocklistRequest.java index d9d55c9178e..0e05c06a410 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CreateBlocklistRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CreateBlocklistRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CreateDrsFileRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CreateDrsFileRequest.java index b7b38c7a5e1..b84a07331c1 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CreateDrsFileRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CreateDrsFileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CreateFleetRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CreateFleetRequest.java index be021f95ea7..c8904045796 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CreateFleetRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CreateFleetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CreateJmsPluginRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CreateJmsPluginRequest.java index 2485a5daa3f..7655a515b02 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CreateJmsPluginRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CreateJmsPluginRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CreateTaskScheduleRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CreateTaskScheduleRequest.java index 0e149d9b4f5..80feec7e7ba 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CreateTaskScheduleRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/CreateTaskScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteBlocklistRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteBlocklistRequest.java index 0749ee96e4e..8f12f5b4af1 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteBlocklistRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteBlocklistRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteCryptoAnalysisResultRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteCryptoAnalysisResultRequest.java index e0d97b64afa..0c77445e83d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteCryptoAnalysisResultRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteCryptoAnalysisResultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteDrsFileRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteDrsFileRequest.java index 4859b3afc4a..59f70e6817f 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteDrsFileRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteDrsFileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteFleetRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteFleetRequest.java index 2b6e413c57f..9765fb06c85 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteFleetRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteFleetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteJavaMigrationAnalysisResultRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteJavaMigrationAnalysisResultRequest.java index dc6bcfe3a2e..320db099586 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteJavaMigrationAnalysisResultRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteJavaMigrationAnalysisResultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteJmsPluginRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteJmsPluginRequest.java index 9cf4b0f82df..54f0c60328f 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteJmsPluginRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteJmsPluginRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeletePerformanceTuningAnalysisResultRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeletePerformanceTuningAnalysisResultRequest.java index 146f9c62faa..84183afeb4e 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeletePerformanceTuningAnalysisResultRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeletePerformanceTuningAnalysisResultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteTaskScheduleRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteTaskScheduleRequest.java index e0c21cf3079..e61c191ba62 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteTaskScheduleRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DeleteTaskScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DisableDrsRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DisableDrsRequest.java index c57c68dee53..5d3620c1d12 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DisableDrsRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/DisableDrsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/EnableDrsRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/EnableDrsRequest.java index 958d5cf6f64..9360668b32b 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/EnableDrsRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/EnableDrsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GenerateAgentDeployScriptRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GenerateAgentDeployScriptRequest.java index ff7624d8765..627d4cccad4 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GenerateAgentDeployScriptRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GenerateAgentDeployScriptRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GenerateAgentInstallerConfigurationRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GenerateAgentInstallerConfigurationRequest.java index 882c6f2ac7d..46ccfe72e00 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GenerateAgentInstallerConfigurationRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GenerateAgentInstallerConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GenerateLoadPipelineScriptRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GenerateLoadPipelineScriptRequest.java index bcd3d92aa01..9dd425788a2 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GenerateLoadPipelineScriptRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GenerateLoadPipelineScriptRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetCryptoAnalysisResultRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetCryptoAnalysisResultRequest.java index 1506836f818..610138e4478 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetCryptoAnalysisResultRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetCryptoAnalysisResultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetDrsFileRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetDrsFileRequest.java index 5dac0c6c8fc..32f172f4380 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetDrsFileRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetDrsFileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetExportSettingRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetExportSettingRequest.java index f4f9c3b21f0..31be9b85111 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetExportSettingRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetExportSettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetExportStatusRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetExportStatusRequest.java index be6ebec1367..1ecd097932f 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetExportStatusRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetExportStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetFleetAdvancedFeatureConfigurationRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetFleetAdvancedFeatureConfigurationRequest.java index 5e9f46a83a3..7034ff48b4b 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetFleetAdvancedFeatureConfigurationRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetFleetAdvancedFeatureConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetFleetAgentConfigurationRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetFleetAgentConfigurationRequest.java index 7b397994ad7..d8804eaff58 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetFleetAgentConfigurationRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetFleetAgentConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetFleetRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetFleetRequest.java index 789202cea42..c70a4aaf08c 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetFleetRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetFleetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetJavaFamilyRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetJavaFamilyRequest.java index c068ec934bc..1e59f976044 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetJavaFamilyRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetJavaFamilyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetJavaMigrationAnalysisResultRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetJavaMigrationAnalysisResultRequest.java index d759b9ee934..aeeb6a5c76b 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetJavaMigrationAnalysisResultRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetJavaMigrationAnalysisResultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetJavaReleaseRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetJavaReleaseRequest.java index f05ff67de16..b8c11f5e3a8 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetJavaReleaseRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetJavaReleaseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetJmsPluginRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetJmsPluginRequest.java index 98d774c4f61..b973ae7130a 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetJmsPluginRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetJmsPluginRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetPerformanceTuningAnalysisResultRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetPerformanceTuningAnalysisResultRequest.java index d02c59a05b1..715ff2f39ac 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetPerformanceTuningAnalysisResultRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetPerformanceTuningAnalysisResultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetTaskScheduleRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetTaskScheduleRequest.java index 18fd8254f0f..ad0482ca6a7 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetTaskScheduleRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetTaskScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetWorkRequestRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetWorkRequestRequest.java index f8b57511504..f020f5bede4 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetWorkRequestRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListAgentInstallersRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListAgentInstallersRequest.java index 1ae274f40e9..6665842ebbb 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListAgentInstallersRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListAgentInstallersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListAnnouncementsRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListAnnouncementsRequest.java index 55644ac6b3a..6f8443d9ff2 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListAnnouncementsRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListAnnouncementsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListBlocklistsRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListBlocklistsRequest.java index 1b6d72383d1..711e95b1cd9 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListBlocklistsRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListBlocklistsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListContainersRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListContainersRequest.java index a0fa64362c5..9b1692e3321 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListContainersRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListContainersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListCryptoAnalysisResultsRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListCryptoAnalysisResultsRequest.java index e658fcb6471..a0e47cf11bd 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListCryptoAnalysisResultsRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListCryptoAnalysisResultsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListDrsFilesRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListDrsFilesRequest.java index 5d31e6655f4..3a84eb0e9c1 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListDrsFilesRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListDrsFilesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListFleetDiagnosesRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListFleetDiagnosesRequest.java index f9bf6a04701..0f4d6fe4f4c 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListFleetDiagnosesRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListFleetDiagnosesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListFleetErrorsRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListFleetErrorsRequest.java index a18f3124c55..770ac05b7c5 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListFleetErrorsRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListFleetErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListFleetsRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListFleetsRequest.java index e46580a7007..100463bbbad 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListFleetsRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListFleetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListInstallationSitesRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListInstallationSitesRequest.java index aeaf21c101d..b9f1455f87d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListInstallationSitesRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListInstallationSitesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListJavaFamiliesRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListJavaFamiliesRequest.java index d0a4fd12bbb..b12d39355d5 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListJavaFamiliesRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListJavaFamiliesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListJavaMigrationAnalysisResultsRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListJavaMigrationAnalysisResultsRequest.java index 6e04b7b754f..211a8127454 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListJavaMigrationAnalysisResultsRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListJavaMigrationAnalysisResultsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListJavaReleasesRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListJavaReleasesRequest.java index 00bc2324306..33b74c269bf 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListJavaReleasesRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListJavaReleasesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListJmsPluginsRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListJmsPluginsRequest.java index b03bb012461..152edc05f8d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListJmsPluginsRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListJmsPluginsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListJreUsageRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListJreUsageRequest.java index cb8bb5559ef..22ef4b6bbf1 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListJreUsageRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListJreUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListLibraryApplicationUsageRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListLibraryApplicationUsageRequest.java index 1a0807214be..559cf1147ee 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListLibraryApplicationUsageRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListLibraryApplicationUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListLibraryManagedInstanceUsageRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListLibraryManagedInstanceUsageRequest.java index 37098d6e935..c6588d08b51 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListLibraryManagedInstanceUsageRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListLibraryManagedInstanceUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListPerformanceTuningAnalysisResultsRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListPerformanceTuningAnalysisResultsRequest.java index a4b31c44bda..5ccfb2a7a71 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListPerformanceTuningAnalysisResultsRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListPerformanceTuningAnalysisResultsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListPluginErrorsRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListPluginErrorsRequest.java index 6237409492e..195dc582b73 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListPluginErrorsRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListPluginErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListTaskSchedulesRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListTaskSchedulesRequest.java index fae06adb0c5..4bd50418fbf 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListTaskSchedulesRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListTaskSchedulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListUncorrelatedPackageApplicationUsageRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListUncorrelatedPackageApplicationUsageRequest.java index 67e5cce2472..b9602dd6200 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListUncorrelatedPackageApplicationUsageRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListUncorrelatedPackageApplicationUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListUncorrelatedPackageManagedInstanceUsageRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListUncorrelatedPackageManagedInstanceUsageRequest.java index 1e9faa346e2..892e8af1c7d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListUncorrelatedPackageManagedInstanceUsageRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListUncorrelatedPackageManagedInstanceUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListUncorrelatedPackageUsageRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListUncorrelatedPackageUsageRequest.java index e9c833ee76b..39635562bec 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListUncorrelatedPackageUsageRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListUncorrelatedPackageUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListWorkItemsRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListWorkItemsRequest.java index 4c9fabc5060..55b6a2ef346 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListWorkItemsRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListWorkItemsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListWorkRequestErrorsRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListWorkRequestErrorsRequest.java index 18f8085a079..c87c138d9ab 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListWorkRequestLogsRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListWorkRequestLogsRequest.java index 1e1c4ca4e77..b2b1d0c7617 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListWorkRequestLogsRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListWorkRequestsRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListWorkRequestsRequest.java index fab7d9f4eae..d024b86091e 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListWorkRequestsRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RemoveFleetInstallationSitesRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RemoveFleetInstallationSitesRequest.java index 7d968a29b57..fe61e3fc91b 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RemoveFleetInstallationSitesRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RemoveFleetInstallationSitesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RequestCryptoAnalysesRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RequestCryptoAnalysesRequest.java index e10c6a0a38f..e23a0e1d8c6 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RequestCryptoAnalysesRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RequestCryptoAnalysesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RequestDeployedApplicationMigrationAnalysesRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RequestDeployedApplicationMigrationAnalysesRequest.java index b52d1fb3520..2799cf5f977 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RequestDeployedApplicationMigrationAnalysesRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RequestDeployedApplicationMigrationAnalysesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RequestJavaMigrationAnalysesRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RequestJavaMigrationAnalysesRequest.java index 097c86302e4..9a4c34e477e 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RequestJavaMigrationAnalysesRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RequestJavaMigrationAnalysesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RequestJfrRecordingsRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RequestJfrRecordingsRequest.java index 923b60256a1..cf9adf9e28d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RequestJfrRecordingsRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RequestJfrRecordingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RequestPerformanceTuningAnalysesRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RequestPerformanceTuningAnalysesRequest.java index 1974a8ee3ba..c001e5e0fca 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RequestPerformanceTuningAnalysesRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/RequestPerformanceTuningAnalysesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ScanJavaServerUsageRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ScanJavaServerUsageRequest.java index fa565cbea22..801960cfc51 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ScanJavaServerUsageRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ScanJavaServerUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ScanLibraryUsageRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ScanLibraryUsageRequest.java index a282309f87d..8224493080b 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ScanLibraryUsageRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/ScanLibraryUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeApplicationInstallationUsageRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeApplicationInstallationUsageRequest.java index a79245473ce..16bcc7d32a1 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeApplicationInstallationUsageRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeApplicationInstallationUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeApplicationUsageRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeApplicationUsageRequest.java index 05f9f573a59..80fd6870336 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeApplicationUsageRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeApplicationUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeDeployedApplicationInstallationUsageRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeDeployedApplicationInstallationUsageRequest.java index e29d27b4dd9..c8a2b5b0242 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeDeployedApplicationInstallationUsageRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeDeployedApplicationInstallationUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeDeployedApplicationUsageRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeDeployedApplicationUsageRequest.java index cdd4d629eaf..b560db44f4f 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeDeployedApplicationUsageRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeDeployedApplicationUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeFleetErrorsRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeFleetErrorsRequest.java index 902bb56bf81..ecbf83117e4 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeFleetErrorsRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeFleetErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeInstallationUsageRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeInstallationUsageRequest.java index bdce6759ab8..08df19c6486 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeInstallationUsageRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeInstallationUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeJavaServerInstanceUsageRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeJavaServerInstanceUsageRequest.java index e6af0d33582..fa6d5cd750c 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeJavaServerInstanceUsageRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeJavaServerInstanceUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeJavaServerUsageRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeJavaServerUsageRequest.java index 9121e440610..47103972c7c 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeJavaServerUsageRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeJavaServerUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeJreUsageRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeJreUsageRequest.java index 5e6ab2193b9..b3e87d3c80d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeJreUsageRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeJreUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeLibraryInventoryRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeLibraryInventoryRequest.java index 8c69e3488b7..1a3abfe7c19 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeLibraryInventoryRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeLibraryInventoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeLibraryUsageRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeLibraryUsageRequest.java index c533f4a8df6..d35f90a4711 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeLibraryUsageRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeLibraryUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeManagedInstanceUsageRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeManagedInstanceUsageRequest.java index bdcea14471e..02aac63ef97 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeManagedInstanceUsageRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeManagedInstanceUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizePluginErrorsRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizePluginErrorsRequest.java index d1219fc1c8b..8db6143e880 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizePluginErrorsRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizePluginErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeResourceInventoryRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeResourceInventoryRequest.java index ab990c44253..c4c71436627 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeResourceInventoryRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/SummarizeResourceInventoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateDrsFileRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateDrsFileRequest.java index 5e9dddddcae..e20b7494b55 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateDrsFileRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateDrsFileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateExportSettingRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateExportSettingRequest.java index 09a1fb3de86..fd759bd822c 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateExportSettingRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateExportSettingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateFleetAdvancedFeatureConfigurationRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateFleetAdvancedFeatureConfigurationRequest.java index e75e2cd1ea1..9e1a76bb194 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateFleetAdvancedFeatureConfigurationRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateFleetAdvancedFeatureConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateFleetAgentConfigurationRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateFleetAgentConfigurationRequest.java index 06ddaebcc50..2966291e0de 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateFleetAgentConfigurationRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateFleetAgentConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateFleetRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateFleetRequest.java index fad2b6cc953..e93d8986c20 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateFleetRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateFleetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateJmsPluginRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateJmsPluginRequest.java index 61b583d02db..a220bc3f709 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateJmsPluginRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateJmsPluginRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateTaskScheduleRequest.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateTaskScheduleRequest.java index 2ff4b34be43..4e34783f98d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateTaskScheduleRequest.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/requests/UpdateTaskScheduleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.requests; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/AddFleetInstallationSitesResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/AddFleetInstallationSitesResponse.java index 73b8c8659bf..9e49dd66e87 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/AddFleetInstallationSitesResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/AddFleetInstallationSitesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CancelWorkRequestResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CancelWorkRequestResponse.java index 3bc09678c00..f9d52037393 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CancelWorkRequestResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ChangeFleetCompartmentResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ChangeFleetCompartmentResponse.java index cf14602c35f..c1d37779db9 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ChangeFleetCompartmentResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ChangeFleetCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CreateBlocklistResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CreateBlocklistResponse.java index 5abc13387d7..251bc4a301b 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CreateBlocklistResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CreateBlocklistResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CreateDrsFileResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CreateDrsFileResponse.java index fe1d0074cec..de1abff1be3 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CreateDrsFileResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CreateDrsFileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CreateFleetResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CreateFleetResponse.java index 502d56d7ef4..13934885cde 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CreateFleetResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CreateFleetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CreateJmsPluginResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CreateJmsPluginResponse.java index feec94a673f..3f2368aa2e4 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CreateJmsPluginResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CreateJmsPluginResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CreateTaskScheduleResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CreateTaskScheduleResponse.java index 6aeb7b4e6c7..5b204bce076 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CreateTaskScheduleResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/CreateTaskScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteBlocklistResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteBlocklistResponse.java index 4d8def25e4e..9d5b40ada78 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteBlocklistResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteBlocklistResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteCryptoAnalysisResultResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteCryptoAnalysisResultResponse.java index 6d2dd401c16..81b81550b26 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteCryptoAnalysisResultResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteCryptoAnalysisResultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteDrsFileResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteDrsFileResponse.java index d4d0dcfc7dd..ce610dbc90f 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteDrsFileResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteDrsFileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteFleetResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteFleetResponse.java index 01f87757bef..adf7413f346 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteFleetResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteFleetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteJavaMigrationAnalysisResultResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteJavaMigrationAnalysisResultResponse.java index 3a280e7b427..4f7bf4a4d1e 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteJavaMigrationAnalysisResultResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteJavaMigrationAnalysisResultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteJmsPluginResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteJmsPluginResponse.java index a760bba58e0..b8a5eba59c6 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteJmsPluginResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteJmsPluginResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeletePerformanceTuningAnalysisResultResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeletePerformanceTuningAnalysisResultResponse.java index 8b6244ac566..b37d4e99b21 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeletePerformanceTuningAnalysisResultResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeletePerformanceTuningAnalysisResultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteTaskScheduleResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteTaskScheduleResponse.java index c6c7881588b..739b27d8f26 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteTaskScheduleResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DeleteTaskScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DisableDrsResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DisableDrsResponse.java index 25c8aa5d858..235de1ee20d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DisableDrsResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/DisableDrsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/EnableDrsResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/EnableDrsResponse.java index 5e2b57cfbfa..64f60aba448 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/EnableDrsResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/EnableDrsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GenerateAgentDeployScriptResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GenerateAgentDeployScriptResponse.java index 35c226ecdfc..50ef67f98cc 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GenerateAgentDeployScriptResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GenerateAgentDeployScriptResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GenerateAgentInstallerConfigurationResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GenerateAgentInstallerConfigurationResponse.java index adae527d751..00e8fe113b0 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GenerateAgentInstallerConfigurationResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GenerateAgentInstallerConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GenerateLoadPipelineScriptResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GenerateLoadPipelineScriptResponse.java index b0376866f9b..af56ae41f50 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GenerateLoadPipelineScriptResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GenerateLoadPipelineScriptResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetCryptoAnalysisResultResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetCryptoAnalysisResultResponse.java index dcadcac14e1..86fee2f9876 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetCryptoAnalysisResultResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetCryptoAnalysisResultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetDrsFileResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetDrsFileResponse.java index bed21b796bc..983311d9888 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetDrsFileResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetDrsFileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetExportSettingResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetExportSettingResponse.java index 0848f5b6bcf..e085973d35c 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetExportSettingResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetExportSettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetExportStatusResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetExportStatusResponse.java index 0c38caf162e..6d518659225 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetExportStatusResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetExportStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetFleetAdvancedFeatureConfigurationResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetFleetAdvancedFeatureConfigurationResponse.java index a53440bfa90..f0e219d3c9e 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetFleetAdvancedFeatureConfigurationResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetFleetAdvancedFeatureConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetFleetAgentConfigurationResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetFleetAgentConfigurationResponse.java index 67827668538..fead993cb5a 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetFleetAgentConfigurationResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetFleetAgentConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetFleetResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetFleetResponse.java index 570186e9340..6823dbff2c8 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetFleetResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetFleetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetJavaFamilyResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetJavaFamilyResponse.java index ba34855bc05..ca937712df7 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetJavaFamilyResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetJavaFamilyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetJavaMigrationAnalysisResultResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetJavaMigrationAnalysisResultResponse.java index 82eb03245f3..d70268a2339 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetJavaMigrationAnalysisResultResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetJavaMigrationAnalysisResultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetJavaReleaseResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetJavaReleaseResponse.java index c21001d4f11..3b3ccded3bd 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetJavaReleaseResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetJavaReleaseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetJmsPluginResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetJmsPluginResponse.java index 2a5caafdc5a..611c075f6e3 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetJmsPluginResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetJmsPluginResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetPerformanceTuningAnalysisResultResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetPerformanceTuningAnalysisResultResponse.java index 2e144c51481..1331c2f1c78 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetPerformanceTuningAnalysisResultResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetPerformanceTuningAnalysisResultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetTaskScheduleResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetTaskScheduleResponse.java index ff6fdfacd63..abec770255d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetTaskScheduleResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetTaskScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetWorkRequestResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetWorkRequestResponse.java index a2d78b74736..535881f8ed4 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetWorkRequestResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListAgentInstallersResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListAgentInstallersResponse.java index da497cfefa3..d02ca832ea4 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListAgentInstallersResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListAgentInstallersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListAnnouncementsResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListAnnouncementsResponse.java index 774db38467f..d3612dcd6bf 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListAnnouncementsResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListAnnouncementsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListBlocklistsResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListBlocklistsResponse.java index a6f715fd663..b08840c62b5 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListBlocklistsResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListBlocklistsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListContainersResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListContainersResponse.java index a15bef1458b..f95be449c5e 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListContainersResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListContainersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListCryptoAnalysisResultsResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListCryptoAnalysisResultsResponse.java index d6a2bc6bf33..247c61e655f 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListCryptoAnalysisResultsResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListCryptoAnalysisResultsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListDrsFilesResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListDrsFilesResponse.java index aecb9876e4b..6a3e8158bda 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListDrsFilesResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListDrsFilesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListFleetDiagnosesResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListFleetDiagnosesResponse.java index 7f0ecc01207..bc0238c010e 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListFleetDiagnosesResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListFleetDiagnosesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListFleetErrorsResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListFleetErrorsResponse.java index c44c0575b0e..bc259bdfd69 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListFleetErrorsResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListFleetErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListFleetsResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListFleetsResponse.java index 2d0a31eec69..e426266ce6a 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListFleetsResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListFleetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListInstallationSitesResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListInstallationSitesResponse.java index 85d4f2cf88b..a76d88d1867 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListInstallationSitesResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListInstallationSitesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListJavaFamiliesResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListJavaFamiliesResponse.java index a787c431f68..c0d4ecc4e22 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListJavaFamiliesResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListJavaFamiliesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListJavaMigrationAnalysisResultsResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListJavaMigrationAnalysisResultsResponse.java index 17a1f8c0120..9b22d5bb090 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListJavaMigrationAnalysisResultsResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListJavaMigrationAnalysisResultsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListJavaReleasesResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListJavaReleasesResponse.java index b20b2476401..0180b5e23cd 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListJavaReleasesResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListJavaReleasesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListJmsPluginsResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListJmsPluginsResponse.java index d4e3f4c9fe8..64ff1b21489 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListJmsPluginsResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListJmsPluginsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListJreUsageResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListJreUsageResponse.java index 9b03e104266..a617d710aba 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListJreUsageResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListJreUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListLibraryApplicationUsageResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListLibraryApplicationUsageResponse.java index 3abc4560ccb..9b8b4827895 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListLibraryApplicationUsageResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListLibraryApplicationUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListLibraryManagedInstanceUsageResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListLibraryManagedInstanceUsageResponse.java index ce0380c0a9b..1596f99462f 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListLibraryManagedInstanceUsageResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListLibraryManagedInstanceUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListPerformanceTuningAnalysisResultsResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListPerformanceTuningAnalysisResultsResponse.java index 5a63ebab820..b1eafec7511 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListPerformanceTuningAnalysisResultsResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListPerformanceTuningAnalysisResultsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListPluginErrorsResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListPluginErrorsResponse.java index 56897b19f09..4b4eaee2606 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListPluginErrorsResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListPluginErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListTaskSchedulesResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListTaskSchedulesResponse.java index de2dcb849f7..8389e974852 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListTaskSchedulesResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListTaskSchedulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListUncorrelatedPackageApplicationUsageResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListUncorrelatedPackageApplicationUsageResponse.java index ab369aabc4c..86f606063d4 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListUncorrelatedPackageApplicationUsageResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListUncorrelatedPackageApplicationUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListUncorrelatedPackageManagedInstanceUsageResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListUncorrelatedPackageManagedInstanceUsageResponse.java index 0e06f215eb3..477d052e0a6 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListUncorrelatedPackageManagedInstanceUsageResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListUncorrelatedPackageManagedInstanceUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListUncorrelatedPackageUsageResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListUncorrelatedPackageUsageResponse.java index cb1d1b5dcf0..88df3982671 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListUncorrelatedPackageUsageResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListUncorrelatedPackageUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListWorkItemsResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListWorkItemsResponse.java index 36bbe395039..152144388a7 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListWorkItemsResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListWorkItemsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListWorkRequestErrorsResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListWorkRequestErrorsResponse.java index 7109f672d66..0cd314273ea 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListWorkRequestLogsResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListWorkRequestLogsResponse.java index 98a4a84fbe6..1f07f43377c 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListWorkRequestLogsResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListWorkRequestsResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListWorkRequestsResponse.java index ca6c044b641..8a4df1debe1 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListWorkRequestsResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RemoveFleetInstallationSitesResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RemoveFleetInstallationSitesResponse.java index 76fdad9d290..b1b916ae914 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RemoveFleetInstallationSitesResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RemoveFleetInstallationSitesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RequestCryptoAnalysesResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RequestCryptoAnalysesResponse.java index 6915999a1d9..357ab03501c 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RequestCryptoAnalysesResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RequestCryptoAnalysesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RequestDeployedApplicationMigrationAnalysesResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RequestDeployedApplicationMigrationAnalysesResponse.java index d2d9f6475eb..b6e1c314d6a 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RequestDeployedApplicationMigrationAnalysesResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RequestDeployedApplicationMigrationAnalysesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RequestJavaMigrationAnalysesResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RequestJavaMigrationAnalysesResponse.java index bac13f144f4..f26db942910 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RequestJavaMigrationAnalysesResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RequestJavaMigrationAnalysesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RequestJfrRecordingsResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RequestJfrRecordingsResponse.java index 5b1010c5f08..be8775db3c7 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RequestJfrRecordingsResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RequestJfrRecordingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RequestPerformanceTuningAnalysesResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RequestPerformanceTuningAnalysesResponse.java index ae3cf7a2613..80f67a3c5a7 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RequestPerformanceTuningAnalysesResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/RequestPerformanceTuningAnalysesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ScanJavaServerUsageResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ScanJavaServerUsageResponse.java index f019e33b5bf..3a001e684a4 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ScanJavaServerUsageResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ScanJavaServerUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ScanLibraryUsageResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ScanLibraryUsageResponse.java index ed0d17f7981..a2025e4c52f 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ScanLibraryUsageResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/ScanLibraryUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeApplicationInstallationUsageResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeApplicationInstallationUsageResponse.java index 76c5361b674..5f90cd811a4 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeApplicationInstallationUsageResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeApplicationInstallationUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeApplicationUsageResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeApplicationUsageResponse.java index eebe650f4dd..ebd1697e52a 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeApplicationUsageResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeApplicationUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeDeployedApplicationInstallationUsageResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeDeployedApplicationInstallationUsageResponse.java index 82df4eec6ea..acd68851826 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeDeployedApplicationInstallationUsageResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeDeployedApplicationInstallationUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeDeployedApplicationUsageResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeDeployedApplicationUsageResponse.java index d229f8a94d9..249e3905a78 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeDeployedApplicationUsageResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeDeployedApplicationUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeFleetErrorsResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeFleetErrorsResponse.java index 9bbfe0dfeea..3d219e6955f 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeFleetErrorsResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeFleetErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeInstallationUsageResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeInstallationUsageResponse.java index bff2ce40f1f..a2c0191b448 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeInstallationUsageResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeInstallationUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeJavaServerInstanceUsageResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeJavaServerInstanceUsageResponse.java index 6ec5e7bc124..c42412d5c61 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeJavaServerInstanceUsageResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeJavaServerInstanceUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeJavaServerUsageResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeJavaServerUsageResponse.java index 96280721d14..0908716978f 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeJavaServerUsageResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeJavaServerUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeJreUsageResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeJreUsageResponse.java index 3855f23a25d..bc840f465a4 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeJreUsageResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeJreUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeLibraryInventoryResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeLibraryInventoryResponse.java index ac6a6cd30fb..92315b07399 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeLibraryInventoryResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeLibraryInventoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeLibraryUsageResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeLibraryUsageResponse.java index 4e7b44aa75c..c3aee5c0260 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeLibraryUsageResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeLibraryUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeManagedInstanceUsageResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeManagedInstanceUsageResponse.java index 1c6a18e3ec2..2657654121e 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeManagedInstanceUsageResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeManagedInstanceUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizePluginErrorsResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizePluginErrorsResponse.java index f29cb73675d..6f62d0c426e 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizePluginErrorsResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizePluginErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeResourceInventoryResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeResourceInventoryResponse.java index 45846dcde1b..2df8a34d72b 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeResourceInventoryResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/SummarizeResourceInventoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateDrsFileResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateDrsFileResponse.java index 30a57900e31..2314160da01 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateDrsFileResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateDrsFileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateExportSettingResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateExportSettingResponse.java index adc936d3a73..36b47dc8eeb 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateExportSettingResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateExportSettingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateFleetAdvancedFeatureConfigurationResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateFleetAdvancedFeatureConfigurationResponse.java index 07fd4677096..c955ceb6c55 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateFleetAdvancedFeatureConfigurationResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateFleetAdvancedFeatureConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateFleetAgentConfigurationResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateFleetAgentConfigurationResponse.java index bbd15434889..77c68136fac 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateFleetAgentConfigurationResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateFleetAgentConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateFleetResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateFleetResponse.java index 923c3dc0a5b..ebfc6fbf9a4 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateFleetResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateFleetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateJmsPluginResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateJmsPluginResponse.java index 724fc6546f9..ce4b6c7e12d 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateJmsPluginResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateJmsPluginResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateTaskScheduleResponse.java b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateTaskScheduleResponse.java index 37ae704d283..1263d4cc7e2 100644 --- a/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateTaskScheduleResponse.java +++ b/bmc-jms/src/main/java/com/oracle/bmc/jms/responses/UpdateTaskScheduleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jms.responses; diff --git a/bmc-jms/src/main/resources/com/oracle/bmc/jms/client.properties b/bmc-jms/src/main/resources/com/oracle/bmc/jms/client.properties index c5dfebe14a1..871909f12e9 100644 --- a/bmc-jms/src/main/resources/com/oracle/bmc/jms/client.properties +++ b/bmc-jms/src/main/resources/com/oracle/bmc/jms/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-jmsjavadownloads/pom.xml b/bmc-jmsjavadownloads/pom.xml index f9ce0d000b9..d5e8ade80a5 100644 --- a/bmc-jmsjavadownloads/pom.xml +++ b/bmc-jmsjavadownloads/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-jmsjavadownloads @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownload.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownload.java index eb343410acd..486778c5c20 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownload.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownload.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownloadAsync.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownloadAsync.java index ccd9524a8ff..b5735f08d74 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownloadAsync.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownloadAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownloadAsyncClient.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownloadAsyncClient.java index 26d4ffd281b..b585ebf26a2 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownloadAsyncClient.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownloadAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownloadClient.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownloadClient.java index c3774cdf8eb..87af1d80271 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownloadClient.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownloadClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownloadPaginators.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownloadPaginators.java index e5d08affaae..a58975ffd28 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownloadPaginators.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownloadPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownloadWaiters.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownloadWaiters.java index cabe05814f7..243b7e72e30 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownloadWaiters.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/JavaDownloadWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/ActionType.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/ActionType.java index 992708f7165..dafed2035cb 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/ActionType.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/AggregationSortBy.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/AggregationSortBy.java index 94f90187058..eafb683f340 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/AggregationSortBy.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/AggregationSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/ChecksumType.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/ChecksumType.java index 076a59aaca6..2281a62ca64 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/ChecksumType.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/ChecksumType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/CreateJavaDownloadReportDetails.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/CreateJavaDownloadReportDetails.java index 78cd49c2b6a..ec90f358b01 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/CreateJavaDownloadReportDetails.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/CreateJavaDownloadReportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/CreateJavaDownloadTokenDetails.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/CreateJavaDownloadTokenDetails.java index 943d564756c..917dcf1a5b5 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/CreateJavaDownloadTokenDetails.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/CreateJavaDownloadTokenDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/CreateJavaLicenseAcceptanceRecordDetails.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/CreateJavaLicenseAcceptanceRecordDetails.java index dcd6ba28897..a1e25884bb1 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/CreateJavaLicenseAcceptanceRecordDetails.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/CreateJavaLicenseAcceptanceRecordDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/DownloadUrl.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/DownloadUrl.java index 6cc6e3edf41..9449461c1f3 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/DownloadUrl.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/DownloadUrl.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/DownloadUrlType.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/DownloadUrlType.java index 5b184c661b1..f4d31d07156 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/DownloadUrlType.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/DownloadUrlType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/GenerateArtifactDownloadUrlDetails.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/GenerateArtifactDownloadUrlDetails.java index b1307ce8af5..8179419dca1 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/GenerateArtifactDownloadUrlDetails.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/GenerateArtifactDownloadUrlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadCountAggregation.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadCountAggregation.java index 7e16d248e4b..e11f2cf0a16 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadCountAggregation.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadCountAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadCountAggregationCollection.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadCountAggregationCollection.java index ce13569bf3a..c658b207bbe 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadCountAggregationCollection.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadCountAggregationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadCountAggregationType.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadCountAggregationType.java index def46ac6ac1..f6da6030e30 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadCountAggregationType.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadCountAggregationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadRecord.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadRecord.java index a600771e371..2263ef3fc0a 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadRecord.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadRecord.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadRecordCollection.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadRecordCollection.java index 47e49a718b6..27715118833 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadRecordCollection.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadRecordCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadRecordSortBy.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadRecordSortBy.java index 6313b1b45d1..e7928d1e41e 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadRecordSortBy.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadRecordSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadRecordSummary.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadRecordSummary.java index 3198496877d..a778241ba4d 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadRecordSummary.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadRecordSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadReport.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadReport.java index 49688be215f..3f721943292 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadReport.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadReportCollection.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadReportCollection.java index b182813fabe..29f6e482a75 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadReportCollection.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadReportCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadReportFormat.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadReportFormat.java index 73a3a049ad4..9ac827a0245 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadReportFormat.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadReportFormat.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadReportSortBy.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadReportSortBy.java index 542a8188448..0c0f4e5f086 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadReportSortBy.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadReportSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadReportSummary.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadReportSummary.java index 641869f5066..13c11f7c2e4 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadReportSummary.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadReportSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadToken.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadToken.java index 60b544500e1..0950e7a254a 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadToken.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadToken.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadTokenCollection.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadTokenCollection.java index 5a80e0781fa..d724543b945 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadTokenCollection.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadTokenCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadTokenSummary.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadTokenSummary.java index f1e88c987d6..fcb710d3f16 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadTokenSummary.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaDownloadTokenSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicense.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicense.java index 8a4bc0ee32c..9ef60820f8d 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicense.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicense.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicenseAcceptanceRecord.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicenseAcceptanceRecord.java index 3f36b9682f7..adb9cdca284 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicenseAcceptanceRecord.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicenseAcceptanceRecord.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicenseAcceptanceRecordCollection.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicenseAcceptanceRecordCollection.java index 71641f1d295..62fc4d53959 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicenseAcceptanceRecordCollection.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicenseAcceptanceRecordCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicenseAcceptanceRecordSummary.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicenseAcceptanceRecordSummary.java index 241b49049ad..208fef6e568 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicenseAcceptanceRecordSummary.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicenseAcceptanceRecordSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicenseCollection.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicenseCollection.java index 11f7dddc530..41597a92e1a 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicenseCollection.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicenseCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicenseSummary.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicenseSummary.java index 60fc46267b5..870ac94d9d3 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicenseSummary.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/JavaLicenseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/LicenseAcceptanceSortBy.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/LicenseAcceptanceSortBy.java index c05655c1651..1c3b8b74d6d 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/LicenseAcceptanceSortBy.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/LicenseAcceptanceSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/LicenseAcceptanceStatus.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/LicenseAcceptanceStatus.java index 893516be0cf..74c13689196 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/LicenseAcceptanceStatus.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/LicenseAcceptanceStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/LicenseSortBy.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/LicenseSortBy.java index c8fd3389c4a..fdf6e870382 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/LicenseSortBy.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/LicenseSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/LicenseType.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/LicenseType.java index e9ca2e0a5bf..6c4828549b5 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/LicenseType.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/LicenseType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/LifecycleState.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/LifecycleState.java index d77fd825fdb..d9514ca0f67 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/LifecycleState.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/LifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/OperationStatus.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/OperationStatus.java index 498e85eaa76..031a7f3ac91 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/OperationStatus.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/OperationType.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/OperationType.java index 24a0f13f9e9..73d5c3b81d0 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/OperationType.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/Principal.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/Principal.java index 4df2bfcfe13..170197d6371 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/Principal.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/Principal.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/RequestSummarizedJavaDownloadCountsDetails.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/RequestSummarizedJavaDownloadCountsDetails.java index 932705b43ad..919dedd9ac8 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/RequestSummarizedJavaDownloadCountsDetails.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/RequestSummarizedJavaDownloadCountsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/SortOrder.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/SortOrder.java index 36c294244f1..c7691308b0f 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/SortOrder.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/TokenLifecycleDetails.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/TokenLifecycleDetails.java index bc82cab920f..9a615109aad 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/TokenLifecycleDetails.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/TokenLifecycleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/TokenSortBy.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/TokenSortBy.java index a115e164635..02c97c79823 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/TokenSortBy.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/TokenSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/UpdateJavaDownloadTokenDetails.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/UpdateJavaDownloadTokenDetails.java index fe7dd9ac176..a83639ca422 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/UpdateJavaDownloadTokenDetails.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/UpdateJavaDownloadTokenDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/UpdateJavaLicenseAcceptanceRecordDetails.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/UpdateJavaLicenseAcceptanceRecordDetails.java index 38083dba510..77c7d284229 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/UpdateJavaLicenseAcceptanceRecordDetails.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/UpdateJavaLicenseAcceptanceRecordDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequest.java index 58feffceed7..e54de1528dc 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestError.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestError.java index 773aa7b66f3..89d02e92e0b 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestError.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestErrorCollection.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestErrorCollection.java index 81a40eebca6..defed63a5b9 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestErrorCollection.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestLogEntry.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestLogEntry.java index 069a98e892b..e646a7cfa5a 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestLogEntry.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestLogEntryCollection.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestLogEntryCollection.java index b8b47221864..b4ac94b2396 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestLogEntryCollection.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestResource.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestResource.java index a4e1a2a98e8..d76e0c650a6 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestResource.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestSummary.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestSummary.java index 4fc100871af..76cb7362748 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestSummary.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestSummaryCollection.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestSummaryCollection.java index 3c1bb57bb3d..bb5b7fa970c 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestSummaryCollection.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.model; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/CancelWorkRequestRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/CancelWorkRequestRequest.java index 892e4888d3b..cc71e1057b3 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/CancelWorkRequestRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/CreateJavaDownloadReportRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/CreateJavaDownloadReportRequest.java index d97f05b38ef..93d9b338439 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/CreateJavaDownloadReportRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/CreateJavaDownloadReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/CreateJavaDownloadTokenRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/CreateJavaDownloadTokenRequest.java index fe834cee32a..ae4cd4b85e9 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/CreateJavaDownloadTokenRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/CreateJavaDownloadTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/CreateJavaLicenseAcceptanceRecordRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/CreateJavaLicenseAcceptanceRecordRequest.java index 9e81c80c091..a7640f98aa8 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/CreateJavaLicenseAcceptanceRecordRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/CreateJavaLicenseAcceptanceRecordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/DeleteJavaDownloadReportRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/DeleteJavaDownloadReportRequest.java index 9ac5a24aacd..c56e85a657e 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/DeleteJavaDownloadReportRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/DeleteJavaDownloadReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/DeleteJavaDownloadTokenRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/DeleteJavaDownloadTokenRequest.java index 759d20b913a..df03b31a1a3 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/DeleteJavaDownloadTokenRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/DeleteJavaDownloadTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/DeleteJavaLicenseAcceptanceRecordRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/DeleteJavaLicenseAcceptanceRecordRequest.java index 5e361b79d29..c40fa14fd91 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/DeleteJavaLicenseAcceptanceRecordRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/DeleteJavaLicenseAcceptanceRecordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GenerateArtifactDownloadUrlRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GenerateArtifactDownloadUrlRequest.java index 6f80bcd26cb..8f004f3e9a3 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GenerateArtifactDownloadUrlRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GenerateArtifactDownloadUrlRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetJavaDownloadReportContentRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetJavaDownloadReportContentRequest.java index bfae2056188..3c57d52e024 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetJavaDownloadReportContentRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetJavaDownloadReportContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetJavaDownloadReportRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetJavaDownloadReportRequest.java index d643ff29198..5e9f60fd2c9 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetJavaDownloadReportRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetJavaDownloadReportRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetJavaDownloadTokenRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetJavaDownloadTokenRequest.java index de2e0758484..8558e30ecbf 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetJavaDownloadTokenRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetJavaDownloadTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetJavaLicenseAcceptanceRecordRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetJavaLicenseAcceptanceRecordRequest.java index 9d87991edb7..665c28ce172 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetJavaLicenseAcceptanceRecordRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetJavaLicenseAcceptanceRecordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetJavaLicenseRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetJavaLicenseRequest.java index c364aea9678..62c5b61b642 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetJavaLicenseRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetJavaLicenseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetWorkRequestRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetWorkRequestRequest.java index 93535660002..c5665e47961 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetWorkRequestRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListJavaDownloadRecordsRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListJavaDownloadRecordsRequest.java index 739c3976193..d6484eea35d 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListJavaDownloadRecordsRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListJavaDownloadRecordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListJavaDownloadReportsRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListJavaDownloadReportsRequest.java index 4dcdb27622e..8982dd53ff6 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListJavaDownloadReportsRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListJavaDownloadReportsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListJavaDownloadTokensRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListJavaDownloadTokensRequest.java index ac05e4d7d54..57a0ba92024 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListJavaDownloadTokensRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListJavaDownloadTokensRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListJavaLicenseAcceptanceRecordsRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListJavaLicenseAcceptanceRecordsRequest.java index e5396b085b8..19e770b87e8 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListJavaLicenseAcceptanceRecordsRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListJavaLicenseAcceptanceRecordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListJavaLicensesRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListJavaLicensesRequest.java index ca4b27ed62f..7aa02e2016b 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListJavaLicensesRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListJavaLicensesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListWorkRequestErrorsRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListWorkRequestErrorsRequest.java index 8826c18173a..50e3025772f 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListWorkRequestLogsRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListWorkRequestLogsRequest.java index 653f70ef31a..ab04d3c542f 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListWorkRequestLogsRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListWorkRequestsRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListWorkRequestsRequest.java index 375f075ff51..9ed072e9156 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListWorkRequestsRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/RequestSummarizedJavaDownloadCountsRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/RequestSummarizedJavaDownloadCountsRequest.java index d3b52d88e1d..19e88217d3b 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/RequestSummarizedJavaDownloadCountsRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/RequestSummarizedJavaDownloadCountsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/UpdateJavaDownloadTokenRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/UpdateJavaDownloadTokenRequest.java index b6e64ff1de1..3ff53f5526f 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/UpdateJavaDownloadTokenRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/UpdateJavaDownloadTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/UpdateJavaLicenseAcceptanceRecordRequest.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/UpdateJavaLicenseAcceptanceRecordRequest.java index 7a9c7952164..bf774aaefed 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/UpdateJavaLicenseAcceptanceRecordRequest.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/requests/UpdateJavaLicenseAcceptanceRecordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.requests; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/CancelWorkRequestResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/CancelWorkRequestResponse.java index 6bb38a02604..04c5798ef69 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/CancelWorkRequestResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/CreateJavaDownloadReportResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/CreateJavaDownloadReportResponse.java index fbac2895347..b256c2cf845 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/CreateJavaDownloadReportResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/CreateJavaDownloadReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/CreateJavaDownloadTokenResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/CreateJavaDownloadTokenResponse.java index 59390fb3385..d0b8c85aa9e 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/CreateJavaDownloadTokenResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/CreateJavaDownloadTokenResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/CreateJavaLicenseAcceptanceRecordResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/CreateJavaLicenseAcceptanceRecordResponse.java index d69cbe5f35e..4ecad5658da 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/CreateJavaLicenseAcceptanceRecordResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/CreateJavaLicenseAcceptanceRecordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/DeleteJavaDownloadReportResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/DeleteJavaDownloadReportResponse.java index c5be8d07942..2eec2703715 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/DeleteJavaDownloadReportResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/DeleteJavaDownloadReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/DeleteJavaDownloadTokenResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/DeleteJavaDownloadTokenResponse.java index 8ff279928f9..4182e1061b3 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/DeleteJavaDownloadTokenResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/DeleteJavaDownloadTokenResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/DeleteJavaLicenseAcceptanceRecordResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/DeleteJavaLicenseAcceptanceRecordResponse.java index 2dde91539a8..d0cbff2d64a 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/DeleteJavaLicenseAcceptanceRecordResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/DeleteJavaLicenseAcceptanceRecordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GenerateArtifactDownloadUrlResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GenerateArtifactDownloadUrlResponse.java index 945c139e655..b0b3536d693 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GenerateArtifactDownloadUrlResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GenerateArtifactDownloadUrlResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetJavaDownloadReportContentResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetJavaDownloadReportContentResponse.java index 51997be068d..9f956b4a419 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetJavaDownloadReportContentResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetJavaDownloadReportContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetJavaDownloadReportResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetJavaDownloadReportResponse.java index f30464bc7d1..9fa363ccb8a 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetJavaDownloadReportResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetJavaDownloadReportResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetJavaDownloadTokenResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetJavaDownloadTokenResponse.java index f558fb5a88b..5fd5aa502d7 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetJavaDownloadTokenResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetJavaDownloadTokenResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetJavaLicenseAcceptanceRecordResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetJavaLicenseAcceptanceRecordResponse.java index ba4d6e1046c..6de17e309b3 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetJavaLicenseAcceptanceRecordResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetJavaLicenseAcceptanceRecordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetJavaLicenseResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetJavaLicenseResponse.java index 0f046bc39f3..ec12a214bd5 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetJavaLicenseResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetJavaLicenseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetWorkRequestResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetWorkRequestResponse.java index 67676e287a6..cb7f4eb78dc 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetWorkRequestResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListJavaDownloadRecordsResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListJavaDownloadRecordsResponse.java index 8e4b66a9a82..3c34056ccd1 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListJavaDownloadRecordsResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListJavaDownloadRecordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListJavaDownloadReportsResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListJavaDownloadReportsResponse.java index 89bb1bcb2d3..1e364ac09ee 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListJavaDownloadReportsResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListJavaDownloadReportsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListJavaDownloadTokensResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListJavaDownloadTokensResponse.java index bd074eaa8a9..6b85134d310 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListJavaDownloadTokensResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListJavaDownloadTokensResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListJavaLicenseAcceptanceRecordsResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListJavaLicenseAcceptanceRecordsResponse.java index cc71bc79722..410e1aeb4a8 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListJavaLicenseAcceptanceRecordsResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListJavaLicenseAcceptanceRecordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListJavaLicensesResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListJavaLicensesResponse.java index de0ba69001c..c385472ecf3 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListJavaLicensesResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListJavaLicensesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListWorkRequestErrorsResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListWorkRequestErrorsResponse.java index 967cffa2732..137a2928527 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListWorkRequestLogsResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListWorkRequestLogsResponse.java index 942c78bb117..c597156ec7d 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListWorkRequestLogsResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListWorkRequestsResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListWorkRequestsResponse.java index e394325a360..16bc3b5ec43 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListWorkRequestsResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/RequestSummarizedJavaDownloadCountsResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/RequestSummarizedJavaDownloadCountsResponse.java index 7020a86bfdd..9c5bdd19fdc 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/RequestSummarizedJavaDownloadCountsResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/RequestSummarizedJavaDownloadCountsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/UpdateJavaDownloadTokenResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/UpdateJavaDownloadTokenResponse.java index 819f7443541..36fdf552021 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/UpdateJavaDownloadTokenResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/UpdateJavaDownloadTokenResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/UpdateJavaLicenseAcceptanceRecordResponse.java b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/UpdateJavaLicenseAcceptanceRecordResponse.java index a756bb8f5e1..b7e295c358a 100644 --- a/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/UpdateJavaLicenseAcceptanceRecordResponse.java +++ b/bmc-jmsjavadownloads/src/main/java/com/oracle/bmc/jmsjavadownloads/responses/UpdateJavaLicenseAcceptanceRecordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsjavadownloads.responses; diff --git a/bmc-jmsjavadownloads/src/main/resources/com/oracle/bmc/jmsjavadownloads/client.properties b/bmc-jmsjavadownloads/src/main/resources/com/oracle/bmc/jmsjavadownloads/client.properties index 41d823568a9..a5724efddd8 100644 --- a/bmc-jmsjavadownloads/src/main/resources/com/oracle/bmc/jmsjavadownloads/client.properties +++ b/bmc-jmsjavadownloads/src/main/resources/com/oracle/bmc/jmsjavadownloads/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-jmsutils/pom.xml b/bmc-jmsutils/pom.xml index be45bc369dc..550ea96664d 100644 --- a/bmc-jmsutils/pom.xml +++ b/bmc-jmsutils/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-jmsutils @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtils.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtils.java index 59169f1bfce..491fdb764ca 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtils.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtils.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtilsAsync.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtilsAsync.java index 7ac0b71dbf9..244d9ecb48b 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtilsAsync.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtilsAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtilsAsyncClient.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtilsAsyncClient.java index 8aa9a3c5184..d3cc3dc04d4 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtilsAsyncClient.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtilsAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtilsClient.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtilsClient.java index 8efe542b79b..5b7474af2aa 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtilsClient.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtilsClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtilsPaginators.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtilsPaginators.java index d650cc939db..31657b31a35 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtilsPaginators.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtilsPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtilsWaiters.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtilsWaiters.java index 331e67b8afd..d962fcb3d7b 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtilsWaiters.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/JmsUtilsWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/ActionType.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/ActionType.java index bbb3af2019f..faf926f977a 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/ActionType.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/AnalyzeApplicationsConfiguration.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/AnalyzeApplicationsConfiguration.java index ef3202b93ab..3a440284ab8 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/AnalyzeApplicationsConfiguration.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/AnalyzeApplicationsConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/BasicWorkItemDetails.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/BasicWorkItemDetails.java index 6dc947cd312..7edaefce934 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/BasicWorkItemDetails.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/BasicWorkItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationAnalysis.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationAnalysis.java index 7a8ad513020..c4013181566 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationAnalysis.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationAnalysis.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationAnalysisCollection.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationAnalysisCollection.java index aa222b103ee..024a84a089a 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationAnalysisCollection.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationAnalysisCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationAnalysisSortBy.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationAnalysisSortBy.java index f7a427e855f..72b49072a1f 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationAnalysisSortBy.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationAnalysisSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationAnalysisSummary.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationAnalysisSummary.java index 3c653d2d759..781e11c5a05 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationAnalysisSummary.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationAnalysisSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationAnalysisTarget.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationAnalysisTarget.java index 90bd81bfe46..c72e0b51949 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationAnalysisTarget.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationAnalysisTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationWorkItemDetails.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationWorkItemDetails.java index 0156fb1c70f..c5218a42777 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationWorkItemDetails.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/JavaMigrationWorkItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/OperationStatus.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/OperationStatus.java index d9a6663f1d8..f3bbf8b86aa 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/OperationStatus.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/OperationType.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/OperationType.java index a2c3ede8835..f569cc92e21 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/OperationType.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningAnalysis.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningAnalysis.java index c253a6a51c0..31c97f09d2e 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningAnalysis.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningAnalysis.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningAnalysisCollection.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningAnalysisCollection.java index 9e1a8f2c81d..2e650ba9abd 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningAnalysisCollection.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningAnalysisCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningAnalysisSortBy.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningAnalysisSortBy.java index f61e2070a91..86816c4af56 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningAnalysisSortBy.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningAnalysisSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningAnalysisSummary.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningAnalysisSummary.java index 4fff317d201..5097463fe79 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningAnalysisSummary.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningAnalysisSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningAnalysisTarget.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningAnalysisTarget.java index df158f56029..2243bcd2ab8 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningAnalysisTarget.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningAnalysisTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningWorkItemDetails.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningWorkItemDetails.java index 859262e0998..0eb81e35e0c 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningWorkItemDetails.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/PerformanceTuningWorkItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/Principal.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/Principal.java index 10ad050ac6e..7fa41a44f30 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/Principal.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/Principal.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/RequestJavaMigrationAnalysisDetails.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/RequestJavaMigrationAnalysisDetails.java index 785354f4f11..28eb039c63f 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/RequestJavaMigrationAnalysisDetails.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/RequestJavaMigrationAnalysisDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/RequestPerformanceTuningAnalysisDetails.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/RequestPerformanceTuningAnalysisDetails.java index 04f800ba2fc..87d4cb9c078 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/RequestPerformanceTuningAnalysisDetails.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/RequestPerformanceTuningAnalysisDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/SortOrder.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/SortOrder.java index 785aad21c0c..9422989132b 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/SortOrder.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/SubscriptionAcknowledgmentConfiguration.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/SubscriptionAcknowledgmentConfiguration.java index de8d87b6f13..cf0ab9d4727 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/SubscriptionAcknowledgmentConfiguration.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/SubscriptionAcknowledgmentConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/UpdateAnalyzeApplicationsConfigurationDetails.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/UpdateAnalyzeApplicationsConfigurationDetails.java index a5d4ca3d1cd..4a1be57f5f9 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/UpdateAnalyzeApplicationsConfigurationDetails.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/UpdateAnalyzeApplicationsConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/UpdateSubscriptionAcknowledgmentConfigurationDetails.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/UpdateSubscriptionAcknowledgmentConfigurationDetails.java index 4b6d13fe4f3..6af9faa30ab 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/UpdateSubscriptionAcknowledgmentConfigurationDetails.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/UpdateSubscriptionAcknowledgmentConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkItemCollection.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkItemCollection.java index 44d32e00ca4..9c0e8ebc342 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkItemCollection.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkItemCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkItemDetails.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkItemDetails.java index b51b0480660..d2f8b740001 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkItemDetails.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkItemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkItemStatus.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkItemStatus.java index 98174816a37..4e84bff3916 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkItemStatus.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkItemStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkItemSummary.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkItemSummary.java index 6540be6e529..7e018ffcfdf 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkItemSummary.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkItemSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkItemType.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkItemType.java index 9faeeb294b7..3b0a8e2a49b 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkItemType.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkItemType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequest.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequest.java index b988e30e5a3..959debe27f9 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequest.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestError.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestError.java index 1adff9491ac..07491d40053 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestError.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestErrorCollection.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestErrorCollection.java index 0cb0e1f97d0..b3710e031e8 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestErrorCollection.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestLogEntry.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestLogEntry.java index 88a19b02dce..bf26886cbe5 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestLogEntry.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestLogEntryCollection.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestLogEntryCollection.java index a0486282c48..6b3e6cecda1 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestLogEntryCollection.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestResource.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestResource.java index d49b26e29a5..afbad63e752 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestResource.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestResourceMetadataKey.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestResourceMetadataKey.java index 0bc1aa3658e..73c795b065f 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestResourceMetadataKey.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestSummary.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestSummary.java index a1e86166e34..328874fc9b1 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestSummary.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestSummaryCollection.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestSummaryCollection.java index c288b5d4dee..21007d2524d 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestSummaryCollection.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.model; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/CancelWorkRequestRequest.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/CancelWorkRequestRequest.java index cad41ffedfa..70271f83529 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/CancelWorkRequestRequest.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.requests; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/DeleteJavaMigrationAnalysisRequest.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/DeleteJavaMigrationAnalysisRequest.java index 08d86c41335..c065e4d0e56 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/DeleteJavaMigrationAnalysisRequest.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/DeleteJavaMigrationAnalysisRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.requests; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/DeletePerformanceTuningAnalysisRequest.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/DeletePerformanceTuningAnalysisRequest.java index 2150ad24ed6..1354d297398 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/DeletePerformanceTuningAnalysisRequest.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/DeletePerformanceTuningAnalysisRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.requests; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/GetAnalyzeApplicationsConfigurationRequest.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/GetAnalyzeApplicationsConfigurationRequest.java index 37ea41e820f..420717a2fd5 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/GetAnalyzeApplicationsConfigurationRequest.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/GetAnalyzeApplicationsConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.requests; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/GetJavaMigrationAnalysisRequest.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/GetJavaMigrationAnalysisRequest.java index 0983e322d98..85c6783e03d 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/GetJavaMigrationAnalysisRequest.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/GetJavaMigrationAnalysisRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.requests; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/GetPerformanceTuningAnalysisRequest.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/GetPerformanceTuningAnalysisRequest.java index 726c40e2309..5674d99a6fb 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/GetPerformanceTuningAnalysisRequest.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/GetPerformanceTuningAnalysisRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.requests; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/GetSubscriptionAcknowledgmentConfigurationRequest.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/GetSubscriptionAcknowledgmentConfigurationRequest.java index 01fc318b46a..704b5006fb9 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/GetSubscriptionAcknowledgmentConfigurationRequest.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/GetSubscriptionAcknowledgmentConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.requests; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/GetWorkRequestRequest.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/GetWorkRequestRequest.java index 8045d12715a..b85b9519310 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/GetWorkRequestRequest.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.requests; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListJavaMigrationAnalysisRequest.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListJavaMigrationAnalysisRequest.java index 8ae19da5a04..cc183c0e5d8 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListJavaMigrationAnalysisRequest.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListJavaMigrationAnalysisRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.requests; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListPerformanceTuningAnalysisRequest.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListPerformanceTuningAnalysisRequest.java index 42d3528da39..7139da0a25c 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListPerformanceTuningAnalysisRequest.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListPerformanceTuningAnalysisRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.requests; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListWorkItemsRequest.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListWorkItemsRequest.java index 889e73b3aff..8eab8062a1e 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListWorkItemsRequest.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListWorkItemsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.requests; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListWorkRequestErrorsRequest.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListWorkRequestErrorsRequest.java index c74a226106f..8b301b26825 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.requests; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListWorkRequestLogsRequest.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListWorkRequestLogsRequest.java index b7eaa53db1d..366d137fd23 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListWorkRequestLogsRequest.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.requests; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListWorkRequestsRequest.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListWorkRequestsRequest.java index 23efdb7d32e..b533c0932bd 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListWorkRequestsRequest.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.requests; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/RequestJavaMigrationAnalysisRequest.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/RequestJavaMigrationAnalysisRequest.java index b0f857bff55..cd3858f14c2 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/RequestJavaMigrationAnalysisRequest.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/RequestJavaMigrationAnalysisRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.requests; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/RequestPerformanceTuningAnalysisRequest.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/RequestPerformanceTuningAnalysisRequest.java index eb7ed9e8090..7e0bd51277d 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/RequestPerformanceTuningAnalysisRequest.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/RequestPerformanceTuningAnalysisRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.requests; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/UpdateAnalyzeApplicationsConfigurationRequest.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/UpdateAnalyzeApplicationsConfigurationRequest.java index d3db23db5b8..c6cebf2bb2e 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/UpdateAnalyzeApplicationsConfigurationRequest.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/UpdateAnalyzeApplicationsConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.requests; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/UpdateSubscriptionAcknowledgmentConfigurationRequest.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/UpdateSubscriptionAcknowledgmentConfigurationRequest.java index 17776cdb499..9dcf19aaafc 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/UpdateSubscriptionAcknowledgmentConfigurationRequest.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/requests/UpdateSubscriptionAcknowledgmentConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.requests; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/CancelWorkRequestResponse.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/CancelWorkRequestResponse.java index 312120defeb..d1243461a9c 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/CancelWorkRequestResponse.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.responses; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/DeleteJavaMigrationAnalysisResponse.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/DeleteJavaMigrationAnalysisResponse.java index d2c7c917471..597f15ed7af 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/DeleteJavaMigrationAnalysisResponse.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/DeleteJavaMigrationAnalysisResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.responses; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/DeletePerformanceTuningAnalysisResponse.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/DeletePerformanceTuningAnalysisResponse.java index d29a12e9ce4..ab8494113fa 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/DeletePerformanceTuningAnalysisResponse.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/DeletePerformanceTuningAnalysisResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.responses; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/GetAnalyzeApplicationsConfigurationResponse.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/GetAnalyzeApplicationsConfigurationResponse.java index b906d9820f3..bb806512fa6 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/GetAnalyzeApplicationsConfigurationResponse.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/GetAnalyzeApplicationsConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.responses; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/GetJavaMigrationAnalysisResponse.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/GetJavaMigrationAnalysisResponse.java index a93c70dfbd6..efcc7be5192 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/GetJavaMigrationAnalysisResponse.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/GetJavaMigrationAnalysisResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.responses; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/GetPerformanceTuningAnalysisResponse.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/GetPerformanceTuningAnalysisResponse.java index a9c8c6d16a3..ce73f2edb78 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/GetPerformanceTuningAnalysisResponse.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/GetPerformanceTuningAnalysisResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.responses; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/GetSubscriptionAcknowledgmentConfigurationResponse.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/GetSubscriptionAcknowledgmentConfigurationResponse.java index c0bba5a3f43..ca1cabe3530 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/GetSubscriptionAcknowledgmentConfigurationResponse.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/GetSubscriptionAcknowledgmentConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.responses; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/GetWorkRequestResponse.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/GetWorkRequestResponse.java index 0f6d0384a9a..a8e763dd277 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/GetWorkRequestResponse.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.responses; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListJavaMigrationAnalysisResponse.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListJavaMigrationAnalysisResponse.java index 1c7d0c9f5dd..743e7468e00 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListJavaMigrationAnalysisResponse.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListJavaMigrationAnalysisResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.responses; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListPerformanceTuningAnalysisResponse.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListPerformanceTuningAnalysisResponse.java index 93a163a7fdb..daddbf64d66 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListPerformanceTuningAnalysisResponse.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListPerformanceTuningAnalysisResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.responses; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListWorkItemsResponse.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListWorkItemsResponse.java index 3f82e825282..b11a9a5178c 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListWorkItemsResponse.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListWorkItemsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.responses; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListWorkRequestErrorsResponse.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListWorkRequestErrorsResponse.java index 74910f37b98..21b1a83f1f4 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.responses; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListWorkRequestLogsResponse.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListWorkRequestLogsResponse.java index 351996cd670..59bc52fa469 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListWorkRequestLogsResponse.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.responses; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListWorkRequestsResponse.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListWorkRequestsResponse.java index 56c6f0700b0..102a1dfe08a 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListWorkRequestsResponse.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.responses; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/RequestJavaMigrationAnalysisResponse.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/RequestJavaMigrationAnalysisResponse.java index aec4f8320f7..14c668d6710 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/RequestJavaMigrationAnalysisResponse.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/RequestJavaMigrationAnalysisResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.responses; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/RequestPerformanceTuningAnalysisResponse.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/RequestPerformanceTuningAnalysisResponse.java index f1a5f19ffcf..6e8159b267a 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/RequestPerformanceTuningAnalysisResponse.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/RequestPerformanceTuningAnalysisResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.responses; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/UpdateAnalyzeApplicationsConfigurationResponse.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/UpdateAnalyzeApplicationsConfigurationResponse.java index 9174e05ab42..b884189532f 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/UpdateAnalyzeApplicationsConfigurationResponse.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/UpdateAnalyzeApplicationsConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.responses; diff --git a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/UpdateSubscriptionAcknowledgmentConfigurationResponse.java b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/UpdateSubscriptionAcknowledgmentConfigurationResponse.java index e8f975b49a1..cecd33a876b 100644 --- a/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/UpdateSubscriptionAcknowledgmentConfigurationResponse.java +++ b/bmc-jmsutils/src/main/java/com/oracle/bmc/jmsutils/responses/UpdateSubscriptionAcknowledgmentConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.jmsutils.responses; diff --git a/bmc-jmsutils/src/main/resources/com/oracle/bmc/jmsutils/client.properties b/bmc-jmsutils/src/main/resources/com/oracle/bmc/jmsutils/client.properties index df19664aef2..6159d377873 100644 --- a/bmc-jmsutils/src/main/resources/com/oracle/bmc/jmsutils/client.properties +++ b/bmc-jmsutils/src/main/resources/com/oracle/bmc/jmsutils/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-keymanagement/pom.xml b/bmc-keymanagement/pom.xml index 04893735ad4..803759842f1 100644 --- a/bmc-keymanagement/pom.xml +++ b/bmc-keymanagement/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-keymanagement @@ -16,7 +16,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/AbstractKmsCryptoClientBuilder.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/AbstractKmsCryptoClientBuilder.java index 723a73a320c..f148712697e 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/AbstractKmsCryptoClientBuilder.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/AbstractKmsCryptoClientBuilder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/AbstractKmsManagementClientBuilder.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/AbstractKmsManagementClientBuilder.java index 7362ba681c3..26051cefdac 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/AbstractKmsManagementClientBuilder.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/AbstractKmsManagementClientBuilder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/AbstractVaultBasedClientBuilder.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/AbstractVaultBasedClientBuilder.java index dc0e9ecc264..776dbb6aee4 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/AbstractVaultBasedClientBuilder.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/AbstractVaultBasedClientBuilder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/Ekm.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/Ekm.java index a50447c2b8d..dcebb877925 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/Ekm.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/Ekm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/EkmAsync.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/EkmAsync.java index 1ebb9aa9ebd..ee95b3b8176 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/EkmAsync.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/EkmAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/EkmAsyncClient.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/EkmAsyncClient.java index 6f092eba4b8..53ebca855af 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/EkmAsyncClient.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/EkmAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/EkmClient.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/EkmClient.java index d2fb2d8c263..1dd0143b41a 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/EkmClient.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/EkmClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/EkmPaginators.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/EkmPaginators.java index 5aa2e72ff26..f0c1138d367 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/EkmPaginators.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/EkmPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/EkmWaiters.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/EkmWaiters.java index 66ea730a238..7a604da9aa3 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/EkmWaiters.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/EkmWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCrypto.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCrypto.java index 7c39d008edb..334b65b4afa 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCrypto.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCrypto.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCryptoAsync.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCryptoAsync.java index 072696700da..1ee09ada865 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCryptoAsync.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCryptoAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCryptoAsyncClient.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCryptoAsyncClient.java index 39398ea515d..7947dfbdeaa 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCryptoAsyncClient.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCryptoAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCryptoAsyncClientBuilder.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCryptoAsyncClientBuilder.java index 12754644455..3aa84c3a40f 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCryptoAsyncClientBuilder.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCryptoAsyncClientBuilder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCryptoClient.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCryptoClient.java index 0a56aaedd3b..d29d82e4560 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCryptoClient.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCryptoClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCryptoClientBuilder.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCryptoClientBuilder.java index bbddf2ee94d..80902ede853 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCryptoClientBuilder.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsCryptoClientBuilder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmCluster.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmCluster.java index 0be9c06fb56..34ce0bc788c 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmCluster.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmCluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmClusterAsync.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmClusterAsync.java index 0fd7b7b0b53..4e0fc5fe20d 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmClusterAsync.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmClusterAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmClusterAsyncClient.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmClusterAsyncClient.java index 94f8c8e157c..c4ab69ce75b 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmClusterAsyncClient.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmClusterAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmClusterClient.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmClusterClient.java index a24c436df45..6cc97002eb2 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmClusterClient.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmClusterClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmClusterPaginators.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmClusterPaginators.java index 5a4b2a524e6..aed774eb53a 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmClusterPaginators.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmClusterPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmClusterWaiters.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmClusterWaiters.java index 719e556f29f..d162def8b2a 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmClusterWaiters.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsHsmClusterWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagement.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagement.java index 0437790c6ed..f9246428eb4 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagement.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementAsync.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementAsync.java index 6194516fc02..64665b07b63 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementAsync.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementAsyncClient.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementAsyncClient.java index d9a45d5d2f3..0e8447a6ea0 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementAsyncClient.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementAsyncClientBuilder.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementAsyncClientBuilder.java index c579c1d4346..5ab1fc932d3 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementAsyncClientBuilder.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementAsyncClientBuilder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementClient.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementClient.java index d4cf6720047..d2d1d1690c3 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementClient.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementClientBuilder.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementClientBuilder.java index 71f3d8e16a1..9d0ce598b8c 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementClientBuilder.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementClientBuilder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementPaginators.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementPaginators.java index aca16ea9c46..320efbf5364 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementPaginators.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementWaiters.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementWaiters.java index 77cdd78172e..a7b0d6fabfc 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementWaiters.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsManagementWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVault.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVault.java index f658ca0a025..cff91cc5cf1 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVault.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVault.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVaultAsync.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVaultAsync.java index fd656e72245..ab05866d253 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVaultAsync.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVaultAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVaultAsyncClient.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVaultAsyncClient.java index 4427267280f..a1c3014441f 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVaultAsyncClient.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVaultAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVaultClient.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVaultClient.java index 6395d119669..35211e20c68 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVaultClient.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVaultClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVaultPaginators.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVaultPaginators.java index cfb4b9b14cc..56601157c9d 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVaultPaginators.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVaultPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVaultWaiters.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVaultWaiters.java index 50414449491..bb1123cec55 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVaultWaiters.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/KmsVaultWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/AutoKeyRotationDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/AutoKeyRotationDetails.java index 1de058447a2..402e12efeac 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/AutoKeyRotationDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/AutoKeyRotationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/BackupKeyDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/BackupKeyDetails.java index 6274db1509e..a68068126c5 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/BackupKeyDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/BackupKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/BackupLocation.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/BackupLocation.java index b4741a7f18b..c3ffce37ab7 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/BackupLocation.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/BackupLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/BackupLocationBucket.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/BackupLocationBucket.java index 4a001590569..74196a73924 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/BackupLocationBucket.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/BackupLocationBucket.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/BackupLocationURI.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/BackupLocationURI.java index f6f5dea8b81..abd8af4bf37 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/BackupLocationURI.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/BackupLocationURI.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/BackupVaultDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/BackupVaultDetails.java index 96c87b6a4bb..d4aff46a66f 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/BackupVaultDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/BackupVaultDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ChangeHsmClusterCompartmentDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ChangeHsmClusterCompartmentDetails.java index 7701cf8c1c4..ae6d293ef85 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ChangeHsmClusterCompartmentDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ChangeHsmClusterCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ChangeKeyCompartmentDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ChangeKeyCompartmentDetails.java index 4096ba2c34a..fc1855da98a 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ChangeKeyCompartmentDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ChangeKeyCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ChangeVaultCompartmentDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ChangeVaultCompartmentDetails.java index 4060a2eceb8..1140a633519 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ChangeVaultCompartmentDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ChangeVaultCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/CreateEkmsPrivateEndpointDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/CreateEkmsPrivateEndpointDetails.java index b0d0605245d..e3b5486e4bd 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/CreateEkmsPrivateEndpointDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/CreateEkmsPrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/CreateHsmClusterDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/CreateHsmClusterDetails.java index 52d051c37b4..0f5c898cf71 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/CreateHsmClusterDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/CreateHsmClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/CreateKeyDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/CreateKeyDetails.java index 8d6a21b509e..0c41fa76af0 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/CreateKeyDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/CreateKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/CreateVaultDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/CreateVaultDetails.java index 6d1e03df2cd..6ff316bfc21 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/CreateVaultDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/CreateVaultDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/CreateVaultReplicaDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/CreateVaultReplicaDetails.java index 7b246d531e3..f522e91aae3 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/CreateVaultReplicaDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/CreateVaultReplicaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/DecryptDataDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/DecryptDataDetails.java index 149dd7ccd4b..97f8c13f575 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/DecryptDataDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/DecryptDataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/DecryptedData.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/DecryptedData.java index 53986412175..e826d9dd0d9 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/DecryptedData.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/DecryptedData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/DeleteVaultReplicaDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/DeleteVaultReplicaDetails.java index 7a06f2a4233..76c72f9ceea 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/DeleteVaultReplicaDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/DeleteVaultReplicaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/EkmsPrivateEndpoint.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/EkmsPrivateEndpoint.java index 1a40a83e536..e1c4da14f43 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/EkmsPrivateEndpoint.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/EkmsPrivateEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/EkmsPrivateEndpointSummary.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/EkmsPrivateEndpointSummary.java index d16eefc5c16..18cd582cee4 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/EkmsPrivateEndpointSummary.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/EkmsPrivateEndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/EncryptDataDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/EncryptDataDetails.java index 4b29adbdb29..16a76be35a3 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/EncryptDataDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/EncryptDataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/EncryptedData.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/EncryptedData.java index 206e3fcebc8..466fbacd77a 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/EncryptedData.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/EncryptedData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExportKeyDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExportKeyDetails.java index 56454cec611..777e0f3ac67 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExportKeyDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExportKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExportedKeyData.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExportedKeyData.java index f6e9cb4918d..1c04e273b29 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExportedKeyData.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExportedKeyData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExternalKeyManagerMetadata.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExternalKeyManagerMetadata.java index c451e09c0c8..1dce7fe40b3 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExternalKeyManagerMetadata.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExternalKeyManagerMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExternalKeyManagerMetadataSummary.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExternalKeyManagerMetadataSummary.java index cf588cce19f..0b854cd27bd 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExternalKeyManagerMetadataSummary.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExternalKeyManagerMetadataSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExternalKeyReference.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExternalKeyReference.java index 29872c55c83..2501d5910f4 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExternalKeyReference.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExternalKeyReference.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExternalKeyReferenceDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExternalKeyReferenceDetails.java index 101673ed47a..32ae4708b8b 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExternalKeyReferenceDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExternalKeyReferenceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExternalKeyVersionReference.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExternalKeyVersionReference.java index 0fce39b5540..a09a7c8e085 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExternalKeyVersionReference.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ExternalKeyVersionReference.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/GenerateKeyDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/GenerateKeyDetails.java index f5ebbaed2e9..948f6095449 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/GenerateKeyDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/GenerateKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/GeneratedKey.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/GeneratedKey.java index 0c452508a11..57b58122a0d 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/GeneratedKey.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/GeneratedKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmCluster.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmCluster.java index 022aeef7604..d0b69b17e12 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmCluster.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmCluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmClusterCollection.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmClusterCollection.java index e01a19e2aa4..9588718598b 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmClusterCollection.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmClusterCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmClusterSummary.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmClusterSummary.java index 09b839e03ce..42469c55f76 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmClusterSummary.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmClusterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmPartition.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmPartition.java index 72f0b587197..107a800e45d 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmPartition.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmPartition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmPartitionCollection.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmPartitionCollection.java index 2329a21da46..29a8ea61622 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmPartitionCollection.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmPartitionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmPartitionSummary.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmPartitionSummary.java index 393016c0287..8150f108708 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmPartitionSummary.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/HsmPartitionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ImportKeyDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ImportKeyDetails.java index 0fd37c05d24..1bfc41c1699 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ImportKeyDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ImportKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ImportKeyVersionDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ImportKeyVersionDetails.java index 6b161d87e08..0632472116a 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ImportKeyVersionDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ImportKeyVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/Key.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/Key.java index 518e13b30e0..6eb880684ad 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/Key.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/Key.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeyReplicaDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeyReplicaDetails.java index d1d7f3c8aed..fe0e144165e 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeyReplicaDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeyReplicaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeyShape.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeyShape.java index ef003dd9898..73e5e79a000 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeyShape.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeyShape.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeySummary.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeySummary.java index 76107d9e905..7ffdefe210e 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeySummary.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeyVersion.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeyVersion.java index c68c399ca97..c64729726c7 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeyVersion.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeyVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeyVersionReplicaDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeyVersionReplicaDetails.java index 182b45852e9..d14a4f9fbd3 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeyVersionReplicaDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeyVersionReplicaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeyVersionSummary.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeyVersionSummary.java index 0006ee33553..a0a8f6f0e3c 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeyVersionSummary.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/KeyVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/OauthMetadata.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/OauthMetadata.java index 2872ec4b5ea..af3e19baa00 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/OauthMetadata.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/OauthMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/OauthMetadataSummary.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/OauthMetadataSummary.java index ebcd129f6c9..f8b40c880a3 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/OauthMetadataSummary.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/OauthMetadataSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/PortInformation.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/PortInformation.java index ca62a931b33..d55af0d8bb0 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/PortInformation.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/PortInformation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/PreCoUserCredentials.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/PreCoUserCredentials.java index 7551a12fb00..a8f31caa445 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/PreCoUserCredentials.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/PreCoUserCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ReplicaDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ReplicaDetails.java index 58b459e1c48..178814f005c 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ReplicaDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ReplicaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ReplicaExternalVaultMetadata.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ReplicaExternalVaultMetadata.java index 77ed3de5ae0..456963eca22 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ReplicaExternalVaultMetadata.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ReplicaExternalVaultMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ReplicaVaultMetadata.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ReplicaVaultMetadata.java index 549b45a0040..a870d8b4ecb 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ReplicaVaultMetadata.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ReplicaVaultMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ReplicationStatusDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ReplicationStatusDetails.java index ffb2a7ac825..eaf7303f9ba 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ReplicationStatusDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ReplicationStatusDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/RestoreKeyFromObjectStoreDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/RestoreKeyFromObjectStoreDetails.java index c4566879559..10522fd9b7b 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/RestoreKeyFromObjectStoreDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/RestoreKeyFromObjectStoreDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/RestoreVaultFromObjectStoreDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/RestoreVaultFromObjectStoreDetails.java index 194333e824b..6590eaaeadf 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/RestoreVaultFromObjectStoreDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/RestoreVaultFromObjectStoreDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ScheduleHsmClusterDeletionDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ScheduleHsmClusterDeletionDetails.java index ec964be3003..102a85812ce 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ScheduleHsmClusterDeletionDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ScheduleHsmClusterDeletionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ScheduleKeyDeletionDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ScheduleKeyDeletionDetails.java index b976dbef088..6f694d10289 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ScheduleKeyDeletionDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ScheduleKeyDeletionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ScheduleKeyVersionDeletionDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ScheduleKeyVersionDeletionDetails.java index 4e04518ff16..5269fd05de6 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ScheduleKeyVersionDeletionDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ScheduleKeyVersionDeletionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ScheduleVaultDeletionDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ScheduleVaultDeletionDetails.java index 3e93b4704b4..7738d268444 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ScheduleVaultDeletionDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/ScheduleVaultDeletionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/SignDataDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/SignDataDetails.java index a60d326aa4f..a8558d26841 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/SignDataDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/SignDataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/SignedData.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/SignedData.java index 94ee043b6fc..c7862d24113 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/SignedData.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/SignedData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/UpdateEkmsPrivateEndpointDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/UpdateEkmsPrivateEndpointDetails.java index 642506cac59..57425d8b74a 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/UpdateEkmsPrivateEndpointDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/UpdateEkmsPrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/UpdateHsmClusterDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/UpdateHsmClusterDetails.java index 2355e49bc4f..4893c3fe3d2 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/UpdateHsmClusterDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/UpdateHsmClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/UpdateKeyDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/UpdateKeyDetails.java index 34845a5f868..d58c41bce23 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/UpdateKeyDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/UpdateKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/UpdateVaultDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/UpdateVaultDetails.java index a703f7d56b0..593e00303e3 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/UpdateVaultDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/UpdateVaultDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/UploadPartitionCertificatesDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/UploadPartitionCertificatesDetails.java index 431de24b6a3..752a9eb19a0 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/UploadPartitionCertificatesDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/UploadPartitionCertificatesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/Vault.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/Vault.java index 22206d76b6d..b44a14d1989 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/Vault.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/Vault.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VaultReplicaDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VaultReplicaDetails.java index 490881929ff..5ab8f8d0971 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VaultReplicaDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VaultReplicaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VaultReplicaSummary.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VaultReplicaSummary.java index 1ae37901a74..d87f091b78a 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VaultReplicaSummary.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VaultReplicaSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VaultSummary.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VaultSummary.java index 276d56a6103..abbd85fc6eb 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VaultSummary.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VaultSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VaultUsage.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VaultUsage.java index b62a66b9890..d734a51000f 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VaultUsage.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VaultUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VerifiedData.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VerifiedData.java index 21c245878b2..eabd2249bb8 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VerifiedData.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VerifiedData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VerifyDataDetails.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VerifyDataDetails.java index 52ff12bfda2..0ff496d9586 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VerifyDataDetails.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/VerifyDataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/WrappedImportKey.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/WrappedImportKey.java index 8a321bfb36e..2243de6c9e1 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/WrappedImportKey.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/WrappedImportKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/WrappingKey.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/WrappingKey.java index 87e014ba900..c8fc28f0b41 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/WrappingKey.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/model/WrappingKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.model; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/BackupKeyRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/BackupKeyRequest.java index 7b76da5730f..f3d7d87831c 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/BackupKeyRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/BackupKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/BackupVaultRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/BackupVaultRequest.java index 608dee9e833..532b3722d49 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/BackupVaultRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/BackupVaultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CancelHsmClusterDeletionRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CancelHsmClusterDeletionRequest.java index 5a3a69a151f..4983efc4e57 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CancelHsmClusterDeletionRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CancelHsmClusterDeletionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CancelKeyDeletionRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CancelKeyDeletionRequest.java index 017d37bd6fb..080e0b74337 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CancelKeyDeletionRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CancelKeyDeletionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CancelKeyVersionDeletionRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CancelKeyVersionDeletionRequest.java index 613d103dd89..7b867a763c8 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CancelKeyVersionDeletionRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CancelKeyVersionDeletionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CancelVaultDeletionRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CancelVaultDeletionRequest.java index 1fffd1eae34..4e877ca60ad 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CancelVaultDeletionRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CancelVaultDeletionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ChangeHsmClusterCompartmentRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ChangeHsmClusterCompartmentRequest.java index d21d8258646..5144979c17b 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ChangeHsmClusterCompartmentRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ChangeHsmClusterCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ChangeKeyCompartmentRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ChangeKeyCompartmentRequest.java index 6d107069f2b..69b8ba6cb0e 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ChangeKeyCompartmentRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ChangeKeyCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ChangeVaultCompartmentRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ChangeVaultCompartmentRequest.java index e46099fdb33..e6d9603c831 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ChangeVaultCompartmentRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ChangeVaultCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateEkmsPrivateEndpointRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateEkmsPrivateEndpointRequest.java index 8a95e131c55..ba03c880c1e 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateEkmsPrivateEndpointRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateEkmsPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateHsmClusterRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateHsmClusterRequest.java index 4c097b8c9df..434a2528d0c 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateHsmClusterRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateHsmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateKeyRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateKeyRequest.java index fa5e7d6e0e7..3c609730f13 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateKeyRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateKeyVersionRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateKeyVersionRequest.java index 68548838e10..c57414bb4e7 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateKeyVersionRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateKeyVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateVaultReplicaRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateVaultReplicaRequest.java index 2a18fce04e2..ccb363dcb0b 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateVaultReplicaRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateVaultReplicaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateVaultRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateVaultRequest.java index dd6e50f5ec7..850ab4c1e35 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateVaultRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/CreateVaultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/DecryptRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/DecryptRequest.java index 5b065374b62..baf8edaea7d 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/DecryptRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/DecryptRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/DeleteEkmsPrivateEndpointRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/DeleteEkmsPrivateEndpointRequest.java index 65c6005aa19..29135b1880b 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/DeleteEkmsPrivateEndpointRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/DeleteEkmsPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/DeleteVaultReplicaRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/DeleteVaultReplicaRequest.java index 725c13a4e1f..1ed10cb3272 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/DeleteVaultReplicaRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/DeleteVaultReplicaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/DisableKeyRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/DisableKeyRequest.java index 87104a53c7e..0db9b43473a 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/DisableKeyRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/DisableKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/DownloadCertificateSigningRequestRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/DownloadCertificateSigningRequestRequest.java index a113002b2f7..3fd90e1a0eb 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/DownloadCertificateSigningRequestRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/DownloadCertificateSigningRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/EnableKeyRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/EnableKeyRequest.java index 18d9c65bf4b..9b0a8e07d54 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/EnableKeyRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/EnableKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/EncryptRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/EncryptRequest.java index 126fbacb354..f7afc7849e1 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/EncryptRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/EncryptRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ExportKeyRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ExportKeyRequest.java index ca0c1211fb5..ef6a7ac44de 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ExportKeyRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ExportKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GenerateDataEncryptionKeyRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GenerateDataEncryptionKeyRequest.java index d8fb355a94e..8614e3e3811 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GenerateDataEncryptionKeyRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GenerateDataEncryptionKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetEkmsPrivateEndpointRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetEkmsPrivateEndpointRequest.java index 96154563ebe..1f5d3d97774 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetEkmsPrivateEndpointRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetEkmsPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetHsmClusterRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetHsmClusterRequest.java index 2f4634e51d3..579d77a4d8b 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetHsmClusterRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetHsmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetHsmPartitionRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetHsmPartitionRequest.java index fe342124353..0092a0ced74 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetHsmPartitionRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetHsmPartitionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetKeyRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetKeyRequest.java index 588752922a3..3e474ef058b 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetKeyRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetKeyVersionRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetKeyVersionRequest.java index f704f6d2b50..e56ff9e6586 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetKeyVersionRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetKeyVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetPreCoUserCredentialsRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetPreCoUserCredentialsRequest.java index 5686b311f4b..0c05a2ed6a1 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetPreCoUserCredentialsRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetPreCoUserCredentialsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetReplicationStatusRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetReplicationStatusRequest.java index 00b470e4f63..d63d2a60702 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetReplicationStatusRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetReplicationStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetVaultRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetVaultRequest.java index 805b7437dcb..723111048c0 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetVaultRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetVaultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetVaultUsageRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetVaultUsageRequest.java index 51a410fe436..bd81be75076 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetVaultUsageRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetVaultUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetWrappingKeyRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetWrappingKeyRequest.java index e7658dc8233..517b5e62a6b 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetWrappingKeyRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/GetWrappingKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ImportKeyRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ImportKeyRequest.java index 144ae24c7a7..b997e9ec7ac 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ImportKeyRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ImportKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ImportKeyVersionRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ImportKeyVersionRequest.java index eee210c871e..5d71298187e 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ImportKeyVersionRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ImportKeyVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListEkmsPrivateEndpointsRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListEkmsPrivateEndpointsRequest.java index 220cc3ba392..57953e58d66 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListEkmsPrivateEndpointsRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListEkmsPrivateEndpointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListHsmClustersRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListHsmClustersRequest.java index 9e31b5ed4b9..0d3ca1f2b84 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListHsmClustersRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListHsmClustersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListHsmPartitionsRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListHsmPartitionsRequest.java index 7ce5c86d2e6..37d94fc7480 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListHsmPartitionsRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListHsmPartitionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListKeyVersionsRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListKeyVersionsRequest.java index 98a302c2685..312d155419e 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListKeyVersionsRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListKeyVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListKeysRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListKeysRequest.java index 9ac136833fc..650812d6c82 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListKeysRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListKeysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListVaultReplicasRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListVaultReplicasRequest.java index 5a8e2efa0e3..e5cb5f51b0d 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListVaultReplicasRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListVaultReplicasRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListVaultsRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListVaultsRequest.java index cf75b7496ed..248e4521422 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListVaultsRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ListVaultsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/RestoreKeyFromFileRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/RestoreKeyFromFileRequest.java index 9b12540d6b0..6783f1a388b 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/RestoreKeyFromFileRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/RestoreKeyFromFileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/RestoreKeyFromObjectStoreRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/RestoreKeyFromObjectStoreRequest.java index 3e1380cee00..ff264de7d65 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/RestoreKeyFromObjectStoreRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/RestoreKeyFromObjectStoreRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/RestoreVaultFromFileRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/RestoreVaultFromFileRequest.java index d4d45b5f6e2..3afff2ec7b4 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/RestoreVaultFromFileRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/RestoreVaultFromFileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/RestoreVaultFromObjectStoreRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/RestoreVaultFromObjectStoreRequest.java index 0b2cf12f4ee..9d5cbe00b51 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/RestoreVaultFromObjectStoreRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/RestoreVaultFromObjectStoreRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ScheduleHsmClusterDeletionRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ScheduleHsmClusterDeletionRequest.java index fca2527a553..3d83d831911 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ScheduleHsmClusterDeletionRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ScheduleHsmClusterDeletionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ScheduleKeyDeletionRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ScheduleKeyDeletionRequest.java index 9aca8288027..622d8a497ab 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ScheduleKeyDeletionRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ScheduleKeyDeletionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ScheduleKeyVersionDeletionRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ScheduleKeyVersionDeletionRequest.java index f38820e792d..219b61bc58d 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ScheduleKeyVersionDeletionRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ScheduleKeyVersionDeletionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ScheduleVaultDeletionRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ScheduleVaultDeletionRequest.java index 817ade83754..d80d5410ea2 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ScheduleVaultDeletionRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/ScheduleVaultDeletionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/SignRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/SignRequest.java index 72d479fd279..c6f94562d65 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/SignRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/SignRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/UpdateEkmsPrivateEndpointRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/UpdateEkmsPrivateEndpointRequest.java index 0675f8cd909..8ff26aa86d9 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/UpdateEkmsPrivateEndpointRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/UpdateEkmsPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/UpdateHsmClusterRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/UpdateHsmClusterRequest.java index 75c73d445af..9e303af5f64 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/UpdateHsmClusterRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/UpdateHsmClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/UpdateKeyRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/UpdateKeyRequest.java index d246bc0ce5f..4c9c7c1698f 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/UpdateKeyRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/UpdateKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/UpdateVaultRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/UpdateVaultRequest.java index fcd5592f56f..d8c8d708a36 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/UpdateVaultRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/UpdateVaultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/UploadPartitionCertificatesRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/UploadPartitionCertificatesRequest.java index c529c24955b..62f8536b0d4 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/UploadPartitionCertificatesRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/UploadPartitionCertificatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/VerifyRequest.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/VerifyRequest.java index 2442764b96b..dc065162083 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/VerifyRequest.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/requests/VerifyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.requests; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/BackupKeyResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/BackupKeyResponse.java index 944d03df6a4..f411fe20326 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/BackupKeyResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/BackupKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/BackupVaultResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/BackupVaultResponse.java index 68974bcf6b0..99611d29dc9 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/BackupVaultResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/BackupVaultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CancelHsmClusterDeletionResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CancelHsmClusterDeletionResponse.java index f16d95ca5d6..154ff66a3e1 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CancelHsmClusterDeletionResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CancelHsmClusterDeletionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CancelKeyDeletionResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CancelKeyDeletionResponse.java index b7f4e93a147..eb33fa450a0 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CancelKeyDeletionResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CancelKeyDeletionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CancelKeyVersionDeletionResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CancelKeyVersionDeletionResponse.java index 5890be64242..2e896e5792a 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CancelKeyVersionDeletionResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CancelKeyVersionDeletionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CancelVaultDeletionResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CancelVaultDeletionResponse.java index 7206b991bca..c7e48b018b5 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CancelVaultDeletionResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CancelVaultDeletionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ChangeHsmClusterCompartmentResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ChangeHsmClusterCompartmentResponse.java index a317b7a578c..f4177d8e2f0 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ChangeHsmClusterCompartmentResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ChangeHsmClusterCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ChangeKeyCompartmentResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ChangeKeyCompartmentResponse.java index bbc183e9a01..5f8f5117e68 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ChangeKeyCompartmentResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ChangeKeyCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ChangeVaultCompartmentResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ChangeVaultCompartmentResponse.java index 2ec0dca15b4..16308041318 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ChangeVaultCompartmentResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ChangeVaultCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateEkmsPrivateEndpointResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateEkmsPrivateEndpointResponse.java index 788ce844d8a..b14ee2316fd 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateEkmsPrivateEndpointResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateEkmsPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateHsmClusterResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateHsmClusterResponse.java index 57d0f669b6e..bbbcfcda7c3 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateHsmClusterResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateHsmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateKeyResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateKeyResponse.java index e9687491c98..da78884470e 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateKeyResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateKeyVersionResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateKeyVersionResponse.java index e015c96358a..a6f793c9648 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateKeyVersionResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateKeyVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateVaultReplicaResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateVaultReplicaResponse.java index 8a9195b4880..bd81728667b 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateVaultReplicaResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateVaultReplicaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateVaultResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateVaultResponse.java index 01496dadfd7..488b305d980 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateVaultResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/CreateVaultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/DecryptResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/DecryptResponse.java index c7f7ddb6622..e8a80916d73 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/DecryptResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/DecryptResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/DeleteEkmsPrivateEndpointResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/DeleteEkmsPrivateEndpointResponse.java index cb33b128f69..2c944c3b6ec 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/DeleteEkmsPrivateEndpointResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/DeleteEkmsPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/DeleteVaultReplicaResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/DeleteVaultReplicaResponse.java index 7a1d6338e5d..2f1379fa3f1 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/DeleteVaultReplicaResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/DeleteVaultReplicaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/DisableKeyResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/DisableKeyResponse.java index f68726bc4cf..245d6d582b0 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/DisableKeyResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/DisableKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/DownloadCertificateSigningRequestResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/DownloadCertificateSigningRequestResponse.java index ee5a66a4568..0f6fb6fa55c 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/DownloadCertificateSigningRequestResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/DownloadCertificateSigningRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/EnableKeyResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/EnableKeyResponse.java index 1e003489ca8..8af247fe75a 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/EnableKeyResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/EnableKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/EncryptResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/EncryptResponse.java index f3df52c472c..5dc8049ca00 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/EncryptResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/EncryptResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ExportKeyResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ExportKeyResponse.java index d60b4f09d05..2cb1bdcdb69 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ExportKeyResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ExportKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GenerateDataEncryptionKeyResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GenerateDataEncryptionKeyResponse.java index a269a441fe5..22590791980 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GenerateDataEncryptionKeyResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GenerateDataEncryptionKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetEkmsPrivateEndpointResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetEkmsPrivateEndpointResponse.java index 0417fa98bbd..ede473b0311 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetEkmsPrivateEndpointResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetEkmsPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetHsmClusterResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetHsmClusterResponse.java index 4fb13dd84ff..2e2e4707834 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetHsmClusterResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetHsmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetHsmPartitionResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetHsmPartitionResponse.java index 04517c7788f..98fefa9a646 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetHsmPartitionResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetHsmPartitionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetKeyResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetKeyResponse.java index a0691f6fd0f..44b3fb040d6 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetKeyResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetKeyVersionResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetKeyVersionResponse.java index fd778de6ae3..9edc01a835a 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetKeyVersionResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetKeyVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetPreCoUserCredentialsResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetPreCoUserCredentialsResponse.java index b35cfa1ae7b..38d0ad32972 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetPreCoUserCredentialsResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetPreCoUserCredentialsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetReplicationStatusResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetReplicationStatusResponse.java index 0d4b7de7f50..3000f402402 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetReplicationStatusResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetReplicationStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetVaultResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetVaultResponse.java index 61a2f20b76d..22ff4ac3b35 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetVaultResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetVaultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetVaultUsageResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetVaultUsageResponse.java index ea652d6e64f..b41309c404a 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetVaultUsageResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetVaultUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetWrappingKeyResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetWrappingKeyResponse.java index a6d5e06c87c..2361c0c6d03 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetWrappingKeyResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/GetWrappingKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ImportKeyResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ImportKeyResponse.java index 2cad346b12e..ff2103544d1 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ImportKeyResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ImportKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ImportKeyVersionResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ImportKeyVersionResponse.java index 4c9b079355e..d43a663d261 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ImportKeyVersionResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ImportKeyVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListEkmsPrivateEndpointsResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListEkmsPrivateEndpointsResponse.java index 0c40b08844c..d9569aae391 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListEkmsPrivateEndpointsResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListEkmsPrivateEndpointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListHsmClustersResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListHsmClustersResponse.java index 1edfda9ce5d..7250adb397b 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListHsmClustersResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListHsmClustersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListHsmPartitionsResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListHsmPartitionsResponse.java index 83d6077615f..2d3b77e2169 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListHsmPartitionsResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListHsmPartitionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListKeyVersionsResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListKeyVersionsResponse.java index 996003a0d03..35f3ce632ad 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListKeyVersionsResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListKeyVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListKeysResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListKeysResponse.java index 8500364dc1d..c0f357ad968 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListKeysResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListKeysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListVaultReplicasResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListVaultReplicasResponse.java index 081e619778a..431d6fea8ad 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListVaultReplicasResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListVaultReplicasResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListVaultsResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListVaultsResponse.java index 6b0164cdfc3..971910c3f1b 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListVaultsResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ListVaultsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/RestoreKeyFromFileResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/RestoreKeyFromFileResponse.java index 85f5e4bf250..20b9ba85644 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/RestoreKeyFromFileResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/RestoreKeyFromFileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/RestoreKeyFromObjectStoreResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/RestoreKeyFromObjectStoreResponse.java index 5d40dab9fde..b6d7e46f51f 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/RestoreKeyFromObjectStoreResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/RestoreKeyFromObjectStoreResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/RestoreVaultFromFileResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/RestoreVaultFromFileResponse.java index 2439d113f4f..b7d292f573f 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/RestoreVaultFromFileResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/RestoreVaultFromFileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/RestoreVaultFromObjectStoreResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/RestoreVaultFromObjectStoreResponse.java index 30ca3e1ef07..f71492d97fe 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/RestoreVaultFromObjectStoreResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/RestoreVaultFromObjectStoreResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ScheduleHsmClusterDeletionResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ScheduleHsmClusterDeletionResponse.java index 2ad097fcb1c..f471ec5c4dc 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ScheduleHsmClusterDeletionResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ScheduleHsmClusterDeletionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ScheduleKeyDeletionResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ScheduleKeyDeletionResponse.java index feb47752c3f..33ca8425680 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ScheduleKeyDeletionResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ScheduleKeyDeletionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ScheduleKeyVersionDeletionResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ScheduleKeyVersionDeletionResponse.java index 24151ae3d29..242b3294fe7 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ScheduleKeyVersionDeletionResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ScheduleKeyVersionDeletionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ScheduleVaultDeletionResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ScheduleVaultDeletionResponse.java index b0718bb0951..7f4c2949d4f 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ScheduleVaultDeletionResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/ScheduleVaultDeletionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/SignResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/SignResponse.java index d71d1d28013..bb01785d92a 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/SignResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/SignResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/UpdateEkmsPrivateEndpointResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/UpdateEkmsPrivateEndpointResponse.java index 49d59d013cc..f9a85fa196b 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/UpdateEkmsPrivateEndpointResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/UpdateEkmsPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/UpdateHsmClusterResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/UpdateHsmClusterResponse.java index ec1728c9e84..b5e2624d421 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/UpdateHsmClusterResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/UpdateHsmClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/UpdateKeyResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/UpdateKeyResponse.java index 9fbeab0a7f3..a94688cc31b 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/UpdateKeyResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/UpdateKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/UpdateVaultResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/UpdateVaultResponse.java index 603faace800..5fca7a4706d 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/UpdateVaultResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/UpdateVaultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/UploadPartitionCertificatesResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/UploadPartitionCertificatesResponse.java index 208bd6368f3..40352d6f892 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/UploadPartitionCertificatesResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/UploadPartitionCertificatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/VerifyResponse.java b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/VerifyResponse.java index d06c47c463a..9143814d671 100644 --- a/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/VerifyResponse.java +++ b/bmc-keymanagement/src/main/java/com/oracle/bmc/keymanagement/responses/VerifyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.keymanagement.responses; diff --git a/bmc-keymanagement/src/main/resources/com/oracle/bmc/keymanagement/client.properties b/bmc-keymanagement/src/main/resources/com/oracle/bmc/keymanagement/client.properties index aa79a3c5e73..48f34131b20 100644 --- a/bmc-keymanagement/src/main/resources/com/oracle/bmc/keymanagement/client.properties +++ b/bmc-keymanagement/src/main/resources/com/oracle/bmc/keymanagement/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-licensemanager/pom.xml b/bmc-licensemanager/pom.xml index 7d027eb98da..c385113bfb7 100644 --- a/bmc-licensemanager/pom.xml +++ b/bmc-licensemanager/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-licensemanager @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManager.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManager.java index 42ac58dc28c..88a3b3ccc2f 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManager.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManager.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManagerAsync.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManagerAsync.java index 18e7c2c7b0b..6d0bc218eb6 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManagerAsync.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManagerAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManagerAsyncClient.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManagerAsyncClient.java index e750e9319c1..138c153cddd 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManagerAsyncClient.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManagerAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManagerClient.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManagerClient.java index b01efa19902..7598c28555e 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManagerClient.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManagerClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManagerPaginators.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManagerPaginators.java index badf290655c..42cbacb6cba 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManagerPaginators.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManagerPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManagerWaiters.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManagerWaiters.java index 9db283a28a6..b19f4ac346a 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManagerWaiters.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/LicenseManagerWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadCellInfo.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadCellInfo.java index 8133c06c41d..cf6abac2cc6 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadCellInfo.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadCellInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadFailedRecordInfo.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadFailedRecordInfo.java index 05c79f6763a..836826bbdb3 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadFailedRecordInfo.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadFailedRecordInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadLicenseRecordsDetails.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadLicenseRecordsDetails.java index d87cedf013a..c89b29e712d 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadLicenseRecordsDetails.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadLicenseRecordsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadResponse.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadResponse.java index 83636af8cd1..fd5f0131286 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadResponse.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadTemplate.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadTemplate.java index 12d7dfb2d2b..683362317af 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadTemplate.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadTemplate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadValidationErrorInfo.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadValidationErrorInfo.java index 92c0e067ceb..d665433347a 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadValidationErrorInfo.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/BulkUploadValidationErrorInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/Configuration.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/Configuration.java index 08ae1766e15..314eddc3650 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/Configuration.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/Configuration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/CreateLicenseRecordDetails.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/CreateLicenseRecordDetails.java index 190a8bc6264..b505e7ad83a 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/CreateLicenseRecordDetails.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/CreateLicenseRecordDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/CreateProductLicenseDetails.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/CreateProductLicenseDetails.java index 95c339f8a64..a8eb3cb18b8 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/CreateProductLicenseDetails.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/CreateProductLicenseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ImageDetails.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ImageDetails.java index 874e7c81e85..5c026f3d1de 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ImageDetails.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ImageResponse.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ImageResponse.java index 3415a184648..c93e82f1ecd 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ImageResponse.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ImageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LicenseMetric.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LicenseMetric.java index 378eadd63ea..a3a0a7469d4 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LicenseMetric.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LicenseMetric.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LicenseRecord.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LicenseRecord.java index 09d86cc4431..bb2a46931b6 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LicenseRecord.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LicenseRecord.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LicenseRecordCollection.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LicenseRecordCollection.java index ef142b7bd73..6f61875aa29 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LicenseRecordCollection.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LicenseRecordCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LicenseRecordSummary.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LicenseRecordSummary.java index 1669d45c035..84c801be032 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LicenseRecordSummary.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LicenseRecordSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LicenseUnit.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LicenseUnit.java index 74b39d5ed3c..a14273bc086 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LicenseUnit.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LicenseUnit.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LifeCycleState.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LifeCycleState.java index 8901efe1339..49424e0e698 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LifeCycleState.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/LifeCycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/Product.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/Product.java index 9db9f04154b..2b420462ba4 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/Product.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/Product.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductCategory.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductCategory.java index b252e42ba44..a59dadbce48 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductCategory.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductCategory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductLicense.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductLicense.java index 3f4d697b153..fbf9a192b2d 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductLicense.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductLicense.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductLicenseCollection.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductLicenseCollection.java index 37603536230..6a15b40bc5d 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductLicenseCollection.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductLicenseCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductLicenseConsumerCollection.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductLicenseConsumerCollection.java index 064867594fa..fc94e43f194 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductLicenseConsumerCollection.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductLicenseConsumerCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductLicenseConsumerSummary.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductLicenseConsumerSummary.java index f88e93ad16c..d35fcba8de0 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductLicenseConsumerSummary.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductLicenseConsumerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductLicenseSummary.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductLicenseSummary.java index 0adac6445ea..c8acf35ce1f 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductLicenseSummary.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ProductLicenseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ResourceUnit.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ResourceUnit.java index 1002f6c21c6..7aee77d729c 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ResourceUnit.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/ResourceUnit.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/Status.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/Status.java index f4364ddd995..6cd89dadf4b 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/Status.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/Status.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/TopUtilizedProductLicenseCollection.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/TopUtilizedProductLicenseCollection.java index ec6cfe03b7a..4bd97dc2aa6 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/TopUtilizedProductLicenseCollection.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/TopUtilizedProductLicenseCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/TopUtilizedProductLicenseSummary.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/TopUtilizedProductLicenseSummary.java index 13f4590dd91..8f63e2338ba 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/TopUtilizedProductLicenseSummary.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/TopUtilizedProductLicenseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/TopUtilizedResourceCollection.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/TopUtilizedResourceCollection.java index 75361530f96..03477633851 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/TopUtilizedResourceCollection.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/TopUtilizedResourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/TopUtilizedResourceSummary.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/TopUtilizedResourceSummary.java index d8975448cdf..dd7d3e5e542 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/TopUtilizedResourceSummary.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/TopUtilizedResourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/UpdateConfigurationDetails.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/UpdateConfigurationDetails.java index 2a59d60d22d..6dca5992ed1 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/UpdateConfigurationDetails.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/UpdateConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/UpdateLicenseRecordDetails.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/UpdateLicenseRecordDetails.java index cc73a8fe73a..190a90b3aad 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/UpdateLicenseRecordDetails.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/UpdateLicenseRecordDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/UpdateProductLicenseDetails.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/UpdateProductLicenseDetails.java index e3d79d97c2c..476316675ce 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/UpdateProductLicenseDetails.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/model/UpdateProductLicenseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.model; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/BulkUploadLicenseRecordsRequest.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/BulkUploadLicenseRecordsRequest.java index 583c2c26665..8c6166a056b 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/BulkUploadLicenseRecordsRequest.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/BulkUploadLicenseRecordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.requests; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/CreateLicenseRecordRequest.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/CreateLicenseRecordRequest.java index f8fb43ebbed..5bcebbfee19 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/CreateLicenseRecordRequest.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/CreateLicenseRecordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.requests; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/CreateProductLicenseRequest.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/CreateProductLicenseRequest.java index 8608a8300cb..411f7d460c8 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/CreateProductLicenseRequest.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/CreateProductLicenseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.requests; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/DeleteLicenseRecordRequest.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/DeleteLicenseRecordRequest.java index b3795b2cf08..1d7fe63273e 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/DeleteLicenseRecordRequest.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/DeleteLicenseRecordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.requests; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/DeleteProductLicenseRequest.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/DeleteProductLicenseRequest.java index 2183336a56e..8984863cc5a 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/DeleteProductLicenseRequest.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/DeleteProductLicenseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.requests; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/GetBulkUploadTemplateRequest.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/GetBulkUploadTemplateRequest.java index a3019a5d7f7..f881824295e 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/GetBulkUploadTemplateRequest.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/GetBulkUploadTemplateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.requests; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/GetConfigurationRequest.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/GetConfigurationRequest.java index a12d108c96b..f5fdd17cac0 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/GetConfigurationRequest.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/GetConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.requests; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/GetLicenseMetricRequest.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/GetLicenseMetricRequest.java index 35decab1144..bf20428c301 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/GetLicenseMetricRequest.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/GetLicenseMetricRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.requests; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/GetLicenseRecordRequest.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/GetLicenseRecordRequest.java index 66fdfe9589c..417bf6c5606 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/GetLicenseRecordRequest.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/GetLicenseRecordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.requests; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/GetProductLicenseRequest.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/GetProductLicenseRequest.java index fec16ca77fd..3aaaf2616a7 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/GetProductLicenseRequest.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/GetProductLicenseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.requests; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/ListLicenseRecordsRequest.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/ListLicenseRecordsRequest.java index 3a2d19878ea..7ac66916295 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/ListLicenseRecordsRequest.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/ListLicenseRecordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.requests; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/ListProductLicenseConsumersRequest.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/ListProductLicenseConsumersRequest.java index bf1e88e6c9e..74652a1aa24 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/ListProductLicenseConsumersRequest.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/ListProductLicenseConsumersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.requests; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/ListProductLicensesRequest.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/ListProductLicensesRequest.java index 5a6082ec717..1cde6a6979e 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/ListProductLicensesRequest.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/ListProductLicensesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.requests; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/ListTopUtilizedProductLicensesRequest.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/ListTopUtilizedProductLicensesRequest.java index 28aec00359b..371121ffe18 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/ListTopUtilizedProductLicensesRequest.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/ListTopUtilizedProductLicensesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.requests; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/ListTopUtilizedResourcesRequest.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/ListTopUtilizedResourcesRequest.java index cb7eb26f24c..eae02eeea27 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/ListTopUtilizedResourcesRequest.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/ListTopUtilizedResourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.requests; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/UpdateConfigurationRequest.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/UpdateConfigurationRequest.java index 4655302c8e6..b2f540184c5 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/UpdateConfigurationRequest.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/UpdateConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.requests; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/UpdateLicenseRecordRequest.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/UpdateLicenseRecordRequest.java index 0ceaeaa0602..a5dedf3f354 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/UpdateLicenseRecordRequest.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/UpdateLicenseRecordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.requests; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/UpdateProductLicenseRequest.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/UpdateProductLicenseRequest.java index 68148b5da4f..e6cdf9f580e 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/UpdateProductLicenseRequest.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/requests/UpdateProductLicenseRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.requests; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/BulkUploadLicenseRecordsResponse.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/BulkUploadLicenseRecordsResponse.java index a78ff10159f..44f49dbc85f 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/BulkUploadLicenseRecordsResponse.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/BulkUploadLicenseRecordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.responses; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/CreateLicenseRecordResponse.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/CreateLicenseRecordResponse.java index fce6f7affd9..e1bb534d568 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/CreateLicenseRecordResponse.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/CreateLicenseRecordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.responses; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/CreateProductLicenseResponse.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/CreateProductLicenseResponse.java index b864afb3722..eebfc606246 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/CreateProductLicenseResponse.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/CreateProductLicenseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.responses; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/DeleteLicenseRecordResponse.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/DeleteLicenseRecordResponse.java index 8171e5bd048..c1d70006049 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/DeleteLicenseRecordResponse.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/DeleteLicenseRecordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.responses; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/DeleteProductLicenseResponse.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/DeleteProductLicenseResponse.java index 371cd92cecc..651a5038b76 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/DeleteProductLicenseResponse.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/DeleteProductLicenseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.responses; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/GetBulkUploadTemplateResponse.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/GetBulkUploadTemplateResponse.java index c0f2e92f22b..04169828104 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/GetBulkUploadTemplateResponse.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/GetBulkUploadTemplateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.responses; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/GetConfigurationResponse.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/GetConfigurationResponse.java index 835aa9a1e13..ca69bff88c9 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/GetConfigurationResponse.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/GetConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.responses; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/GetLicenseMetricResponse.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/GetLicenseMetricResponse.java index 02bfcaa2daa..ddc57567448 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/GetLicenseMetricResponse.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/GetLicenseMetricResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.responses; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/GetLicenseRecordResponse.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/GetLicenseRecordResponse.java index f300e74399a..b9ee4901d96 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/GetLicenseRecordResponse.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/GetLicenseRecordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.responses; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/GetProductLicenseResponse.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/GetProductLicenseResponse.java index 2bde7b44eca..e84a59a5d29 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/GetProductLicenseResponse.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/GetProductLicenseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.responses; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/ListLicenseRecordsResponse.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/ListLicenseRecordsResponse.java index ead2b234788..e854d8a1d3f 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/ListLicenseRecordsResponse.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/ListLicenseRecordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.responses; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/ListProductLicenseConsumersResponse.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/ListProductLicenseConsumersResponse.java index 6c6e4d7ab11..a5be5a004a5 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/ListProductLicenseConsumersResponse.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/ListProductLicenseConsumersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.responses; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/ListProductLicensesResponse.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/ListProductLicensesResponse.java index 0aa5c869485..d0d15005f7c 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/ListProductLicensesResponse.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/ListProductLicensesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.responses; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/ListTopUtilizedProductLicensesResponse.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/ListTopUtilizedProductLicensesResponse.java index b0b40b23ddc..33d4db5dc51 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/ListTopUtilizedProductLicensesResponse.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/ListTopUtilizedProductLicensesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.responses; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/ListTopUtilizedResourcesResponse.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/ListTopUtilizedResourcesResponse.java index ed0b46c434a..25b16a56598 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/ListTopUtilizedResourcesResponse.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/ListTopUtilizedResourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.responses; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/UpdateConfigurationResponse.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/UpdateConfigurationResponse.java index 7c51a2703e8..ab43505748f 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/UpdateConfigurationResponse.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/UpdateConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.responses; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/UpdateLicenseRecordResponse.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/UpdateLicenseRecordResponse.java index ea8cb49ec26..7a7405a107f 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/UpdateLicenseRecordResponse.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/UpdateLicenseRecordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.responses; diff --git a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/UpdateProductLicenseResponse.java b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/UpdateProductLicenseResponse.java index 966de5b52c3..a4e913567a7 100644 --- a/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/UpdateProductLicenseResponse.java +++ b/bmc-licensemanager/src/main/java/com/oracle/bmc/licensemanager/responses/UpdateProductLicenseResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.licensemanager.responses; diff --git a/bmc-licensemanager/src/main/resources/com/oracle/bmc/licensemanager/client.properties b/bmc-licensemanager/src/main/resources/com/oracle/bmc/licensemanager/client.properties index d69953478d4..895bcc030b4 100644 --- a/bmc-licensemanager/src/main/resources/com/oracle/bmc/licensemanager/client.properties +++ b/bmc-licensemanager/src/main/resources/com/oracle/bmc/licensemanager/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-limits/pom.xml b/bmc-limits/pom.xml index 1d08eb64cee..87424ed5944 100644 --- a/bmc-limits/pom.xml +++ b/bmc-limits/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-limits @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/Limits.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/Limits.java index c6b74072dc7..becd5e3a2fc 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/Limits.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/Limits.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/LimitsAsync.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/LimitsAsync.java index 4bfa9870119..a9d07169b72 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/LimitsAsync.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/LimitsAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/LimitsAsyncClient.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/LimitsAsyncClient.java index 7c298d37fdd..debabf8ca29 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/LimitsAsyncClient.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/LimitsAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/LimitsClient.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/LimitsClient.java index 4da5e2688fa..3da81968094 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/LimitsClient.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/LimitsClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/LimitsPaginators.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/LimitsPaginators.java index 1ede9fb0e31..9aa30f50853 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/LimitsPaginators.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/LimitsPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/Quotas.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/Quotas.java index 5b578587e1a..bda3d9d5e65 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/Quotas.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/Quotas.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/QuotasAsync.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/QuotasAsync.java index eabb7f6edc6..353e22c9a23 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/QuotasAsync.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/QuotasAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/QuotasAsyncClient.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/QuotasAsyncClient.java index 88254075917..6f7ff5cc593 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/QuotasAsyncClient.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/QuotasAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/QuotasClient.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/QuotasClient.java index 15c881a07b5..0a4fb67a27f 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/QuotasClient.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/QuotasClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/QuotasPaginators.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/QuotasPaginators.java index 80480a5a384..06b8f86f7fe 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/QuotasPaginators.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/QuotasPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/QuotasWaiters.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/QuotasWaiters.java index 3a14542da63..d5a07985088 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/QuotasWaiters.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/QuotasWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/AddLockDetails.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/AddLockDetails.java index 279484df62a..d042218a12a 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/AddLockDetails.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/AddLockDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.model; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/CreateQuotaDetails.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/CreateQuotaDetails.java index af254100e75..2fd285a0155 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/CreateQuotaDetails.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/CreateQuotaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.model; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/LimitDefinitionSummary.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/LimitDefinitionSummary.java index 65e4b917ee6..5c85948d02b 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/LimitDefinitionSummary.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/LimitDefinitionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.model; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/LimitValueSummary.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/LimitValueSummary.java index 98880f140e4..5fba0a9460b 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/LimitValueSummary.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/LimitValueSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.model; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/Quota.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/Quota.java index 199152408ab..dba5b63009b 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/Quota.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/Quota.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.model; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/QuotaSummary.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/QuotaSummary.java index 4c0f6849730..b13b85c3055 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/QuotaSummary.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/QuotaSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.model; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/RemoveLockDetails.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/RemoveLockDetails.java index e2089b718f9..433dcc2882a 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/RemoveLockDetails.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/RemoveLockDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.model; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/ResourceAvailability.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/ResourceAvailability.java index 05171c4871f..b77b9a6bb79 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/ResourceAvailability.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/ResourceAvailability.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.model; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/ResourceLock.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/ResourceLock.java index c4327724626..4c4b407c43b 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/ResourceLock.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/ResourceLock.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.model; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/ServiceSummary.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/ServiceSummary.java index acb8eb7dbd2..2c1fc2e24a6 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/ServiceSummary.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/ServiceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.model; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/UpdateQuotaDetails.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/UpdateQuotaDetails.java index 42e3c90501f..45291c0433e 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/model/UpdateQuotaDetails.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/model/UpdateQuotaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.model; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/AddQuotaLockRequest.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/AddQuotaLockRequest.java index 2902860797b..c9162a3959e 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/AddQuotaLockRequest.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/AddQuotaLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.requests; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/CreateQuotaRequest.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/CreateQuotaRequest.java index 0e2da0d2b67..f4baea93170 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/CreateQuotaRequest.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/CreateQuotaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.requests; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/DeleteQuotaRequest.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/DeleteQuotaRequest.java index 7203ea9754a..c1cd1f2ba02 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/DeleteQuotaRequest.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/DeleteQuotaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.requests; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/GetQuotaRequest.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/GetQuotaRequest.java index d7242de39bb..668dcd7afde 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/GetQuotaRequest.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/GetQuotaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.requests; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/GetResourceAvailabilityRequest.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/GetResourceAvailabilityRequest.java index 366eb185079..2b40ee51cc3 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/GetResourceAvailabilityRequest.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/GetResourceAvailabilityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.requests; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/ListLimitDefinitionsRequest.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/ListLimitDefinitionsRequest.java index 58d47fed76c..109f2576174 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/ListLimitDefinitionsRequest.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/ListLimitDefinitionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.requests; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/ListLimitValuesRequest.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/ListLimitValuesRequest.java index 768fe16f3bb..4fa9524579d 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/ListLimitValuesRequest.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/ListLimitValuesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.requests; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/ListQuotasRequest.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/ListQuotasRequest.java index 109ae1c47f2..2953d9a17a3 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/ListQuotasRequest.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/ListQuotasRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.requests; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/ListServicesRequest.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/ListServicesRequest.java index 0d2ee47edab..2fb303870e7 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/ListServicesRequest.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/ListServicesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.requests; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/RemoveQuotaLockRequest.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/RemoveQuotaLockRequest.java index 4a01726902b..5fc755701f1 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/RemoveQuotaLockRequest.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/RemoveQuotaLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.requests; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/UpdateQuotaRequest.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/UpdateQuotaRequest.java index ff53cafff18..29e1e137e65 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/UpdateQuotaRequest.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/requests/UpdateQuotaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.requests; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/AddQuotaLockResponse.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/AddQuotaLockResponse.java index 96f8f720c5e..1de6fc523c3 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/AddQuotaLockResponse.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/AddQuotaLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.responses; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/CreateQuotaResponse.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/CreateQuotaResponse.java index ad7dcd43cb2..67afff6ff17 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/CreateQuotaResponse.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/CreateQuotaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.responses; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/DeleteQuotaResponse.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/DeleteQuotaResponse.java index e6d56e317c3..bc79ce803d1 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/DeleteQuotaResponse.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/DeleteQuotaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.responses; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/GetQuotaResponse.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/GetQuotaResponse.java index 9fd64cabdfa..4aeb724d3b8 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/GetQuotaResponse.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/GetQuotaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.responses; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/GetResourceAvailabilityResponse.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/GetResourceAvailabilityResponse.java index 695defaf5ca..6e4d74c7f3e 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/GetResourceAvailabilityResponse.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/GetResourceAvailabilityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.responses; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/ListLimitDefinitionsResponse.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/ListLimitDefinitionsResponse.java index 08eeec8432f..f6471819f6f 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/ListLimitDefinitionsResponse.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/ListLimitDefinitionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.responses; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/ListLimitValuesResponse.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/ListLimitValuesResponse.java index b9e3c89d3f8..14489093516 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/ListLimitValuesResponse.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/ListLimitValuesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.responses; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/ListQuotasResponse.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/ListQuotasResponse.java index 4f110d515f0..f569c7c3841 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/ListQuotasResponse.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/ListQuotasResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.responses; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/ListServicesResponse.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/ListServicesResponse.java index 8e55e834038..9a40800d355 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/ListServicesResponse.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/ListServicesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.responses; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/RemoveQuotaLockResponse.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/RemoveQuotaLockResponse.java index a9e52b1500d..c31c12daf23 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/RemoveQuotaLockResponse.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/RemoveQuotaLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.responses; diff --git a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/UpdateQuotaResponse.java b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/UpdateQuotaResponse.java index dc0dc229423..bf492b54f63 100644 --- a/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/UpdateQuotaResponse.java +++ b/bmc-limits/src/main/java/com/oracle/bmc/limits/responses/UpdateQuotaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.limits.responses; diff --git a/bmc-limits/src/main/resources/com/oracle/bmc/limits/client.properties b/bmc-limits/src/main/resources/com/oracle/bmc/limits/client.properties index 722fe55b288..d53efd847ef 100644 --- a/bmc-limits/src/main/resources/com/oracle/bmc/limits/client.properties +++ b/bmc-limits/src/main/resources/com/oracle/bmc/limits/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-loadbalancer/pom.xml b/bmc-loadbalancer/pom.xml index 5aa48d0bf1e..b8fb5c1c251 100644 --- a/bmc-loadbalancer/pom.xml +++ b/bmc-loadbalancer/pom.xml @@ -5,7 +5,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml @@ -18,7 +18,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancer.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancer.java index af50ceef398..d160cf0d467 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancer.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancerAsync.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancerAsync.java index a7e304e6983..fc7591dc608 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancerAsync.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancerAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancerAsyncClient.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancerAsyncClient.java index a2dd7d41a10..e9051d8b532 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancerAsyncClient.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancerAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancerClient.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancerClient.java index 89bf46680cf..6270291c81f 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancerClient.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancerClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancerPaginators.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancerPaginators.java index bc9461d874e..ed54520d44e 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancerPaginators.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancerPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancerWaiters.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancerWaiters.java index 03e29976e00..a69fa8a79f5 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancerWaiters.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/LoadBalancerWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Action.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Action.java index e9039309c2d..2908955f290 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Action.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Action.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/AddHttpRequestHeaderRule.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/AddHttpRequestHeaderRule.java index 100b3990302..bf73cb47af0 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/AddHttpRequestHeaderRule.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/AddHttpRequestHeaderRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/AddHttpResponseHeaderRule.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/AddHttpResponseHeaderRule.java index 6a4f91acd31..6a040695b49 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/AddHttpResponseHeaderRule.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/AddHttpResponseHeaderRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/AllowRule.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/AllowRule.java index 439da3811a8..11f40bf3186 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/AllowRule.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/AllowRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Backend.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Backend.java index e7f076d064d..b40e52ce79f 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Backend.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Backend.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/BackendDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/BackendDetails.java index 316c5cba54e..78020978bb5 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/BackendDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/BackendDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/BackendHealth.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/BackendHealth.java index a26318d6f6d..6416305a1d3 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/BackendHealth.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/BackendHealth.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/BackendSet.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/BackendSet.java index 8cf5cf0eb64..12182dc06c8 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/BackendSet.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/BackendSet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/BackendSetDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/BackendSetDetails.java index c6759d0610e..cd9b9436d4b 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/BackendSetDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/BackendSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/BackendSetHealth.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/BackendSetHealth.java index d473554123f..ab6e5e09574 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/BackendSetHealth.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/BackendSetHealth.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Certificate.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Certificate.java index 1737117dd77..27ac29a9cda 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Certificate.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Certificate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CertificateDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CertificateDetails.java index 0ac68787290..fbc378e5f98 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CertificateDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CertificateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ChangeLoadBalancerCompartmentDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ChangeLoadBalancerCompartmentDetails.java index 083227d6847..56d75b93f6d 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ChangeLoadBalancerCompartmentDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ChangeLoadBalancerCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ConnectionConfiguration.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ConnectionConfiguration.java index 047c4b4e512..7af3fb6c037 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ConnectionConfiguration.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ConnectionConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ControlAccessUsingHttpMethodsRule.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ControlAccessUsingHttpMethodsRule.java index e83b8cd729a..e2a1428c94c 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ControlAccessUsingHttpMethodsRule.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ControlAccessUsingHttpMethodsRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateBackendDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateBackendDetails.java index aad66a8557d..74fed77f159 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateBackendDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateBackendDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateBackendSetDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateBackendSetDetails.java index e40ce62d0ad..d435d701692 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateBackendSetDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateBackendSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateCertificateDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateCertificateDetails.java index a1b6204d366..8f41005d240 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateCertificateDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateCertificateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateHostnameDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateHostnameDetails.java index d313bf393fb..b24e2398198 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateHostnameDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateHostnameDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateListenerDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateListenerDetails.java index 09cef340ebe..8590a61a9fc 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateListenerDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateListenerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateLoadBalancerDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateLoadBalancerDetails.java index 315886bfec5..863d12a1ad7 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateLoadBalancerDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateLoadBalancerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreatePathRouteSetDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreatePathRouteSetDetails.java index d6d5f751127..08e6c228453 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreatePathRouteSetDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreatePathRouteSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateRoutingPolicyDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateRoutingPolicyDetails.java index 7a343a3cf72..fbcd6415f14 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateRoutingPolicyDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateRoutingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateRuleSetDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateRuleSetDetails.java index b980d2bd050..9066b99d09e 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateRuleSetDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateRuleSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateSSLCipherSuiteDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateSSLCipherSuiteDetails.java index 8ba6853409a..37c5170dde0 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateSSLCipherSuiteDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/CreateSSLCipherSuiteDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ExtendHttpRequestHeaderValueRule.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ExtendHttpRequestHeaderValueRule.java index 82462065124..3e526a5464e 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ExtendHttpRequestHeaderValueRule.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ExtendHttpRequestHeaderValueRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ExtendHttpResponseHeaderValueRule.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ExtendHttpResponseHeaderValueRule.java index b6bec3dcb38..e676d4e0efa 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ExtendHttpResponseHeaderValueRule.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ExtendHttpResponseHeaderValueRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ForwardToBackendSet.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ForwardToBackendSet.java index 690a914f3fe..d154efdef5e 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ForwardToBackendSet.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ForwardToBackendSet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/HealthCheckResult.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/HealthCheckResult.java index 9f6c74f6867..4e2612611e4 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/HealthCheckResult.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/HealthCheckResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/HealthChecker.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/HealthChecker.java index 3a4e6436b3e..630ce03f61e 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/HealthChecker.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/HealthChecker.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/HealthCheckerDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/HealthCheckerDetails.java index f308964b9ef..c22a9f729ee 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/HealthCheckerDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/HealthCheckerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Hostname.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Hostname.java index 2e76af69300..6e9c4cca056 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Hostname.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Hostname.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/HostnameDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/HostnameDetails.java index 5990843e802..38361249730 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/HostnameDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/HostnameDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/HttpHeaderRule.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/HttpHeaderRule.java index 9cedf47193b..aca97926630 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/HttpHeaderRule.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/HttpHeaderRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/IpAddress.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/IpAddress.java index 8ddb6dd366f..704e766a712 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/IpAddress.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/IpAddress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/IpBasedMaxConnectionsRule.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/IpBasedMaxConnectionsRule.java index b22ab8e006d..1f4fb2214fb 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/IpBasedMaxConnectionsRule.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/IpBasedMaxConnectionsRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/IpMaxConnections.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/IpMaxConnections.java index a0d4921d04c..42f0c968f26 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/IpMaxConnections.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/IpMaxConnections.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LBCookieSessionPersistenceConfigurationDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LBCookieSessionPersistenceConfigurationDetails.java index b83efddb149..724a2a98515 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LBCookieSessionPersistenceConfigurationDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LBCookieSessionPersistenceConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Listener.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Listener.java index 2df7270cf1a..8b3ebd2d00f 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Listener.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Listener.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ListenerDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ListenerDetails.java index ffc8be9cf66..7b9e567ccd4 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ListenerDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ListenerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ListenerRuleSummary.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ListenerRuleSummary.java index b28e5242765..43bab4ffb00 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ListenerRuleSummary.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ListenerRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancer.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancer.java index 14ca54f553b..41f04c17103 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancer.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancerHealth.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancerHealth.java index 39f00142574..f4c465e2dff 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancerHealth.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancerHealth.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancerHealthSummary.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancerHealthSummary.java index 1c72062d709..6a9d4ce023d 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancerHealthSummary.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancerHealthSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancerPolicy.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancerPolicy.java index 2537aef15b1..6a525c0c1ca 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancerPolicy.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancerPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancerProtocol.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancerProtocol.java index 51c45101878..55494b19423 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancerProtocol.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancerProtocol.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancerShape.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancerShape.java index 2241c4240c9..c77e3cdfbe8 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancerShape.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/LoadBalancerShape.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/PathMatchCondition.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/PathMatchCondition.java index 38d0a199e47..f041c79136f 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/PathMatchCondition.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/PathMatchCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/PathMatchType.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/PathMatchType.java index 1032b0b4411..cd661c94c18 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/PathMatchType.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/PathMatchType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/PathRoute.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/PathRoute.java index a9f02e2816f..3b715f7cab4 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/PathRoute.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/PathRoute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/PathRouteSet.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/PathRouteSet.java index 04b4dd82b0a..3c86f077b1d 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/PathRouteSet.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/PathRouteSet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/PathRouteSetDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/PathRouteSetDetails.java index 2699a56ffa6..fe85107514d 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/PathRouteSetDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/PathRouteSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RedirectRule.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RedirectRule.java index 774e202a853..671efff69a6 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RedirectRule.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RedirectRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RedirectUri.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RedirectUri.java index 6d0cf71fa2b..587082ff74a 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RedirectUri.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RedirectUri.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RemoveHttpRequestHeaderRule.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RemoveHttpRequestHeaderRule.java index e4bd8323727..8a7ff5c6bad 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RemoveHttpRequestHeaderRule.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RemoveHttpRequestHeaderRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RemoveHttpResponseHeaderRule.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RemoveHttpResponseHeaderRule.java index 53402c77d00..1cf6645481c 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RemoveHttpResponseHeaderRule.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RemoveHttpResponseHeaderRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ReservedIP.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ReservedIP.java index f540af23143..7926b649234 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ReservedIP.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ReservedIP.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RoutingPolicy.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RoutingPolicy.java index 594bcecd4f4..0b33025a5b4 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RoutingPolicy.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RoutingPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RoutingPolicyDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RoutingPolicyDetails.java index 2da4778ee09..f40f2232a1b 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RoutingPolicyDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RoutingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RoutingRule.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RoutingRule.java index 912d7adddcf..dc94a9a4023 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RoutingRule.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RoutingRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Rule.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Rule.java index b4d33367647..84a3ab6dab1 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Rule.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/Rule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RuleCondition.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RuleCondition.java index 981d1eecc7b..50014da114d 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RuleCondition.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RuleCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RuleSet.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RuleSet.java index 48486a93dd8..4b0e4eb65dd 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RuleSet.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RuleSet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RuleSetDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RuleSetDetails.java index 1263749a021..0177dc70db6 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RuleSetDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/RuleSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SSLCipherSuite.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SSLCipherSuite.java index 9449e007f29..368c5b90257 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SSLCipherSuite.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SSLCipherSuite.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SSLCipherSuiteDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SSLCipherSuiteDetails.java index b57fcbaaef6..5d31d20230d 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SSLCipherSuiteDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SSLCipherSuiteDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SSLConfiguration.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SSLConfiguration.java index f9765ee4fb4..d266bea4f82 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SSLConfiguration.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SSLConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SSLConfigurationDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SSLConfigurationDetails.java index ccd7a5efc8e..7448dddb5fb 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SSLConfigurationDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SSLConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SessionPersistenceConfigurationDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SessionPersistenceConfigurationDetails.java index 19c0e250558..20992558ed8 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SessionPersistenceConfigurationDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SessionPersistenceConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ShapeDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ShapeDetails.java index dc7e51b67c8..9b7c5aba62e 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ShapeDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/ShapeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SourceIpAddressCondition.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SourceIpAddressCondition.java index 33a57d2d2dc..66389c1ba4e 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SourceIpAddressCondition.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SourceIpAddressCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SourceVcnIdCondition.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SourceVcnIdCondition.java index c81982a70eb..36c38ed0f7a 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SourceVcnIdCondition.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SourceVcnIdCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SourceVcnIpAddressCondition.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SourceVcnIpAddressCondition.java index da02a87dadd..3881e6d7af8 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SourceVcnIpAddressCondition.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/SourceVcnIpAddressCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateBackendDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateBackendDetails.java index fe42cfe9922..c93f1496d75 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateBackendDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateBackendDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateBackendSetDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateBackendSetDetails.java index fbd3d12ab32..95049f4bc16 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateBackendSetDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateBackendSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateHealthCheckerDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateHealthCheckerDetails.java index e33610e5589..e49e3e6505d 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateHealthCheckerDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateHealthCheckerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateHostnameDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateHostnameDetails.java index c08adc33112..d6e2af83490 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateHostnameDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateHostnameDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateListenerDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateListenerDetails.java index 55f9f248225..53abf22aead 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateListenerDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateListenerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateLoadBalancerDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateLoadBalancerDetails.java index 97c3a045b8c..3809e74f809 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateLoadBalancerDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateLoadBalancerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateLoadBalancerShapeDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateLoadBalancerShapeDetails.java index 17318fc8cae..34334ab5606 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateLoadBalancerShapeDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateLoadBalancerShapeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateNetworkSecurityGroupsDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateNetworkSecurityGroupsDetails.java index 8a923c6335a..eae636463e4 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateNetworkSecurityGroupsDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateNetworkSecurityGroupsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdatePathRouteSetDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdatePathRouteSetDetails.java index a24dd32d614..e7a835db0be 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdatePathRouteSetDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdatePathRouteSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateRoutingPolicyDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateRoutingPolicyDetails.java index 652f6571251..0152e7369ef 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateRoutingPolicyDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateRoutingPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateRuleSetDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateRuleSetDetails.java index b769ab842c1..84d5be50b82 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateRuleSetDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateRuleSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateSSLCipherSuiteDetails.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateSSLCipherSuiteDetails.java index 7923356e586..6777fdcc117 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateSSLCipherSuiteDetails.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/UpdateSSLCipherSuiteDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/WorkRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/WorkRequest.java index a56aff9edba..e6d9d1bc667 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/WorkRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/WorkRequestError.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/WorkRequestError.java index d86e31f7743..465a09a8c19 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/WorkRequestError.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.model; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ChangeLoadBalancerCompartmentRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ChangeLoadBalancerCompartmentRequest.java index 2f83a84243f..82528ed0efd 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ChangeLoadBalancerCompartmentRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ChangeLoadBalancerCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateBackendRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateBackendRequest.java index 922423bff8e..c1f862ba2a2 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateBackendRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateBackendRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateBackendSetRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateBackendSetRequest.java index eebd2369f9e..baa580aced9 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateBackendSetRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateBackendSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateCertificateRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateCertificateRequest.java index abd0dff3a67..e8d1fcb7ef4 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateCertificateRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateCertificateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateHostnameRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateHostnameRequest.java index 627dc921a79..c282fda6187 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateHostnameRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateHostnameRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateListenerRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateListenerRequest.java index 769daff863c..e024e1f1337 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateListenerRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateListenerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateLoadBalancerRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateLoadBalancerRequest.java index ec09dd1853b..ee6f2fc0fb3 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateLoadBalancerRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateLoadBalancerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreatePathRouteSetRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreatePathRouteSetRequest.java index 523abf1d68e..86c7422a480 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreatePathRouteSetRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreatePathRouteSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateRoutingPolicyRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateRoutingPolicyRequest.java index d35ec631d64..6bceb9dfc4d 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateRoutingPolicyRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateRoutingPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateRuleSetRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateRuleSetRequest.java index 1055834625a..0d3307c6d04 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateRuleSetRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateRuleSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateSSLCipherSuiteRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateSSLCipherSuiteRequest.java index 74b458f93c9..8285700f021 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateSSLCipherSuiteRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/CreateSSLCipherSuiteRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteBackendRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteBackendRequest.java index df21f2c6a17..d2b5aad35b9 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteBackendRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteBackendRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteBackendSetRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteBackendSetRequest.java index 5bdee487bdf..fd1c61ff696 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteBackendSetRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteBackendSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteCertificateRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteCertificateRequest.java index 2e73988f672..5354d48dbad 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteCertificateRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteCertificateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteHostnameRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteHostnameRequest.java index 5affd8f7ddd..e002b2dc4b7 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteHostnameRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteHostnameRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteListenerRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteListenerRequest.java index 2dd686bf2c1..aca42e7b8dd 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteListenerRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteListenerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteLoadBalancerRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteLoadBalancerRequest.java index 33d77543a69..e822442818d 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteLoadBalancerRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteLoadBalancerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeletePathRouteSetRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeletePathRouteSetRequest.java index 716c038846b..19a76a9ecba 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeletePathRouteSetRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeletePathRouteSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteRoutingPolicyRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteRoutingPolicyRequest.java index 386c9f95cba..22eeb517fe0 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteRoutingPolicyRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteRoutingPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteRuleSetRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteRuleSetRequest.java index 2f8d5ada9a1..85e84ccb736 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteRuleSetRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteRuleSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteSSLCipherSuiteRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteSSLCipherSuiteRequest.java index dddf6ff710f..4421fdf8e9b 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteSSLCipherSuiteRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/DeleteSSLCipherSuiteRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetBackendHealthRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetBackendHealthRequest.java index 7240dbba184..8f971af6500 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetBackendHealthRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetBackendHealthRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetBackendRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetBackendRequest.java index e8a9b50cd1e..953d21e836d 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetBackendRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetBackendRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetBackendSetHealthRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetBackendSetHealthRequest.java index 4f5e1879064..f4250a330b5 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetBackendSetHealthRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetBackendSetHealthRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetBackendSetRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetBackendSetRequest.java index 36bc408d4aa..e069b83b29c 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetBackendSetRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetBackendSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetHealthCheckerRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetHealthCheckerRequest.java index efdcaa3a95f..57acb511eae 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetHealthCheckerRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetHealthCheckerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetHostnameRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetHostnameRequest.java index cfb95354e94..d5cb554d793 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetHostnameRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetHostnameRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetLoadBalancerHealthRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetLoadBalancerHealthRequest.java index e61ab74b0a1..1557c98dfa6 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetLoadBalancerHealthRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetLoadBalancerHealthRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetLoadBalancerRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetLoadBalancerRequest.java index f0f31d9ed8a..5c2a2df357c 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetLoadBalancerRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetLoadBalancerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetPathRouteSetRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetPathRouteSetRequest.java index 097a7fdaa40..de66df4cb3e 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetPathRouteSetRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetPathRouteSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetRoutingPolicyRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetRoutingPolicyRequest.java index 5330b93737a..67e559fdd92 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetRoutingPolicyRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetRoutingPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetRuleSetRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetRuleSetRequest.java index 5827fd24122..846fa7a11cc 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetRuleSetRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetRuleSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetSSLCipherSuiteRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetSSLCipherSuiteRequest.java index 449f9e333ec..1c84b5c16c5 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetSSLCipherSuiteRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetSSLCipherSuiteRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetWorkRequestRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetWorkRequestRequest.java index 72ba2320f05..7af6e90027d 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetWorkRequestRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListBackendSetsRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListBackendSetsRequest.java index cd10ac521f9..1da782ebc1d 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListBackendSetsRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListBackendSetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListBackendsRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListBackendsRequest.java index 023ed273b81..ab80b457b96 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListBackendsRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListBackendsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListCertificatesRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListCertificatesRequest.java index 2578c5c90a4..5aee02a6448 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListCertificatesRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListCertificatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListHostnamesRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListHostnamesRequest.java index 4da09efdb48..bb3d2ce3ac2 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListHostnamesRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListHostnamesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListListenerRulesRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListListenerRulesRequest.java index 4562c6dd0c0..db52b78be81 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListListenerRulesRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListListenerRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListLoadBalancerHealthsRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListLoadBalancerHealthsRequest.java index d420898f2b2..21086340da7 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListLoadBalancerHealthsRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListLoadBalancerHealthsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListLoadBalancersRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListLoadBalancersRequest.java index 3ff242adf7e..dcfc473940a 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListLoadBalancersRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListLoadBalancersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListPathRouteSetsRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListPathRouteSetsRequest.java index a11c9f95114..ee9eacac6db 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListPathRouteSetsRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListPathRouteSetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListPoliciesRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListPoliciesRequest.java index ecc10c4ba4c..3e9c4e9b80b 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListPoliciesRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListProtocolsRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListProtocolsRequest.java index 7a3f8978eb5..4b3aea97ed6 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListProtocolsRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListProtocolsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListRoutingPoliciesRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListRoutingPoliciesRequest.java index b39edc2d80b..342faccbc4b 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListRoutingPoliciesRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListRoutingPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListRuleSetsRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListRuleSetsRequest.java index ecd2ff93060..e92bfae695f 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListRuleSetsRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListRuleSetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListSSLCipherSuitesRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListSSLCipherSuitesRequest.java index 47079267885..9e70330da48 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListSSLCipherSuitesRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListSSLCipherSuitesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListShapesRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListShapesRequest.java index d0df2b5c09e..1b78084496e 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListShapesRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListWorkRequestsRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListWorkRequestsRequest.java index 824798e92ec..f43fb65c28a 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListWorkRequestsRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateBackendRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateBackendRequest.java index 22da7e79057..59dc0419da0 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateBackendRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateBackendRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateBackendSetRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateBackendSetRequest.java index 39c85e26966..b5aa0bff240 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateBackendSetRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateBackendSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateHealthCheckerRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateHealthCheckerRequest.java index 7a2084b3d7b..6344234e63e 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateHealthCheckerRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateHealthCheckerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateHostnameRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateHostnameRequest.java index a869ef2c69a..c308fd86348 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateHostnameRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateHostnameRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateListenerRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateListenerRequest.java index 7c915d1c40e..db50574437a 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateListenerRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateListenerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateLoadBalancerRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateLoadBalancerRequest.java index b5a698a7e6d..daa2eba7230 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateLoadBalancerRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateLoadBalancerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateLoadBalancerShapeRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateLoadBalancerShapeRequest.java index 0564fe34633..a847a7a771a 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateLoadBalancerShapeRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateLoadBalancerShapeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateNetworkSecurityGroupsRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateNetworkSecurityGroupsRequest.java index 7bebccfa5f0..318b6228fdc 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateNetworkSecurityGroupsRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateNetworkSecurityGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdatePathRouteSetRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdatePathRouteSetRequest.java index 3a46aca0724..26bd72bd65a 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdatePathRouteSetRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdatePathRouteSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateRoutingPolicyRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateRoutingPolicyRequest.java index 5d6bc965b18..2c2af3b2644 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateRoutingPolicyRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateRoutingPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateRuleSetRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateRuleSetRequest.java index f8715fbd1ca..02fd2f72a56 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateRuleSetRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateRuleSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateSSLCipherSuiteRequest.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateSSLCipherSuiteRequest.java index f13ce4e9f28..90500249561 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateSSLCipherSuiteRequest.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/requests/UpdateSSLCipherSuiteRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.requests; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ChangeLoadBalancerCompartmentResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ChangeLoadBalancerCompartmentResponse.java index fe089be0440..0f421ef2f60 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ChangeLoadBalancerCompartmentResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ChangeLoadBalancerCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateBackendResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateBackendResponse.java index 8b68f48ace5..0af19cfd437 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateBackendResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateBackendResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateBackendSetResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateBackendSetResponse.java index a8e9c1c3371..f29f6eba8aa 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateBackendSetResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateBackendSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateCertificateResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateCertificateResponse.java index 50e0fdbab7f..8e6b300849b 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateCertificateResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateCertificateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateHostnameResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateHostnameResponse.java index 0993dc0f86b..125d70b0366 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateHostnameResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateHostnameResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateListenerResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateListenerResponse.java index f835f559d4a..fbc192f23a5 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateListenerResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateListenerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateLoadBalancerResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateLoadBalancerResponse.java index f9efad84c66..01c6e61e9a3 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateLoadBalancerResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateLoadBalancerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreatePathRouteSetResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreatePathRouteSetResponse.java index 9f30a472388..c6705145496 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreatePathRouteSetResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreatePathRouteSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateRoutingPolicyResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateRoutingPolicyResponse.java index e828deddd10..a7b9032d2ec 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateRoutingPolicyResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateRoutingPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateRuleSetResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateRuleSetResponse.java index 7ce0dc4906e..133e746be45 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateRuleSetResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateRuleSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateSSLCipherSuiteResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateSSLCipherSuiteResponse.java index 897b46a1d27..c8d61e3a911 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateSSLCipherSuiteResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/CreateSSLCipherSuiteResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteBackendResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteBackendResponse.java index 791f223b81a..6c42a5ac385 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteBackendResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteBackendResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteBackendSetResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteBackendSetResponse.java index a71124710c7..0d0559c1969 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteBackendSetResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteBackendSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteCertificateResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteCertificateResponse.java index 15513e1a910..1df2f4f97e1 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteCertificateResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteCertificateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteHostnameResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteHostnameResponse.java index 7b48ce4097c..ac4c2528dfa 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteHostnameResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteHostnameResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteListenerResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteListenerResponse.java index f17ca831100..65c37ebef69 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteListenerResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteListenerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteLoadBalancerResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteLoadBalancerResponse.java index 7d594db9644..a7ec5a4c0a3 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteLoadBalancerResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteLoadBalancerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeletePathRouteSetResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeletePathRouteSetResponse.java index 06e75b59a3b..1498a80fbde 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeletePathRouteSetResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeletePathRouteSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteRoutingPolicyResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteRoutingPolicyResponse.java index 1a9d3fd1cce..cb0c3bcf7ee 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteRoutingPolicyResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteRoutingPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteRuleSetResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteRuleSetResponse.java index 74a0ea4f7c7..c93dc5e9182 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteRuleSetResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteRuleSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteSSLCipherSuiteResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteSSLCipherSuiteResponse.java index 7168222e7a7..881231cd4a2 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteSSLCipherSuiteResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/DeleteSSLCipherSuiteResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetBackendHealthResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetBackendHealthResponse.java index 983519e8948..02d33ad05f8 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetBackendHealthResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetBackendHealthResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetBackendResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetBackendResponse.java index c36d97f5beb..0b1cef74eb7 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetBackendResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetBackendResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetBackendSetHealthResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetBackendSetHealthResponse.java index 5bd65ba7dbb..6fdba70b9f7 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetBackendSetHealthResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetBackendSetHealthResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetBackendSetResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetBackendSetResponse.java index 59d664abbb7..9d48477583e 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetBackendSetResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetBackendSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetHealthCheckerResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetHealthCheckerResponse.java index c17f8bad721..605207fc4f2 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetHealthCheckerResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetHealthCheckerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetHostnameResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetHostnameResponse.java index 3802b9f216e..d757755612c 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetHostnameResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetHostnameResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetLoadBalancerHealthResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetLoadBalancerHealthResponse.java index 80f66a7ebf4..9982f39f7d8 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetLoadBalancerHealthResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetLoadBalancerHealthResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetLoadBalancerResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetLoadBalancerResponse.java index 8bf8997351f..33aa4dbc083 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetLoadBalancerResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetLoadBalancerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetPathRouteSetResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetPathRouteSetResponse.java index 52c861c79ff..cb25ff1f79b 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetPathRouteSetResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetPathRouteSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetRoutingPolicyResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetRoutingPolicyResponse.java index 0569c04fa17..0979cf148e8 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetRoutingPolicyResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetRoutingPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetRuleSetResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetRuleSetResponse.java index ac6b66a1d2a..1997759b7c7 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetRuleSetResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetRuleSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetSSLCipherSuiteResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetSSLCipherSuiteResponse.java index 0d41abeefa3..9205df2d602 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetSSLCipherSuiteResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetSSLCipherSuiteResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetWorkRequestResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetWorkRequestResponse.java index 697a27f0ad2..b87796cf704 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetWorkRequestResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListBackendSetsResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListBackendSetsResponse.java index 148cbf52ef7..8e427cec4db 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListBackendSetsResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListBackendSetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListBackendsResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListBackendsResponse.java index f864659e4cc..60eb49295b5 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListBackendsResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListBackendsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListCertificatesResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListCertificatesResponse.java index 4d46f8960c6..afb42d2bdf5 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListCertificatesResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListCertificatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListHostnamesResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListHostnamesResponse.java index 12c771234e4..1dd08dbd427 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListHostnamesResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListHostnamesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListListenerRulesResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListListenerRulesResponse.java index e7629c33e99..68ca049a424 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListListenerRulesResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListListenerRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListLoadBalancerHealthsResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListLoadBalancerHealthsResponse.java index 591917f71a6..ea103bd5619 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListLoadBalancerHealthsResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListLoadBalancerHealthsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListLoadBalancersResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListLoadBalancersResponse.java index a10c267bdc5..71bebfd85fa 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListLoadBalancersResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListLoadBalancersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListPathRouteSetsResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListPathRouteSetsResponse.java index 6a8c9241522..17ac662d1e3 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListPathRouteSetsResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListPathRouteSetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListPoliciesResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListPoliciesResponse.java index 8bda50d8baa..4c43822ef19 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListPoliciesResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListProtocolsResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListProtocolsResponse.java index 563502357a9..801666471fd 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListProtocolsResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListProtocolsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListRoutingPoliciesResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListRoutingPoliciesResponse.java index b4cabd7ce6f..b720aba8de0 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListRoutingPoliciesResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListRoutingPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListRuleSetsResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListRuleSetsResponse.java index 1efe3453fc9..c1de6d23258 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListRuleSetsResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListRuleSetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListSSLCipherSuitesResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListSSLCipherSuitesResponse.java index 80f5707849a..f96126e4005 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListSSLCipherSuitesResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListSSLCipherSuitesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListShapesResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListShapesResponse.java index aef27c80f0c..b2eca53b0d4 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListShapesResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListWorkRequestsResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListWorkRequestsResponse.java index f01fbdcaef0..1a555c5f306 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListWorkRequestsResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateBackendResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateBackendResponse.java index d0c9f3f7b9f..7eb5b9c18bf 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateBackendResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateBackendResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateBackendSetResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateBackendSetResponse.java index f97cf5f12b1..f3895fe9bb9 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateBackendSetResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateBackendSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateHealthCheckerResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateHealthCheckerResponse.java index 14c14a572e7..008b1dda89a 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateHealthCheckerResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateHealthCheckerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateHostnameResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateHostnameResponse.java index 58345bd1a35..b2ff1714274 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateHostnameResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateHostnameResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateListenerResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateListenerResponse.java index 075007bc55d..46b6f13cc2a 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateListenerResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateListenerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateLoadBalancerResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateLoadBalancerResponse.java index 3f10b272fe5..9c7f97c7b94 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateLoadBalancerResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateLoadBalancerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateLoadBalancerShapeResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateLoadBalancerShapeResponse.java index b6cc2f152a3..e94bfb66774 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateLoadBalancerShapeResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateLoadBalancerShapeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateNetworkSecurityGroupsResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateNetworkSecurityGroupsResponse.java index 6302882605e..597b29e041b 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateNetworkSecurityGroupsResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateNetworkSecurityGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdatePathRouteSetResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdatePathRouteSetResponse.java index dcfb67b72c1..849c5aec058 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdatePathRouteSetResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdatePathRouteSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateRoutingPolicyResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateRoutingPolicyResponse.java index 2ab25a12654..ac7a0818260 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateRoutingPolicyResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateRoutingPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateRuleSetResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateRuleSetResponse.java index f991977d5d8..44492df3e58 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateRuleSetResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateRuleSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateSSLCipherSuiteResponse.java b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateSSLCipherSuiteResponse.java index 7e7c80f094e..0c03edf4730 100644 --- a/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateSSLCipherSuiteResponse.java +++ b/bmc-loadbalancer/src/main/java/com/oracle/bmc/loadbalancer/responses/UpdateSSLCipherSuiteResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loadbalancer.responses; diff --git a/bmc-loadbalancer/src/main/resources/com/oracle/bmc/loadbalancer/client.properties b/bmc-loadbalancer/src/main/resources/com/oracle/bmc/loadbalancer/client.properties index ccd99b8bc72..a658ecd99d4 100644 --- a/bmc-loadbalancer/src/main/resources/com/oracle/bmc/loadbalancer/client.properties +++ b/bmc-loadbalancer/src/main/resources/com/oracle/bmc/loadbalancer/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-lockbox/pom.xml b/bmc-lockbox/pom.xml index f0bbbf38241..15e536bbf69 100644 --- a/bmc-lockbox/pom.xml +++ b/bmc-lockbox/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-lockbox @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/Lockbox.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/Lockbox.java index 06aa2fe8cc9..f855f6028da 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/Lockbox.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/Lockbox.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/LockboxAsync.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/LockboxAsync.java index 83d24d17f3e..83674aae248 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/LockboxAsync.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/LockboxAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/LockboxAsyncClient.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/LockboxAsyncClient.java index 67ac28cda50..df740437a3e 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/LockboxAsyncClient.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/LockboxAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/LockboxClient.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/LockboxClient.java index 9538b34370c..fae922ae025 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/LockboxClient.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/LockboxClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/LockboxPaginators.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/LockboxPaginators.java index 9ab224c18e5..b345ca232c1 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/LockboxPaginators.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/LockboxPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/LockboxWaiters.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/LockboxWaiters.java index 135f939bfb4..3175a26b99a 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/LockboxWaiters.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/LockboxWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessContextAttribute.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessContextAttribute.java index 2acd3ec3289..dcf8ee18a34 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessContextAttribute.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessContextAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessContextAttributeCollection.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessContextAttributeCollection.java index caf46d132db..a9c15460bfe 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessContextAttributeCollection.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessContextAttributeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessMaterials.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessMaterials.java index 9aba33385b7..948fdfccb49 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessMaterials.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessMaterials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessRequest.java index 1312c18758c..632dbcebb61 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessRequestActionType.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessRequestActionType.java index ec3580d37c7..bd35a37b6e9 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessRequestActionType.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessRequestActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessRequestCollection.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessRequestCollection.java index 447e5789bef..322ea29b478 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessRequestCollection.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessRequestCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessRequestExt.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessRequestExt.java index 434d92f0b15..a60f42f121e 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessRequestExt.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessRequestExt.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessRequestSummary.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessRequestSummary.java index 99958cf726e..f039b590871 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessRequestSummary.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/AccessRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ActionType.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ActionType.java index 3a73732d6a1..aa6fd966446 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ActionType.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ActivityLog.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ActivityLog.java index 58837d76314..c10ba952093 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ActivityLog.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ActivityLog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApprovalTemplate.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApprovalTemplate.java index 6b492c5fb81..ab3d3493b64 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApprovalTemplate.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApprovalTemplate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApprovalTemplateCollection.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApprovalTemplateCollection.java index c4399450ee2..e45676b0dd2 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApprovalTemplateCollection.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApprovalTemplateCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApprovalTemplateSummary.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApprovalTemplateSummary.java index 7fc26e0a2b5..43e5ad9a23b 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApprovalTemplateSummary.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApprovalTemplateSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApproverInfo.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApproverInfo.java index fc9029a9414..d1b06eb7a04 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApproverInfo.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApproverInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApproverLevels.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApproverLevels.java index 149c12a6c78..ad276620dbb 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApproverLevels.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApproverLevels.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApproverType.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApproverType.java index 6dea9e830dd..723f38dfe98 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApproverType.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ApproverType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ChangeApprovalTemplateCompartmentDetails.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ChangeApprovalTemplateCompartmentDetails.java index 39dd665f627..2b31727e764 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ChangeApprovalTemplateCompartmentDetails.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ChangeApprovalTemplateCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ChangeLockboxCompartmentDetails.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ChangeLockboxCompartmentDetails.java index 0403744629d..0b46ce91e24 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ChangeLockboxCompartmentDetails.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ChangeLockboxCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/CreateAccessRequestDetails.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/CreateAccessRequestDetails.java index d8c1e679b8c..4eee8855119 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/CreateAccessRequestDetails.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/CreateAccessRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/CreateApprovalTemplateDetails.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/CreateApprovalTemplateDetails.java index f60a24d5f3c..4d61b3f8820 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/CreateApprovalTemplateDetails.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/CreateApprovalTemplateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/CreateLockboxDetails.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/CreateLockboxDetails.java index e17476ba54b..f462bc7a3f0 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/CreateLockboxDetails.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/CreateLockboxDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ExportAccessRequestsDetails.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ExportAccessRequestsDetails.java index afdb2ae6441..907fb41b324 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ExportAccessRequestsDetails.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/ExportAccessRequestsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/HandleAccessRequestDetails.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/HandleAccessRequestDetails.java index 3269a50186e..a531e3e8d47 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/HandleAccessRequestDetails.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/HandleAccessRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/Lockbox.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/Lockbox.java index 4c9efa4ff70..12375028f3a 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/Lockbox.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/Lockbox.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/LockboxAutoApprovalState.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/LockboxAutoApprovalState.java index 6759579316b..6af442837c7 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/LockboxAutoApprovalState.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/LockboxAutoApprovalState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/LockboxCollection.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/LockboxCollection.java index 1420051a6f5..fb7291c8cc1 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/LockboxCollection.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/LockboxCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/LockboxPartner.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/LockboxPartner.java index 59425653b9f..b82d54efafe 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/LockboxPartner.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/LockboxPartner.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/LockboxSummary.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/LockboxSummary.java index 3f86c649345..897d30fc350 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/LockboxSummary.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/LockboxSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/OperationStatus.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/OperationStatus.java index a9832db5e1b..5830a117a2d 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/OperationStatus.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/OperationType.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/OperationType.java index 71905d5c33a..142b6f0a423 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/OperationType.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/PersonaLevel.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/PersonaLevel.java index 4e365a1120e..8fb0cf586a7 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/PersonaLevel.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/PersonaLevel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/SortOrder.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/SortOrder.java index 424116a22aa..9499ac13c30 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/SortOrder.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/UpdateApprovalTemplateDetails.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/UpdateApprovalTemplateDetails.java index f89fe59a9be..5110c4e38ec 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/UpdateApprovalTemplateDetails.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/UpdateApprovalTemplateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/UpdateLockboxDetails.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/UpdateLockboxDetails.java index 6969aeac8c4..a31897e5583 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/UpdateLockboxDetails.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/UpdateLockboxDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequest.java index 6a0de53b10d..e0913061ec7 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestError.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestError.java index 3e8e4a5f2d4..05332d48f75 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestError.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestErrorCollection.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestErrorCollection.java index 891f331ec21..509248f83a0 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestErrorCollection.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestLogEntry.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestLogEntry.java index b8764894f20..645c8e75b3d 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestLogEntry.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestLogEntryCollection.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestLogEntryCollection.java index 4ca5ce04d49..1fdec598efa 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestLogEntryCollection.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestResource.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestResource.java index 6b01df13459..b8fc083c473 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestResource.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestResourceMetadataKey.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestResourceMetadataKey.java index 6afecf7e3a5..0a408263b62 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestResourceMetadataKey.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestSummary.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestSummary.java index c5d1f5b13db..7204e588b76 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestSummary.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestSummaryCollection.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestSummaryCollection.java index 1a21c051fda..b9e523a54f1 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestSummaryCollection.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.model; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/CancelWorkRequestRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/CancelWorkRequestRequest.java index 10bced71060..647ead6493d 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/CancelWorkRequestRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ChangeApprovalTemplateCompartmentRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ChangeApprovalTemplateCompartmentRequest.java index b4fe2ad87a0..d079418fa54 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ChangeApprovalTemplateCompartmentRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ChangeApprovalTemplateCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ChangeLockboxCompartmentRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ChangeLockboxCompartmentRequest.java index 0a0bbd4e4b9..655e1f41372 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ChangeLockboxCompartmentRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ChangeLockboxCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/CreateAccessRequestRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/CreateAccessRequestRequest.java index 0587d5935e0..3a4462c3bef 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/CreateAccessRequestRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/CreateAccessRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/CreateApprovalTemplateRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/CreateApprovalTemplateRequest.java index 3569f8d1b59..305ea988a28 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/CreateApprovalTemplateRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/CreateApprovalTemplateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/CreateLockboxRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/CreateLockboxRequest.java index 17eea74da32..01d1afe1d46 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/CreateLockboxRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/CreateLockboxRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/DeleteApprovalTemplateRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/DeleteApprovalTemplateRequest.java index 0a0d9a5b72b..0435c9d3112 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/DeleteApprovalTemplateRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/DeleteApprovalTemplateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/DeleteLockboxRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/DeleteLockboxRequest.java index a97e1864a46..674ff64cfb5 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/DeleteLockboxRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/DeleteLockboxRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ExportAccessRequestsRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ExportAccessRequestsRequest.java index 35c77764548..ddeac7d7eea 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ExportAccessRequestsRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ExportAccessRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetAccessMaterialsRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetAccessMaterialsRequest.java index 4dff7bbe771..5dcc9eab34a 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetAccessMaterialsRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetAccessMaterialsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetAccessRequestInternalRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetAccessRequestInternalRequest.java index c3b718483f3..400ffda202f 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetAccessRequestInternalRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetAccessRequestInternalRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetAccessRequestRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetAccessRequestRequest.java index 251889985a0..42d74b41eae 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetAccessRequestRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetAccessRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetApprovalTemplateRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetApprovalTemplateRequest.java index fccde00e7dc..917fcd02624 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetApprovalTemplateRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetApprovalTemplateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetLockboxRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetLockboxRequest.java index 59d22e7e5ef..1945d5c9c31 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetLockboxRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetLockboxRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetWorkRequestRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetWorkRequestRequest.java index ef7ed45a88b..cd63307eee8 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetWorkRequestRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/HandleAccessRequestRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/HandleAccessRequestRequest.java index 75a11fcb2f4..a78075d12c0 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/HandleAccessRequestRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/HandleAccessRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListAccessRequestsRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListAccessRequestsRequest.java index 1979885dc25..f333d401d31 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListAccessRequestsRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListAccessRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListApprovalTemplatesRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListApprovalTemplatesRequest.java index 57c4d485b16..42042d7a16f 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListApprovalTemplatesRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListApprovalTemplatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListLockboxesRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListLockboxesRequest.java index 51896eb7e14..742b397e02e 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListLockboxesRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListLockboxesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListWorkRequestErrorsRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListWorkRequestErrorsRequest.java index df7bd42db38..5e800fbf3a4 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListWorkRequestLogsRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListWorkRequestLogsRequest.java index a8c7509ee84..d31f31f6524 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListWorkRequestLogsRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListWorkRequestsRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListWorkRequestsRequest.java index 2e6facf39f5..982cb015a30 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListWorkRequestsRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/UpdateApprovalTemplateRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/UpdateApprovalTemplateRequest.java index 7d450e14a99..8ce6efaf7b4 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/UpdateApprovalTemplateRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/UpdateApprovalTemplateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/UpdateLockboxRequest.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/UpdateLockboxRequest.java index 876fb1ede12..3c308163e43 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/UpdateLockboxRequest.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/requests/UpdateLockboxRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.requests; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/CancelWorkRequestResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/CancelWorkRequestResponse.java index 6cc184f550e..181de72bb34 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/CancelWorkRequestResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ChangeApprovalTemplateCompartmentResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ChangeApprovalTemplateCompartmentResponse.java index 7054d887b85..6f601d93fe1 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ChangeApprovalTemplateCompartmentResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ChangeApprovalTemplateCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ChangeLockboxCompartmentResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ChangeLockboxCompartmentResponse.java index 6f5a3c2c9e0..d343386b798 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ChangeLockboxCompartmentResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ChangeLockboxCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/CreateAccessRequestResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/CreateAccessRequestResponse.java index 494c23af5e1..d330479358e 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/CreateAccessRequestResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/CreateAccessRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/CreateApprovalTemplateResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/CreateApprovalTemplateResponse.java index a0e8339ef32..d2634211808 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/CreateApprovalTemplateResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/CreateApprovalTemplateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/CreateLockboxResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/CreateLockboxResponse.java index aa96a33e446..1b6b4df86d7 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/CreateLockboxResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/CreateLockboxResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/DeleteApprovalTemplateResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/DeleteApprovalTemplateResponse.java index d395b4114ca..a810cf973d5 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/DeleteApprovalTemplateResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/DeleteApprovalTemplateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/DeleteLockboxResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/DeleteLockboxResponse.java index 6d4bf6f18e6..39e10bb8f6f 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/DeleteLockboxResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/DeleteLockboxResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ExportAccessRequestsResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ExportAccessRequestsResponse.java index 670d6a07d48..f096c04476e 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ExportAccessRequestsResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ExportAccessRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetAccessMaterialsResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetAccessMaterialsResponse.java index 7602e764a26..b4ef95e21ac 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetAccessMaterialsResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetAccessMaterialsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetAccessRequestInternalResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetAccessRequestInternalResponse.java index 35a55058a20..56bc1fb6753 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetAccessRequestInternalResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetAccessRequestInternalResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetAccessRequestResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetAccessRequestResponse.java index 0edf876fece..4ee897bcad6 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetAccessRequestResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetAccessRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetApprovalTemplateResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetApprovalTemplateResponse.java index 712a2e1cdd2..321e8a02986 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetApprovalTemplateResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetApprovalTemplateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetLockboxResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetLockboxResponse.java index c5bbcad4b37..0350a09cbd6 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetLockboxResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetLockboxResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetWorkRequestResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetWorkRequestResponse.java index 4b0bea26654..e5d3df6f87d 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetWorkRequestResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/HandleAccessRequestResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/HandleAccessRequestResponse.java index 2e548e9ee1f..87f18e55a4c 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/HandleAccessRequestResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/HandleAccessRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListAccessRequestsResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListAccessRequestsResponse.java index 94d4f428d62..1a9ff2fe99c 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListAccessRequestsResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListAccessRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListApprovalTemplatesResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListApprovalTemplatesResponse.java index d07969ea323..a25730bce92 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListApprovalTemplatesResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListApprovalTemplatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListLockboxesResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListLockboxesResponse.java index 06ef256640a..7fce6e66093 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListLockboxesResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListLockboxesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListWorkRequestErrorsResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListWorkRequestErrorsResponse.java index 42e0e99522d..f1a8bd294ff 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListWorkRequestLogsResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListWorkRequestLogsResponse.java index e8f3b05fe4e..f481c52ad2a 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListWorkRequestLogsResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListWorkRequestsResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListWorkRequestsResponse.java index a5b99574d7c..740b22ecda8 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListWorkRequestsResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/UpdateApprovalTemplateResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/UpdateApprovalTemplateResponse.java index 05e83c8d53c..278e0e5f3fd 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/UpdateApprovalTemplateResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/UpdateApprovalTemplateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/UpdateLockboxResponse.java b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/UpdateLockboxResponse.java index a5353842833..ca1fc79f77f 100644 --- a/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/UpdateLockboxResponse.java +++ b/bmc-lockbox/src/main/java/com/oracle/bmc/lockbox/responses/UpdateLockboxResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lockbox.responses; diff --git a/bmc-lockbox/src/main/resources/com/oracle/bmc/lockbox/client.properties b/bmc-lockbox/src/main/resources/com/oracle/bmc/lockbox/client.properties index 31dbd2954fd..5bce16648b2 100644 --- a/bmc-lockbox/src/main/resources/com/oracle/bmc/lockbox/client.properties +++ b/bmc-lockbox/src/main/resources/com/oracle/bmc/lockbox/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-loganalytics/pom.xml b/bmc-loganalytics/pom.xml index bfbe15bc4b7..855e57ed34e 100644 --- a/bmc-loganalytics/pom.xml +++ b/bmc-loganalytics/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-loganalytics @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalytics.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalytics.java index db5939aa3cf..0c2d0bb4d3f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalytics.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalytics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalyticsAsync.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalyticsAsync.java index d4c49a33fb7..456f19055ce 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalyticsAsync.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalyticsAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalyticsAsyncClient.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalyticsAsyncClient.java index ae86b2296e8..55b299a6bbf 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalyticsAsyncClient.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalyticsAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalyticsClient.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalyticsClient.java index 39d122f13bc..3c8d2c24368 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalyticsClient.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalyticsClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalyticsPaginators.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalyticsPaginators.java index 647c2f92809..a981774c17d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalyticsPaginators.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalyticsPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalyticsWaiters.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalyticsWaiters.java index a57e58aaf24..05fef5ddf95 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalyticsWaiters.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/LogAnalyticsWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AbstractColumn.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AbstractColumn.java index bab053116d1..cf4a69e81a4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AbstractColumn.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AbstractColumn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AbstractCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AbstractCommandDescriptor.java index 8e165f48b72..5608c159c88 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AbstractCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AbstractCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AbstractField.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AbstractField.java index 72908f7c168..b9a520c7a36 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AbstractField.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AbstractField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AbstractParserTestResultLogEntry.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AbstractParserTestResultLogEntry.java index 724170b642a..b87b4d4c3b6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AbstractParserTestResultLogEntry.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AbstractParserTestResultLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AbstractParserTestResultLogLine.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AbstractParserTestResultLogLine.java index 6ae5515489f..45287269347 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AbstractParserTestResultLogLine.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AbstractParserTestResultLogLine.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Action.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Action.java index 2d8d7779385..e6458f177bd 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Action.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Action.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ActionTypes.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ActionTypes.java index 0d9ec72ec90..95176d2dfaf 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ActionTypes.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ActionTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AddEntityAssociationDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AddEntityAssociationDetails.java index 7a4e49bc055..2fc16d936d8 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AddEntityAssociationDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AddEntityAssociationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AddFieldsCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AddFieldsCommandDescriptor.java index 9b41dd6de65..21cd9e3ce66 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AddFieldsCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AddFieldsCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AddInsightsCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AddInsightsCommandDescriptor.java index 3af33523b14..578cd43757c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AddInsightsCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AddInsightsCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AnomalyCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AnomalyCommandDescriptor.java index ed4dcd78ad8..9fdb16f6f25 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AnomalyCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AnomalyCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ArchivingConfiguration.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ArchivingConfiguration.java index 1bf7e0d5212..f610dcbf631 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ArchivingConfiguration.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ArchivingConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Argument.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Argument.java index 3ea02a64bd5..f24c4f09324 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Argument.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Argument.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AssignEncryptionKeyDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AssignEncryptionKeyDetails.java index cfc4ac70243..1ee3f7aff40 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AssignEncryptionKeyDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AssignEncryptionKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AssociableEntity.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AssociableEntity.java index 3a05bcc4ab9..7e07eeae909 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AssociableEntity.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AssociableEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AssociableEntityCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AssociableEntityCollection.java index 74403447d59..fbb725fe158 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AssociableEntityCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AssociableEntityCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AssociationProperty.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AssociationProperty.java index 9809d49ddda..3e5d913ac8f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AssociationProperty.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AssociationProperty.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AssociationSummaryReport.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AssociationSummaryReport.java index 6eea5a94562..6fdffb77081 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AssociationSummaryReport.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AssociationSummaryReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AutoAssociationCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AutoAssociationCollection.java index b39dcd43d11..62c909a02fc 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AutoAssociationCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AutoAssociationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AutoAssociationState.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AutoAssociationState.java index 716a0766fb2..edeeeec3596 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AutoAssociationState.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AutoAssociationState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AutoLookups.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AutoLookups.java index e805d11b0e0..d04e9e0f359 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AutoLookups.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AutoLookups.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AutoSchedule.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AutoSchedule.java index 6dca4802b2d..4062fd24a85 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AutoSchedule.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/AutoSchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/BottomCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/BottomCommandDescriptor.java index 5f86b032d72..8b7dca57cb6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/BottomCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/BottomCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/BucketCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/BucketCommandDescriptor.java index 125fe4cab31..e60e07ec4f1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/BucketCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/BucketCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/BucketRange.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/BucketRange.java index 483bac8bebb..5d73a78a9a4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/BucketRange.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/BucketRange.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeIngestTimeRuleCompartmentDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeIngestTimeRuleCompartmentDetails.java index 551733a9f48..5ca168f9075 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeIngestTimeRuleCompartmentDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeIngestTimeRuleCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeLogAnalyticsEmBridgeCompartmentDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeLogAnalyticsEmBridgeCompartmentDetails.java index 2bd044f2ac4..5ec38ed8ec1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeLogAnalyticsEmBridgeCompartmentDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeLogAnalyticsEmBridgeCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeLogAnalyticsEntityCompartmentDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeLogAnalyticsEntityCompartmentDetails.java index e9360201d2b..93f2323a3c4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeLogAnalyticsEntityCompartmentDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeLogAnalyticsEntityCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeLogAnalyticsLogGroupCompartmentDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeLogAnalyticsLogGroupCompartmentDetails.java index e9cda59b0fb..c73959c1b44 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeLogAnalyticsLogGroupCompartmentDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeLogAnalyticsLogGroupCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeLogAnalyticsObjectCollectionRuleCompartmentDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeLogAnalyticsObjectCollectionRuleCompartmentDetails.java index 12bef3e984d..d40cdbb2c0e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeLogAnalyticsObjectCollectionRuleCompartmentDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeLogAnalyticsObjectCollectionRuleCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeLookupCompartmentDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeLookupCompartmentDetails.java index d328d0e2af8..f185be17216 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeLookupCompartmentDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeLookupCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeScheduledTaskCompartmentDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeScheduledTaskCompartmentDetails.java index af009a32c7b..667e92aac1f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeScheduledTaskCompartmentDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChangeScheduledTaskCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CharEncodingCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CharEncodingCollection.java index 709820b2945..a9071ba63d2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CharEncodingCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CharEncodingCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChartColumn.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChartColumn.java index aa74fe440f3..e9167f52ae2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChartColumn.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChartColumn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChartDataColumn.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChartDataColumn.java index 6c6ca10b144..2132cd005e3 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChartDataColumn.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ChartDataColumn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClassifyColumn.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClassifyColumn.java index 894db045bcb..de72d0bda68 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClassifyColumn.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClassifyColumn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClassifyCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClassifyCommandDescriptor.java index 20e2c4601cf..e06527226bc 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClassifyCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClassifyCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClusterCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClusterCommandDescriptor.java index 0c98401d449..c442a0f6769 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClusterCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClusterCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClusterCompareCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClusterCompareCommandDescriptor.java index aaa15e66aa2..60540f0fffa 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClusterCompareCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClusterCompareCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClusterDetailsCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClusterDetailsCommandDescriptor.java index ba2a5317f0d..c6ff2c3ac96 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClusterDetailsCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClusterDetailsCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClusterSplitCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClusterSplitCommandDescriptor.java index 266ea24f2ef..112fa57b050 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClusterSplitCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ClusterSplitCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Column.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Column.java index 12b9d51ed8b..d4eee17beef 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Column.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Column.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ColumnName.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ColumnName.java index c234efe01ae..719e014f51c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ColumnName.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ColumnName.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ColumnNameCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ColumnNameCollection.java index 4a40832ff16..1ca25f1473e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ColumnNameCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ColumnNameCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CommandDescriptor.java index 1208e03f25c..4d6fbd0a26b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CompareCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CompareCommandDescriptor.java index 2ceb148fadf..ef19906eeb0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CompareCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CompareCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CompareContentDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CompareContentDetails.java index 8c806a3f475..f7371dfc025 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CompareContentDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CompareContentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CompareContentResult.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CompareContentResult.java index fe10e939469..a1fb45c1fd4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CompareContentResult.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CompareContentResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CompareLineResult.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CompareLineResult.java index aef0f04fc2d..ff326b76f3c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CompareLineResult.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CompareLineResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ConditionBlock.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ConditionBlock.java index b9bb07fad01..27b8249149f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ConditionBlock.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ConditionBlock.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ConfigLifecycleState.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ConfigLifecycleState.java index 3c5c21260e6..501fbafe81e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ConfigLifecycleState.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ConfigLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateAccelerationTaskDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateAccelerationTaskDetails.java index 1cbc9f6b94a..c24c697b854 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateAccelerationTaskDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateAccelerationTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateIngestTimeRuleDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateIngestTimeRuleDetails.java index 483ce3889a6..8b0405e1059 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateIngestTimeRuleDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateIngestTimeRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateLogAnalyticsEmBridgeDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateLogAnalyticsEmBridgeDetails.java index 6c90795da90..7e3d83ee39d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateLogAnalyticsEmBridgeDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateLogAnalyticsEmBridgeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateLogAnalyticsEntityDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateLogAnalyticsEntityDetails.java index 391ae5a3826..3c76b608137 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateLogAnalyticsEntityDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateLogAnalyticsEntityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateLogAnalyticsEntityTypeDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateLogAnalyticsEntityTypeDetails.java index a94c9483752..e5c0f77c118 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateLogAnalyticsEntityTypeDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateLogAnalyticsEntityTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateLogAnalyticsLogGroupDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateLogAnalyticsLogGroupDetails.java index 6b02535ba21..3575c84b7b3 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateLogAnalyticsLogGroupDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateLogAnalyticsLogGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateLogAnalyticsObjectCollectionRuleDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateLogAnalyticsObjectCollectionRuleDetails.java index 2e13f798cac..53590a1f9cb 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateLogAnalyticsObjectCollectionRuleDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateLogAnalyticsObjectCollectionRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateScheduledTaskDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateScheduledTaskDetails.java index dbdad7962ef..58b44c30851 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateScheduledTaskDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateScheduledTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateStandardTaskDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateStandardTaskDetails.java index 64e8a2b8aee..a0b27250a5e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateStandardTaskDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateStandardTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateTableCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateTableCommandDescriptor.java index 56c88995d1b..f7d2656373f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateTableCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateTableCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateViewCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateViewCommandDescriptor.java index dd4ae3033d4..d215be9f06f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateViewCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreateViewCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreationSource.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreationSource.java index 905d5028528..14d0b465c9c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreationSource.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreationSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreationSourceType.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreationSourceType.java index 9498e91d6c2..1d1d420b70d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreationSourceType.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CreationSourceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CredentialEndpoint.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CredentialEndpoint.java index fe7b2fd618a..afa51b22072 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CredentialEndpoint.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CredentialEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CronSchedule.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CronSchedule.java index ed47c572416..5a3335472e9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CronSchedule.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/CronSchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DedupCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DedupCommandDescriptor.java index 52009a534e2..066bb06b18e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DedupCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DedupCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DeleteCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DeleteCommandDescriptor.java index 10e46bf5a3c..2cf1bd750ab 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DeleteCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DeleteCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DeleteLogAnalyticsAssociation.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DeleteLogAnalyticsAssociation.java index ce6357d5330..15ea03150b8 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DeleteLogAnalyticsAssociation.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DeleteLogAnalyticsAssociation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DeleteLogAnalyticsAssociationDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DeleteLogAnalyticsAssociationDetails.java index 005a8f73749..9bbefa08665 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DeleteLogAnalyticsAssociationDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DeleteLogAnalyticsAssociationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DeltaCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DeltaCommandDescriptor.java index 34d30c86dca..f6426a9c1a5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DeltaCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DeltaCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DemoModeCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DemoModeCommandDescriptor.java index aeac7aaad0c..df2ab366401 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DemoModeCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DemoModeCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Dependency.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Dependency.java index ebdcb18d92e..4082f15ef31 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Dependency.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Dependency.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DependentParser.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DependentParser.java index c8e2ceaef65..442413480d8 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DependentParser.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DependentParser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DependentSource.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DependentSource.java index bdc4eb8db45..306bc67d8a4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DependentSource.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DependentSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DisableAutoAssociationDetail.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DisableAutoAssociationDetail.java index 984032d9e66..39b25a31a40 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DisableAutoAssociationDetail.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DisableAutoAssociationDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DisableAutoAssociationDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DisableAutoAssociationDetails.java index 23c924b1e1d..95f23aaa71a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DisableAutoAssociationDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DisableAutoAssociationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DistinctCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DistinctCommandDescriptor.java index aca1f5aaa4d..223e7d19580 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DistinctCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/DistinctCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EfdRegexResult.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EfdRegexResult.java index 13d8a2582d0..ad633066e10 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EfdRegexResult.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EfdRegexResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EffectivePropertyCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EffectivePropertyCollection.java index 5a5c900a973..08c54a58339 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EffectivePropertyCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EffectivePropertyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EffectivePropertySummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EffectivePropertySummary.java index d3edfd60a3e..24ce065cc34 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EffectivePropertySummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EffectivePropertySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EmBridgeLatestImportProcessingStatus.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EmBridgeLatestImportProcessingStatus.java index 9f4cb13a68f..2932228fdbe 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EmBridgeLatestImportProcessingStatus.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EmBridgeLatestImportProcessingStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EmBridgeLifecycleStates.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EmBridgeLifecycleStates.java index f40301c2b4f..5b85d9e8cea 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EmBridgeLifecycleStates.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EmBridgeLifecycleStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EnableAutoAssociationDetail.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EnableAutoAssociationDetail.java index 5576db27c98..9f183ca1d7f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EnableAutoAssociationDetail.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EnableAutoAssociationDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EnableAutoAssociationDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EnableAutoAssociationDetails.java index 24fda057daf..0734cce5b64 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EnableAutoAssociationDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EnableAutoAssociationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EncryptionKeyInfoCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EncryptionKeyInfoCollection.java index 56891bda5fc..cb5fe5b7ab1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EncryptionKeyInfoCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EncryptionKeyInfoCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EncryptionKeyInfoSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EncryptionKeyInfoSummary.java index c0092d8f8a7..ba6858903be 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EncryptionKeyInfoSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EncryptionKeyInfoSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EncryptionKeySource.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EncryptionKeySource.java index 8619c1a5f21..b48eaa0038c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EncryptionKeySource.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EncryptionKeySource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EncryptionKeyType.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EncryptionKeyType.java index e4d402a8349..99521469b15 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EncryptionKeyType.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EncryptionKeyType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EndpointCredentials.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EndpointCredentials.java index fa2ef321da2..cf0cb10eb99 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EndpointCredentials.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EndpointCredentials.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EndpointProxy.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EndpointProxy.java index 8b4c8fc7731..76ad8dc1792 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EndpointProxy.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EndpointProxy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EndpointRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EndpointRequest.java index b8d5c5b0442..46c97aa90f8 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EndpointRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EndpointResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EndpointResponse.java index f14bb326dd3..c74351736bc 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EndpointResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EndpointResult.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EndpointResult.java index 2cbb54d44d5..408ecefe6bb 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EndpointResult.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EndpointResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EntityCloudType.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EntityCloudType.java index b29c5c5bef1..4493c9b37a0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EntityCloudType.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EntityCloudType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EntityLifecycleStates.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EntityLifecycleStates.java index a824566c8e8..bfeea5755b2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EntityLifecycleStates.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EntityLifecycleStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EntityTypeProperty.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EntityTypeProperty.java index 4735a104ce8..d07aa202889 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EntityTypeProperty.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EntityTypeProperty.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ErrorDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ErrorDetails.java index dbf5de5f342..5e842f12f11 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ErrorDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ErrorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimatePurgeDataSizeDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimatePurgeDataSizeDetails.java index 10860615210..222d8024731 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimatePurgeDataSizeDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimatePurgeDataSizeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimatePurgeDataSizeResult.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimatePurgeDataSizeResult.java index aaf2d2d17f9..447721ec730 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimatePurgeDataSizeResult.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimatePurgeDataSizeResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimateRecallDataSizeDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimateRecallDataSizeDetails.java index 2c899b64c82..f949e3493a9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimateRecallDataSizeDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimateRecallDataSizeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimateRecallDataSizeResult.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimateRecallDataSizeResult.java index e3e9ba5cc44..404fbb6cca5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimateRecallDataSizeResult.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimateRecallDataSizeResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimateReleaseDataSizeDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimateReleaseDataSizeDetails.java index 65af4221346..d39375aa9c9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimateReleaseDataSizeDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimateReleaseDataSizeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimateReleaseDataSizeResult.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimateReleaseDataSizeResult.java index f15717eb783..18f1a1f6210 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimateReleaseDataSizeResult.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EstimateReleaseDataSizeResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EvalCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EvalCommandDescriptor.java index d3687f2ff87..1e59e567eec 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EvalCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EvalCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EventStatsCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EventStatsCommandDescriptor.java index 923d90f42c2..49b5237ac58 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EventStatsCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EventStatsCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EventType.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EventType.java index 5480f91bc0e..aeac40f56ed 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EventType.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EventType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EventTypeCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EventTypeCollection.java index 11e1468a282..42881f2ed50 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EventTypeCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EventTypeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EventTypeDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EventTypeDetails.java index 39025898996..a72e9e5b343 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EventTypeDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/EventTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExportContent.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExportContent.java index f22d64938b5..1d1a5438204 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExportContent.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExportContent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExportDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExportDetails.java index 3e48b0de788..cb034280813 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExportDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExtendedFieldsValidationResult.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExtendedFieldsValidationResult.java index 8e0715897a6..ceafaa6b08b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExtendedFieldsValidationResult.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExtendedFieldsValidationResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExtractCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExtractCommandDescriptor.java index 551a3038ff5..7597b90be3e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExtractCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExtractCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExtractLogFieldResults.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExtractLogFieldResults.java index 128296ed478..77f98e997f0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExtractLogFieldResults.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExtractLogFieldResults.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExtractLogHeaderDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExtractLogHeaderDetails.java index 8cc4ba10b61..33b29fed1ea 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExtractLogHeaderDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExtractLogHeaderDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExtractLogHeaderResults.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExtractLogHeaderResults.java index ffa40b9d2ef..0d6efdd177e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExtractLogHeaderResults.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ExtractLogHeaderResults.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Field.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Field.java index e6e63ae7ccf..29ab74429f8 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Field.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Field.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldArgument.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldArgument.java index 6381460a356..91d38bc8c53 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldArgument.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldArgument.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldSummaryCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldSummaryCommandDescriptor.java index 64aae9e099c..967f446f211 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldSummaryCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldSummaryCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldSummaryReport.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldSummaryReport.java index 1f19583ce9a..5e9875392e8 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldSummaryReport.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldSummaryReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldValue.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldValue.java index 57fa9f605fb..534e7f4c21d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldValue.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldsAddRemoveField.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldsAddRemoveField.java index 8fa58ff4caf..5a75859560e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldsAddRemoveField.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldsAddRemoveField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldsCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldsCommandDescriptor.java index b5c02951fe7..cdb054cf1ff 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldsCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FieldsCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FileValidationResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FileValidationResponse.java index 4fcfbe8996b..c6313d4955e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FileValidationResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FileValidationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Filter.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Filter.java index adcc7160030..7393f960b8a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Filter.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Filter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FilterDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FilterDetails.java index d5443f9c17a..7624652a6a2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FilterDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FilterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FilterOutput.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FilterOutput.java index 035c5d703dd..98147a7b87b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FilterOutput.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FilterOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FixedFrequencySchedule.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FixedFrequencySchedule.java index e73be2bb71b..9c53aaa9c7f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FixedFrequencySchedule.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FixedFrequencySchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FrequentCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FrequentCommandDescriptor.java index 0601c1229a4..2919682ee24 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FrequentCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FrequentCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FunctionField.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FunctionField.java index 8593831a9a3..4d05917248c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FunctionField.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/FunctionField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/GenericConditionBlock.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/GenericConditionBlock.java index 228643d0332..874eae9901b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/GenericConditionBlock.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/GenericConditionBlock.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/GeoStatsCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/GeoStatsCommandDescriptor.java index bf3d73025a2..0f49f85cb37 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/GeoStatsCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/GeoStatsCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/HeadCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/HeadCommandDescriptor.java index 79d79d938a1..9bcd47bfea5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/HeadCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/HeadCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/HighlightCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/HighlightCommandDescriptor.java index 9e20f67f718..b48399fd829 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/HighlightCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/HighlightCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/HighlightGroupsCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/HighlightGroupsCommandDescriptor.java index 8cafa2647be..32133a0aab0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/HighlightGroupsCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/HighlightGroupsCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/HighlightRowsCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/HighlightRowsCommandDescriptor.java index 8ab50aac759..d90ea59672b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/HighlightRowsCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/HighlightRowsCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Indexes.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Indexes.java index 753d52314d9..7fee3f398f3 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Indexes.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Indexes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRule.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRule.java index e490f9bddba..d1c428eb3f7 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRule.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleAction.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleAction.java index b9d051c5f65..4c1ca17d25c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleAction.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleAdditionalFieldCondition.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleAdditionalFieldCondition.java index be1f368069a..254ada5f7b6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleAdditionalFieldCondition.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleAdditionalFieldCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleCondition.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleCondition.java index 2ee0a6ad0f1..082273ff023 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleCondition.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleFieldCondition.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleFieldCondition.java index cc657ce5b23..fa7348a11e8 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleFieldCondition.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleFieldCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleMetricExtractionAction.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleMetricExtractionAction.java index be98f2beef9..7d2178c8cf3 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleMetricExtractionAction.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleMetricExtractionAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleResource.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleResource.java index be84a7adacb..96f6fb0cb27 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleResource.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleSummary.java index 3112a5e45c8..dd692c6df1f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleSummaryCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleSummaryCollection.java index 229390739e4..0a8e9b55a58 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleSummaryCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/IngestTimeRuleSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/JobMode.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/JobMode.java index 166a65cd847..a5c409bf5b8 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/JobMode.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/JobMode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/JobModeFilter.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/JobModeFilter.java index 893e29b6fe9..eb7aee2f37d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/JobModeFilter.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/JobModeFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/JsonExtractCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/JsonExtractCommandDescriptor.java index f00350326d4..88ae53b745b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/JsonExtractCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/JsonExtractCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelNames.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelNames.java index b5cf65801bc..40b4fe054d0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelNames.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelNames.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelPriority.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelPriority.java index 5f5f0a6f9bb..291b2926371 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelPriority.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelPriority.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelPriorityCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelPriorityCollection.java index 22f57b442c2..c8ea6b38e95 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelPriorityCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelPriorityCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelSourceCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelSourceCollection.java index d4da563915f..5134d3b4ff1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelSourceCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelSourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelSourceSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelSourceSummary.java index 01a09051b56..d710d8deda1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelSourceSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelSourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelSummaryReport.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelSummaryReport.java index 23467111e6f..4382f8ee74f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelSummaryReport.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LabelSummaryReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LastExecutionStatus.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LastExecutionStatus.java index bf2e26e0703..1c879d75da1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LastExecutionStatus.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LastExecutionStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Level.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Level.java index 99c378d7819..039e8165964 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Level.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Level.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LifecycleStates.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LifecycleStates.java index 7099a295257..95dff196b27 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LifecycleStates.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LifecycleStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LinkCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LinkCommandDescriptor.java index 6c2cd132972..92e188c899f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LinkCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LinkCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LinkDetailsCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LinkDetailsCommandDescriptor.java index cd562ce23db..53e4ba17ca2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LinkDetailsCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LinkDetailsCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LiteralArgument.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LiteralArgument.java index 9b9a4425fba..91871e7c193 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LiteralArgument.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LiteralArgument.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociatedEntity.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociatedEntity.java index 993bba45fde..8fb5e0d5956 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociatedEntity.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociatedEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociatedEntityCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociatedEntityCollection.java index 320e35d3735..fd1a2a585ae 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociatedEntityCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociatedEntityCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociation.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociation.java index 7b2362b0703..98c01c3ba61 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociation.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociationCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociationCollection.java index ecdbe79b918..ab3c62ec6f8 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociationCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociationParameter.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociationParameter.java index a828c8e40cd..2ef10822e87 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociationParameter.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociationParameter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociationParameterCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociationParameterCollection.java index 882cc238c38..a7635ab400a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociationParameterCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsAssociationParameterCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsCategory.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsCategory.java index 191123c5acf..1823072a3f2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsCategory.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsCategory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsCategoryCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsCategoryCollection.java index e612c26fd83..401f4f61105 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsCategoryCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsCategoryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsConfigWorkRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsConfigWorkRequest.java index 80f04de4dc1..97dd4311121 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsConfigWorkRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsConfigWorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsConfigWorkRequestCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsConfigWorkRequestCollection.java index bf5df7745fa..0a502cb43c1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsConfigWorkRequestCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsConfigWorkRequestCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsConfigWorkRequestPayload.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsConfigWorkRequestPayload.java index 5b22900e9a4..6b2851f6411 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsConfigWorkRequestPayload.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsConfigWorkRequestPayload.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsConfigWorkRequestSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsConfigWorkRequestSummary.java index ebf1ec46865..46e68a6b535 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsConfigWorkRequestSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsConfigWorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEmBridge.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEmBridge.java index 2030270e404..99939e22e30 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEmBridge.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEmBridge.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEmBridgeCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEmBridgeCollection.java index a6b10489ba7..f82431e708a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEmBridgeCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEmBridgeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEmBridgeSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEmBridgeSummary.java index 93ebd4a5456..6f9ba6850f5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEmBridgeSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEmBridgeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEmBridgeSummaryReport.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEmBridgeSummaryReport.java index cbc5e2b521e..25164db2023 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEmBridgeSummaryReport.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEmBridgeSummaryReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEndpoint.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEndpoint.java index 39fb572548c..5664118b017 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEndpoint.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntity.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntity.java index f8b2c47b2ee..4c2612bd9fa 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntity.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityCollection.java index b4ca4fc3971..d6743a008d1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntitySummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntitySummary.java index bbea4323b04..d00115147b8 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntitySummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntitySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntitySummaryReport.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntitySummaryReport.java index adc7b65f63e..274b986691b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntitySummaryReport.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntitySummaryReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTopologyCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTopologyCollection.java index 2bdce9bfb65..8705ae5d184 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTopologyCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTopologyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTopologyLink.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTopologyLink.java index 12e71ca8a3b..e519675cd39 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTopologyLink.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTopologyLink.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTopologyLinkCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTopologyLinkCollection.java index a443d70bfe0..8af1ec3a33c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTopologyLinkCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTopologyLinkCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTopologySummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTopologySummary.java index b96b8959161..a7e0e81ba3a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTopologySummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTopologySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityType.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityType.java index dfb8d02252a..0ee38e58d2a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityType.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTypeCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTypeCollection.java index e94dd5e8cd3..fcb877ad775 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTypeCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTypeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTypeSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTypeSummary.java index 71f03483470..62678590cd1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTypeSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsEntityTypeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsExtendedField.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsExtendedField.java index 2784ec44bbd..ef18465c4e2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsExtendedField.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsExtendedField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsField.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsField.java index b90a470f1d8..9db1bdf1895 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsField.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsFieldCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsFieldCollection.java index 8b4b254241d..b24be9333aa 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsFieldCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsFieldCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsFieldSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsFieldSummary.java index 80da72dbbf0..8a5537d2b2b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsFieldSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsFieldSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsFieldUsages.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsFieldUsages.java index 737e6325273..f50e4213928 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsFieldUsages.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsFieldUsages.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsImportCustomChangeList.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsImportCustomChangeList.java index f14f59d66da..3f8340f9b21 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsImportCustomChangeList.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsImportCustomChangeList.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsImportCustomContent.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsImportCustomContent.java index f681fb4f70a..ef12a86330e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsImportCustomContent.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsImportCustomContent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabel.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabel.java index 34af35a82da..b2bac578419 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabel.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelAlias.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelAlias.java index 77f3cc277ac..ece2632f87c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelAlias.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelAlias.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelCollection.java index 3f56497ac28..661c54c6a89 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelDefinition.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelDefinition.java index b98b140ce6e..07261fa9c18 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelDefinition.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelOperator.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelOperator.java index eb0f0cddd9a..5b8fd8d2a1a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelOperator.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelOperator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelOperatorCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelOperatorCollection.java index 8b8cf1a536a..f72337dac66 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelOperatorCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelOperatorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelSummary.java index c48bd972d93..b0332922733 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelView.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelView.java index 290a28ff4cd..15d7c20eb16 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelView.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLabelView.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLogGroup.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLogGroup.java index b7ad5641203..e8443506078 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLogGroup.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLogGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLogGroupSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLogGroupSummary.java index 53a52130984..fd634bef1db 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLogGroupSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLogGroupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLogGroupSummaryCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLogGroupSummaryCollection.java index 07d6dd2dc6f..e6437528edc 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLogGroupSummaryCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLogGroupSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLookup.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLookup.java index 51c80fec2cd..06d29e67cba 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLookup.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLookup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLookupCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLookupCollection.java index 7c3460d8af4..eef2c62132c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLookupCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLookupCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLookupFields.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLookupFields.java index eac30e736c9..11203a27926 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLookupFields.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsLookupFields.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetaFunction.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetaFunction.java index 21e5ec6fcaa..871502bc078 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetaFunction.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetaFunction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetaFunctionArgument.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetaFunctionArgument.java index d6a4638b46d..8a5e261b1e4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetaFunctionArgument.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetaFunctionArgument.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetaFunctionCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetaFunctionCollection.java index 478e9378884..0e32644b6ae 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetaFunctionCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetaFunctionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetaSourceType.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetaSourceType.java index de0d32419f1..5881ed9f390 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetaSourceType.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetaSourceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetaSourceTypeCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetaSourceTypeCollection.java index f368e5a329b..0be475b1aa6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetaSourceTypeCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetaSourceTypeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetadata.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetadata.java index 9edcbc2ee47..2a5d1285429 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetadata.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetadataCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetadataCollection.java index dc282afdbfe..494729be876 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetadataCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetadataCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetadataDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetadataDetails.java index af62c0fee13..a28d194e1a6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetadataDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetadataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetadataSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetadataSummary.java index 489162f27a6..0423545efb2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetadataSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetadataSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetric.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetric.java index d6e19040676..b85e7c70cee 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetric.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsMetric.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsObjectCollectionRule.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsObjectCollectionRule.java index d7142e3c85e..bb3d2df93ee 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsObjectCollectionRule.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsObjectCollectionRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsObjectCollectionRuleCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsObjectCollectionRuleCollection.java index 0c8f17f6b8a..0a5def082db 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsObjectCollectionRuleCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsObjectCollectionRuleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsObjectCollectionRuleSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsObjectCollectionRuleSummary.java index 3562a5db2e6..b550cd77365 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsObjectCollectionRuleSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsObjectCollectionRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsOperationTypes.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsOperationTypes.java index 94c5d1bfa1b..d36ae5f3504 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsOperationTypes.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsOperationTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParameter.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParameter.java index 21981b54430..19648c6a33f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParameter.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParameter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParser.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParser.java index b37b9c09716..e0ba17040e9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParser.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserCollection.java index 03c87ffaebe..98736139385 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserField.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserField.java index 7da8a2ec455..f9977b1ccea 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserField.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserFilter.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserFilter.java index e93a88ed4b4..5bbb3e9c03b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserFilter.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserFunction.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserFunction.java index 11de1efaced..a85b2efc493 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserFunction.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserFunction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserFunctionCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserFunctionCollection.java index d6cae11b364..30dc9f1de50 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserFunctionCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserFunctionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserFunctionParameter.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserFunctionParameter.java index 3e8f7fee44d..e2ae15d35b8 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserFunctionParameter.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserFunctionParameter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserMetaPlugin.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserMetaPlugin.java index a094a0485a4..65eb0b9c1ea 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserMetaPlugin.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserMetaPlugin.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserMetaPluginCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserMetaPluginCollection.java index 2e97c77310d..047ca95bc83 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserMetaPluginCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserMetaPluginCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserMetaPluginParameter.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserMetaPluginParameter.java index 1d105bf0463..6a0aefccf7e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserMetaPluginParameter.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserMetaPluginParameter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserSummary.java index 37799a5dc76..0041faeefca 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsParserSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsPatternFilter.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsPatternFilter.java index e95a53e2a36..1fc6bc03ceb 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsPatternFilter.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsPatternFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsPreference.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsPreference.java index cc17b1ee4d9..0029c3b1c3c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsPreference.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsPreference.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsPreferenceCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsPreferenceCollection.java index 0ea5d3f5e2d..cd9b019f18c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsPreferenceCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsPreferenceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsPreferenceDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsPreferenceDetails.java index 875026ec72a..3105f0e6655 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsPreferenceDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsPreferenceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsProperty.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsProperty.java index d637af855fa..5c8f2e6592f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsProperty.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsProperty.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsResourceCategory.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsResourceCategory.java index 63aaefaca50..df25ef9ecba 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsResourceCategory.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsResourceCategory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsResourceCategoryCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsResourceCategoryCollection.java index bd505e2de2f..0afe668711c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsResourceCategoryCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsResourceCategoryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsResourceCategoryDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsResourceCategoryDetails.java index cf07d652497..fbf02b7a7b0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsResourceCategoryDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsResourceCategoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSource.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSource.java index bdad4a995ac..ea6cd6986fc 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSource.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceCollection.java index 15d396006a1..30b1fc855cf 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceDataFilter.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceDataFilter.java index 5e751750f05..af95236b3b1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceDataFilter.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceDataFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceEntityType.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceEntityType.java index 86d2cabfac4..e03c60606f3 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceEntityType.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceEntityType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceExtendedFieldDefinition.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceExtendedFieldDefinition.java index 5edb49733ca..f9413db855a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceExtendedFieldDefinition.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceExtendedFieldDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceExtendedFieldDefinitionCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceExtendedFieldDefinitionCollection.java index 57380aeee68..885723e7980 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceExtendedFieldDefinitionCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceExtendedFieldDefinitionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceFunction.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceFunction.java index fa2f6b2a6ab..7c7a87d9e6c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceFunction.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceFunction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceLabelCondition.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceLabelCondition.java index 7740ec805b4..9a641fefd24 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceLabelCondition.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceLabelCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceMetadataField.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceMetadataField.java index 2fce64305cd..c3ce59abf36 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceMetadataField.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceMetadataField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceMetric.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceMetric.java index 1ee4e30f453..6c36e578893 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceMetric.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceMetric.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourcePattern.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourcePattern.java index f44e395c8fd..6c915ca162f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourcePattern.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourcePattern.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourcePatternCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourcePatternCollection.java index 2beb92f7153..ce55f9144f7 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourcePatternCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourcePatternCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceSummary.java index 0673203abee..1aea2b96a16 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsSourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsTemplate.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsTemplate.java index 536c082cecb..86400589d60 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsTemplate.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsTemplate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsTemplateCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsTemplateCollection.java index 7cdba93cefe..b0d319ce3eb 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsTemplateCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsTemplateCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsTemplateSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsTemplateSummary.java index 07ee483dabe..5d07fb08021 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsTemplateSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsTemplateSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsWarning.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsWarning.java index f5118d74ddc..d60373082f6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsWarning.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsWarning.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsWarningCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsWarningCollection.java index 778bc7ecc0f..7822d512905 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsWarningCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogAnalyticsWarningCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogEndpoint.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogEndpoint.java index 9102d63dd2d..e2cb19fc5ba 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogEndpoint.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogGroupSummaryReport.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogGroupSummaryReport.java index 496e5c23896..7e70228dca1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogGroupSummaryReport.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogGroupSummaryReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogListEndpoint.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogListEndpoint.java index 377e10819c2..1b2e1fc8bca 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogListEndpoint.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogListEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogListTypeEndpoint.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogListTypeEndpoint.java index b9fb7ff4311..ddb5238d9ef 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogListTypeEndpoint.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogListTypeEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogSetCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogSetCollection.java index 0cca6de4f54..3fabb620485 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogSetCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogSetCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogSetKeyTypes.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogSetKeyTypes.java index beff725d30b..6def928cee1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogSetKeyTypes.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogSetKeyTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogSetsCount.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogSetsCount.java index 267aef6fc5d..78b3a6c0e3c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogSetsCount.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogSetsCount.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogTypeEndpoint.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogTypeEndpoint.java index 554c5aa60af..a4b0581b39f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogTypeEndpoint.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogTypeEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogTypes.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogTypes.java index 9f5aa384d12..6471f8f8c60 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogTypes.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LogTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LookupCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LookupCommandDescriptor.java index 07c07d9429a..1072592544b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LookupCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LookupCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LookupField.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LookupField.java index b8f3ef748ff..89e4bc26288 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LookupField.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LookupField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LookupSummaryReport.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LookupSummaryReport.java index 071be98a159..dbbe26ebe43 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LookupSummaryReport.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/LookupSummaryReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/MacroCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/MacroCommandDescriptor.java index be8ee06cbbd..4f87a85e9ae 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/MacroCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/MacroCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/MapCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/MapCommandDescriptor.java index b8330adfe1d..e8d248a178f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/MapCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/MapCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/MatchInfo.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/MatchInfo.java index b40ef8d7441..0278ee4a51d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/MatchInfo.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/MatchInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/MetricExtraction.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/MetricExtraction.java index 21c67e36487..01879f0cd81 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/MetricExtraction.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/MetricExtraction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ModuleCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ModuleCommandDescriptor.java index 73790d3d94d..2d43a7d53c7 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ModuleCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ModuleCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/MultiSearchCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/MultiSearchCommandDescriptor.java index 34cb1a2efac..4ce92ad7586 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/MultiSearchCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/MultiSearchCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/NameValuePair.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/NameValuePair.java index c2507847e6d..ae520ef0872 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/NameValuePair.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/NameValuePair.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Namespace.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Namespace.java index dbd1d8ef18a..7da14a3f226 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Namespace.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Namespace.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/NamespaceCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/NamespaceCollection.java index 3dbe1f02d23..219b01d5344 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/NamespaceCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/NamespaceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/NamespaceSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/NamespaceSummary.java index 944f4563cbf..c11ef99b9fd 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/NamespaceSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/NamespaceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/NlpCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/NlpCommandDescriptor.java index 3555aa43ddd..3c5d5880cae 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/NlpCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/NlpCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ObjectCollectionRuleCollectionTypes.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ObjectCollectionRuleCollectionTypes.java index e6e830f2d7c..a2b4d743bb4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ObjectCollectionRuleCollectionTypes.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ObjectCollectionRuleCollectionTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ObjectCollectionRuleLifecycleStates.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ObjectCollectionRuleLifecycleStates.java index b5c4196958c..b6933cb4de1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ObjectCollectionRuleLifecycleStates.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ObjectCollectionRuleLifecycleStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/OperationStatus.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/OperationStatus.java index 14c29344a2a..ef054eb8ad2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/OperationStatus.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/OutlierCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/OutlierCommandDescriptor.java index db63e463c33..33cb9691a71 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/OutlierCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/OutlierCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/OverlappingRecallCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/OverlappingRecallCollection.java index 75842158385..ccd082bf63a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/OverlappingRecallCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/OverlappingRecallCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/OverlappingRecallSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/OverlappingRecallSummary.java index 0dfa8f2ac73..8cfe0e8af0c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/OverlappingRecallSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/OverlappingRecallSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParseQueryDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParseQueryDetails.java index 1f9fc357c37..67ef0f743a4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParseQueryDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParseQueryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParseQueryOutput.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParseQueryOutput.java index 4bab6059ee7..a331640e316 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParseQueryOutput.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParseQueryOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParsedContent.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParsedContent.java index f07d38f38dc..42e16272afd 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParsedContent.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParsedContent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParsedField.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParsedField.java index 5ba1156b8f6..e18b9df9472 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParsedField.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParsedField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParserAction.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParserAction.java index fb96762af00..138d8acdc08 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParserAction.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParserAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParserActionSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParserActionSummary.java index 683195a1283..9f50d1200b5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParserActionSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParserActionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParserActionSummaryCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParserActionSummaryCollection.java index 4507c04daf1..a04d89a1823 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParserActionSummaryCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParserActionSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParserSummaryReport.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParserSummaryReport.java index a8966843cc7..a15213db856 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParserSummaryReport.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParserSummaryReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParserTestResult.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParserTestResult.java index 23cd00c75a5..bf7b7a9ff45 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParserTestResult.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ParserTestResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PatternOverride.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PatternOverride.java index f3d8134d745..c0bd2ff2daa 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PatternOverride.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PatternOverride.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PayloadType.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PayloadType.java index 3ec51804755..7ca2af5f3c4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PayloadType.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PayloadType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PropertyDefinition.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PropertyDefinition.java index e5c5a8cdb30..1c9b95b1eec 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PropertyDefinition.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PropertyDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PropertyMetadataSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PropertyMetadataSummary.java index 5da2e5c96c6..6053f709d47 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PropertyMetadataSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PropertyMetadataSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PropertyMetadataSummaryCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PropertyMetadataSummaryCollection.java index b6220f67acf..4c5060502fe 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PropertyMetadataSummaryCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PropertyMetadataSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PropertyOverride.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PropertyOverride.java index dd8f93cd445..badf64d1422 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PropertyOverride.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PropertyOverride.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PurgeAction.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PurgeAction.java index 11a5ca8eeb9..2f9ccfd762d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PurgeAction.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PurgeAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PurgeStorageDataDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PurgeStorageDataDetails.java index a58da268e72..23986572775 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PurgeStorageDataDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/PurgeStorageDataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryAggregation.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryAggregation.java index d87821104fe..b6d8f1c92e4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryAggregation.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryDetails.java index 4239c4e4043..c5df2c9d2f1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryOperationType.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryOperationType.java index 4ce091c2f48..ab4a9b74ab1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryOperationType.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryOperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryWorkRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryWorkRequest.java index 659bc3bfba0..cf800bf831e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryWorkRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryWorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryWorkRequestCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryWorkRequestCollection.java index 3e43505f59f..5eabe50059e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryWorkRequestCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryWorkRequestCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryWorkRequestSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryWorkRequestSummary.java index 42df2b311cd..093dfed2450 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryWorkRequestSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/QueryWorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RareCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RareCommandDescriptor.java index fb8c9f4f2c6..bcf1091655b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RareCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RareCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecallArchivedDataDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecallArchivedDataDetails.java index 2e736a8a68d..93e0c03f9eb 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecallArchivedDataDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecallArchivedDataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecallCount.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecallCount.java index 477bba1e30e..612c2589a1c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecallCount.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecallCount.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecallDefinition.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecallDefinition.java index 8a5bb271c7d..6c8a121ea1e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecallDefinition.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecallDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecallStatus.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecallStatus.java index fcfbc6b7c22..806c553fac0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecallStatus.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecallStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledData.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledData.java index 62f7f90081f..73c7934b494 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledData.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledDataCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledDataCollection.java index d2b02597143..3009ba07afb 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledDataCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledDataCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledDataInfo.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledDataInfo.java index 6a050d0ddc7..e738bb1c302 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledDataInfo.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledDataInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledDataSize.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledDataSize.java index 12bdba44116..70b85290bd8 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledDataSize.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledDataSize.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledInfo.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledInfo.java index ed44ef1abf7..d7261160cd5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledInfo.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledInfoCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledInfoCollection.java index e3b71d2f5e1..d141f3009f2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledInfoCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RecalledInfoCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RegexCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RegexCommandDescriptor.java index 3bde9726ef3..6c07a1471f5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RegexCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RegexCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RegexMatchResult.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RegexMatchResult.java index ca8b185ee38..644b608f3a5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RegexMatchResult.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RegexMatchResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ReleaseRecalledDataDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ReleaseRecalledDataDetails.java index e2175ea02d4..4ce8ac716d6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ReleaseRecalledDataDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ReleaseRecalledDataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RemoveEntityAssociationsDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RemoveEntityAssociationsDetails.java index 876e6e77ca3..13b41dc37cd 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RemoveEntityAssociationsDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RemoveEntityAssociationsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RenameCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RenameCommandDescriptor.java index f47c637811f..9e2467c82f7 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RenameCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RenameCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ResultColumn.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ResultColumn.java index 91b98fce7e1..8585ec726c9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ResultColumn.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ResultColumn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Rule.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Rule.java index a4db870b5c9..3d2c1e73cfa 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Rule.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Rule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RuleKind.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RuleKind.java index abded566095..81ac5b40376 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RuleKind.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RuleKind.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RuleSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RuleSummary.java index 3ad9983d6ea..841617da671 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RuleSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RuleSummaryCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RuleSummaryCollection.java index 25f14949af0..6144624a737 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RuleSummaryCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RuleSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RuleSummaryReport.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RuleSummaryReport.java index 3336ec84782..97039e220f8 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RuleSummaryReport.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/RuleSummaryReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Schedule.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Schedule.java index e8a942437cc..2bc67926bf0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Schedule.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Schedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ScheduledTask.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ScheduledTask.java index 9a6c7a0dc47..4974b3c7f1d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ScheduledTask.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ScheduledTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ScheduledTaskCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ScheduledTaskCollection.java index 5e0e41d5928..4812294717d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ScheduledTaskCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ScheduledTaskCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ScheduledTaskSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ScheduledTaskSummary.java index b4c835d3d1d..01848b24b48 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ScheduledTaskSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ScheduledTaskSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SchedulerResource.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SchedulerResource.java index 1cca956e806..eb8a58d2cb0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SchedulerResource.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SchedulerResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ScopeFilter.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ScopeFilter.java index cb16326bdae..4b93fddfdf0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ScopeFilter.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ScopeFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SearchCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SearchCommandDescriptor.java index a98bbd500d8..3ccedced1f2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SearchCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SearchCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SearchLookupCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SearchLookupCommandDescriptor.java index 436831454fb..a3f8898b4d1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SearchLookupCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SearchLookupCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SequenceCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SequenceCommandDescriptor.java index b46ae9e4cde..6491eabeb8d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SequenceCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SequenceCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SortCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SortCommandDescriptor.java index 3e85399a65b..f711063e052 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SortCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SortCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SortField.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SortField.java index 6fa43cb29e7..15193b13000 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SortField.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SortField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SourceMappingResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SourceMappingResponse.java index 7e0eb985e7f..998eb228184 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SourceMappingResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SourceMappingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SourceSummaryReport.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SourceSummaryReport.java index 9cfc81bc051..033fbce5156 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SourceSummaryReport.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SourceSummaryReport.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SourceValidateDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SourceValidateDetails.java index 4909ffb2c53..36432bf9581 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SourceValidateDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SourceValidateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SourceValidateResults.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SourceValidateResults.java index 89bd4e44ed7..59e0e02a22b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SourceValidateResults.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SourceValidateResults.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StandardTask.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StandardTask.java index dd4b25ef294..0f45630787e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StandardTask.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StandardTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StatsCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StatsCommandDescriptor.java index 17cc20789cb..50f840be33d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StatsCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StatsCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StatusSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StatusSummary.java index 8181b2b3cc0..31e0148664d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StatusSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StatusSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StepInfo.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StepInfo.java index 8da4664e7c8..a18eabbd65f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StepInfo.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StepInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Storage.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Storage.java index 636ec16e336..aa5bab1e0a4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Storage.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Storage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageDataType.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageDataType.java index 5c9626e6c45..add89795c45 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageDataType.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageDataType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageOperationType.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageOperationType.java index 6e51f30d80e..38b7d39a926 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageOperationType.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageOperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageUsage.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageUsage.java index b96d657fa6d..461dac78871 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageUsage.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageWorkRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageWorkRequest.java index b250ca0c95d..48c139fac77 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageWorkRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageWorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageWorkRequestCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageWorkRequestCollection.java index aa5d6294cfe..8c87141c8db 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageWorkRequestCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageWorkRequestCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageWorkRequestSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageWorkRequestSummary.java index 532d33617b9..811cf6de057 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageWorkRequestSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StorageWorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StreamAction.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StreamAction.java index a121c2d11e3..df53893ef8d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StreamAction.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StreamAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StreamCursorTypes.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StreamCursorTypes.java index 6722597c455..8de75c97c16 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StreamCursorTypes.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/StreamCursorTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SubSystemName.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SubSystemName.java index 5e26a446e6d..60640851016 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SubSystemName.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SubSystemName.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Success.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Success.java index 9a1e00007f7..0f5614bba62 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Success.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Success.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SuggestDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SuggestDetails.java index 3178fa32f2a..607dd63b79b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SuggestDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SuggestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SuggestOutput.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SuggestOutput.java index b8b9b7c954b..bb10b225b1e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SuggestOutput.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/SuggestOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TableColumn.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TableColumn.java index e31c20f906f..e366c69c391 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TableColumn.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TableColumn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TailCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TailCommandDescriptor.java index 35e3b4dfd0e..9fd64f3b2a0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TailCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TailCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TaskType.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TaskType.java index ca4d8fa94e5..6276911d963 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TaskType.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TaskType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TemplateDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TemplateDetails.java index 06f8ea4aa15..4b8875e5170 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TemplateDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TemplateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TemplateFacet.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TemplateFacet.java index a11526811e9..6286b9a1aae 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TemplateFacet.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TemplateFacet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TemplateParams.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TemplateParams.java index 17fea6129d9..f24b26b9fb5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TemplateParams.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TemplateParams.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TestParserPayloadDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TestParserPayloadDetails.java index 1110f02b97c..d05e4ee9f02 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TestParserPayloadDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TestParserPayloadDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeClusterColumn.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeClusterColumn.java index d7eec33c8ca..a134d816e13 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeClusterColumn.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeClusterColumn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeClusterCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeClusterCommandDescriptor.java index c8f069e961e..d84957f7b9e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeClusterCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeClusterCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeClusterDataColumn.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeClusterDataColumn.java index d789396ee07..47707e2c68c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeClusterDataColumn.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeClusterDataColumn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeColumn.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeColumn.java index e6c52d6dd7d..dc291faa1fd 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeColumn.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeColumn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeCompareCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeCompareCommandDescriptor.java index dc0b55026e4..bb96aba9e99 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeCompareCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeCompareCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeRange.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeRange.java index 4b8fed1b6c0..1da07281789 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeRange.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeRange.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeStatsCluster.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeStatsCluster.java index 3da30b4a6b0..e4dd316ef26 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeStatsCluster.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeStatsCluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeStatsColumn.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeStatsColumn.java index e76b5faa749..d8b2fbf2985 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeStatsColumn.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeStatsColumn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeStatsCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeStatsCommandDescriptor.java index ed65153c6eb..43b300dc1de 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeStatsCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeStatsCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeStatsDataColumn.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeStatsDataColumn.java index 4a33c3b9efa..4aa5d640c55 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeStatsDataColumn.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimeStatsDataColumn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimezoneCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimezoneCollection.java index c8c044c44d0..53bc825e00f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimezoneCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TimezoneCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TopCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TopCommandDescriptor.java index d96b825bc70..fee3d79f623 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TopCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TopCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TrendColumn.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TrendColumn.java index c89f87c2173..6f2a19d6510 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TrendColumn.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/TrendColumn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UiParserTestMetadata.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UiParserTestMetadata.java index 6fe75a62f88..6f35103bff3 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UiParserTestMetadata.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UiParserTestMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UnprocessedDataBucket.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UnprocessedDataBucket.java index 0f5648cf90b..d51f6264d07 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UnprocessedDataBucket.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UnprocessedDataBucket.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLogAnalyticsEmBridgeDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLogAnalyticsEmBridgeDetails.java index 049fa3ce179..8aaef3f0ef4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLogAnalyticsEmBridgeDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLogAnalyticsEmBridgeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLogAnalyticsEntityDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLogAnalyticsEntityDetails.java index dcff5ca4476..f6e219cd66f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLogAnalyticsEntityDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLogAnalyticsEntityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLogAnalyticsEntityTypeDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLogAnalyticsEntityTypeDetails.java index 4da804edbfc..e8b926894af 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLogAnalyticsEntityTypeDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLogAnalyticsEntityTypeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLogAnalyticsLogGroupDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLogAnalyticsLogGroupDetails.java index cf70a962a78..331a5910aee 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLogAnalyticsLogGroupDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLogAnalyticsLogGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLogAnalyticsObjectCollectionRuleDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLogAnalyticsObjectCollectionRuleDetails.java index 742b1327938..92fe8100c1e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLogAnalyticsObjectCollectionRuleDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLogAnalyticsObjectCollectionRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLookupMetadataDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLookupMetadataDetails.java index 5425b2fe1df..c5ebb7551a2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLookupMetadataDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateLookupMetadataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateScheduledTaskDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateScheduledTaskDetails.java index 16babcef366..85e3a6e3b6f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateScheduledTaskDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateScheduledTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateStandardTaskDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateStandardTaskDetails.java index ef6b7b4e3ca..1ce074659a3 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateStandardTaskDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateStandardTaskDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateStorageDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateStorageDetails.java index 0e2276377b2..5abc351248e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateStorageDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateStorageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateTableCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateTableCommandDescriptor.java index ccf7a5bbba6..2a72d612e23 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateTableCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpdateTableCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Upload.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Upload.java index 7785011a53e..e7a61722993 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Upload.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Upload.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadCollection.java index f0ce9e767e8..d460ddbca12 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadFileCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadFileCollection.java index 0f4d180e58f..c38ebdb7315 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadFileCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadFileCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadFileStatus.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadFileStatus.java index 37a1c8117b5..8d61fdce181 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadFileStatus.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadFileStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadFileSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadFileSummary.java index 307f2817202..454a1f3b3e6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadFileSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadFileSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadSummary.java index ead5bba06b3..d370f7e030d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadWarningCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadWarningCollection.java index 8195167f5bd..b9822928fec 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadWarningCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadWarningCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadWarningSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadWarningSummary.java index d79e3cd94c1..43a377c0051 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadWarningSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UploadWarningSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsAssociation.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsAssociation.java index db110c54b96..766fbb4a5f5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsAssociation.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsAssociation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsAssociationDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsAssociationDetails.java index 9c014bad721..31d6f6e22dc 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsAssociationDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsAssociationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsFieldDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsFieldDetails.java index 19f58019d5c..63b4db18ec9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsFieldDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsFieldDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsLabelDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsLabelDetails.java index 55f502d47e3..e3097335aa5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsLabelDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsLabelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsParserDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsParserDetails.java index e3531b02677..a7e9a03041d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsParserDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsParserDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsSourceDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsSourceDetails.java index f166b59d36b..5d3b9dbabf1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsSourceDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UpsertLogAnalyticsSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UsageStatusItem.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UsageStatusItem.java index 183b438421d..cbfeae58fa3 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UsageStatusItem.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/UsageStatusItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ValidateEndpointResult.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ValidateEndpointResult.java index eac38bcd043..a076ce67d31 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ValidateEndpointResult.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ValidateEndpointResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ValidateLabelConditionDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ValidateLabelConditionDetails.java index f6141dcde29..65d6916773e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ValidateLabelConditionDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ValidateLabelConditionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ValidateLabelConditionResult.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ValidateLabelConditionResult.java index 4e7b4d58632..6f067c05db2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ValidateLabelConditionResult.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ValidateLabelConditionResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ValueType.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ValueType.java index 92ccc6d5f15..ff1f6a18435 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ValueType.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/ValueType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/VariableDefinition.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/VariableDefinition.java index 98d351cc13d..6def6fe0f52 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/VariableDefinition.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/VariableDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/VerifyOutput.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/VerifyOutput.java index 2a30437dadd..11501604051 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/VerifyOutput.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/VerifyOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Violation.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Violation.java index 939dffc3181..c18415bfac9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Violation.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/Violation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WarningReferenceDetails.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WarningReferenceDetails.java index c468f362bb9..e4e68d3cd17 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WarningReferenceDetails.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WarningReferenceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WhereCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WhereCommandDescriptor.java index 54bfbc879e2..c5b3431e547 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WhereCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WhereCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequest.java index 55af09c082e..b87c5d8a5ae 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestCollection.java index 4c564f7d63f..c8819c49c40 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestError.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestError.java index 3a3cd6e2084..280722e38c8 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestError.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestErrorCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestErrorCollection.java index a8e8d74bae5..276129e1a38 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestErrorCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestLog.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestLog.java index bbe8520b365..1e464dffb42 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestLog.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestLog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestLogCollection.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestLogCollection.java index fc4c693d2c6..44ae9c6e5c6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestLogCollection.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestLogCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestResource.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestResource.java index 6a5f2059211..b0fcb7db7e9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestResource.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestStatus.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestStatus.java index a2772337cc5..fbeb2f1cea9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestStatus.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestSummary.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestSummary.java index 6ba347e16e8..a41adc0f9c2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestSummary.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/XmlExtractCommandDescriptor.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/XmlExtractCommandDescriptor.java index f6d26ece022..45754c658ca 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/XmlExtractCommandDescriptor.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/model/XmlExtractCommandDescriptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.model; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/AddEntityAssociationRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/AddEntityAssociationRequest.java index ab67fec3399..4eee753d8ad 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/AddEntityAssociationRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/AddEntityAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/AddSourceEventTypesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/AddSourceEventTypesRequest.java index a730170f6b4..e7dd53dd2a2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/AddSourceEventTypesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/AddSourceEventTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/AppendLookupDataRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/AppendLookupDataRequest.java index 8b93c3085e8..7e14820c80e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/AppendLookupDataRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/AppendLookupDataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/AssignEncryptionKeyRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/AssignEncryptionKeyRequest.java index 226005dcf69..b922cffc56e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/AssignEncryptionKeyRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/AssignEncryptionKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/BatchGetBasicInfoRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/BatchGetBasicInfoRequest.java index 09d135c8c30..62231308eb0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/BatchGetBasicInfoRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/BatchGetBasicInfoRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CancelQueryWorkRequestRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CancelQueryWorkRequestRequest.java index e1dd021a236..c249508c462 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CancelQueryWorkRequestRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CancelQueryWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeIngestTimeRuleCompartmentRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeIngestTimeRuleCompartmentRequest.java index c8272ed56c1..68d33a34536 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeIngestTimeRuleCompartmentRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeIngestTimeRuleCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeLogAnalyticsEmBridgeCompartmentRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeLogAnalyticsEmBridgeCompartmentRequest.java index 9bbb6660713..12e323f60d6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeLogAnalyticsEmBridgeCompartmentRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeLogAnalyticsEmBridgeCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeLogAnalyticsEntityCompartmentRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeLogAnalyticsEntityCompartmentRequest.java index 7c3de1659de..ffebcd1d50c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeLogAnalyticsEntityCompartmentRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeLogAnalyticsEntityCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeLogAnalyticsLogGroupCompartmentRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeLogAnalyticsLogGroupCompartmentRequest.java index b7531769c8e..f88781b914b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeLogAnalyticsLogGroupCompartmentRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeLogAnalyticsLogGroupCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeLogAnalyticsObjectCollectionRuleCompartmentRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeLogAnalyticsObjectCollectionRuleCompartmentRequest.java index 0ede3c3b5a5..7af346c79a5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeLogAnalyticsObjectCollectionRuleCompartmentRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeLogAnalyticsObjectCollectionRuleCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeLookupCompartmentRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeLookupCompartmentRequest.java index 582287638ed..cba166cfc33 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeLookupCompartmentRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeLookupCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeScheduledTaskCompartmentRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeScheduledTaskCompartmentRequest.java index 4098caf1982..5177bea45aa 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeScheduledTaskCompartmentRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ChangeScheduledTaskCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CleanRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CleanRequest.java index c0be8741447..7f6a6af9294 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CleanRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CleanRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CompareContentRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CompareContentRequest.java index 995e0eda710..11731e43edf 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CompareContentRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CompareContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateIngestTimeRuleRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateIngestTimeRuleRequest.java index bec5e86b245..e99de738d2b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateIngestTimeRuleRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateIngestTimeRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateLogAnalyticsEmBridgeRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateLogAnalyticsEmBridgeRequest.java index 8ea3ac2709b..464eabb7408 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateLogAnalyticsEmBridgeRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateLogAnalyticsEmBridgeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateLogAnalyticsEntityRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateLogAnalyticsEntityRequest.java index cc9428f8417..0174ea4564b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateLogAnalyticsEntityRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateLogAnalyticsEntityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateLogAnalyticsEntityTypeRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateLogAnalyticsEntityTypeRequest.java index 4a8d4d58c60..5f42eee6265 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateLogAnalyticsEntityTypeRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateLogAnalyticsEntityTypeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateLogAnalyticsLogGroupRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateLogAnalyticsLogGroupRequest.java index e4b32366eb3..608160caea5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateLogAnalyticsLogGroupRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateLogAnalyticsLogGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateLogAnalyticsObjectCollectionRuleRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateLogAnalyticsObjectCollectionRuleRequest.java index 50ad4ebd1c9..05c01fedd93 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateLogAnalyticsObjectCollectionRuleRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateLogAnalyticsObjectCollectionRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateScheduledTaskRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateScheduledTaskRequest.java index 0313babb2bd..98a9486286b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateScheduledTaskRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/CreateScheduledTaskRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteAssociationsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteAssociationsRequest.java index 2e89b4c12f2..5d4cfc1bf17 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteAssociationsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteAssociationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteFieldRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteFieldRequest.java index 1f1c2713a2f..0e1576bbf9a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteFieldRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteFieldRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteIngestTimeRuleRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteIngestTimeRuleRequest.java index 0e1f78c0b15..b98ad9bc9c9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteIngestTimeRuleRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteIngestTimeRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLabelRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLabelRequest.java index f349bb6e089..82f018562bc 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLabelRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLabelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLogAnalyticsEmBridgeRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLogAnalyticsEmBridgeRequest.java index bddaeede700..ca681165f92 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLogAnalyticsEmBridgeRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLogAnalyticsEmBridgeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLogAnalyticsEntityRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLogAnalyticsEntityRequest.java index 41a955dfee4..48abbd8c739 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLogAnalyticsEntityRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLogAnalyticsEntityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLogAnalyticsEntityTypeRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLogAnalyticsEntityTypeRequest.java index f2f85e69098..226c785c9f7 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLogAnalyticsEntityTypeRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLogAnalyticsEntityTypeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLogAnalyticsLogGroupRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLogAnalyticsLogGroupRequest.java index 8b455b61dea..a1e26beb49e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLogAnalyticsLogGroupRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLogAnalyticsLogGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLogAnalyticsObjectCollectionRuleRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLogAnalyticsObjectCollectionRuleRequest.java index 4975e390006..a53d71e98ed 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLogAnalyticsObjectCollectionRuleRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLogAnalyticsObjectCollectionRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLookupRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLookupRequest.java index 23b2ae8a2d8..ac9875dbb88 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLookupRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteLookupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteParserRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteParserRequest.java index 8cfb0083658..1030ebbb6e6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteParserRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteParserRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteScheduledTaskRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteScheduledTaskRequest.java index 3d83098cd11..86ec74b41c6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteScheduledTaskRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteScheduledTaskRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteSourceRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteSourceRequest.java index f1c170807e3..775398cb0d8 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteSourceRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteUploadFileRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteUploadFileRequest.java index 8138f9ee5b2..0106bf55ff6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteUploadFileRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteUploadFileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteUploadRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteUploadRequest.java index 3261f6cce08..f28318c3470 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteUploadRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteUploadRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteUploadWarningRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteUploadWarningRequest.java index b4581c4ace3..0638733d0b4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteUploadWarningRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DeleteUploadWarningRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DisableArchivingRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DisableArchivingRequest.java index a5d62b0e8b4..bdf5470d81a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DisableArchivingRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DisableArchivingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DisableAutoAssociationRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DisableAutoAssociationRequest.java index 4ec796445a7..036bd2a49d5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DisableAutoAssociationRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DisableAutoAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DisableIngestTimeRuleRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DisableIngestTimeRuleRequest.java index 1db345f8657..57a332c0ac0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DisableIngestTimeRuleRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DisableIngestTimeRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DisableSourceEventTypesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DisableSourceEventTypesRequest.java index 0cbd21c74f5..86223d7fff8 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DisableSourceEventTypesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/DisableSourceEventTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EnableArchivingRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EnableArchivingRequest.java index 4c24b87f54f..e557a575af6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EnableArchivingRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EnableArchivingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EnableAutoAssociationRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EnableAutoAssociationRequest.java index 53cda22499e..bdd478216b5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EnableAutoAssociationRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EnableAutoAssociationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EnableIngestTimeRuleRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EnableIngestTimeRuleRequest.java index f612372f840..ba72faadfa2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EnableIngestTimeRuleRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EnableIngestTimeRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EnableSourceEventTypesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EnableSourceEventTypesRequest.java index 5aa6b0bb770..31312e2df0d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EnableSourceEventTypesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EnableSourceEventTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EstimatePurgeDataSizeRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EstimatePurgeDataSizeRequest.java index f82f452c664..8e72c86614d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EstimatePurgeDataSizeRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EstimatePurgeDataSizeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EstimateRecallDataSizeRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EstimateRecallDataSizeRequest.java index 4e13f0b95a0..2f88ad324b3 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EstimateRecallDataSizeRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EstimateRecallDataSizeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EstimateReleaseDataSizeRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EstimateReleaseDataSizeRequest.java index 7a2e6ff124b..aea654278b7 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EstimateReleaseDataSizeRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/EstimateReleaseDataSizeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ExportCustomContentRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ExportCustomContentRequest.java index 8413f96c5e9..4c858a96235 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ExportCustomContentRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ExportCustomContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ExportQueryResultRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ExportQueryResultRequest.java index 47531eb28c1..1312d889e47 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ExportQueryResultRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ExportQueryResultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ExtractStructuredLogFieldPathsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ExtractStructuredLogFieldPathsRequest.java index 2ca07ef67c8..85487a4e386 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ExtractStructuredLogFieldPathsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ExtractStructuredLogFieldPathsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ExtractStructuredLogHeaderPathsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ExtractStructuredLogHeaderPathsRequest.java index 7956098e560..cb396d33cdd 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ExtractStructuredLogHeaderPathsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ExtractStructuredLogHeaderPathsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/FilterRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/FilterRequest.java index 7dba31c410f..12387522b9c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/FilterRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/FilterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetAssociationSummaryRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetAssociationSummaryRequest.java index 8353eb940d1..d6371c62847 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetAssociationSummaryRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetAssociationSummaryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetCategoryRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetCategoryRequest.java index 09e724df9a4..e398e4d1546 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetCategoryRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetCategoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetColumnNamesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetColumnNamesRequest.java index 65a36a15ed2..21fd752c09f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetColumnNamesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetColumnNamesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetConfigWorkRequestRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetConfigWorkRequestRequest.java index 4175ea199b7..a09f224b2f0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetConfigWorkRequestRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetConfigWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetFieldRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetFieldRequest.java index 153d39691a9..b96dde71ee6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetFieldRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetFieldRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetFieldUsagesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetFieldUsagesRequest.java index 376c541bc00..24332318f35 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetFieldUsagesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetFieldUsagesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetFieldsSummaryRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetFieldsSummaryRequest.java index 8a02d4152c4..2a0acb361ca 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetFieldsSummaryRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetFieldsSummaryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetIngestTimeRuleRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetIngestTimeRuleRequest.java index 46ddb429159..8f8e8a83192 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetIngestTimeRuleRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetIngestTimeRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLabelRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLabelRequest.java index 2a058280d81..fe3e5f7d3fa 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLabelRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLabelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLabelSummaryRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLabelSummaryRequest.java index 2acce4ff926..0003626b3ca 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLabelSummaryRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLabelSummaryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsEmBridgeRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsEmBridgeRequest.java index bdc5af6fabe..2c08b3e6416 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsEmBridgeRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsEmBridgeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsEmBridgeSummaryRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsEmBridgeSummaryRequest.java index a30d27e179d..a4f425e8b59 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsEmBridgeSummaryRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsEmBridgeSummaryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsEntitiesSummaryRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsEntitiesSummaryRequest.java index 0c70dc90187..e5265cae3f1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsEntitiesSummaryRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsEntitiesSummaryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsEntityRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsEntityRequest.java index ea099070083..99f3dc9d05a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsEntityRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsEntityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsEntityTypeRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsEntityTypeRequest.java index 1c914d3f27c..c80200604d5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsEntityTypeRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsEntityTypeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsLogGroupRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsLogGroupRequest.java index 665027475e0..fa4837cb444 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsLogGroupRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsLogGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsLogGroupsSummaryRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsLogGroupsSummaryRequest.java index 9601f6fed91..a353bf9ce11 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsLogGroupsSummaryRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsLogGroupsSummaryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsObjectCollectionRuleRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsObjectCollectionRuleRequest.java index 9ba72063f02..60274876678 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsObjectCollectionRuleRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogAnalyticsObjectCollectionRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogSetsCountRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogSetsCountRequest.java index ca1367af119..173e7a6b173 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogSetsCountRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLogSetsCountRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLookupRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLookupRequest.java index 8a844c6cd58..94e5ca543a7 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLookupRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLookupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLookupSummaryRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLookupSummaryRequest.java index 4f81fff5848..8248c597ee6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLookupSummaryRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetLookupSummaryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetNamespaceRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetNamespaceRequest.java index 6ec27f40a07..cb0988b1c53 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetNamespaceRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetNamespaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetParserRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetParserRequest.java index 47275069ba6..d86ec6b21d2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetParserRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetParserRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetParserSummaryRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetParserSummaryRequest.java index 2d23ecd43a4..275110ccc4e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetParserSummaryRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetParserSummaryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetPreferencesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetPreferencesRequest.java index e526bb49421..cbb088b4999 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetPreferencesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetPreferencesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetQueryResultRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetQueryResultRequest.java index 2b2a728a940..67bdd94f9f4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetQueryResultRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetQueryResultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetQueryWorkRequestRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetQueryWorkRequestRequest.java index 84a592531d1..5cbb3174d84 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetQueryWorkRequestRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetQueryWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetRecallCountRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetRecallCountRequest.java index 159b48168db..9c729199e2a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetRecallCountRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetRecallCountRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetRecalledDataSizeRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetRecalledDataSizeRequest.java index 304820a47e0..cea704747c8 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetRecalledDataSizeRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetRecalledDataSizeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetRulesSummaryRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetRulesSummaryRequest.java index bd31558f73e..4b33103bc66 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetRulesSummaryRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetRulesSummaryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetScheduledTaskRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetScheduledTaskRequest.java index 502778ce229..e0ce08e9d2a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetScheduledTaskRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetScheduledTaskRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetSourceRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetSourceRequest.java index 1eb6ffb9b9d..193478266c6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetSourceRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetSourceSummaryRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetSourceSummaryRequest.java index 403eee4fca8..f728bad4acd 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetSourceSummaryRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetSourceSummaryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetStorageRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetStorageRequest.java index 7ea13c1f94f..03bb11a6637 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetStorageRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetStorageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetStorageUsageRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetStorageUsageRequest.java index e741505c57f..0a95d93d311 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetStorageUsageRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetStorageUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetStorageWorkRequestRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetStorageWorkRequestRequest.java index 87f2a8b9cf3..60867eedf94 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetStorageWorkRequestRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetStorageWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetTemplateRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetTemplateRequest.java index 78e194b6ba5..123557b79f3 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetTemplateRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetTemplateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetUnprocessedDataBucketRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetUnprocessedDataBucketRequest.java index 8569fad9650..2bd4d384c3f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetUnprocessedDataBucketRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetUnprocessedDataBucketRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetUploadRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetUploadRequest.java index 02bb01f086f..17dc867d31b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetUploadRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetUploadRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetWorkRequestRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetWorkRequestRequest.java index ac7d3e01ef4..43c8ac9cf4a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetWorkRequestRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ImportCustomContentRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ImportCustomContentRequest.java index 2cabba101d4..856ec3a0d25 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ImportCustomContentRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ImportCustomContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListAssociableEntitiesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListAssociableEntitiesRequest.java index abba10bdbb5..935f1bbef24 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListAssociableEntitiesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListAssociableEntitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListAssociatedEntitiesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListAssociatedEntitiesRequest.java index cb94f4518f9..c048303346f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListAssociatedEntitiesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListAssociatedEntitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListAutoAssociationsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListAutoAssociationsRequest.java index 0c3ccac9877..3545b7418f6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListAutoAssociationsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListAutoAssociationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListCategoriesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListCategoriesRequest.java index 2de31518163..1195fd26e73 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListCategoriesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListCategoriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListConfigWorkRequestsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListConfigWorkRequestsRequest.java index 8eec2d227b1..b4574059ca2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListConfigWorkRequestsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListConfigWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListEffectivePropertiesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListEffectivePropertiesRequest.java index 52e0bd36fd5..69038c37a37 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListEffectivePropertiesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListEffectivePropertiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListEncryptionKeyInfoRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListEncryptionKeyInfoRequest.java index de06a259f9c..458913fbaed 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListEncryptionKeyInfoRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListEncryptionKeyInfoRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListEntityAssociationsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListEntityAssociationsRequest.java index 66f76977f35..a7ae2b15abb 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListEntityAssociationsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListEntityAssociationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListEntitySourceAssociationsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListEntitySourceAssociationsRequest.java index c8c978a29c2..80e809e553e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListEntitySourceAssociationsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListEntitySourceAssociationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListFieldsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListFieldsRequest.java index 55d415c6e1a..e225c6f9747 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListFieldsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListFieldsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListIngestTimeRulesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListIngestTimeRulesRequest.java index 4d0562d8722..ad511538a06 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListIngestTimeRulesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListIngestTimeRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLabelPrioritiesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLabelPrioritiesRequest.java index bb423927177..4824bdf51ae 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLabelPrioritiesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLabelPrioritiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLabelSourceDetailsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLabelSourceDetailsRequest.java index af9b41fb1ee..35f362e5cd5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLabelSourceDetailsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLabelSourceDetailsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLabelsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLabelsRequest.java index 1136ecd965c..4d448ad2207 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLabelsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLabelsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsEmBridgesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsEmBridgesRequest.java index 7ba6eee03e1..57274d90a7b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsEmBridgesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsEmBridgesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsEntitiesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsEntitiesRequest.java index 976b49278d2..787eaa725c1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsEntitiesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsEntitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsEntityTopologyRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsEntityTopologyRequest.java index cfbc8e3c4f4..dce91343d4a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsEntityTopologyRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsEntityTopologyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsEntityTypesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsEntityTypesRequest.java index 7ab324951c2..ef0a8490bef 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsEntityTypesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsEntityTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsLogGroupsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsLogGroupsRequest.java index 9c47769cffc..73246330985 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsLogGroupsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsLogGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsObjectCollectionRulesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsObjectCollectionRulesRequest.java index 483e2922db5..44e5c0c35cd 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsObjectCollectionRulesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogAnalyticsObjectCollectionRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogSetsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogSetsRequest.java index 6c596d6a0b5..4584e790830 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogSetsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLogSetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLookupsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLookupsRequest.java index 7909cb12ac0..33eef1e3037 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLookupsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListLookupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListMetaSourceTypesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListMetaSourceTypesRequest.java index d9e2e9b1178..0095e8e1ba5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListMetaSourceTypesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListMetaSourceTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListNamespacesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListNamespacesRequest.java index d810832af60..de58dfa1392 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListNamespacesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListNamespacesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListOverlappingRecallsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListOverlappingRecallsRequest.java index 6bc2fb5e4b8..91c7661fa52 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListOverlappingRecallsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListOverlappingRecallsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListParserActionsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListParserActionsRequest.java index 60cf872ed67..25d6f923deb 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListParserActionsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListParserActionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListParserFunctionsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListParserFunctionsRequest.java index c50501690ae..aee91344540 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListParserFunctionsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListParserFunctionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListParserMetaPluginsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListParserMetaPluginsRequest.java index 1cc0f6f5b06..5cdc2c7cced 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListParserMetaPluginsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListParserMetaPluginsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListParsersRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListParsersRequest.java index 9ff9e58f55d..131338fcd2c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListParsersRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListParsersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListPropertiesMetadataRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListPropertiesMetadataRequest.java index 18110b07094..c0631e3c5bf 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListPropertiesMetadataRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListPropertiesMetadataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListQueryWorkRequestsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListQueryWorkRequestsRequest.java index d727babcdaa..8954fa3ff6b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListQueryWorkRequestsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListQueryWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListRecalledDataRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListRecalledDataRequest.java index 964a9119b9c..81844d88f04 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListRecalledDataRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListRecalledDataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListRecalledInfoRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListRecalledInfoRequest.java index 6282cc76999..4241a7abfb1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListRecalledInfoRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListRecalledInfoRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListResourceCategoriesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListResourceCategoriesRequest.java index 7264e3e6358..2f2f5bbb37e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListResourceCategoriesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListResourceCategoriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListRulesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListRulesRequest.java index 4aea474c419..6564f087fe9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListRulesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListScheduledTasksRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListScheduledTasksRequest.java index 2896f16d490..d5d37f58d6c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListScheduledTasksRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListScheduledTasksRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourceAssociationsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourceAssociationsRequest.java index b1b625e9a4d..27cb4842049 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourceAssociationsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourceAssociationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourceEventTypesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourceEventTypesRequest.java index 949f26a2e32..5b2af5c2301 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourceEventTypesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourceEventTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourceExtendedFieldDefinitionsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourceExtendedFieldDefinitionsRequest.java index e5155c0401e..9088a05ddc9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourceExtendedFieldDefinitionsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourceExtendedFieldDefinitionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourceLabelOperatorsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourceLabelOperatorsRequest.java index 6df21b4bb02..7afb4b34ec4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourceLabelOperatorsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourceLabelOperatorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourceMetaFunctionsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourceMetaFunctionsRequest.java index b391ba46402..e9a9cd195fd 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourceMetaFunctionsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourceMetaFunctionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourcePatternsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourcePatternsRequest.java index d85b33dbca5..5c2d76031d6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourcePatternsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourcePatternsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourcesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourcesRequest.java index c45412ccb0f..6098e8445c0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourcesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListStorageWorkRequestErrorsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListStorageWorkRequestErrorsRequest.java index e74e733451a..4a038fd70a7 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListStorageWorkRequestErrorsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListStorageWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListStorageWorkRequestsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListStorageWorkRequestsRequest.java index 81ff5605c0a..a4c48bfeb2f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListStorageWorkRequestsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListStorageWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSupportedCharEncodingsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSupportedCharEncodingsRequest.java index c4a6ca4a565..0085f5c6fb7 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSupportedCharEncodingsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSupportedCharEncodingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSupportedTimezonesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSupportedTimezonesRequest.java index 459f6d73552..01e517ac4f8 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSupportedTimezonesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListSupportedTimezonesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListTemplatesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListTemplatesRequest.java index 39caacad92b..faf232d9b79 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListTemplatesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListTemplatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListUploadFilesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListUploadFilesRequest.java index 8e313e1897d..4fdc83749d6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListUploadFilesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListUploadFilesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListUploadWarningsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListUploadWarningsRequest.java index 9aad5631711..ee1f9c5020d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListUploadWarningsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListUploadWarningsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListUploadsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListUploadsRequest.java index 7e9ff10614e..f11d056f437 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListUploadsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListUploadsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListWarningsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListWarningsRequest.java index 29c89d17a65..d3c510419df 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListWarningsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListWarningsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListWorkRequestErrorsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListWorkRequestErrorsRequest.java index 539e6358d94..98c86b1f7a7 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListWorkRequestLogsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListWorkRequestLogsRequest.java index 3f877f54756..7d58c30c9a9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListWorkRequestLogsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListWorkRequestsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListWorkRequestsRequest.java index fffcfcea72d..6016dfaa74a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListWorkRequestsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/OffboardNamespaceRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/OffboardNamespaceRequest.java index 52fc0d89a19..31eab038e99 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/OffboardNamespaceRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/OffboardNamespaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/OnboardNamespaceRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/OnboardNamespaceRequest.java index 6fbef33837f..8140a8cc42f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/OnboardNamespaceRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/OnboardNamespaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ParseQueryRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ParseQueryRequest.java index 11807dbddbe..029d5655682 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ParseQueryRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ParseQueryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/PauseScheduledTaskRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/PauseScheduledTaskRequest.java index ef403038e5e..bb0bab887ac 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/PauseScheduledTaskRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/PauseScheduledTaskRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/PurgeStorageDataRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/PurgeStorageDataRequest.java index b477528e3bc..fb840bdc767 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/PurgeStorageDataRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/PurgeStorageDataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/PutQueryWorkRequestBackgroundRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/PutQueryWorkRequestBackgroundRequest.java index 0d98d8d5dcd..397132aaec3 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/PutQueryWorkRequestBackgroundRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/PutQueryWorkRequestBackgroundRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/QueryRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/QueryRequest.java index 2173180b3be..8a55c281c66 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/QueryRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/QueryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RecallArchivedDataRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RecallArchivedDataRequest.java index daaeebfa9b2..831d42c97ce 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RecallArchivedDataRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RecallArchivedDataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RegisterLookupRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RegisterLookupRequest.java index 9b6daed3e5f..6c88a520460 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RegisterLookupRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RegisterLookupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ReleaseRecalledDataRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ReleaseRecalledDataRequest.java index c835fb7cbb7..051dee35045 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ReleaseRecalledDataRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ReleaseRecalledDataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RemoveEntityAssociationsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RemoveEntityAssociationsRequest.java index 8f9b40b1815..b2315b35175 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RemoveEntityAssociationsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RemoveEntityAssociationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RemovePreferencesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RemovePreferencesRequest.java index 636c130a21b..18a356ca76d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RemovePreferencesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RemovePreferencesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RemoveResourceCategoriesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RemoveResourceCategoriesRequest.java index 3b65521b0c2..1c85e8e6f24 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RemoveResourceCategoriesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RemoveResourceCategoriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RemoveSourceEventTypesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RemoveSourceEventTypesRequest.java index 2c29d5aa069..36f9a4b74f6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RemoveSourceEventTypesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RemoveSourceEventTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ResumeScheduledTaskRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ResumeScheduledTaskRequest.java index c9748a8f84e..70dd1594248 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ResumeScheduledTaskRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ResumeScheduledTaskRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RunRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RunRequest.java index 04ea0e7ea5c..64ef0d0e4e0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RunRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/RunRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/SetUnprocessedDataBucketRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/SetUnprocessedDataBucketRequest.java index 95fb0463afc..285f59384ec 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/SetUnprocessedDataBucketRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/SetUnprocessedDataBucketRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/SuggestRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/SuggestRequest.java index 12e1a347755..04f18cfbf68 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/SuggestRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/SuggestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/SuppressWarningRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/SuppressWarningRequest.java index fe9d9754a53..bd6662263c4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/SuppressWarningRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/SuppressWarningRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/TestParserRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/TestParserRequest.java index 83d7bbd0d43..3c7aaf7af0a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/TestParserRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/TestParserRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UnsuppressWarningRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UnsuppressWarningRequest.java index 47d3c10f774..f2eab2f1911 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UnsuppressWarningRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UnsuppressWarningRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateIngestTimeRuleRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateIngestTimeRuleRequest.java index 5b0d7e2e76e..3355207e94d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateIngestTimeRuleRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateIngestTimeRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLogAnalyticsEmBridgeRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLogAnalyticsEmBridgeRequest.java index 814a87053c8..dde9f6dabb5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLogAnalyticsEmBridgeRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLogAnalyticsEmBridgeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLogAnalyticsEntityRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLogAnalyticsEntityRequest.java index 1e7f6e1154c..e6849eceb5e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLogAnalyticsEntityRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLogAnalyticsEntityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLogAnalyticsEntityTypeRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLogAnalyticsEntityTypeRequest.java index d8607d5283e..e4d98a96c95 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLogAnalyticsEntityTypeRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLogAnalyticsEntityTypeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLogAnalyticsLogGroupRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLogAnalyticsLogGroupRequest.java index 35e2756bc77..7fbc9caa747 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLogAnalyticsLogGroupRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLogAnalyticsLogGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLogAnalyticsObjectCollectionRuleRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLogAnalyticsObjectCollectionRuleRequest.java index 04cdae674ea..0c396c5cb62 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLogAnalyticsObjectCollectionRuleRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLogAnalyticsObjectCollectionRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLookupDataRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLookupDataRequest.java index e628ec4dfaf..509270b6296 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLookupDataRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLookupDataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLookupRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLookupRequest.java index 3c07c709813..9d96dec2106 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLookupRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateLookupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdatePreferencesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdatePreferencesRequest.java index 10d2e366839..a7d1ead6089 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdatePreferencesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdatePreferencesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateResourceCategoriesRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateResourceCategoriesRequest.java index b4ad130fa79..8deef857764 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateResourceCategoriesRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateResourceCategoriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateScheduledTaskRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateScheduledTaskRequest.java index 9defe598cb2..2062f7b1633 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateScheduledTaskRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateScheduledTaskRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateStorageRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateStorageRequest.java index 5a70d4e6518..6eef1c6c36f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateStorageRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpdateStorageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UploadDiscoveryDataRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UploadDiscoveryDataRequest.java index b8a62e4aaaa..1e37dab4022 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UploadDiscoveryDataRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UploadDiscoveryDataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UploadLogEventsFileRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UploadLogEventsFileRequest.java index 6d7603b5c78..8d5f8febcbf 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UploadLogEventsFileRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UploadLogEventsFileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UploadLogFileRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UploadLogFileRequest.java index 13d48fbf410..075d9b2a814 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UploadLogFileRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UploadLogFileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UploadOtlpLogsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UploadOtlpLogsRequest.java index 79b10cff4dc..21f546647a0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UploadOtlpLogsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UploadOtlpLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpsertAssociationsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpsertAssociationsRequest.java index 056417e8215..e6754b3487a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpsertAssociationsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpsertAssociationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpsertFieldRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpsertFieldRequest.java index f3458772026..075b82bba15 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpsertFieldRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpsertFieldRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpsertLabelRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpsertLabelRequest.java index 504b8b88916..a232506bb78 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpsertLabelRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpsertLabelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpsertParserRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpsertParserRequest.java index 37ece9c2dab..67e06035522 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpsertParserRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpsertParserRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpsertSourceRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpsertSourceRequest.java index cd16756f817..4375f3731f9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpsertSourceRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/UpsertSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateAssociationParametersRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateAssociationParametersRequest.java index 59991d1018a..8f8e10f4a16 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateAssociationParametersRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateAssociationParametersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateEndpointRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateEndpointRequest.java index 4a114afc9ce..8c5ad55a8b3 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateEndpointRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateFileRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateFileRequest.java index 780f3a7351c..653ae322567 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateFileRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateFileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateLabelConditionRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateLabelConditionRequest.java index 630a5a2c6bc..50872893585 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateLabelConditionRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateLabelConditionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateSourceExtendedFieldDetailsRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateSourceExtendedFieldDetailsRequest.java index 43391ebbe55..7cbd563bf54 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateSourceExtendedFieldDetailsRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateSourceExtendedFieldDetailsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateSourceMappingRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateSourceMappingRequest.java index 1d6a750fa80..d0a87028679 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateSourceMappingRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateSourceMappingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateSourceRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateSourceRequest.java index 2e96efc3846..ec8252df7e7 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateSourceRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/ValidateSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/VerifyRequest.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/VerifyRequest.java index 375f13789df..7fb7127a2ff 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/VerifyRequest.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/requests/VerifyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.requests; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/AddEntityAssociationResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/AddEntityAssociationResponse.java index b039d9a7a35..ca3573d964b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/AddEntityAssociationResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/AddEntityAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/AddSourceEventTypesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/AddSourceEventTypesResponse.java index 452a098b506..f79ccc81a1d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/AddSourceEventTypesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/AddSourceEventTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/AppendLookupDataResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/AppendLookupDataResponse.java index c5ca4b799df..c1e9a70912b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/AppendLookupDataResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/AppendLookupDataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/AssignEncryptionKeyResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/AssignEncryptionKeyResponse.java index 9aded18506a..dc2f2e26ddf 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/AssignEncryptionKeyResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/AssignEncryptionKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/BatchGetBasicInfoResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/BatchGetBasicInfoResponse.java index 79f9715697d..4f27e5d6df3 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/BatchGetBasicInfoResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/BatchGetBasicInfoResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CancelQueryWorkRequestResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CancelQueryWorkRequestResponse.java index e09873af47f..853be77b3be 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CancelQueryWorkRequestResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CancelQueryWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeIngestTimeRuleCompartmentResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeIngestTimeRuleCompartmentResponse.java index f5ab5abcf6e..6017ff0adce 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeIngestTimeRuleCompartmentResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeIngestTimeRuleCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeLogAnalyticsEmBridgeCompartmentResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeLogAnalyticsEmBridgeCompartmentResponse.java index c45f80eb164..10d7d644141 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeLogAnalyticsEmBridgeCompartmentResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeLogAnalyticsEmBridgeCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeLogAnalyticsEntityCompartmentResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeLogAnalyticsEntityCompartmentResponse.java index 0a5560acdae..fac266964f0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeLogAnalyticsEntityCompartmentResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeLogAnalyticsEntityCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeLogAnalyticsLogGroupCompartmentResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeLogAnalyticsLogGroupCompartmentResponse.java index 2daadf53983..eeeac91d75c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeLogAnalyticsLogGroupCompartmentResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeLogAnalyticsLogGroupCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeLogAnalyticsObjectCollectionRuleCompartmentResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeLogAnalyticsObjectCollectionRuleCompartmentResponse.java index 96f333ef58b..c9ce434e87a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeLogAnalyticsObjectCollectionRuleCompartmentResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeLogAnalyticsObjectCollectionRuleCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeLookupCompartmentResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeLookupCompartmentResponse.java index 32097917bd6..f270dcb3461 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeLookupCompartmentResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeLookupCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeScheduledTaskCompartmentResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeScheduledTaskCompartmentResponse.java index 4b11c6082ce..fb8a91bff7f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeScheduledTaskCompartmentResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ChangeScheduledTaskCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CleanResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CleanResponse.java index 61c7b4d3fd6..46239024d3f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CleanResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CleanResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CompareContentResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CompareContentResponse.java index ab352a1df60..c28bfd6d8a5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CompareContentResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CompareContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateIngestTimeRuleResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateIngestTimeRuleResponse.java index 651cb57d6f6..a85cca52ec4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateIngestTimeRuleResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateIngestTimeRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateLogAnalyticsEmBridgeResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateLogAnalyticsEmBridgeResponse.java index ed3a609debd..cc1736f4d0b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateLogAnalyticsEmBridgeResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateLogAnalyticsEmBridgeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateLogAnalyticsEntityResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateLogAnalyticsEntityResponse.java index 73587da0623..edd0fc3326c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateLogAnalyticsEntityResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateLogAnalyticsEntityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateLogAnalyticsEntityTypeResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateLogAnalyticsEntityTypeResponse.java index 54b5a3d110a..1d8f625415c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateLogAnalyticsEntityTypeResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateLogAnalyticsEntityTypeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateLogAnalyticsLogGroupResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateLogAnalyticsLogGroupResponse.java index 096bd10cc2e..d708b693c8f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateLogAnalyticsLogGroupResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateLogAnalyticsLogGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateLogAnalyticsObjectCollectionRuleResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateLogAnalyticsObjectCollectionRuleResponse.java index 4dd6b32980a..65ac19862c3 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateLogAnalyticsObjectCollectionRuleResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateLogAnalyticsObjectCollectionRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateScheduledTaskResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateScheduledTaskResponse.java index 25df313f594..e7bd7a927a9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateScheduledTaskResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/CreateScheduledTaskResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteAssociationsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteAssociationsResponse.java index 95240b7b57a..8b01185b226 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteAssociationsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteAssociationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteFieldResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteFieldResponse.java index d1c7c68a0a0..6cb7b550091 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteFieldResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteFieldResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteIngestTimeRuleResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteIngestTimeRuleResponse.java index ad6c62c01e6..5ee21a2bef1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteIngestTimeRuleResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteIngestTimeRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLabelResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLabelResponse.java index 9a2de1fb6e1..ea30ac6c888 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLabelResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLabelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLogAnalyticsEmBridgeResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLogAnalyticsEmBridgeResponse.java index 4b55d34cc53..eb178108dd9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLogAnalyticsEmBridgeResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLogAnalyticsEmBridgeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLogAnalyticsEntityResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLogAnalyticsEntityResponse.java index 8f9c80a8917..474b7d693fd 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLogAnalyticsEntityResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLogAnalyticsEntityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLogAnalyticsEntityTypeResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLogAnalyticsEntityTypeResponse.java index ac3fc40ad75..90a7d4b28de 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLogAnalyticsEntityTypeResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLogAnalyticsEntityTypeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLogAnalyticsLogGroupResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLogAnalyticsLogGroupResponse.java index 0e3849162c3..44926d86a2e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLogAnalyticsLogGroupResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLogAnalyticsLogGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLogAnalyticsObjectCollectionRuleResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLogAnalyticsObjectCollectionRuleResponse.java index 516e335466a..2278870f5bf 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLogAnalyticsObjectCollectionRuleResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLogAnalyticsObjectCollectionRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLookupResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLookupResponse.java index cb01061d63f..80fd96d5b33 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLookupResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteLookupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteParserResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteParserResponse.java index b23a141a676..1b7b3557af9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteParserResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteParserResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteScheduledTaskResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteScheduledTaskResponse.java index 0fd483997de..de924d62b19 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteScheduledTaskResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteScheduledTaskResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteSourceResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteSourceResponse.java index 5ce054612c2..412d2a214a7 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteSourceResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteUploadFileResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteUploadFileResponse.java index cbdfec8bf16..b1c2c5e8f24 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteUploadFileResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteUploadFileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteUploadResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteUploadResponse.java index 3db968d7db3..da677ebd8d4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteUploadResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteUploadResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteUploadWarningResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteUploadWarningResponse.java index 365663567d9..cf66ecb6d0d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteUploadWarningResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DeleteUploadWarningResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DisableArchivingResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DisableArchivingResponse.java index f5fac31aeab..d3a0615e04a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DisableArchivingResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DisableArchivingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DisableAutoAssociationResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DisableAutoAssociationResponse.java index 82e88d13857..2e6b764a500 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DisableAutoAssociationResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DisableAutoAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DisableIngestTimeRuleResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DisableIngestTimeRuleResponse.java index a53bc67d5f3..c29062b208b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DisableIngestTimeRuleResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DisableIngestTimeRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DisableSourceEventTypesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DisableSourceEventTypesResponse.java index edeb82d5925..a0f3d41bad5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DisableSourceEventTypesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/DisableSourceEventTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EnableArchivingResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EnableArchivingResponse.java index f5d4c8185a1..ba4c4b540cd 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EnableArchivingResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EnableArchivingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EnableAutoAssociationResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EnableAutoAssociationResponse.java index aeec5959daf..9b93e67346e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EnableAutoAssociationResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EnableAutoAssociationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EnableIngestTimeRuleResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EnableIngestTimeRuleResponse.java index 285d1047a04..ae92da77333 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EnableIngestTimeRuleResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EnableIngestTimeRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EnableSourceEventTypesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EnableSourceEventTypesResponse.java index ee9667ff690..b4255105e3e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EnableSourceEventTypesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EnableSourceEventTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EstimatePurgeDataSizeResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EstimatePurgeDataSizeResponse.java index 4614dd85727..b3234abf180 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EstimatePurgeDataSizeResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EstimatePurgeDataSizeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EstimateRecallDataSizeResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EstimateRecallDataSizeResponse.java index 84f28e3df23..babf801cd4a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EstimateRecallDataSizeResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EstimateRecallDataSizeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EstimateReleaseDataSizeResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EstimateReleaseDataSizeResponse.java index a9f085e08e1..6e96a084241 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EstimateReleaseDataSizeResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/EstimateReleaseDataSizeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ExportCustomContentResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ExportCustomContentResponse.java index 77ec3f0029f..5e8ff10d9e4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ExportCustomContentResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ExportCustomContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ExportQueryResultResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ExportQueryResultResponse.java index ad586ff9d6a..6fc31470aa2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ExportQueryResultResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ExportQueryResultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ExtractStructuredLogFieldPathsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ExtractStructuredLogFieldPathsResponse.java index 1dba7d5e98c..b6f5da57650 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ExtractStructuredLogFieldPathsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ExtractStructuredLogFieldPathsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ExtractStructuredLogHeaderPathsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ExtractStructuredLogHeaderPathsResponse.java index 96ce43a2ce0..d726fb7fda7 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ExtractStructuredLogHeaderPathsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ExtractStructuredLogHeaderPathsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/FilterResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/FilterResponse.java index f2b2394f679..ecacd3bce0d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/FilterResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/FilterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetAssociationSummaryResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetAssociationSummaryResponse.java index 3f3b25dbc6c..8ee77025f9e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetAssociationSummaryResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetAssociationSummaryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetCategoryResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetCategoryResponse.java index 33b481ab1eb..632a32695c7 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetCategoryResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetCategoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetColumnNamesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetColumnNamesResponse.java index 6af3b026f8e..d44d027e653 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetColumnNamesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetColumnNamesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetConfigWorkRequestResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetConfigWorkRequestResponse.java index 83d00494fd3..6a34d6020bf 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetConfigWorkRequestResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetConfigWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetFieldResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetFieldResponse.java index 93c0d93cab2..dc4117b568b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetFieldResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetFieldResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetFieldUsagesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetFieldUsagesResponse.java index 403a252719d..ae156cd40e3 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetFieldUsagesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetFieldUsagesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetFieldsSummaryResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetFieldsSummaryResponse.java index d0fa3945119..6f67487fe78 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetFieldsSummaryResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetFieldsSummaryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetIngestTimeRuleResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetIngestTimeRuleResponse.java index 223e60f4795..c40f5d94114 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetIngestTimeRuleResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetIngestTimeRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLabelResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLabelResponse.java index 7593f755c62..c7a82abd13f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLabelResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLabelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLabelSummaryResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLabelSummaryResponse.java index 4939e678182..47b7a157fb4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLabelSummaryResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLabelSummaryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsEmBridgeResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsEmBridgeResponse.java index 1a1f2781bf1..469a7b9a359 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsEmBridgeResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsEmBridgeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsEmBridgeSummaryResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsEmBridgeSummaryResponse.java index 3d9919f6728..c50113e2dbd 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsEmBridgeSummaryResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsEmBridgeSummaryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsEntitiesSummaryResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsEntitiesSummaryResponse.java index 8370a729c25..7c401b84a53 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsEntitiesSummaryResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsEntitiesSummaryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsEntityResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsEntityResponse.java index d61c8d7b4d2..ad7b72d66ea 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsEntityResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsEntityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsEntityTypeResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsEntityTypeResponse.java index 4946c160b2d..bf107c6f3e3 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsEntityTypeResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsEntityTypeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsLogGroupResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsLogGroupResponse.java index 9b09f534742..ae2e8216c0a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsLogGroupResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsLogGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsLogGroupsSummaryResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsLogGroupsSummaryResponse.java index 989559ecc43..12ad50b1420 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsLogGroupsSummaryResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsLogGroupsSummaryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsObjectCollectionRuleResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsObjectCollectionRuleResponse.java index c3ce4214bfe..378356d1bed 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsObjectCollectionRuleResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogAnalyticsObjectCollectionRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogSetsCountResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogSetsCountResponse.java index 99b96b395dc..d9bd7569497 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogSetsCountResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLogSetsCountResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLookupResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLookupResponse.java index efdf09cb725..a5d5ae83197 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLookupResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLookupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLookupSummaryResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLookupSummaryResponse.java index 676ea9666fb..222a8196ea3 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLookupSummaryResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetLookupSummaryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetNamespaceResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetNamespaceResponse.java index 9e14d2fea3e..4507ab02291 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetNamespaceResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetNamespaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetParserResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetParserResponse.java index 3149a6a88fa..372103d1e00 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetParserResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetParserResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetParserSummaryResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetParserSummaryResponse.java index 79ae0fae004..368cba45b55 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetParserSummaryResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetParserSummaryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetPreferencesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetPreferencesResponse.java index 9540b15d193..014483447a5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetPreferencesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetPreferencesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetQueryResultResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetQueryResultResponse.java index 3e437fa00df..efa38307961 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetQueryResultResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetQueryResultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetQueryWorkRequestResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetQueryWorkRequestResponse.java index 5a950859651..4c9f6f7a631 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetQueryWorkRequestResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetQueryWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetRecallCountResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetRecallCountResponse.java index 43c030bbb1f..38c8529cd26 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetRecallCountResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetRecallCountResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetRecalledDataSizeResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetRecalledDataSizeResponse.java index 7dbbbaad13f..90af8c8aa4c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetRecalledDataSizeResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetRecalledDataSizeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetRulesSummaryResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetRulesSummaryResponse.java index d0cd59b9747..683089b27b4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetRulesSummaryResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetRulesSummaryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetScheduledTaskResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetScheduledTaskResponse.java index e85e1be0901..5e189c1e1f9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetScheduledTaskResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetScheduledTaskResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetSourceResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetSourceResponse.java index 9fbf2077cc3..22494ed18a9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetSourceResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetSourceSummaryResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetSourceSummaryResponse.java index 41121e0d27f..f5046921330 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetSourceSummaryResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetSourceSummaryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetStorageResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetStorageResponse.java index 5fd231a03f0..9c9b0bdd274 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetStorageResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetStorageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetStorageUsageResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetStorageUsageResponse.java index a3a8e975034..7bf91b63e80 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetStorageUsageResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetStorageUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetStorageWorkRequestResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetStorageWorkRequestResponse.java index 5b86cbbedc3..0061b079809 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetStorageWorkRequestResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetStorageWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetTemplateResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetTemplateResponse.java index 57a427ec933..aba86e7192e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetTemplateResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetTemplateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetUnprocessedDataBucketResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetUnprocessedDataBucketResponse.java index f88befe8598..b4ec2e46e74 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetUnprocessedDataBucketResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetUnprocessedDataBucketResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetUploadResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetUploadResponse.java index 58b706b255b..134eed045ca 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetUploadResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetUploadResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetWorkRequestResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetWorkRequestResponse.java index 366b75a4888..d1528ba06eb 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetWorkRequestResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ImportCustomContentResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ImportCustomContentResponse.java index 31e5f886001..6270a944507 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ImportCustomContentResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ImportCustomContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListAssociableEntitiesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListAssociableEntitiesResponse.java index 35fb5379833..215fb7ce79d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListAssociableEntitiesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListAssociableEntitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListAssociatedEntitiesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListAssociatedEntitiesResponse.java index 9d99cb9443c..1be5cbbc325 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListAssociatedEntitiesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListAssociatedEntitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListAutoAssociationsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListAutoAssociationsResponse.java index 5214c89c61c..c4da30c3d22 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListAutoAssociationsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListAutoAssociationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListCategoriesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListCategoriesResponse.java index 05e10636399..e28d9cd0386 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListCategoriesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListCategoriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListConfigWorkRequestsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListConfigWorkRequestsResponse.java index 56fae80bc34..4ae16e3d01d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListConfigWorkRequestsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListConfigWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListEffectivePropertiesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListEffectivePropertiesResponse.java index a9d8e433524..c8d34b9eb2e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListEffectivePropertiesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListEffectivePropertiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListEncryptionKeyInfoResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListEncryptionKeyInfoResponse.java index a4183c44d23..85646641d70 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListEncryptionKeyInfoResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListEncryptionKeyInfoResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListEntityAssociationsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListEntityAssociationsResponse.java index 2169b8254ca..5587b6b93c9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListEntityAssociationsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListEntityAssociationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListEntitySourceAssociationsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListEntitySourceAssociationsResponse.java index 5ec4209cf28..ab5e88b02af 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListEntitySourceAssociationsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListEntitySourceAssociationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListFieldsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListFieldsResponse.java index baa0fac8419..3e3f54b3949 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListFieldsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListFieldsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListIngestTimeRulesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListIngestTimeRulesResponse.java index a2954d02b67..9a02021e4d1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListIngestTimeRulesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListIngestTimeRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLabelPrioritiesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLabelPrioritiesResponse.java index 47987a99604..e7cd3cc6261 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLabelPrioritiesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLabelPrioritiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLabelSourceDetailsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLabelSourceDetailsResponse.java index a37bdd40615..ac1f063372e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLabelSourceDetailsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLabelSourceDetailsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLabelsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLabelsResponse.java index 09333ed59f8..94fb1c8baf1 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLabelsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLabelsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsEmBridgesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsEmBridgesResponse.java index b07446afdd1..3315346391c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsEmBridgesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsEmBridgesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsEntitiesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsEntitiesResponse.java index 361b3d4cd45..dca7e8d99a6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsEntitiesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsEntitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsEntityTopologyResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsEntityTopologyResponse.java index cfdbf84c2cf..bf28bf78aa9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsEntityTopologyResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsEntityTopologyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsEntityTypesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsEntityTypesResponse.java index beebc860ddc..b250f4ca800 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsEntityTypesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsEntityTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsLogGroupsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsLogGroupsResponse.java index c4b386a6fa2..210ba189a93 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsLogGroupsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsLogGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsObjectCollectionRulesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsObjectCollectionRulesResponse.java index 2bdd27c210b..323ebe226b7 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsObjectCollectionRulesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogAnalyticsObjectCollectionRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogSetsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogSetsResponse.java index 2d559f5c94e..3db28b5065c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogSetsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLogSetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLookupsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLookupsResponse.java index 4cd2be9afb7..8a095d43ac4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLookupsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListLookupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListMetaSourceTypesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListMetaSourceTypesResponse.java index 4b284f7edb5..1c9c0308539 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListMetaSourceTypesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListMetaSourceTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListNamespacesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListNamespacesResponse.java index 52f85404b8f..b72700ca117 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListNamespacesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListNamespacesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListOverlappingRecallsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListOverlappingRecallsResponse.java index 74569c69d05..62fb5580fe9 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListOverlappingRecallsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListOverlappingRecallsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListParserActionsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListParserActionsResponse.java index 1e23b0c3b07..e14cfc1bbda 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListParserActionsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListParserActionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListParserFunctionsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListParserFunctionsResponse.java index 9a097ef50b5..c461b5d6dcc 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListParserFunctionsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListParserFunctionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListParserMetaPluginsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListParserMetaPluginsResponse.java index dd88292f232..40e2aeca88c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListParserMetaPluginsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListParserMetaPluginsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListParsersResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListParsersResponse.java index b9b5c214e4a..e5593c1607a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListParsersResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListParsersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListPropertiesMetadataResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListPropertiesMetadataResponse.java index bae00c5dcc8..7e9213b7832 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListPropertiesMetadataResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListPropertiesMetadataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListQueryWorkRequestsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListQueryWorkRequestsResponse.java index d7accce2e52..2dda8040790 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListQueryWorkRequestsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListQueryWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListRecalledDataResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListRecalledDataResponse.java index d975d9453ef..50748c6fa4c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListRecalledDataResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListRecalledDataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListRecalledInfoResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListRecalledInfoResponse.java index 9d8d9999eb1..514930c2ce7 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListRecalledInfoResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListRecalledInfoResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListResourceCategoriesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListResourceCategoriesResponse.java index 6a8a8f6087c..6b92f5348ff 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListResourceCategoriesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListResourceCategoriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListRulesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListRulesResponse.java index ea49f3d23d9..3287a1ba8d0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListRulesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListScheduledTasksResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListScheduledTasksResponse.java index e51d2403f16..526d41ff71d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListScheduledTasksResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListScheduledTasksResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourceAssociationsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourceAssociationsResponse.java index 0e8edf4d035..69eeebabdf0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourceAssociationsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourceAssociationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourceEventTypesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourceEventTypesResponse.java index 70299d57531..899aa786bca 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourceEventTypesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourceEventTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourceExtendedFieldDefinitionsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourceExtendedFieldDefinitionsResponse.java index 368251c087b..32db5dbbb0a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourceExtendedFieldDefinitionsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourceExtendedFieldDefinitionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourceLabelOperatorsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourceLabelOperatorsResponse.java index 70c44c8f140..cd8fce19bce 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourceLabelOperatorsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourceLabelOperatorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourceMetaFunctionsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourceMetaFunctionsResponse.java index 502c18115c4..3ee78bd9d26 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourceMetaFunctionsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourceMetaFunctionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourcePatternsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourcePatternsResponse.java index eeae886cdf8..1572525e525 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourcePatternsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourcePatternsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourcesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourcesResponse.java index 7e3c0450ef1..78b389b9882 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourcesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListStorageWorkRequestErrorsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListStorageWorkRequestErrorsResponse.java index 7d5c2da056f..90138a42f20 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListStorageWorkRequestErrorsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListStorageWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListStorageWorkRequestsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListStorageWorkRequestsResponse.java index 07b680ac5d4..7c1773416f6 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListStorageWorkRequestsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListStorageWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSupportedCharEncodingsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSupportedCharEncodingsResponse.java index f58e2018e23..c70ccd74a1b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSupportedCharEncodingsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSupportedCharEncodingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSupportedTimezonesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSupportedTimezonesResponse.java index b36fc6a8cf4..2902ac3728f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSupportedTimezonesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListSupportedTimezonesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListTemplatesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListTemplatesResponse.java index 2f5b37c135b..c4226aa78f0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListTemplatesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListTemplatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListUploadFilesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListUploadFilesResponse.java index c842cf68020..e3264e00f4e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListUploadFilesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListUploadFilesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListUploadWarningsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListUploadWarningsResponse.java index 9ad55e0f471..5e4e9aca029 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListUploadWarningsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListUploadWarningsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListUploadsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListUploadsResponse.java index 0f7187260f8..2db5900f463 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListUploadsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListUploadsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListWarningsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListWarningsResponse.java index f19ffce5a5d..a6197bbf5ff 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListWarningsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListWarningsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListWorkRequestErrorsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListWorkRequestErrorsResponse.java index 7418e71bb62..f6a8d0e42a8 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListWorkRequestLogsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListWorkRequestLogsResponse.java index 2ef7164b3c0..10d282bd24b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListWorkRequestLogsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListWorkRequestsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListWorkRequestsResponse.java index 01049691029..947bd196d3a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListWorkRequestsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/OffboardNamespaceResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/OffboardNamespaceResponse.java index 0ad1adccb31..b20e6e31914 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/OffboardNamespaceResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/OffboardNamespaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/OnboardNamespaceResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/OnboardNamespaceResponse.java index c48a0541c0d..cd3d59ef6de 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/OnboardNamespaceResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/OnboardNamespaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ParseQueryResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ParseQueryResponse.java index d6b13b79931..36446747200 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ParseQueryResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ParseQueryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/PauseScheduledTaskResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/PauseScheduledTaskResponse.java index 55ee23d296f..b4dd34dc40e 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/PauseScheduledTaskResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/PauseScheduledTaskResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/PurgeStorageDataResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/PurgeStorageDataResponse.java index 9a8de674480..521a6b7e984 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/PurgeStorageDataResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/PurgeStorageDataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/PutQueryWorkRequestBackgroundResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/PutQueryWorkRequestBackgroundResponse.java index 638ebd3fa6e..d1b757c7b72 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/PutQueryWorkRequestBackgroundResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/PutQueryWorkRequestBackgroundResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/QueryResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/QueryResponse.java index e63b21acb36..c5f838e9dde 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/QueryResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/QueryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RecallArchivedDataResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RecallArchivedDataResponse.java index 91f005b043e..5633646e108 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RecallArchivedDataResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RecallArchivedDataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RegisterLookupResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RegisterLookupResponse.java index 10eaeee33e0..55cb006b1a2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RegisterLookupResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RegisterLookupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ReleaseRecalledDataResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ReleaseRecalledDataResponse.java index 6776ea64167..a4ba93dad95 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ReleaseRecalledDataResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ReleaseRecalledDataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RemoveEntityAssociationsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RemoveEntityAssociationsResponse.java index a6210d9531d..78d658304bd 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RemoveEntityAssociationsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RemoveEntityAssociationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RemovePreferencesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RemovePreferencesResponse.java index c10edf14789..c772bd29614 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RemovePreferencesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RemovePreferencesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RemoveResourceCategoriesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RemoveResourceCategoriesResponse.java index 9f69f13804f..7e3f69ddbdb 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RemoveResourceCategoriesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RemoveResourceCategoriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RemoveSourceEventTypesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RemoveSourceEventTypesResponse.java index 58365dec6b0..aa0c6788801 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RemoveSourceEventTypesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RemoveSourceEventTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ResumeScheduledTaskResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ResumeScheduledTaskResponse.java index c55a6947c88..b4dad6030e8 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ResumeScheduledTaskResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ResumeScheduledTaskResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RunResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RunResponse.java index 044fc435bcd..9e4aaa9e3fc 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RunResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/RunResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/SetUnprocessedDataBucketResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/SetUnprocessedDataBucketResponse.java index 4aa64483f75..f50db028709 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/SetUnprocessedDataBucketResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/SetUnprocessedDataBucketResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/SuggestResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/SuggestResponse.java index e02ed482044..4e2cdbeb315 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/SuggestResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/SuggestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/SuppressWarningResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/SuppressWarningResponse.java index 2449f77a128..0e66d56ab5b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/SuppressWarningResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/SuppressWarningResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/TestParserResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/TestParserResponse.java index fded5e031c1..ff41f275ae2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/TestParserResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/TestParserResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UnsuppressWarningResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UnsuppressWarningResponse.java index 8187cf7385d..34b1cc12b07 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UnsuppressWarningResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UnsuppressWarningResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateIngestTimeRuleResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateIngestTimeRuleResponse.java index a702d96a6e2..2891b49b06c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateIngestTimeRuleResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateIngestTimeRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLogAnalyticsEmBridgeResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLogAnalyticsEmBridgeResponse.java index 0bf889a1e5a..ab82663d2e2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLogAnalyticsEmBridgeResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLogAnalyticsEmBridgeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLogAnalyticsEntityResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLogAnalyticsEntityResponse.java index 9ca6a98852c..09aafa1061b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLogAnalyticsEntityResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLogAnalyticsEntityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLogAnalyticsEntityTypeResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLogAnalyticsEntityTypeResponse.java index 59f442e29d6..42d26b4df5c 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLogAnalyticsEntityTypeResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLogAnalyticsEntityTypeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLogAnalyticsLogGroupResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLogAnalyticsLogGroupResponse.java index 49850e27032..65ff55a8349 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLogAnalyticsLogGroupResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLogAnalyticsLogGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLogAnalyticsObjectCollectionRuleResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLogAnalyticsObjectCollectionRuleResponse.java index 9373a22d2f0..a42381feffd 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLogAnalyticsObjectCollectionRuleResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLogAnalyticsObjectCollectionRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLookupDataResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLookupDataResponse.java index 5756f26bd98..5b90b1488e2 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLookupDataResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLookupDataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLookupResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLookupResponse.java index 03cb333eb1f..34590fcbd3b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLookupResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateLookupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdatePreferencesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdatePreferencesResponse.java index 7706a53299e..cac444fa064 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdatePreferencesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdatePreferencesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateResourceCategoriesResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateResourceCategoriesResponse.java index 041bda6e28a..66df545e408 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateResourceCategoriesResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateResourceCategoriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateScheduledTaskResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateScheduledTaskResponse.java index 4ebaa82e72d..50e2c62ad32 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateScheduledTaskResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateScheduledTaskResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateStorageResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateStorageResponse.java index 7368b304a95..36b4be38bcf 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateStorageResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpdateStorageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UploadDiscoveryDataResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UploadDiscoveryDataResponse.java index 388e685cc9d..9b80702ceb0 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UploadDiscoveryDataResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UploadDiscoveryDataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UploadLogEventsFileResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UploadLogEventsFileResponse.java index d382a32bc64..5418779658b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UploadLogEventsFileResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UploadLogEventsFileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UploadLogFileResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UploadLogFileResponse.java index 21f1a3452cf..f3be9292966 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UploadLogFileResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UploadLogFileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UploadOtlpLogsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UploadOtlpLogsResponse.java index 1d31292b08f..b58a906daba 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UploadOtlpLogsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UploadOtlpLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpsertAssociationsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpsertAssociationsResponse.java index b53d99b6466..74da567d16b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpsertAssociationsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpsertAssociationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpsertFieldResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpsertFieldResponse.java index e5e5168d249..301eba962c5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpsertFieldResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpsertFieldResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpsertLabelResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpsertLabelResponse.java index 0c8290be4ae..83987399471 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpsertLabelResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpsertLabelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpsertParserResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpsertParserResponse.java index f2a04a22ed7..44db2b1cd0d 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpsertParserResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpsertParserResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpsertSourceResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpsertSourceResponse.java index 60a24c28ee4..4f18c94c07a 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpsertSourceResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/UpsertSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateAssociationParametersResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateAssociationParametersResponse.java index 5e43dd66ff6..fbb0cec37c4 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateAssociationParametersResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateAssociationParametersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateEndpointResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateEndpointResponse.java index 095f734e4cd..3103441ad7b 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateEndpointResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateFileResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateFileResponse.java index f2be429970c..cf4aab17ddc 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateFileResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateFileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateLabelConditionResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateLabelConditionResponse.java index da5657bab3a..ee38dbc6ffa 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateLabelConditionResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateLabelConditionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateSourceExtendedFieldDetailsResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateSourceExtendedFieldDetailsResponse.java index d0850a5767f..f2f9c47d64f 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateSourceExtendedFieldDetailsResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateSourceExtendedFieldDetailsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateSourceMappingResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateSourceMappingResponse.java index 9a3bfb8e325..b2644829d99 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateSourceMappingResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateSourceMappingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateSourceResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateSourceResponse.java index cf82f060412..73f76fdecb5 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateSourceResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/ValidateSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/VerifyResponse.java b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/VerifyResponse.java index d54bc7445c8..018498f2c28 100644 --- a/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/VerifyResponse.java +++ b/bmc-loganalytics/src/main/java/com/oracle/bmc/loganalytics/responses/VerifyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loganalytics.responses; diff --git a/bmc-loganalytics/src/main/resources/com/oracle/bmc/loganalytics/client.properties b/bmc-loganalytics/src/main/resources/com/oracle/bmc/loganalytics/client.properties index 9034541c0e9..dec66cfc891 100644 --- a/bmc-loganalytics/src/main/resources/com/oracle/bmc/loganalytics/client.properties +++ b/bmc-loganalytics/src/main/resources/com/oracle/bmc/loganalytics/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-logging/pom.xml b/bmc-logging/pom.xml index c9251e03673..656cf7e3baa 100644 --- a/bmc-logging/pom.xml +++ b/bmc-logging/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-logging @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagement.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagement.java index 2a567768dba..ed4912282df 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagement.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagementAsync.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagementAsync.java index f4bf4cecebe..413dcbea2fb 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagementAsync.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagementAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagementAsyncClient.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagementAsyncClient.java index 83ef7cfcaa9..4f5354ae64e 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagementAsyncClient.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagementAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagementClient.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagementClient.java index ca7ba9d5c48..cf384a5471d 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagementClient.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagementClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagementPaginators.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagementPaginators.java index 51c850a7662..3c1365ed10c 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagementPaginators.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagementPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagementWaiters.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagementWaiters.java index 8a2433006d9..f3572d1b5ba 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagementWaiters.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/LoggingManagementWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ActionTypes.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ActionTypes.java index c096933d13c..451be3136f0 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ActionTypes.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ActionTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Archiving.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Archiving.java index 90550a0e30e..c7fb629063c 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Archiving.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Archiving.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Category.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Category.java index c5dfa4800ec..ac4bc3d5499 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Category.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Category.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ChangeLogGroupCompartmentDetails.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ChangeLogGroupCompartmentDetails.java index 9a453737924..2fa36fcf915 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ChangeLogGroupCompartmentDetails.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ChangeLogGroupCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ChangeLogLogGroupDetails.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ChangeLogLogGroupDetails.java index b1792e0a914..1c9dd1c0950 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ChangeLogLogGroupDetails.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ChangeLogLogGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ChangeLogSavedSearchCompartmentDetails.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ChangeLogSavedSearchCompartmentDetails.java index d87109797ac..e891b3a3512 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ChangeLogSavedSearchCompartmentDetails.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ChangeLogSavedSearchCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ChangeUnifiedAgentConfigurationCompartmentDetails.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ChangeUnifiedAgentConfigurationCompartmentDetails.java index 9cd6bc6c9ba..59b8b9df9b9 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ChangeUnifiedAgentConfigurationCompartmentDetails.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ChangeUnifiedAgentConfigurationCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Configuration.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Configuration.java index 6ba5237b694..ba1903cf24e 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Configuration.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Configuration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/CreateLogDetails.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/CreateLogDetails.java index 94cd6a434a4..13dbe11e2c5 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/CreateLogDetails.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/CreateLogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/CreateLogGroupDetails.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/CreateLogGroupDetails.java index f36c9cd2a5c..005e84f28df 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/CreateLogGroupDetails.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/CreateLogGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/CreateLogSavedSearchDetails.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/CreateLogSavedSearchDetails.java index 272cf1043ec..3514c9a29e7 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/CreateLogSavedSearchDetails.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/CreateLogSavedSearchDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/CreateUnifiedAgentConfigurationDetails.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/CreateUnifiedAgentConfigurationDetails.java index 68bbbc32e6c..a5b003e2287 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/CreateUnifiedAgentConfigurationDetails.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/CreateUnifiedAgentConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/GrepFilterAllowRule.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/GrepFilterAllowRule.java index 5ec8f481be8..cfd23df2fdb 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/GrepFilterAllowRule.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/GrepFilterAllowRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/GrepFilterDenyRule.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/GrepFilterDenyRule.java index cb5fa700b15..a196c4f9162 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/GrepFilterDenyRule.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/GrepFilterDenyRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/GrokPattern.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/GrokPattern.java index 6fafbd52fed..7dda06c91b5 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/GrokPattern.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/GrokPattern.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/GroupAssociationDetails.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/GroupAssociationDetails.java index 6c996200e98..7c45dcdccb4 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/GroupAssociationDetails.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/GroupAssociationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Log.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Log.java index 2bcb24e6dfe..a22a0e5d2e1 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Log.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Log.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogGroup.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogGroup.java index 19c418cb584..562e6f853b1 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogGroup.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogGroupLifecycleState.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogGroupLifecycleState.java index 21a379d360c..6cb029e414e 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogGroupLifecycleState.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogGroupLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogGroupSummary.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogGroupSummary.java index b8d0f31b56f..ca0842907ba 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogGroupSummary.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogGroupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogLifecycleState.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogLifecycleState.java index 4eb1257f06e..d381ceea674 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogLifecycleState.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogSavedSearch.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogSavedSearch.java index 899a0239a5b..91a6b119725 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogSavedSearch.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogSavedSearch.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogSavedSearchLifecycleState.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogSavedSearchLifecycleState.java index 24e9eb66b7d..5ae21474dd0 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogSavedSearchLifecycleState.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogSavedSearchLifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogSavedSearchSummary.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogSavedSearchSummary.java index 629061c7c39..345992d77b4 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogSavedSearchSummary.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogSavedSearchSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogSavedSearchSummaryCollection.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogSavedSearchSummaryCollection.java index c29fb54ab69..fc6c344cc52 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogSavedSearchSummaryCollection.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogSavedSearchSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogSummary.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogSummary.java index 25a3295a404..41018163e29 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogSummary.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/LogSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OciService.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OciService.java index 02b3d484a31..ee02c833eee 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OciService.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OciService.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationStatus.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationStatus.java index 5044db78f5a..b641e159207 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationStatus.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationTypes.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationTypes.java index 852215c57bb..f030cae795b 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationTypes.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationalMetricsConfiguration.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationalMetricsConfiguration.java index c88df85e1ac..de72e4870a2 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationalMetricsConfiguration.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationalMetricsConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationalMetricsDestination.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationalMetricsDestination.java index 53036f9d0fd..40101581bd6 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationalMetricsDestination.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationalMetricsDestination.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationalMetricsRecordInput.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationalMetricsRecordInput.java index 1e13b6d30cf..277b9492020 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationalMetricsRecordInput.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationalMetricsRecordInput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationalMetricsSource.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationalMetricsSource.java index 375fddb171b..93fa7ec727f 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationalMetricsSource.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/OperationalMetricsSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Parameter.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Parameter.java index a35c3c3ae3b..e168d949793 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Parameter.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Parameter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/RecordTransformerPair.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/RecordTransformerPair.java index d580a97b06e..fc528e2f444 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/RecordTransformerPair.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/RecordTransformerPair.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ResourceType.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ResourceType.java index 55084e03091..3fab9ae327a 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ResourceType.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ResourceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ServiceSummary.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ServiceSummary.java index 073d2dc7d78..a752a3c741a 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ServiceSummary.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/ServiceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Source.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Source.java index fe6508ca2c3..2d90aa2afb0 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Source.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/Source.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/SourceUpdateDetails.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/SourceUpdateDetails.java index a582c2771f9..af25f68b828 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/SourceUpdateDetails.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/SourceUpdateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentApache2Parser.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentApache2Parser.java index 9d7df2e7ff7..c985e2425ef 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentApache2Parser.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentApache2Parser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentApacheErrorParser.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentApacheErrorParser.java index b6f3d7034df..e98af87fca1 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentApacheErrorParser.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentApacheErrorParser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentAuditdParser.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentAuditdParser.java index 2567706d8d6..e3b01bc3319 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentAuditdParser.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentAuditdParser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentConfiguration.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentConfiguration.java index 401c157057c..e06b8b56f7a 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentConfiguration.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentConfigurationCollection.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentConfigurationCollection.java index ffe135deb96..9f5f55d6c5c 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentConfigurationCollection.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentConfigurationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentConfigurationSummary.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentConfigurationSummary.java index a89558c5a14..8dc56131f02 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentConfigurationSummary.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentConfigurationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentCriParser.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentCriParser.java index 2f970112f9f..12bb7abea55 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentCriParser.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentCriParser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentCsvParser.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentCsvParser.java index a68e38e4d63..639ff76320b 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentCsvParser.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentCsvParser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentCustomFilter.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentCustomFilter.java index 298a895645a..00344c65d65 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentCustomFilter.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentCustomFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentCustomPluginLogSource.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentCustomPluginLogSource.java index 95cedb0b5fe..84382bc25b2 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentCustomPluginLogSource.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentCustomPluginLogSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentCustomSection.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentCustomSection.java index 0629b08d94a..9632979a009 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentCustomSection.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentCustomSection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentGrokParser.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentGrokParser.java index 7d08072b219..7c49190a7c8 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentGrokParser.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentGrokParser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentKubernetesConfigurationDetails.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentKubernetesConfigurationDetails.java index ba21b032593..fd8e3b37e6f 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentKubernetesConfigurationDetails.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentKubernetesConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentKubernetesFilter.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentKubernetesFilter.java index 6bf0528918a..cefbcbfe950 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentKubernetesFilter.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentKubernetesFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentKubernetesScrapeTarget.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentKubernetesScrapeTarget.java index 543544cd014..dedb7fe48df 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentKubernetesScrapeTarget.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentKubernetesScrapeTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentKubernetesSource.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentKubernetesSource.java index 62d9a533b09..43611f44cf3 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentKubernetesSource.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentKubernetesSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingConfiguration.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingConfiguration.java index f44a58174a6..03dbd71e87a 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingConfiguration.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingDestination.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingDestination.java index 2a52d3d287d..f8b6796d916 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingDestination.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingDestination.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingFilter.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingFilter.java index df8e5cee102..7cb9a3543b6 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingFilter.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingGrepFilter.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingGrepFilter.java index d339cb5c015..43f8b668e83 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingGrepFilter.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingGrepFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingRecordTransformerFilter.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingRecordTransformerFilter.java index 932d04dc472..19fa1c70942 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingRecordTransformerFilter.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingRecordTransformerFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingSource.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingSource.java index 321976b9b7e..abfca50a34f 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingSource.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentLoggingSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringApplicationConfigurationDetails.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringApplicationConfigurationDetails.java index 734494ae0a7..fbead93ed1d 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringApplicationConfigurationDetails.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringApplicationConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringConfigurationDetails.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringConfigurationDetails.java index ade668ee490..68e1d1506bf 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringConfigurationDetails.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringDestination.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringDestination.java index b0acb6f2b0a..efb35c6719d 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringDestination.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringDestination.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringFilter.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringFilter.java index 9c3af532b77..4566db2602c 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringFilter.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringSourceTypes.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringSourceTypes.java index 2f9d1aa3282..f497d815cb2 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringSourceTypes.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringSourceTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringUrlSource.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringUrlSource.java index 3bed5c64a52..2d162464234 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringUrlSource.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMonitoringUrlSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMsgpackParser.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMsgpackParser.java index 0e1bfd45bbd..34d494ffc56 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMsgpackParser.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMsgpackParser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMultilineGrokParser.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMultilineGrokParser.java index 1f59e587dc2..bf0f725851e 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMultilineGrokParser.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMultilineGrokParser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMultilineParser.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMultilineParser.java index f0d55a96b6f..4b598dde628 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMultilineParser.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentMultilineParser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentNoneParser.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentNoneParser.java index 6dd4c3f86e8..20ba7ad66d6 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentNoneParser.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentNoneParser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentOpenmetricsParser.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentOpenmetricsParser.java index 0a5e8ba53f6..c63fe470894 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentOpenmetricsParser.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentOpenmetricsParser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentOpenmetricsParserRecord.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentOpenmetricsParserRecord.java index 434bf9c64b0..27a50ee1762 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentOpenmetricsParserRecord.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentOpenmetricsParserRecord.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentOpenmetricsTailConfigurationDetails.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentOpenmetricsTailConfigurationDetails.java index ce738541963..ed69ccd567e 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentOpenmetricsTailConfigurationDetails.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentOpenmetricsTailConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentParser.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentParser.java index ed2d874949e..8656cba75ef 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentParser.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentParser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentParserFilter.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentParserFilter.java index 685c750bb3c..04a042f8564 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentParserFilter.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentParserFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentRegexParser.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentRegexParser.java index 3e4b32f1d0f..4122ee38c9d 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentRegexParser.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentRegexParser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentServiceConfigurationDetails.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentServiceConfigurationDetails.java index 93dabe99dcb..1a9f30faf1e 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentServiceConfigurationDetails.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentServiceConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentServiceConfigurationStates.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentServiceConfigurationStates.java index 4b0cc97f88c..f387771b17d 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentServiceConfigurationStates.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentServiceConfigurationStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentServiceConfigurationTypes.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentServiceConfigurationTypes.java index 43bfd2c7840..f5a000edb8e 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentServiceConfigurationTypes.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentServiceConfigurationTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentSyslogParser.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentSyslogParser.java index 69931599e47..a1344d08c5a 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentSyslogParser.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentSyslogParser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentTailLogSource.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentTailLogSource.java index 48fba88f92e..82898a01b78 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentTailLogSource.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentTailLogSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentTailSourceAdvancedOptions.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentTailSourceAdvancedOptions.java index 5021f0a194b..d7ff5cd50c7 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentTailSourceAdvancedOptions.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentTailSourceAdvancedOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentTsvParser.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentTsvParser.java index f0d5bf0dea7..150f6f81f24 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentTsvParser.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentTsvParser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentUrlConfigurationDetails.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentUrlConfigurationDetails.java index 4d4d0ebdccd..4d04aab8dda 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentUrlConfigurationDetails.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentUrlConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentUrlFilter.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentUrlFilter.java index 32823d73e22..4b8254c5d6b 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentUrlFilter.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentUrlFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentUrlScrapeTarget.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentUrlScrapeTarget.java index a75992157a8..97d29f4a0f4 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentUrlScrapeTarget.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentUrlScrapeTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentWindowsEventSource.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentWindowsEventSource.java index 2f11cbb8401..6e487a8b9ca 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentWindowsEventSource.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedAgentWindowsEventSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedJSONParser.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedJSONParser.java index d45f71fb357..dcbdab093dd 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedJSONParser.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UnifiedJSONParser.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UpdateConfigurationDetails.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UpdateConfigurationDetails.java index d7baf598bb0..cd24aa191e9 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UpdateConfigurationDetails.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UpdateConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UpdateLogDetails.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UpdateLogDetails.java index 3053741a7f4..e5ce5f72849 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UpdateLogDetails.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UpdateLogDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UpdateLogGroupDetails.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UpdateLogGroupDetails.java index cc7b8f1be5e..d795220903a 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UpdateLogGroupDetails.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UpdateLogGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UpdateLogSavedSearchDetails.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UpdateLogSavedSearchDetails.java index 217aee8a2ee..f156ce65040 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UpdateLogSavedSearchDetails.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UpdateLogSavedSearchDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UpdateUnifiedAgentConfigurationDetails.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UpdateUnifiedAgentConfigurationDetails.java index 912cfdd4643..db0bbfaf784 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UpdateUnifiedAgentConfigurationDetails.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/UpdateUnifiedAgentConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/WorkRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/WorkRequest.java index 1713958544b..1fd21d9979d 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/WorkRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/WorkRequestError.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/WorkRequestError.java index 67648feacd0..012f6c1a4d6 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/WorkRequestError.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/WorkRequestLog.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/WorkRequestLog.java index dec08fff66e..e7c308d9b7b 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/WorkRequestLog.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/WorkRequestLog.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/WorkRequestResource.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/WorkRequestResource.java index 1628fa8197a..b9cacc9a394 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/WorkRequestResource.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/WorkRequestSummary.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/WorkRequestSummary.java index 6055ae5c607..72c85d71f4d 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/model/WorkRequestSummary.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.model; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ChangeLogGroupCompartmentRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ChangeLogGroupCompartmentRequest.java index 8970267b5f2..b25491f7cac 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ChangeLogGroupCompartmentRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ChangeLogGroupCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ChangeLogLogGroupRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ChangeLogLogGroupRequest.java index bbb4a215771..d96e216234d 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ChangeLogLogGroupRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ChangeLogLogGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ChangeLogSavedSearchCompartmentRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ChangeLogSavedSearchCompartmentRequest.java index e2f1709f40e..bdbe4bce6c2 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ChangeLogSavedSearchCompartmentRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ChangeLogSavedSearchCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ChangeUnifiedAgentConfigurationCompartmentRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ChangeUnifiedAgentConfigurationCompartmentRequest.java index ccf4376aac8..3f3a51fc392 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ChangeUnifiedAgentConfigurationCompartmentRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ChangeUnifiedAgentConfigurationCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/CreateLogGroupRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/CreateLogGroupRequest.java index cb8d225fbed..a537344597d 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/CreateLogGroupRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/CreateLogGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/CreateLogRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/CreateLogRequest.java index 90760c35ac7..0d4576306bc 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/CreateLogRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/CreateLogRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/CreateLogSavedSearchRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/CreateLogSavedSearchRequest.java index d09ce90cf2f..8278df0d363 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/CreateLogSavedSearchRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/CreateLogSavedSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/CreateUnifiedAgentConfigurationRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/CreateUnifiedAgentConfigurationRequest.java index ee7f26a8263..0d465bf4575 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/CreateUnifiedAgentConfigurationRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/CreateUnifiedAgentConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/DeleteLogGroupRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/DeleteLogGroupRequest.java index 049ea8240f4..188c46a2621 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/DeleteLogGroupRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/DeleteLogGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/DeleteLogRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/DeleteLogRequest.java index 57c2db071f2..2172d506e07 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/DeleteLogRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/DeleteLogRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/DeleteLogSavedSearchRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/DeleteLogSavedSearchRequest.java index 7618ab445ce..537f3924824 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/DeleteLogSavedSearchRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/DeleteLogSavedSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/DeleteUnifiedAgentConfigurationRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/DeleteUnifiedAgentConfigurationRequest.java index 22babb18b1b..710a9fbc19a 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/DeleteUnifiedAgentConfigurationRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/DeleteUnifiedAgentConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/DeleteWorkRequestRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/DeleteWorkRequestRequest.java index 069e76d590f..cd19c38583c 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/DeleteWorkRequestRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/DeleteWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/GetLogGroupRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/GetLogGroupRequest.java index bd5cbd20108..7546093f70c 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/GetLogGroupRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/GetLogGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/GetLogRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/GetLogRequest.java index 65bfb371d15..aa5df957154 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/GetLogRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/GetLogRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/GetLogSavedSearchRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/GetLogSavedSearchRequest.java index 02f582d6995..c2fa48a2104 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/GetLogSavedSearchRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/GetLogSavedSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/GetUnifiedAgentConfigurationRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/GetUnifiedAgentConfigurationRequest.java index 37f334cf73a..a8d36ccac43 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/GetUnifiedAgentConfigurationRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/GetUnifiedAgentConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/GetWorkRequestRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/GetWorkRequestRequest.java index c5e02978366..62c4f53cb6a 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/GetWorkRequestRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListLogGroupsRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListLogGroupsRequest.java index e5b8336b133..882a5f13233 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListLogGroupsRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListLogGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListLogSavedSearchesRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListLogSavedSearchesRequest.java index 40b4bdd81d8..ac9b0ccd2b7 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListLogSavedSearchesRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListLogSavedSearchesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListLogsRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListLogsRequest.java index fe23529928d..4247378d563 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListLogsRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListServicesRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListServicesRequest.java index 9314ebabacc..118d158b624 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListServicesRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListServicesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListUnifiedAgentConfigurationsRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListUnifiedAgentConfigurationsRequest.java index 85b81cce530..931fd4404a6 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListUnifiedAgentConfigurationsRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListUnifiedAgentConfigurationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListWorkRequestErrorsRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListWorkRequestErrorsRequest.java index 8e1d0ea91cd..614a0dda7cd 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListWorkRequestLogsRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListWorkRequestLogsRequest.java index c053c9d0d25..11794ba997e 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListWorkRequestLogsRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListWorkRequestsRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListWorkRequestsRequest.java index 1c001920606..eed88a742e1 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListWorkRequestsRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/UpdateLogGroupRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/UpdateLogGroupRequest.java index bbea8a74ab5..97b73696b90 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/UpdateLogGroupRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/UpdateLogGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/UpdateLogRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/UpdateLogRequest.java index 1be5996a476..3fab2672fff 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/UpdateLogRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/UpdateLogRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/UpdateLogSavedSearchRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/UpdateLogSavedSearchRequest.java index c0a11ca2dfb..7a173b090c0 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/UpdateLogSavedSearchRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/UpdateLogSavedSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/UpdateUnifiedAgentConfigurationRequest.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/UpdateUnifiedAgentConfigurationRequest.java index f5f64db0ade..980697daaa6 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/UpdateUnifiedAgentConfigurationRequest.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/requests/UpdateUnifiedAgentConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.requests; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ChangeLogGroupCompartmentResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ChangeLogGroupCompartmentResponse.java index f217844ad4a..60fb8a21fab 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ChangeLogGroupCompartmentResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ChangeLogGroupCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ChangeLogLogGroupResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ChangeLogLogGroupResponse.java index e4d140a6687..753bf758355 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ChangeLogLogGroupResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ChangeLogLogGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ChangeLogSavedSearchCompartmentResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ChangeLogSavedSearchCompartmentResponse.java index 35f0d3a1050..06cebc12d15 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ChangeLogSavedSearchCompartmentResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ChangeLogSavedSearchCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ChangeUnifiedAgentConfigurationCompartmentResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ChangeUnifiedAgentConfigurationCompartmentResponse.java index 0569ff3ae42..5ee2a67c065 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ChangeUnifiedAgentConfigurationCompartmentResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ChangeUnifiedAgentConfigurationCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/CreateLogGroupResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/CreateLogGroupResponse.java index 6d43582da2a..34f7b415021 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/CreateLogGroupResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/CreateLogGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/CreateLogResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/CreateLogResponse.java index 1cda0b689fd..aaaae3cc31b 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/CreateLogResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/CreateLogResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/CreateLogSavedSearchResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/CreateLogSavedSearchResponse.java index 7ae8de68afd..2e03de91b49 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/CreateLogSavedSearchResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/CreateLogSavedSearchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/CreateUnifiedAgentConfigurationResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/CreateUnifiedAgentConfigurationResponse.java index 40e1bb87170..ea9ffdf2a64 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/CreateUnifiedAgentConfigurationResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/CreateUnifiedAgentConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/DeleteLogGroupResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/DeleteLogGroupResponse.java index 035f6431609..d3c07a0e138 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/DeleteLogGroupResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/DeleteLogGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/DeleteLogResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/DeleteLogResponse.java index a8501916d6e..5afd42f840f 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/DeleteLogResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/DeleteLogResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/DeleteLogSavedSearchResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/DeleteLogSavedSearchResponse.java index 291416a05df..a432adf659d 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/DeleteLogSavedSearchResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/DeleteLogSavedSearchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/DeleteUnifiedAgentConfigurationResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/DeleteUnifiedAgentConfigurationResponse.java index f8ab7fc8635..15482665379 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/DeleteUnifiedAgentConfigurationResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/DeleteUnifiedAgentConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/DeleteWorkRequestResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/DeleteWorkRequestResponse.java index 892f5711194..d344cb5cb5c 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/DeleteWorkRequestResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/DeleteWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/GetLogGroupResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/GetLogGroupResponse.java index 174b06b31e7..73287f8ed1e 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/GetLogGroupResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/GetLogGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/GetLogResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/GetLogResponse.java index 15dede177f6..48fd50cfe45 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/GetLogResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/GetLogResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/GetLogSavedSearchResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/GetLogSavedSearchResponse.java index f2933321b17..500fbe6b3f0 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/GetLogSavedSearchResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/GetLogSavedSearchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/GetUnifiedAgentConfigurationResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/GetUnifiedAgentConfigurationResponse.java index f801a3d260c..c8cccec33d1 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/GetUnifiedAgentConfigurationResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/GetUnifiedAgentConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/GetWorkRequestResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/GetWorkRequestResponse.java index 66b9da0e920..4bee5473c57 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/GetWorkRequestResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListLogGroupsResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListLogGroupsResponse.java index d4ede6c014c..541ebe4bac3 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListLogGroupsResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListLogGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListLogSavedSearchesResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListLogSavedSearchesResponse.java index 1b3d1e0f399..b74f5763132 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListLogSavedSearchesResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListLogSavedSearchesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListLogsResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListLogsResponse.java index 9919541b179..00ce7064e0a 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListLogsResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListServicesResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListServicesResponse.java index 86da158a002..f0045570418 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListServicesResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListServicesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListUnifiedAgentConfigurationsResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListUnifiedAgentConfigurationsResponse.java index ac255305d3a..768e7e20b63 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListUnifiedAgentConfigurationsResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListUnifiedAgentConfigurationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListWorkRequestErrorsResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListWorkRequestErrorsResponse.java index 8263677345b..044f49742d4 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListWorkRequestLogsResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListWorkRequestLogsResponse.java index 4fae94adde7..8cdf8554dc4 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListWorkRequestLogsResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListWorkRequestsResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListWorkRequestsResponse.java index 18ad0812065..177287dafbb 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListWorkRequestsResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/UpdateLogGroupResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/UpdateLogGroupResponse.java index 6313409901f..a1af312b67f 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/UpdateLogGroupResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/UpdateLogGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/UpdateLogResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/UpdateLogResponse.java index 7946ef6f99f..0ed4a52a51f 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/UpdateLogResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/UpdateLogResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/UpdateLogSavedSearchResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/UpdateLogSavedSearchResponse.java index 02a8c874020..3c7a8bce091 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/UpdateLogSavedSearchResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/UpdateLogSavedSearchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/UpdateUnifiedAgentConfigurationResponse.java b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/UpdateUnifiedAgentConfigurationResponse.java index 0c2153b0a4c..46c10a167a2 100644 --- a/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/UpdateUnifiedAgentConfigurationResponse.java +++ b/bmc-logging/src/main/java/com/oracle/bmc/logging/responses/UpdateUnifiedAgentConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.logging.responses; diff --git a/bmc-logging/src/main/resources/com/oracle/bmc/logging/client.properties b/bmc-logging/src/main/resources/com/oracle/bmc/logging/client.properties index 9c1341e8db3..8f73c1491fc 100644 --- a/bmc-logging/src/main/resources/com/oracle/bmc/logging/client.properties +++ b/bmc-logging/src/main/resources/com/oracle/bmc/logging/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-loggingingestion/pom.xml b/bmc-loggingingestion/pom.xml index ef9ecc96634..ccfa148f211 100644 --- a/bmc-loggingingestion/pom.xml +++ b/bmc-loggingingestion/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-loggingingestion @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/Logging.java b/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/Logging.java index 90ce42a67be..c11f093569e 100644 --- a/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/Logging.java +++ b/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/Logging.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loggingingestion; diff --git a/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/LoggingAsync.java b/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/LoggingAsync.java index d621f6f449f..d0bf6e6e411 100644 --- a/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/LoggingAsync.java +++ b/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/LoggingAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loggingingestion; diff --git a/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/LoggingAsyncClient.java b/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/LoggingAsyncClient.java index 108830364f4..05c69842e72 100644 --- a/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/LoggingAsyncClient.java +++ b/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/LoggingAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loggingingestion; diff --git a/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/LoggingClient.java b/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/LoggingClient.java index f9d6a57e8ab..5e2f51f049a 100644 --- a/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/LoggingClient.java +++ b/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/LoggingClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loggingingestion; diff --git a/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/model/LogEntry.java b/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/model/LogEntry.java index bd42c96fab7..ac4b74627f7 100644 --- a/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/model/LogEntry.java +++ b/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/model/LogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loggingingestion.model; diff --git a/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/model/LogEntryBatch.java b/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/model/LogEntryBatch.java index b643960692a..68d8f47cd64 100644 --- a/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/model/LogEntryBatch.java +++ b/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/model/LogEntryBatch.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loggingingestion.model; diff --git a/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/model/PutLogsDetails.java b/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/model/PutLogsDetails.java index 60e20ab818e..5c13dd91af2 100644 --- a/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/model/PutLogsDetails.java +++ b/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/model/PutLogsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loggingingestion.model; diff --git a/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/requests/PutLogsRequest.java b/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/requests/PutLogsRequest.java index 4e61b8d7c1a..968c91d9c52 100644 --- a/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/requests/PutLogsRequest.java +++ b/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/requests/PutLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loggingingestion.requests; diff --git a/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/responses/PutLogsResponse.java b/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/responses/PutLogsResponse.java index 4c8c82d10de..65fb7913581 100644 --- a/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/responses/PutLogsResponse.java +++ b/bmc-loggingingestion/src/main/java/com/oracle/bmc/loggingingestion/responses/PutLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loggingingestion.responses; diff --git a/bmc-loggingingestion/src/main/resources/com/oracle/bmc/loggingingestion/client.properties b/bmc-loggingingestion/src/main/resources/com/oracle/bmc/loggingingestion/client.properties index c10e21be88e..f7a8b2ba4d9 100644 --- a/bmc-loggingingestion/src/main/resources/com/oracle/bmc/loggingingestion/client.properties +++ b/bmc-loggingingestion/src/main/resources/com/oracle/bmc/loggingingestion/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-loggingsearch/pom.xml b/bmc-loggingsearch/pom.xml index cbf4c308a2f..b9766130c17 100644 --- a/bmc-loggingsearch/pom.xml +++ b/bmc-loggingsearch/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-loggingsearch @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/LogSearch.java b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/LogSearch.java index 323ab5beff8..c7a2e3814d7 100644 --- a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/LogSearch.java +++ b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/LogSearch.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loggingsearch; diff --git a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/LogSearchAsync.java b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/LogSearchAsync.java index 04bf72dd4dd..3778959d6a1 100644 --- a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/LogSearchAsync.java +++ b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/LogSearchAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loggingsearch; diff --git a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/LogSearchAsyncClient.java b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/LogSearchAsyncClient.java index 56e3d03ca13..09d053401d6 100644 --- a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/LogSearchAsyncClient.java +++ b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/LogSearchAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loggingsearch; diff --git a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/LogSearchClient.java b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/LogSearchClient.java index 4a00f962779..38253934d39 100644 --- a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/LogSearchClient.java +++ b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/LogSearchClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loggingsearch; diff --git a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/model/FieldInfo.java b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/model/FieldInfo.java index 57c1262f0a2..becdc66f6b5 100644 --- a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/model/FieldInfo.java +++ b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/model/FieldInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loggingsearch.model; diff --git a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/model/SearchLogsDetails.java b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/model/SearchLogsDetails.java index 11411f89d67..f938b5e96c7 100644 --- a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/model/SearchLogsDetails.java +++ b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/model/SearchLogsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loggingsearch.model; diff --git a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/model/SearchResponse.java b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/model/SearchResponse.java index 30725881cc9..01b76e37670 100644 --- a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/model/SearchResponse.java +++ b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/model/SearchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loggingsearch.model; diff --git a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/model/SearchResult.java b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/model/SearchResult.java index 376ee2b7415..1cc74995396 100644 --- a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/model/SearchResult.java +++ b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/model/SearchResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loggingsearch.model; diff --git a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/model/SearchResultSummary.java b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/model/SearchResultSummary.java index fe9bf6af5e6..f8e2768c58b 100644 --- a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/model/SearchResultSummary.java +++ b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/model/SearchResultSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loggingsearch.model; diff --git a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/requests/SearchLogsRequest.java b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/requests/SearchLogsRequest.java index 8bd34061b0b..65b525d62a3 100644 --- a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/requests/SearchLogsRequest.java +++ b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/requests/SearchLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loggingsearch.requests; diff --git a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/responses/SearchLogsResponse.java b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/responses/SearchLogsResponse.java index f3be9f4ff14..4fa1397cde4 100644 --- a/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/responses/SearchLogsResponse.java +++ b/bmc-loggingsearch/src/main/java/com/oracle/bmc/loggingsearch/responses/SearchLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.loggingsearch.responses; diff --git a/bmc-loggingsearch/src/main/resources/com/oracle/bmc/loggingsearch/client.properties b/bmc-loggingsearch/src/main/resources/com/oracle/bmc/loggingsearch/client.properties index 6ed257fffa2..157df19c9c4 100644 --- a/bmc-loggingsearch/src/main/resources/com/oracle/bmc/loggingsearch/client.properties +++ b/bmc-loggingsearch/src/main/resources/com/oracle/bmc/loggingsearch/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-lustrefilestorage/pom.xml b/bmc-lustrefilestorage/pom.xml index f807ed2f481..d646bd361ad 100644 --- a/bmc-lustrefilestorage/pom.xml +++ b/bmc-lustrefilestorage/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-lustrefilestorage @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStorage.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStorage.java index c55c679f574..6de738d5d07 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStorage.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStorage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStorageAsync.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStorageAsync.java index ace1fd2da81..cb7f8cc3533 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStorageAsync.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStorageAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStorageAsyncClient.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStorageAsyncClient.java index fc54d5815f3..62160a2b05a 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStorageAsyncClient.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStorageAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStorageClient.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStorageClient.java index 574b3112c53..f8a5169a56c 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStorageClient.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStorageClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStoragePaginators.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStoragePaginators.java index 3b9366a1a8d..66d7aef65a2 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStoragePaginators.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStoragePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStorageWaiters.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStorageWaiters.java index 413ee083d4a..a205bca5593 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStorageWaiters.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/LustreFileStorageWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ActionType.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ActionType.java index 6bb68287169..7ad82f2e218 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ActionType.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ChangeLustreFileSystemCompartmentDetails.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ChangeLustreFileSystemCompartmentDetails.java index 847961dd9a8..bc7eb63b10e 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ChangeLustreFileSystemCompartmentDetails.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ChangeLustreFileSystemCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ChangeObjectStorageLinkCompartmentDetails.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ChangeObjectStorageLinkCompartmentDetails.java index 563a5a977a1..a208b8ba10f 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ChangeObjectStorageLinkCompartmentDetails.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ChangeObjectStorageLinkCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ClusterPlacementGroup.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ClusterPlacementGroup.java index 8f9fff08c82..627b501ace9 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ClusterPlacementGroup.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ClusterPlacementGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/CreateLustreFileSystemDetails.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/CreateLustreFileSystemDetails.java index d56021db9d6..ad35d346f65 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/CreateLustreFileSystemDetails.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/CreateLustreFileSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/CreateObjectStorageLinkDetails.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/CreateObjectStorageLinkDetails.java index 8c5a278b675..e406e59494f 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/CreateObjectStorageLinkDetails.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/CreateObjectStorageLinkDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/LustreFileSystem.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/LustreFileSystem.java index dc097114d9a..e738b7c948d 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/LustreFileSystem.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/LustreFileSystem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/LustreFileSystemCollection.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/LustreFileSystemCollection.java index 69547f288e8..36cdf75ea4b 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/LustreFileSystemCollection.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/LustreFileSystemCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/LustreFileSystemSummary.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/LustreFileSystemSummary.java index 848887cedcf..1efb768eaee 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/LustreFileSystemSummary.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/LustreFileSystemSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/MaintenanceWindow.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/MaintenanceWindow.java index a1e5440cd28..1eb0418a22c 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/MaintenanceWindow.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/MaintenanceWindow.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/NetworkSecurityGroup.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/NetworkSecurityGroup.java index 3a6f2db376c..6a14f52177b 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/NetworkSecurityGroup.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/NetworkSecurityGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ObjectStorageLink.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ObjectStorageLink.java index c1d5260b183..6f21b9878f1 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ObjectStorageLink.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ObjectStorageLink.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ObjectStorageLinkCollection.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ObjectStorageLinkCollection.java index 1c4f89e9c9d..0b8cc75b211 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ObjectStorageLinkCollection.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ObjectStorageLinkCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ObjectStorageLinkSummary.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ObjectStorageLinkSummary.java index 6a468d5fdcc..cc65ee3ef9b 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ObjectStorageLinkSummary.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/ObjectStorageLinkSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/OperationStatus.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/OperationStatus.java index 39229cd9b47..99f6a8b0c73 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/OperationStatus.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/OperationType.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/OperationType.java index a0e5a423728..ae930f96fde 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/OperationType.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/RootSquashConfiguration.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/RootSquashConfiguration.java index 73313b706ad..3a31e6283e1 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/RootSquashConfiguration.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/RootSquashConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/SortOrder.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/SortOrder.java index b87bd625732..0be9c5ce40a 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/SortOrder.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/Subnet.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/Subnet.java index 987e4a14ede..08e231749f0 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/Subnet.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/Subnet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/SyncJob.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/SyncJob.java index 740f92cf9a0..131dea74113 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/SyncJob.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/SyncJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/SyncJobCollection.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/SyncJobCollection.java index deee78b7abb..5bc135060b6 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/SyncJobCollection.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/SyncJobCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/SyncJobSummary.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/SyncJobSummary.java index 1a671a28a71..7a4d0316eae 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/SyncJobSummary.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/SyncJobSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/UpdateLustreFileSystemDetails.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/UpdateLustreFileSystemDetails.java index 6e6c266d93e..3a586741546 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/UpdateLustreFileSystemDetails.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/UpdateLustreFileSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/UpdateObjectStorageLinkDetails.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/UpdateObjectStorageLinkDetails.java index 268cd5c30d3..e0471361d73 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/UpdateObjectStorageLinkDetails.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/UpdateObjectStorageLinkDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequest.java index bd2f95f3906..55e6c715db9 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestError.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestError.java index 5c81eb1fecf..c7818ad4d07 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestError.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestErrorCollection.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestErrorCollection.java index fc7b7c828c0..55542522e7d 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestErrorCollection.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestLogEntry.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestLogEntry.java index 92871d662a2..1968a92c152 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestLogEntry.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestLogEntryCollection.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestLogEntryCollection.java index 0e7f299fe80..a3ec5e7a07c 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestLogEntryCollection.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestResource.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestResource.java index 755096e48e9..fc11d2f5378 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestResource.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestSummary.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestSummary.java index 854920f0d83..f0cfadd83bb 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestSummary.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestSummaryCollection.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestSummaryCollection.java index ee3fb2c486e..18a08cabc7c 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestSummaryCollection.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.model; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/CancelWorkRequestRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/CancelWorkRequestRequest.java index e3e1ed205d7..d2752ba1554 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/CancelWorkRequestRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ChangeLustreFileSystemCompartmentRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ChangeLustreFileSystemCompartmentRequest.java index 9fff1e15d16..d8c59cd4b16 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ChangeLustreFileSystemCompartmentRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ChangeLustreFileSystemCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ChangeObjectStorageLinkCompartmentRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ChangeObjectStorageLinkCompartmentRequest.java index 91efdb9e628..246da545c16 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ChangeObjectStorageLinkCompartmentRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ChangeObjectStorageLinkCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/CreateLustreFileSystemRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/CreateLustreFileSystemRequest.java index 7f7f9c961f0..a77df1dcc7a 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/CreateLustreFileSystemRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/CreateLustreFileSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/CreateObjectStorageLinkRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/CreateObjectStorageLinkRequest.java index 2f5ae49a8b3..fb2830a3a3d 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/CreateObjectStorageLinkRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/CreateObjectStorageLinkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/DeleteLustreFileSystemRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/DeleteLustreFileSystemRequest.java index 9607fe5e5ee..6f9cd88e4a4 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/DeleteLustreFileSystemRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/DeleteLustreFileSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/DeleteObjectStorageLinkRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/DeleteObjectStorageLinkRequest.java index c845648788a..758841e330e 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/DeleteObjectStorageLinkRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/DeleteObjectStorageLinkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/GetLustreFileSystemRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/GetLustreFileSystemRequest.java index 18e12b2145d..2e4a6274bb0 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/GetLustreFileSystemRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/GetLustreFileSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/GetObjectStorageLinkRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/GetObjectStorageLinkRequest.java index ce48c1e9bbf..43e6a06a03a 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/GetObjectStorageLinkRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/GetObjectStorageLinkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/GetSyncJobRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/GetSyncJobRequest.java index b7f7e7a0924..a3634d0b4f1 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/GetSyncJobRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/GetSyncJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/GetWorkRequestRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/GetWorkRequestRequest.java index df911ede148..9d5e93171d2 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/GetWorkRequestRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListLustreFileSystemsRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListLustreFileSystemsRequest.java index ddd85fdef13..5289e27e635 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListLustreFileSystemsRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListLustreFileSystemsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListObjectStorageLinksRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListObjectStorageLinksRequest.java index 34746fabecf..601d5ce522e 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListObjectStorageLinksRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListObjectStorageLinksRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListSyncJobsRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListSyncJobsRequest.java index 641208be9cf..01796000cd4 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListSyncJobsRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListSyncJobsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListWorkRequestErrorsRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListWorkRequestErrorsRequest.java index 5db94966c81..57c9961f798 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListWorkRequestLogsRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListWorkRequestLogsRequest.java index 127ff162945..c2d5a5acc00 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListWorkRequestLogsRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListWorkRequestsRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListWorkRequestsRequest.java index 0ddb86d1c78..accfb944ce4 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListWorkRequestsRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/StartExportToObjectRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/StartExportToObjectRequest.java index 383751f40b4..f18af5fb960 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/StartExportToObjectRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/StartExportToObjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/StartImportFromObjectRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/StartImportFromObjectRequest.java index 08364326f3b..7d995845a8f 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/StartImportFromObjectRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/StartImportFromObjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/StopExportToObjectRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/StopExportToObjectRequest.java index 168c7625ecc..d6e25c66efd 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/StopExportToObjectRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/StopExportToObjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/StopImportFromObjectRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/StopImportFromObjectRequest.java index a5231b9c003..6b2e71d8bda 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/StopImportFromObjectRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/StopImportFromObjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/UpdateLustreFileSystemRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/UpdateLustreFileSystemRequest.java index 351193a0061..b27ce532ef7 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/UpdateLustreFileSystemRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/UpdateLustreFileSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/UpdateObjectStorageLinkRequest.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/UpdateObjectStorageLinkRequest.java index aea99499b7b..e8406602901 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/UpdateObjectStorageLinkRequest.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/requests/UpdateObjectStorageLinkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.requests; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/CancelWorkRequestResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/CancelWorkRequestResponse.java index 2918f699ceb..a26d7f13af0 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/CancelWorkRequestResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ChangeLustreFileSystemCompartmentResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ChangeLustreFileSystemCompartmentResponse.java index 87bbc5206a9..8a50930a203 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ChangeLustreFileSystemCompartmentResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ChangeLustreFileSystemCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ChangeObjectStorageLinkCompartmentResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ChangeObjectStorageLinkCompartmentResponse.java index ecb3790caf9..2bf46ada111 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ChangeObjectStorageLinkCompartmentResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ChangeObjectStorageLinkCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/CreateLustreFileSystemResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/CreateLustreFileSystemResponse.java index 119ed151a14..b948ffc8923 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/CreateLustreFileSystemResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/CreateLustreFileSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/CreateObjectStorageLinkResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/CreateObjectStorageLinkResponse.java index c61986f9391..a59511b06c3 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/CreateObjectStorageLinkResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/CreateObjectStorageLinkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/DeleteLustreFileSystemResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/DeleteLustreFileSystemResponse.java index 94250a15d45..b68e83bda6b 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/DeleteLustreFileSystemResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/DeleteLustreFileSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/DeleteObjectStorageLinkResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/DeleteObjectStorageLinkResponse.java index a91cd71e764..b7f81a426d9 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/DeleteObjectStorageLinkResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/DeleteObjectStorageLinkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/GetLustreFileSystemResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/GetLustreFileSystemResponse.java index a103b032e0d..5dcc34fa233 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/GetLustreFileSystemResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/GetLustreFileSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/GetObjectStorageLinkResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/GetObjectStorageLinkResponse.java index 5ee319a1537..7c635f49072 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/GetObjectStorageLinkResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/GetObjectStorageLinkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/GetSyncJobResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/GetSyncJobResponse.java index 55eeff56b06..a14a4a00c78 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/GetSyncJobResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/GetSyncJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/GetWorkRequestResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/GetWorkRequestResponse.java index ba480d06fe3..a63c57f9143 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/GetWorkRequestResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListLustreFileSystemsResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListLustreFileSystemsResponse.java index ab1682f2f9a..0091137b84d 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListLustreFileSystemsResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListLustreFileSystemsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListObjectStorageLinksResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListObjectStorageLinksResponse.java index e76c3644606..3961df57774 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListObjectStorageLinksResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListObjectStorageLinksResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListSyncJobsResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListSyncJobsResponse.java index a3966ba2856..64fdb868a2b 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListSyncJobsResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListSyncJobsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListWorkRequestErrorsResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListWorkRequestErrorsResponse.java index b211df1bc62..d2d58f9394c 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListWorkRequestLogsResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListWorkRequestLogsResponse.java index cf9cd4406ba..72caa40d0ff 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListWorkRequestLogsResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListWorkRequestsResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListWorkRequestsResponse.java index 50fb7593648..43b07e9627b 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListWorkRequestsResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/StartExportToObjectResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/StartExportToObjectResponse.java index 0aee08a3699..ba9c21b2a1c 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/StartExportToObjectResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/StartExportToObjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/StartImportFromObjectResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/StartImportFromObjectResponse.java index 1a1d293795b..7f9c7d0780e 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/StartImportFromObjectResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/StartImportFromObjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/StopExportToObjectResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/StopExportToObjectResponse.java index c85d3e255cc..d21d8121a50 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/StopExportToObjectResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/StopExportToObjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/StopImportFromObjectResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/StopImportFromObjectResponse.java index e2bf9d2ad3a..338bda0d338 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/StopImportFromObjectResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/StopImportFromObjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/UpdateLustreFileSystemResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/UpdateLustreFileSystemResponse.java index fad85e82667..2ebfd15668e 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/UpdateLustreFileSystemResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/UpdateLustreFileSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/UpdateObjectStorageLinkResponse.java b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/UpdateObjectStorageLinkResponse.java index b8370198a51..dc7df9b8212 100644 --- a/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/UpdateObjectStorageLinkResponse.java +++ b/bmc-lustrefilestorage/src/main/java/com/oracle/bmc/lustrefilestorage/responses/UpdateObjectStorageLinkResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.lustrefilestorage.responses; diff --git a/bmc-lustrefilestorage/src/main/resources/com/oracle/bmc/lustrefilestorage/client.properties b/bmc-lustrefilestorage/src/main/resources/com/oracle/bmc/lustrefilestorage/client.properties index 31da47be985..612b8fd3e95 100644 --- a/bmc-lustrefilestorage/src/main/resources/com/oracle/bmc/lustrefilestorage/client.properties +++ b/bmc-lustrefilestorage/src/main/resources/com/oracle/bmc/lustrefilestorage/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-managedkafka/pom.xml b/bmc-managedkafka/pom.xml index aabb5fee4cc..715ab370983 100644 --- a/bmc-managedkafka/pom.xml +++ b/bmc-managedkafka/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-managedkafka @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaCluster.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaCluster.java index 0a89dd42e16..52d75ed97b6 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaCluster.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaCluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaClusterAsync.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaClusterAsync.java index 22f8b4e7193..fa6bbbb99bb 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaClusterAsync.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaClusterAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaClusterAsyncClient.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaClusterAsyncClient.java index a0460785379..649befdb87f 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaClusterAsyncClient.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaClusterAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaClusterClient.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaClusterClient.java index adb3fbeed05..e5acc28cb56 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaClusterClient.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaClusterClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaClusterPaginators.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaClusterPaginators.java index 6c2d35bc3c0..19d89ccfe20 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaClusterPaginators.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaClusterPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaClusterWaiters.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaClusterWaiters.java index 360d8990c39..65f51aaafb9 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaClusterWaiters.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/KafkaClusterWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/ActionType.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/ActionType.java index 211a59c7c82..12a072ca74c 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/ActionType.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/BootstrapUrl.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/BootstrapUrl.java index 601f1637c34..05f01e335c2 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/BootstrapUrl.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/BootstrapUrl.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/BrokerShape.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/BrokerShape.java index 9e33e7f3d06..e775ff8e853 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/BrokerShape.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/BrokerShape.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/ChangeKafkaClusterCompartmentDetails.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/ChangeKafkaClusterCompartmentDetails.java index 615387dcff6..28b7c14f968 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/ChangeKafkaClusterCompartmentDetails.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/ChangeKafkaClusterCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/ChangeKafkaClusterConfigCompartmentDetails.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/ChangeKafkaClusterConfigCompartmentDetails.java index 425b873263c..d5d685007ba 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/ChangeKafkaClusterConfigCompartmentDetails.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/ChangeKafkaClusterConfigCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/CreateKafkaClusterConfigDetails.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/CreateKafkaClusterConfigDetails.java index e873b5610c9..c5b864f976b 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/CreateKafkaClusterConfigDetails.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/CreateKafkaClusterConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/CreateKafkaClusterDetails.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/CreateKafkaClusterDetails.java index a861357344e..abf7335f9b5 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/CreateKafkaClusterDetails.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/CreateKafkaClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/EnableSuperuserDetails.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/EnableSuperuserDetails.java index 76eb6feb76d..58c18a72ef1 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/EnableSuperuserDetails.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/EnableSuperuserDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaCluster.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaCluster.java index 2c320ff4a92..88ee5c526b4 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaCluster.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaCluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterCollection.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterCollection.java index 909c1e64447..a9df5be53bb 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterCollection.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfig.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfig.java index e4bdbb30d66..ec719b5a4be 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfig.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfigCollection.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfigCollection.java index a10f9053679..54fa0a74bfe 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfigCollection.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfigCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfigSummary.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfigSummary.java index 93f66b38111..39f7aa85dad 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfigSummary.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfigSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfigVersion.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfigVersion.java index 0270afb5581..1e9d1056e85 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfigVersion.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfigVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfigVersionCollection.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfigVersionCollection.java index 638c027e964..ada6a5d0a85 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfigVersionCollection.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfigVersionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfigVersionSummary.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfigVersionSummary.java index f03c27145a4..056c887ff55 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfigVersionSummary.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterConfigVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterSummary.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterSummary.java index 1e529d20cce..5b6430434ea 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterSummary.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/KafkaClusterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/OperationStatus.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/OperationStatus.java index 544203984ec..6c0a7b1f765 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/OperationStatus.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/OperationType.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/OperationType.java index 1efdd8f4178..a8b4532f6a1 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/OperationType.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/SortOrder.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/SortOrder.java index 31a700d8f3d..a23d491a56b 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/SortOrder.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/SubnetSet.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/SubnetSet.java index f0592d2346a..caa38054d5e 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/SubnetSet.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/SubnetSet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/UpdateKafkaClusterConfigDetails.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/UpdateKafkaClusterConfigDetails.java index a04583f3a19..aa35698846b 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/UpdateKafkaClusterConfigDetails.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/UpdateKafkaClusterConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/UpdateKafkaClusterDetails.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/UpdateKafkaClusterDetails.java index 5c10eab4b01..6d012fbf3f4 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/UpdateKafkaClusterDetails.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/UpdateKafkaClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequest.java index fab9c0e5644..b8ce64a3908 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestError.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestError.java index bd71f4a45b4..f222f870523 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestError.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestErrorCollection.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestErrorCollection.java index b90fa390ede..12180404e7f 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestErrorCollection.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestLogEntry.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestLogEntry.java index 267855f8eda..69c24bff830 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestLogEntry.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestLogEntryCollection.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestLogEntryCollection.java index da2b382a78d..db1b8cd14c8 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestLogEntryCollection.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestResource.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestResource.java index 9c9ccf44b29..3d7c74c8dd3 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestResource.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestResourceMetadataKey.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestResourceMetadataKey.java index ba87b5356a8..5b339bd2786 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestResourceMetadataKey.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestSummary.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestSummary.java index 7a3bffa6ed3..0a181e105dd 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestSummary.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestSummaryCollection.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestSummaryCollection.java index 3b98f5f65c5..fb55b18dfb3 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestSummaryCollection.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.model; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/CancelWorkRequestRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/CancelWorkRequestRequest.java index 51804b09d32..38704ce5054 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/CancelWorkRequestRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ChangeKafkaClusterCompartmentRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ChangeKafkaClusterCompartmentRequest.java index e4c3ac147a9..8a0e3d9a1fc 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ChangeKafkaClusterCompartmentRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ChangeKafkaClusterCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ChangeKafkaClusterConfigCompartmentRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ChangeKafkaClusterConfigCompartmentRequest.java index 937cb4fd547..c97b5bf27fe 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ChangeKafkaClusterConfigCompartmentRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ChangeKafkaClusterConfigCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/CreateKafkaClusterConfigRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/CreateKafkaClusterConfigRequest.java index 5f22f1b83bd..ba9d0a2f403 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/CreateKafkaClusterConfigRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/CreateKafkaClusterConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/CreateKafkaClusterRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/CreateKafkaClusterRequest.java index aa623cd490b..1f696d36ad5 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/CreateKafkaClusterRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/CreateKafkaClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/DeleteKafkaClusterConfigRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/DeleteKafkaClusterConfigRequest.java index 1bf2514c830..576135ab804 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/DeleteKafkaClusterConfigRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/DeleteKafkaClusterConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/DeleteKafkaClusterConfigVersionRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/DeleteKafkaClusterConfigVersionRequest.java index 452ec0f0d4e..f570e2b60ee 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/DeleteKafkaClusterConfigVersionRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/DeleteKafkaClusterConfigVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/DeleteKafkaClusterRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/DeleteKafkaClusterRequest.java index 3402f3c9658..5835b0c8477 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/DeleteKafkaClusterRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/DeleteKafkaClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/DisableSuperuserRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/DisableSuperuserRequest.java index 489aec9fd7a..7e5ec07a368 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/DisableSuperuserRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/DisableSuperuserRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/EnableSuperuserRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/EnableSuperuserRequest.java index 994276d15c5..5ba030a19c6 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/EnableSuperuserRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/EnableSuperuserRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/GetKafkaClusterConfigRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/GetKafkaClusterConfigRequest.java index 7575f3f8b5e..8bb4f7c1be7 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/GetKafkaClusterConfigRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/GetKafkaClusterConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/GetKafkaClusterConfigVersionRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/GetKafkaClusterConfigVersionRequest.java index 8233be8aeda..24c82c8a3f5 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/GetKafkaClusterConfigVersionRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/GetKafkaClusterConfigVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/GetKafkaClusterRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/GetKafkaClusterRequest.java index 08ab683a62d..157dec9dbf0 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/GetKafkaClusterRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/GetKafkaClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/GetWorkRequestRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/GetWorkRequestRequest.java index f70d17b5e46..601f62fedea 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/GetWorkRequestRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListKafkaClusterConfigVersionsRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListKafkaClusterConfigVersionsRequest.java index 8a4e442d6ea..81a85f67135 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListKafkaClusterConfigVersionsRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListKafkaClusterConfigVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListKafkaClusterConfigsRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListKafkaClusterConfigsRequest.java index 9a5fa40a9f6..458dd32468e 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListKafkaClusterConfigsRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListKafkaClusterConfigsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListKafkaClustersRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListKafkaClustersRequest.java index 56bee156c4f..767244b65c8 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListKafkaClustersRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListKafkaClustersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListWorkRequestErrorsRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListWorkRequestErrorsRequest.java index b1280f8046e..62d4e55dffe 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListWorkRequestLogsRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListWorkRequestLogsRequest.java index 521e05b0807..aa0b5fb6043 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListWorkRequestLogsRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListWorkRequestsRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListWorkRequestsRequest.java index 512e187ec11..e1ebd02716f 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListWorkRequestsRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/UpdateKafkaClusterConfigRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/UpdateKafkaClusterConfigRequest.java index 14c13f04371..7141064347f 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/UpdateKafkaClusterConfigRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/UpdateKafkaClusterConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/UpdateKafkaClusterRequest.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/UpdateKafkaClusterRequest.java index ccaceb8c1d6..c9bb9be7adf 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/UpdateKafkaClusterRequest.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/requests/UpdateKafkaClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.requests; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/CancelWorkRequestResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/CancelWorkRequestResponse.java index 642d671157a..9b1d7467639 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/CancelWorkRequestResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ChangeKafkaClusterCompartmentResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ChangeKafkaClusterCompartmentResponse.java index c9c9a95a24c..10d0d2c93cd 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ChangeKafkaClusterCompartmentResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ChangeKafkaClusterCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ChangeKafkaClusterConfigCompartmentResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ChangeKafkaClusterConfigCompartmentResponse.java index d53637f0b79..f42770022c7 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ChangeKafkaClusterConfigCompartmentResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ChangeKafkaClusterConfigCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/CreateKafkaClusterConfigResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/CreateKafkaClusterConfigResponse.java index 2a048a1e6d4..204adf596f0 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/CreateKafkaClusterConfigResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/CreateKafkaClusterConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/CreateKafkaClusterResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/CreateKafkaClusterResponse.java index a7ee6e0d9ca..42f2dd4e961 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/CreateKafkaClusterResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/CreateKafkaClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/DeleteKafkaClusterConfigResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/DeleteKafkaClusterConfigResponse.java index 4614abbce89..5b02c01d29e 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/DeleteKafkaClusterConfigResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/DeleteKafkaClusterConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/DeleteKafkaClusterConfigVersionResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/DeleteKafkaClusterConfigVersionResponse.java index 36ad404c2bc..34a124c69c6 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/DeleteKafkaClusterConfigVersionResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/DeleteKafkaClusterConfigVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/DeleteKafkaClusterResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/DeleteKafkaClusterResponse.java index 162e7cdc7af..a751a17e6c0 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/DeleteKafkaClusterResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/DeleteKafkaClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/DisableSuperuserResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/DisableSuperuserResponse.java index 6fe0d269b57..ec6eee97eba 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/DisableSuperuserResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/DisableSuperuserResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/EnableSuperuserResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/EnableSuperuserResponse.java index 1357b3de6d7..87b3125a951 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/EnableSuperuserResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/EnableSuperuserResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/GetKafkaClusterConfigResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/GetKafkaClusterConfigResponse.java index a76df57ac60..2b4bae8a829 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/GetKafkaClusterConfigResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/GetKafkaClusterConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/GetKafkaClusterConfigVersionResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/GetKafkaClusterConfigVersionResponse.java index f4c4d5d5069..529070750cb 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/GetKafkaClusterConfigVersionResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/GetKafkaClusterConfigVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/GetKafkaClusterResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/GetKafkaClusterResponse.java index 45ce1248fb4..adcca69e9dc 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/GetKafkaClusterResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/GetKafkaClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/GetWorkRequestResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/GetWorkRequestResponse.java index d09a63e4da7..968bffeda6a 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/GetWorkRequestResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListKafkaClusterConfigVersionsResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListKafkaClusterConfigVersionsResponse.java index 5554658b61b..24e20a253ab 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListKafkaClusterConfigVersionsResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListKafkaClusterConfigVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListKafkaClusterConfigsResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListKafkaClusterConfigsResponse.java index 51bd6364cf0..faae1447dea 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListKafkaClusterConfigsResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListKafkaClusterConfigsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListKafkaClustersResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListKafkaClustersResponse.java index 40a9301fe0a..7721f6902c7 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListKafkaClustersResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListKafkaClustersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListWorkRequestErrorsResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListWorkRequestErrorsResponse.java index 4af79a8f2bd..8b53fb76870 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListWorkRequestLogsResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListWorkRequestLogsResponse.java index a3bd71749d4..071032009f8 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListWorkRequestLogsResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListWorkRequestsResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListWorkRequestsResponse.java index 41c1ab58c2d..88c8ab94da1 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListWorkRequestsResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/UpdateKafkaClusterConfigResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/UpdateKafkaClusterConfigResponse.java index 8bca34a3e9b..149c5a32da1 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/UpdateKafkaClusterConfigResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/UpdateKafkaClusterConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/UpdateKafkaClusterResponse.java b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/UpdateKafkaClusterResponse.java index 4d5a19261d8..91503e03e28 100644 --- a/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/UpdateKafkaClusterResponse.java +++ b/bmc-managedkafka/src/main/java/com/oracle/bmc/managedkafka/responses/UpdateKafkaClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managedkafka.responses; diff --git a/bmc-managedkafka/src/main/resources/com/oracle/bmc/managedkafka/client.properties b/bmc-managedkafka/src/main/resources/com/oracle/bmc/managedkafka/client.properties index d6f210f1f45..c52c1ae4dc0 100644 --- a/bmc-managedkafka/src/main/resources/com/oracle/bmc/managedkafka/client.properties +++ b/bmc-managedkafka/src/main/resources/com/oracle/bmc/managedkafka/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-managementagent/pom.xml b/bmc-managementagent/pom.xml index b33f0afe2ed..11e04bb384a 100644 --- a/bmc-managementagent/pom.xml +++ b/bmc-managementagent/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-managementagent @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgent.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgent.java index 5ad9033c14b..7714987f92d 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgent.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgentAsync.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgentAsync.java index f3fff5548e1..54c17276500 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgentAsync.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgentAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgentAsyncClient.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgentAsyncClient.java index 722186806b3..05730fa54ff 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgentAsyncClient.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgentAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgentClient.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgentClient.java index e783c407c77..7f4d402a16b 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgentClient.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgentClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgentPaginators.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgentPaginators.java index b664d53a931..0a0feda25f5 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgentPaginators.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgentPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgentWaiters.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgentWaiters.java index a778058b04b..d0227dbf58e 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgentWaiters.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/ManagementAgentWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ActionTypes.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ActionTypes.java index 0e641d0ae6a..81c08be2417 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ActionTypes.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ActionTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ArchitectureTypes.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ArchitectureTypes.java index 505d36e6c81..557f3637b03 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ArchitectureTypes.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ArchitectureTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/AutoUpgradableConfig.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/AutoUpgradableConfig.java index e7e44b94a85..f6f3f0131d0 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/AutoUpgradableConfig.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/AutoUpgradableConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/AvailabilityHistorySummary.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/AvailabilityHistorySummary.java index b3474227823..e2cb418b459 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/AvailabilityHistorySummary.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/AvailabilityHistorySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/AvailabilityStatus.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/AvailabilityStatus.java index c7545a42f36..ebf3a423395 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/AvailabilityStatus.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/AvailabilityStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/CreateDataSourceDetails.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/CreateDataSourceDetails.java index 21f917e403a..e8cd0d1fc4f 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/CreateDataSourceDetails.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/CreateDataSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/CreateManagementAgentInstallKeyDetails.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/CreateManagementAgentInstallKeyDetails.java index 8981d952f79..d94dd1ef3af 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/CreateManagementAgentInstallKeyDetails.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/CreateManagementAgentInstallKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/CreateNamedCredentialDetails.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/CreateNamedCredentialDetails.java index 4c00b7dc544..aa0bb687469 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/CreateNamedCredentialDetails.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/CreateNamedCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/CreatePrometheusEmitterDataSourceDetails.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/CreatePrometheusEmitterDataSourceDetails.java index f4ce3099591..94911a1df70 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/CreatePrometheusEmitterDataSourceDetails.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/CreatePrometheusEmitterDataSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/DataSource.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/DataSource.java index a5ffb4112a0..701a1b27bd4 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/DataSource.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/DataSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/DataSourceSummary.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/DataSourceSummary.java index 3fe279f9a7b..5a4d147bd6b 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/DataSourceSummary.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/DataSourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/DataSourceSummaryItem.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/DataSourceSummaryItem.java index 8b6ec61ee76..f2c5475f2de 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/DataSourceSummaryItem.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/DataSourceSummaryItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/DataSourceTypes.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/DataSourceTypes.java index e5fd7172ec7..29b307ff256 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/DataSourceTypes.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/DataSourceTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/DeployPluginsDetails.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/DeployPluginsDetails.java index feca84280ff..c3d3eeb4d96 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/DeployPluginsDetails.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/DeployPluginsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/InstallTypes.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/InstallTypes.java index b3efdf6d548..7ea3871acff 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/InstallTypes.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/InstallTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/KubernetesClusterDataSource.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/KubernetesClusterDataSource.java index 05d9750ef69..95019fad1e8 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/KubernetesClusterDataSource.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/KubernetesClusterDataSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/KubernetesClusterDataSourceSummary.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/KubernetesClusterDataSourceSummary.java index 07979223ca6..d5d74747d56 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/KubernetesClusterDataSourceSummary.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/KubernetesClusterDataSourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/KubernetesClusterDataSourceSummaryItem.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/KubernetesClusterDataSourceSummaryItem.java index 375d773fa86..73a602775a9 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/KubernetesClusterDataSourceSummaryItem.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/KubernetesClusterDataSourceSummaryItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/LifecycleStates.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/LifecycleStates.java index 4688bce2926..b7c91246b38 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/LifecycleStates.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/LifecycleStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgent.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgent.java index 4f7a5955dfd..e5fba42881e 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgent.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgent.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentAggregation.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentAggregation.java index 3aefdc7b669..18145ff5623 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentAggregation.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentAggregationCollection.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentAggregationCollection.java index 42a173d1b5c..dcb21ec9e4d 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentAggregationCollection.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentAggregationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentAggregationDimensions.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentAggregationDimensions.java index f42e2197c2f..7ad35086799 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentAggregationDimensions.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentAggregationDimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentError.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentError.java index 101eac983a6..62ded7e17a5 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentError.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentGroupBy.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentGroupBy.java index b7340c28425..a568c3018d3 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentGroupBy.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentGroupBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentImage.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentImage.java index 93400f1898c..17bf37be2ca 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentImage.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentImage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentImageSummary.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentImageSummary.java index 8b8afffcbea..697beee54d0 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentImageSummary.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentImageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentInstallKey.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentInstallKey.java index fc02eab8ac2..5159cb2e0ba 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentInstallKey.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentInstallKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentInstallKeySummary.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentInstallKeySummary.java index fb3e27cf937..bfa39649073 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentInstallKeySummary.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentInstallKeySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPlugin.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPlugin.java index bbfb564595a..1ebb343185d 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPlugin.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPlugin.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginAggregation.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginAggregation.java index 2760ce763f0..56aca58a94b 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginAggregation.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginAggregationCollection.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginAggregationCollection.java index 9dd9efbb114..23bd9a4e540 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginAggregationCollection.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginAggregationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginAggregationDimensions.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginAggregationDimensions.java index 55332d128f7..4cab9f73dda 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginAggregationDimensions.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginAggregationDimensions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginDetails.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginDetails.java index 8848167f2ec..be66c7fcfbd 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginDetails.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginGroupBy.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginGroupBy.java index 9743392652a..61993ad2301 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginGroupBy.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginGroupBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginResource.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginResource.java index 239bc0ff24b..806436a9b3a 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginResource.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginSummary.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginSummary.java index 9f67792a3d9..a488c6076e3 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginSummary.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentPluginSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentProperty.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentProperty.java index d2a334f4ed0..f17696bd051 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentProperty.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentProperty.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentSummary.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentSummary.java index 2cdaefa61ac..17aa82bfdb7 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentSummary.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ManagementAgentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/MetricDimension.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/MetricDimension.java index ee362bc95eb..07e7bb3c6e5 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/MetricDimension.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/MetricDimension.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredential.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredential.java index 86421b13022..f90aeefa4c6 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredential.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredential.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialCollection.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialCollection.java index 7313d1631a3..80a4fccedb1 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialCollection.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialFieldDefinition.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialFieldDefinition.java index 4bd8c90365f..0e03e5ef069 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialFieldDefinition.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialFieldDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialMetadataDefinition.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialMetadataDefinition.java index 050b0119e18..087dd2060f5 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialMetadataDefinition.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialMetadataDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialProperty.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialProperty.java index 85ef3c8846d..a3534b81140 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialProperty.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialProperty.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialSummary.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialSummary.java index 414e0dbec4a..72f4e8b7783 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialSummary.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialsMetadatum.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialsMetadatum.java index 507ff1ad897..e45983968e2 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialsMetadatum.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/NamedCredentialsMetadatum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ObjectDetails.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ObjectDetails.java index abb826e244e..bdac0c90d41 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ObjectDetails.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ObjectDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/OperationStatus.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/OperationStatus.java index 8a7d0a50d59..173c2d9b4fb 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/OperationStatus.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/OperationTypes.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/OperationTypes.java index 421523337d3..1656faefb9f 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/OperationTypes.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/OperationTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PackageTypes.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PackageTypes.java index e092213ec43..37873f58ee1 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PackageTypes.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PackageTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PlatformTypes.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PlatformTypes.java index 0f57bf373ef..830f55b438e 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PlatformTypes.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PlatformTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PluginStatus.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PluginStatus.java index 0fc32832795..d0cbdc3c507 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PluginStatus.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PluginStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PrometheusEmitterDataSource.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PrometheusEmitterDataSource.java index 7c977ad5ed7..5049c97b41d 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PrometheusEmitterDataSource.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PrometheusEmitterDataSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PrometheusEmitterDataSourceSummary.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PrometheusEmitterDataSourceSummary.java index 0ce70e9c769..976f48730a1 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PrometheusEmitterDataSourceSummary.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PrometheusEmitterDataSourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PrometheusEmitterDataSourceSummaryItem.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PrometheusEmitterDataSourceSummaryItem.java index 0bdf603545a..685a8441e47 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PrometheusEmitterDataSourceSummaryItem.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PrometheusEmitterDataSourceSummaryItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PropertyUnits.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PropertyUnits.java index 68db6bea00b..438b4cee2fc 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PropertyUnits.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/PropertyUnits.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/SetAutoUpgradableConfigDetails.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/SetAutoUpgradableConfigDetails.java index ede26605c56..9f8c887c5f2 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/SetAutoUpgradableConfigDetails.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/SetAutoUpgradableConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/UpdateDataSourceDetails.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/UpdateDataSourceDetails.java index 440280e5c64..37e43bac6b0 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/UpdateDataSourceDetails.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/UpdateDataSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/UpdateManagementAgentDetails.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/UpdateManagementAgentDetails.java index 16a35723138..e46934ccba8 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/UpdateManagementAgentDetails.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/UpdateManagementAgentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/UpdateManagementAgentInstallKeyDetails.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/UpdateManagementAgentInstallKeyDetails.java index 1b250c2e3b0..1d938dc60bf 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/UpdateManagementAgentInstallKeyDetails.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/UpdateManagementAgentInstallKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/UpdateNamedCredentialDetails.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/UpdateNamedCredentialDetails.java index 8a51cdd77ef..1096b92ea57 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/UpdateNamedCredentialDetails.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/UpdateNamedCredentialDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/UpdatePrometheusEmitterDataSourceDetails.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/UpdatePrometheusEmitterDataSourceDetails.java index e51a29ef43d..340be8229d4 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/UpdatePrometheusEmitterDataSourceDetails.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/UpdatePrometheusEmitterDataSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ValueCategoryType.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ValueCategoryType.java index 0b1c77200a2..04827bd409d 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ValueCategoryType.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/ValueCategoryType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkDeliveryStatus.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkDeliveryStatus.java index c55fe09d26a..76133f7f935 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkDeliveryStatus.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkDeliveryStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkRequest.java index 524f5596f2e..4653ce86c67 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkRequestError.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkRequestError.java index e3ec518e715..c8a8b2354a2 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkRequestError.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkRequestLogEntry.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkRequestLogEntry.java index 7a24f194fc0..0b7d16f447c 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkRequestLogEntry.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkRequestResource.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkRequestResource.java index 1e21d15595c..f35d99a7b35 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkRequestResource.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkRequestSummary.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkRequestSummary.java index fc2ad19a21d..9f1db788069 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkRequestSummary.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkSubmissionKey.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkSubmissionKey.java index 57f81769658..9afcadd713b 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkSubmissionKey.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/model/WorkSubmissionKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.model; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/CreateDataSourceRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/CreateDataSourceRequest.java index 897de4066f7..5e1a346ca82 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/CreateDataSourceRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/CreateDataSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/CreateManagementAgentInstallKeyRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/CreateManagementAgentInstallKeyRequest.java index 265cf08a52d..6b252a1b10c 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/CreateManagementAgentInstallKeyRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/CreateManagementAgentInstallKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/CreateNamedCredentialRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/CreateNamedCredentialRequest.java index 3aeb3065a9d..84a5da488eb 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/CreateNamedCredentialRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/CreateNamedCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeleteDataSourceRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeleteDataSourceRequest.java index 8d0a143be01..e895cc61e51 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeleteDataSourceRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeleteDataSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeleteManagementAgentInstallKeyRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeleteManagementAgentInstallKeyRequest.java index d9401aac96a..a2b215617c4 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeleteManagementAgentInstallKeyRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeleteManagementAgentInstallKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeleteManagementAgentRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeleteManagementAgentRequest.java index 4714a1e32c3..31c9e94c5b5 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeleteManagementAgentRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeleteManagementAgentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeleteNamedCredentialRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeleteNamedCredentialRequest.java index d7953a4245a..b5c58a7da31 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeleteNamedCredentialRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeleteNamedCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeleteWorkRequestRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeleteWorkRequestRequest.java index d1be661cdaf..1ec64da9281 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeleteWorkRequestRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeleteWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeployPluginsRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeployPluginsRequest.java index 22e701e201c..1d43feb9ecb 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeployPluginsRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/DeployPluginsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetAutoUpgradableConfigRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetAutoUpgradableConfigRequest.java index 2d349d35f4a..28c84a0dbaa 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetAutoUpgradableConfigRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetAutoUpgradableConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetDataSourceRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetDataSourceRequest.java index c35189855ba..d4a7e01dc3e 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetDataSourceRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetDataSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetManagementAgentInstallKeyContentRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetManagementAgentInstallKeyContentRequest.java index 91fcc0d3172..e2e2b1f55ad 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetManagementAgentInstallKeyContentRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetManagementAgentInstallKeyContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetManagementAgentInstallKeyRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetManagementAgentInstallKeyRequest.java index 0c7a59e52d0..9488e1e6d0e 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetManagementAgentInstallKeyRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetManagementAgentInstallKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetManagementAgentRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetManagementAgentRequest.java index 98515cf9ea8..916e8e31e39 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetManagementAgentRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetManagementAgentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetNamedCredentialRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetNamedCredentialRequest.java index 263c2754d6f..76d994f8f26 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetNamedCredentialRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetNamedCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetNamedCredentialsMetadatumRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetNamedCredentialsMetadatumRequest.java index c9f6396a95a..828a28d1437 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetNamedCredentialsMetadatumRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetNamedCredentialsMetadatumRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetWorkRequestRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetWorkRequestRequest.java index f6099ebbae7..bbdf85e0cd3 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetWorkRequestRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListAvailabilityHistoriesRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListAvailabilityHistoriesRequest.java index 989a827728e..837ee9c702b 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListAvailabilityHistoriesRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListAvailabilityHistoriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListDataSourcesRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListDataSourcesRequest.java index 17acf36122f..a11057c625c 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListDataSourcesRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListDataSourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListManagementAgentImagesRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListManagementAgentImagesRequest.java index 3f493ee2193..0508d567aff 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListManagementAgentImagesRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListManagementAgentImagesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListManagementAgentInstallKeysRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListManagementAgentInstallKeysRequest.java index 0f5c78cd9ab..ef4787f8c2e 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListManagementAgentInstallKeysRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListManagementAgentInstallKeysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListManagementAgentPluginsRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListManagementAgentPluginsRequest.java index add43e57cdf..e1cfd72b926 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListManagementAgentPluginsRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListManagementAgentPluginsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListManagementAgentsRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListManagementAgentsRequest.java index 162dcffee74..2a5e64d04c4 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListManagementAgentsRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListManagementAgentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListNamedCredentialsRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListNamedCredentialsRequest.java index 49ef44a5897..8922a2305a9 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListNamedCredentialsRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListNamedCredentialsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListWorkRequestErrorsRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListWorkRequestErrorsRequest.java index 5a5bd9db547..71aa6a11bd6 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListWorkRequestLogsRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListWorkRequestLogsRequest.java index 7707c27ce32..8db7be6cd88 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListWorkRequestLogsRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListWorkRequestsRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListWorkRequestsRequest.java index bff662a3c64..21ab20b6c46 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListWorkRequestsRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/SetAutoUpgradableConfigRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/SetAutoUpgradableConfigRequest.java index 5b40288b18b..54af563e538 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/SetAutoUpgradableConfigRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/SetAutoUpgradableConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/SummarizeManagementAgentCountsRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/SummarizeManagementAgentCountsRequest.java index feb20ce7e3b..2463442ec81 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/SummarizeManagementAgentCountsRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/SummarizeManagementAgentCountsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/SummarizeManagementAgentPluginCountsRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/SummarizeManagementAgentPluginCountsRequest.java index deb88e39515..07e9f380cdc 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/SummarizeManagementAgentPluginCountsRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/SummarizeManagementAgentPluginCountsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/UpdateDataSourceRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/UpdateDataSourceRequest.java index a6e47b4a871..d160ad0c45b 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/UpdateDataSourceRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/UpdateDataSourceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/UpdateManagementAgentInstallKeyRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/UpdateManagementAgentInstallKeyRequest.java index f9ad7f4be56..3e5d2191b56 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/UpdateManagementAgentInstallKeyRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/UpdateManagementAgentInstallKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/UpdateManagementAgentRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/UpdateManagementAgentRequest.java index e3fed513069..d2fe547f253 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/UpdateManagementAgentRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/UpdateManagementAgentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/UpdateNamedCredentialRequest.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/UpdateNamedCredentialRequest.java index e820c2a344e..d0b6287e999 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/UpdateNamedCredentialRequest.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/requests/UpdateNamedCredentialRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.requests; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/CreateDataSourceResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/CreateDataSourceResponse.java index 862b1918195..09c0618f1a2 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/CreateDataSourceResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/CreateDataSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/CreateManagementAgentInstallKeyResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/CreateManagementAgentInstallKeyResponse.java index a63245e5ed2..5e4b77ead96 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/CreateManagementAgentInstallKeyResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/CreateManagementAgentInstallKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/CreateNamedCredentialResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/CreateNamedCredentialResponse.java index 9fffe9b08e4..e09102a8c40 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/CreateNamedCredentialResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/CreateNamedCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeleteDataSourceResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeleteDataSourceResponse.java index d3444aee6e8..69a3901119f 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeleteDataSourceResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeleteDataSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeleteManagementAgentInstallKeyResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeleteManagementAgentInstallKeyResponse.java index 26c4f355fb8..e82366bd620 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeleteManagementAgentInstallKeyResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeleteManagementAgentInstallKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeleteManagementAgentResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeleteManagementAgentResponse.java index 3441cceb1fe..21275ef04a5 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeleteManagementAgentResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeleteManagementAgentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeleteNamedCredentialResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeleteNamedCredentialResponse.java index 4db53999095..8304e0aed6b 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeleteNamedCredentialResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeleteNamedCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeleteWorkRequestResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeleteWorkRequestResponse.java index 5e7bddff1e3..cc1632b064e 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeleteWorkRequestResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeleteWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeployPluginsResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeployPluginsResponse.java index 84eb6222322..b0b2e6813f3 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeployPluginsResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/DeployPluginsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetAutoUpgradableConfigResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetAutoUpgradableConfigResponse.java index c0b117d8931..3c3ed451ea0 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetAutoUpgradableConfigResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetAutoUpgradableConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetDataSourceResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetDataSourceResponse.java index d22936f629d..2f873f729c6 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetDataSourceResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetDataSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetManagementAgentInstallKeyContentResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetManagementAgentInstallKeyContentResponse.java index 78344dbe542..cd08b055467 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetManagementAgentInstallKeyContentResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetManagementAgentInstallKeyContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetManagementAgentInstallKeyResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetManagementAgentInstallKeyResponse.java index 8d56b01b4de..eafc0cc6504 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetManagementAgentInstallKeyResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetManagementAgentInstallKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetManagementAgentResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetManagementAgentResponse.java index 4325ab9cf50..5a99025bb9e 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetManagementAgentResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetManagementAgentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetNamedCredentialResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetNamedCredentialResponse.java index 6eea389c55a..faadc5769a0 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetNamedCredentialResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetNamedCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetNamedCredentialsMetadatumResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetNamedCredentialsMetadatumResponse.java index 66753f71ab8..1e544d5141d 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetNamedCredentialsMetadatumResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetNamedCredentialsMetadatumResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetWorkRequestResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetWorkRequestResponse.java index 4f869346ca8..c734c1bdc1b 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetWorkRequestResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListAvailabilityHistoriesResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListAvailabilityHistoriesResponse.java index 9335cc42a22..2d1c85ffbd6 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListAvailabilityHistoriesResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListAvailabilityHistoriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListDataSourcesResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListDataSourcesResponse.java index c198143fb46..eb255953310 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListDataSourcesResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListDataSourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListManagementAgentImagesResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListManagementAgentImagesResponse.java index 9d9e9ed3fc3..10e65a51c21 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListManagementAgentImagesResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListManagementAgentImagesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListManagementAgentInstallKeysResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListManagementAgentInstallKeysResponse.java index 2ee164481a3..270964453d4 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListManagementAgentInstallKeysResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListManagementAgentInstallKeysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListManagementAgentPluginsResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListManagementAgentPluginsResponse.java index ffe8145ba7a..0e9b17369aa 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListManagementAgentPluginsResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListManagementAgentPluginsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListManagementAgentsResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListManagementAgentsResponse.java index 94b04d3c640..d3e65674190 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListManagementAgentsResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListManagementAgentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListNamedCredentialsResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListNamedCredentialsResponse.java index ec85e8273f0..cd7c9307c37 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListNamedCredentialsResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListNamedCredentialsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListWorkRequestErrorsResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListWorkRequestErrorsResponse.java index 76070ec25ba..687d9e2c5f1 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListWorkRequestLogsResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListWorkRequestLogsResponse.java index 4f1f9da5b7d..8afe02e28e0 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListWorkRequestLogsResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListWorkRequestsResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListWorkRequestsResponse.java index 2515de498d2..4bb48787147 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListWorkRequestsResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/SetAutoUpgradableConfigResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/SetAutoUpgradableConfigResponse.java index 0282fea5f89..f78aba9268b 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/SetAutoUpgradableConfigResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/SetAutoUpgradableConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/SummarizeManagementAgentCountsResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/SummarizeManagementAgentCountsResponse.java index b5b154a739e..8655979ff5d 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/SummarizeManagementAgentCountsResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/SummarizeManagementAgentCountsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/SummarizeManagementAgentPluginCountsResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/SummarizeManagementAgentPluginCountsResponse.java index c00efe421bb..046cf26e245 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/SummarizeManagementAgentPluginCountsResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/SummarizeManagementAgentPluginCountsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/UpdateDataSourceResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/UpdateDataSourceResponse.java index 2f7c15dbca7..1db8253449e 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/UpdateDataSourceResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/UpdateDataSourceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/UpdateManagementAgentInstallKeyResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/UpdateManagementAgentInstallKeyResponse.java index 9a9c80c2d27..b689e04afb4 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/UpdateManagementAgentInstallKeyResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/UpdateManagementAgentInstallKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/UpdateManagementAgentResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/UpdateManagementAgentResponse.java index b6a587774d0..07d9c0feeba 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/UpdateManagementAgentResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/UpdateManagementAgentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/UpdateNamedCredentialResponse.java b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/UpdateNamedCredentialResponse.java index 86f218e75d2..da3b7990e62 100644 --- a/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/UpdateNamedCredentialResponse.java +++ b/bmc-managementagent/src/main/java/com/oracle/bmc/managementagent/responses/UpdateNamedCredentialResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementagent.responses; diff --git a/bmc-managementagent/src/main/resources/com/oracle/bmc/managementagent/client.properties b/bmc-managementagent/src/main/resources/com/oracle/bmc/managementagent/client.properties index 140f9fe7a85..d16dbc15e05 100644 --- a/bmc-managementagent/src/main/resources/com/oracle/bmc/managementagent/client.properties +++ b/bmc-managementagent/src/main/resources/com/oracle/bmc/managementagent/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-managementdashboard/pom.xml b/bmc-managementdashboard/pom.xml index 1b434909e9f..155131e8904 100644 --- a/bmc-managementdashboard/pom.xml +++ b/bmc-managementdashboard/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-managementdashboard @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApis.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApis.java index c70a3e8d174..f4666ad72dc 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApis.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApis.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApisAsync.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApisAsync.java index 809fb95d4dd..236e6395251 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApisAsync.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApisAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApisAsyncClient.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApisAsyncClient.java index 8437dd6fdf3..1e7270aec29 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApisAsyncClient.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApisAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApisClient.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApisClient.java index 09b8cfc89c3..89a9fd4d1f0 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApisClient.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApisClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApisPaginators.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApisPaginators.java index c1cd0d92740..11562803dfc 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApisPaginators.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApisPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApisWaiters.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApisWaiters.java index fcfa2a8b800..88f2de78aa4 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApisWaiters.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/DashxApisWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ChangeManagementDashboardsCompartmentDetails.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ChangeManagementDashboardsCompartmentDetails.java index db2ab725a62..f8606627eca 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ChangeManagementDashboardsCompartmentDetails.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ChangeManagementDashboardsCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.model; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ChangeManagementSavedSearchesCompartmentDetails.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ChangeManagementSavedSearchesCompartmentDetails.java index 33bd6b0c7b6..11c15f67ea7 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ChangeManagementSavedSearchesCompartmentDetails.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ChangeManagementSavedSearchesCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.model; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/CreateManagementDashboardDetails.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/CreateManagementDashboardDetails.java index d0014859221..0f69434d657 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/CreateManagementDashboardDetails.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/CreateManagementDashboardDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.model; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/CreateManagementSavedSearchDetails.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/CreateManagementSavedSearchDetails.java index f62436d6d32..14916cc67f0 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/CreateManagementSavedSearchDetails.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/CreateManagementSavedSearchDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.model; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/LifecycleStates.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/LifecycleStates.java index 6436a5f7efd..653e5b8450e 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/LifecycleStates.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/LifecycleStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.model; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboard.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboard.java index 60734c7942e..79ea893aa84 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboard.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboard.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.model; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardCollection.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardCollection.java index 95c13d015a5..3f3cfb835f4 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardCollection.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.model; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardExportDetails.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardExportDetails.java index 56ac1f0eba7..20094bbac3b 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardExportDetails.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardExportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.model; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardForImportExportDetails.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardForImportExportDetails.java index 9399f104691..5bae7d289de 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardForImportExportDetails.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardForImportExportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.model; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardImportDetails.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardImportDetails.java index e8d97094093..f60f7167764 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardImportDetails.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardImportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.model; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardSummary.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardSummary.java index e00dec0ed6f..e4133ed48b1 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardSummary.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.model; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardTileDetails.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardTileDetails.java index 54446354b58..d6c4fcd035d 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardTileDetails.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementDashboardTileDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.model; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementSavedSearch.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementSavedSearch.java index 94a35161940..cc57126e6cc 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementSavedSearch.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementSavedSearch.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.model; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementSavedSearchCollection.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementSavedSearchCollection.java index 80878310ff1..bd2b57d8174 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementSavedSearchCollection.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementSavedSearchCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.model; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementSavedSearchForImportDetails.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementSavedSearchForImportDetails.java index 367a93c2109..f68c8665a0a 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementSavedSearchForImportDetails.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementSavedSearchForImportDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.model; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementSavedSearchSummary.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementSavedSearchSummary.java index b186e77dcf8..44cd1fb6b42 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementSavedSearchSummary.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/ManagementSavedSearchSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.model; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/SavedSearchTypes.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/SavedSearchTypes.java index 16fb2ab5b5e..5425c24b44e 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/SavedSearchTypes.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/SavedSearchTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.model; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/SortOrders.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/SortOrders.java index 44bab64dad1..1f56ee7e404 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/SortOrders.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/SortOrders.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.model; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/UpdateManagementDashboardDetails.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/UpdateManagementDashboardDetails.java index e576bf77cc2..7e4f9a79dd6 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/UpdateManagementDashboardDetails.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/UpdateManagementDashboardDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.model; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/UpdateManagementSavedSearchDetails.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/UpdateManagementSavedSearchDetails.java index d07d5c93d7a..a56b61d11e3 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/UpdateManagementSavedSearchDetails.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/model/UpdateManagementSavedSearchDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.model; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ChangeManagementDashboardsCompartmentRequest.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ChangeManagementDashboardsCompartmentRequest.java index 9a0953ea7b1..202609c28bb 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ChangeManagementDashboardsCompartmentRequest.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ChangeManagementDashboardsCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.requests; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ChangeManagementSavedSearchesCompartmentRequest.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ChangeManagementSavedSearchesCompartmentRequest.java index f4f7fe14b5e..40edda42fc9 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ChangeManagementSavedSearchesCompartmentRequest.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ChangeManagementSavedSearchesCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.requests; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/CreateManagementDashboardRequest.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/CreateManagementDashboardRequest.java index 51c705a9c65..f40709ef14c 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/CreateManagementDashboardRequest.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/CreateManagementDashboardRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.requests; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/CreateManagementSavedSearchRequest.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/CreateManagementSavedSearchRequest.java index 57744d99c10..fce9af9e570 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/CreateManagementSavedSearchRequest.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/CreateManagementSavedSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.requests; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/DeleteManagementDashboardRequest.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/DeleteManagementDashboardRequest.java index c93092cf627..33b8033aec7 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/DeleteManagementDashboardRequest.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/DeleteManagementDashboardRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.requests; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/DeleteManagementSavedSearchRequest.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/DeleteManagementSavedSearchRequest.java index a0c1e64ce3d..c60d4754cc2 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/DeleteManagementSavedSearchRequest.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/DeleteManagementSavedSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.requests; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ExportDashboardRequest.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ExportDashboardRequest.java index 43f83ebf97a..50f1ef935d8 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ExportDashboardRequest.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ExportDashboardRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.requests; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/GetManagementDashboardRequest.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/GetManagementDashboardRequest.java index f8939d82bc1..beac67c05c7 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/GetManagementDashboardRequest.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/GetManagementDashboardRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.requests; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/GetManagementSavedSearchRequest.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/GetManagementSavedSearchRequest.java index 9db6642e5c6..dbda3798914 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/GetManagementSavedSearchRequest.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/GetManagementSavedSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.requests; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/GetOobManagementDashboardRequest.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/GetOobManagementDashboardRequest.java index 70453fdbc54..a724bbea1f0 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/GetOobManagementDashboardRequest.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/GetOobManagementDashboardRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.requests; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/GetOobManagementSavedSearchRequest.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/GetOobManagementSavedSearchRequest.java index a4c476860d1..a72f0c0b1b7 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/GetOobManagementSavedSearchRequest.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/GetOobManagementSavedSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.requests; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ImportDashboardRequest.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ImportDashboardRequest.java index 161794e6391..b6b4314295f 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ImportDashboardRequest.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ImportDashboardRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.requests; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ListManagementDashboardsRequest.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ListManagementDashboardsRequest.java index 51a69f92423..25ae406060e 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ListManagementDashboardsRequest.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ListManagementDashboardsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.requests; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ListManagementSavedSearchesRequest.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ListManagementSavedSearchesRequest.java index f15e323b3f1..7fbfeb2e692 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ListManagementSavedSearchesRequest.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ListManagementSavedSearchesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.requests; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ListOobManagementDashboardsRequest.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ListOobManagementDashboardsRequest.java index 3dbb9853dfb..70467f7e89f 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ListOobManagementDashboardsRequest.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ListOobManagementDashboardsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.requests; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ListOobManagementSavedSearchesRequest.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ListOobManagementSavedSearchesRequest.java index f0ee06ffe6f..4e4c5b1565c 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ListOobManagementSavedSearchesRequest.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/ListOobManagementSavedSearchesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.requests; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/UpdateManagementDashboardRequest.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/UpdateManagementDashboardRequest.java index cee37bf749a..46ba28082ae 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/UpdateManagementDashboardRequest.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/UpdateManagementDashboardRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.requests; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/UpdateManagementSavedSearchRequest.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/UpdateManagementSavedSearchRequest.java index 3392da9f9ff..497bd549b91 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/UpdateManagementSavedSearchRequest.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/requests/UpdateManagementSavedSearchRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.requests; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ChangeManagementDashboardsCompartmentResponse.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ChangeManagementDashboardsCompartmentResponse.java index ab800a2e03f..77be1019ec0 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ChangeManagementDashboardsCompartmentResponse.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ChangeManagementDashboardsCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.responses; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ChangeManagementSavedSearchesCompartmentResponse.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ChangeManagementSavedSearchesCompartmentResponse.java index 8888ccbe29b..ce4597c993d 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ChangeManagementSavedSearchesCompartmentResponse.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ChangeManagementSavedSearchesCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.responses; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/CreateManagementDashboardResponse.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/CreateManagementDashboardResponse.java index 732022c3fb6..e40cea3fca6 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/CreateManagementDashboardResponse.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/CreateManagementDashboardResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.responses; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/CreateManagementSavedSearchResponse.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/CreateManagementSavedSearchResponse.java index c3dfefcbb7e..fc94bc79814 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/CreateManagementSavedSearchResponse.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/CreateManagementSavedSearchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.responses; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/DeleteManagementDashboardResponse.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/DeleteManagementDashboardResponse.java index 60ce5fea571..1f6a9c914b5 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/DeleteManagementDashboardResponse.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/DeleteManagementDashboardResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.responses; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/DeleteManagementSavedSearchResponse.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/DeleteManagementSavedSearchResponse.java index f1a909cbf92..567c617abce 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/DeleteManagementSavedSearchResponse.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/DeleteManagementSavedSearchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.responses; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ExportDashboardResponse.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ExportDashboardResponse.java index a0d94b4e758..e11010a66ee 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ExportDashboardResponse.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ExportDashboardResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.responses; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/GetManagementDashboardResponse.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/GetManagementDashboardResponse.java index b8159005fbb..772a395709f 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/GetManagementDashboardResponse.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/GetManagementDashboardResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.responses; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/GetManagementSavedSearchResponse.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/GetManagementSavedSearchResponse.java index 825c09f7965..48f62488d32 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/GetManagementSavedSearchResponse.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/GetManagementSavedSearchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.responses; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/GetOobManagementDashboardResponse.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/GetOobManagementDashboardResponse.java index 4a3952faa10..68b41cd9b0c 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/GetOobManagementDashboardResponse.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/GetOobManagementDashboardResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.responses; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/GetOobManagementSavedSearchResponse.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/GetOobManagementSavedSearchResponse.java index 163254418dd..000ed10e04c 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/GetOobManagementSavedSearchResponse.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/GetOobManagementSavedSearchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.responses; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ImportDashboardResponse.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ImportDashboardResponse.java index dc92f81fbd7..abb57adceb7 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ImportDashboardResponse.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ImportDashboardResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.responses; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ListManagementDashboardsResponse.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ListManagementDashboardsResponse.java index 2ef59304cdf..9cf8e9f58be 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ListManagementDashboardsResponse.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ListManagementDashboardsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.responses; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ListManagementSavedSearchesResponse.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ListManagementSavedSearchesResponse.java index f0474ea05b2..fa577a3edee 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ListManagementSavedSearchesResponse.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ListManagementSavedSearchesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.responses; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ListOobManagementDashboardsResponse.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ListOobManagementDashboardsResponse.java index fab2f34182e..571f76f67d9 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ListOobManagementDashboardsResponse.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ListOobManagementDashboardsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.responses; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ListOobManagementSavedSearchesResponse.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ListOobManagementSavedSearchesResponse.java index 501077fa4c3..c2d75ebc9fa 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ListOobManagementSavedSearchesResponse.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/ListOobManagementSavedSearchesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.responses; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/UpdateManagementDashboardResponse.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/UpdateManagementDashboardResponse.java index 770eea95fc7..e0f4a2c763b 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/UpdateManagementDashboardResponse.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/UpdateManagementDashboardResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.responses; diff --git a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/UpdateManagementSavedSearchResponse.java b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/UpdateManagementSavedSearchResponse.java index 7b185ae9b6d..6b6cc7051f2 100644 --- a/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/UpdateManagementSavedSearchResponse.java +++ b/bmc-managementdashboard/src/main/java/com/oracle/bmc/managementdashboard/responses/UpdateManagementSavedSearchResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.managementdashboard.responses; diff --git a/bmc-managementdashboard/src/main/resources/com/oracle/bmc/managementdashboard/client.properties b/bmc-managementdashboard/src/main/resources/com/oracle/bmc/managementdashboard/client.properties index a401c21a6f5..89e79332674 100644 --- a/bmc-managementdashboard/src/main/resources/com/oracle/bmc/managementdashboard/client.properties +++ b/bmc-managementdashboard/src/main/resources/com/oracle/bmc/managementdashboard/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-marketplace/pom.xml b/bmc-marketplace/pom.xml index 8c202813918..7d0aec7cfc9 100644 --- a/bmc-marketplace/pom.xml +++ b/bmc-marketplace/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-marketplace @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/Account.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/Account.java index b1b11ed4c3e..76958c528bb 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/Account.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/Account.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/AccountAsync.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/AccountAsync.java index ffc47db2e36..f69b3b80826 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/AccountAsync.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/AccountAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/AccountAsyncClient.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/AccountAsyncClient.java index 7a4db4d8152..84a3f8a6936 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/AccountAsyncClient.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/AccountAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/AccountClient.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/AccountClient.java index a2a36cefcca..da745539693 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/AccountClient.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/AccountClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/Marketplace.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/Marketplace.java index f7c93ecf047..575e61ca57f 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/Marketplace.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/Marketplace.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/MarketplaceAsync.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/MarketplaceAsync.java index 7ad1da747ba..0efcb4149e7 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/MarketplaceAsync.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/MarketplaceAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/MarketplaceAsyncClient.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/MarketplaceAsyncClient.java index 90cdd16b5d7..057769dc71a 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/MarketplaceAsyncClient.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/MarketplaceAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/MarketplaceClient.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/MarketplaceClient.java index 18a48827e26..68c852a58fb 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/MarketplaceClient.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/MarketplaceClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/MarketplacePaginators.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/MarketplacePaginators.java index 77eeb733fad..319cfb877ef 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/MarketplacePaginators.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/MarketplacePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/MarketplaceWaiters.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/MarketplaceWaiters.java index 71de957c298..3123d862924 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/MarketplaceWaiters.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/MarketplaceWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/AcceptedAgreement.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/AcceptedAgreement.java index 1f594174a59..361d83ea055 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/AcceptedAgreement.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/AcceptedAgreement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/AcceptedAgreementSummary.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/AcceptedAgreementSummary.java index 586f6de2707..af705bfbc28 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/AcceptedAgreementSummary.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/AcceptedAgreementSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Agreement.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Agreement.java index f2f4d5c9524..7cf3b61eca0 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Agreement.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Agreement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/AgreementSummary.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/AgreementSummary.java index 39f256ac8bc..efb9bf8b6be 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/AgreementSummary.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/AgreementSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ArchitectureType.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ArchitectureType.java index 16eb6272cb8..f2fa4d28f6d 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ArchitectureType.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ArchitectureType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CategorySummary.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CategorySummary.java index 9e9d96cb311..75a2420cb9a 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CategorySummary.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CategorySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ChangePublicationCompartmentDetails.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ChangePublicationCompartmentDetails.java index c55743f113c..67152393878 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ChangePublicationCompartmentDetails.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ChangePublicationCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ContainerListingPackage.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ContainerListingPackage.java index b260b2306a2..308cd74580f 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ContainerListingPackage.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ContainerListingPackage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CreateAcceptedAgreementDetails.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CreateAcceptedAgreementDetails.java index 189fbdd95ac..2425dfb66b5 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CreateAcceptedAgreementDetails.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CreateAcceptedAgreementDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CreateImagePublicationPackage.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CreateImagePublicationPackage.java index bf0c440fe01..b73b2b13666 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CreateImagePublicationPackage.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CreateImagePublicationPackage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CreateMarketplaceExternalAttestedMetadataDetails.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CreateMarketplaceExternalAttestedMetadataDetails.java index ca153962ebb..bca5aefc2b6 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CreateMarketplaceExternalAttestedMetadataDetails.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CreateMarketplaceExternalAttestedMetadataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CreatePublicationDetails.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CreatePublicationDetails.java index 0290464280c..7652cafefc4 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CreatePublicationDetails.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CreatePublicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CreatePublicationPackage.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CreatePublicationPackage.java index a005798f9be..c8a1da003d0 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CreatePublicationPackage.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/CreatePublicationPackage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/DocumentationLink.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/DocumentationLink.java index 524b8875ead..0104e9572f1 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/DocumentationLink.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/DocumentationLink.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ErrorEntity.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ErrorEntity.java index 70515b55560..63e393d6d60 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ErrorEntity.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ErrorEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Eula.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Eula.java index 6996ea90908..af2c28c37b5 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Eula.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Eula.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/EulaTypeEnum.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/EulaTypeEnum.java index ecc34ffccd8..db6748fcbe5 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/EulaTypeEnum.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/EulaTypeEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ExportPackageDetails.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ExportPackageDetails.java index 5a7e158b049..3953c2573ec 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ExportPackageDetails.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ExportPackageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/FreeTextSearchDetails.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/FreeTextSearchDetails.java index 518c7db1185..67940112c04 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/FreeTextSearchDetails.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/FreeTextSearchDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ImageListingPackage.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ImageListingPackage.java index 19a4a4a0fcd..ee0cec4cf38 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ImageListingPackage.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ImageListingPackage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ImagePublicationPackage.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ImagePublicationPackage.java index c9a838fa33b..b2e5ceb5f0a 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ImagePublicationPackage.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ImagePublicationPackage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/IneligibilityReasonEnum.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/IneligibilityReasonEnum.java index 36c54ef1581..602ca8b3c95 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/IneligibilityReasonEnum.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/IneligibilityReasonEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/InternationalMarketPrice.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/InternationalMarketPrice.java index 93f63cab7c5..37953498be8 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/InternationalMarketPrice.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/InternationalMarketPrice.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Item.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Item.java index 5b78efd9071..88d252af0fd 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Item.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Item.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/KubernetesListingPackage.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/KubernetesListingPackage.java index a9abc325061..28c8bb03245 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/KubernetesListingPackage.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/KubernetesListingPackage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/LaunchEligibility.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/LaunchEligibility.java index 9f672a5d5a6..7836e1828d7 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/LaunchEligibility.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/LaunchEligibility.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Link.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Link.java index 20065937698..6ddb5e6d355 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Link.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Link.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/LinkEnum.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/LinkEnum.java index 01ccab38bc3..68e911372a1 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/LinkEnum.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/LinkEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Listing.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Listing.java index e90bb72d904..5b57f822bb9 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Listing.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Listing.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ListingPackage.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ListingPackage.java index 7b371f50237..f7d8e369616 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ListingPackage.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ListingPackage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ListingPackageSummary.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ListingPackageSummary.java index b6ee702ac82..12627b0f87b 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ListingPackageSummary.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ListingPackageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ListingSummary.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ListingSummary.java index d215c638bc9..b48bec96418 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ListingSummary.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ListingSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ListingType.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ListingType.java index 75023fb0e86..7e6064af02a 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ListingType.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ListingType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/MarketplaceExternalAttestedMetadata.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/MarketplaceExternalAttestedMetadata.java index 4229bcef31e..fa0d76fbeee 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/MarketplaceExternalAttestedMetadata.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/MarketplaceExternalAttestedMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/MarketplaceMetadataPublicKeySummary.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/MarketplaceMetadataPublicKeySummary.java index f1e4866f569..f23a4785cba 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/MarketplaceMetadataPublicKeySummary.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/MarketplaceMetadataPublicKeySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/MatchingContextTypeEnum.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/MatchingContextTypeEnum.java index 076e9824564..13df1a8f0b5 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/MatchingContextTypeEnum.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/MatchingContextTypeEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/NamedLink.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/NamedLink.java index d5041b2157e..f7b1d75c09e 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/NamedLink.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/NamedLink.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OperatingSystem.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OperatingSystem.java index 8898f103e94..e66dba7746f 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OperatingSystem.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OperatingSystem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OperationStatus.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OperationStatus.java index 0224e2c63a2..c473a0cd9c2 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OperationStatus.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OperationType.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OperationType.java index 10bb2dd2a4a..b115462eee0 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OperationType.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OrchestrationListingPackage.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OrchestrationListingPackage.java index 55b3907da6d..157e2dc054c 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OrchestrationListingPackage.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OrchestrationListingPackage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OrchestrationPublicationPackage.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OrchestrationPublicationPackage.java index 8a59252d1a9..31eb88b6821 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OrchestrationPublicationPackage.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OrchestrationPublicationPackage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OrchestrationVariable.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OrchestrationVariable.java index 0717b04afb8..da7fc0bec87 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OrchestrationVariable.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OrchestrationVariable.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OrchestrationVariableTypeEnum.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OrchestrationVariableTypeEnum.java index 86ba6d00ffd..c4c755da682 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OrchestrationVariableTypeEnum.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/OrchestrationVariableTypeEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PackageTypeEnum.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PackageTypeEnum.java index b376dad23a5..7eddc945dbc 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PackageTypeEnum.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PackageTypeEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PricingCurrencyEnum.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PricingCurrencyEnum.java index 4fcf8946bc5..2e16cdf8118 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PricingCurrencyEnum.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PricingCurrencyEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PricingModel.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PricingModel.java index 86d8d3321e5..528101b3b35 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PricingModel.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PricingModel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PricingStrategyEnum.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PricingStrategyEnum.java index be67b7bd4e6..20217f0fc13 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PricingStrategyEnum.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PricingStrategyEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PricingTypeEnum.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PricingTypeEnum.java index 33a5dd872b6..25e4a611498 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PricingTypeEnum.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PricingTypeEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Publication.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Publication.java index 4baf979fd52..33a26c8de01 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Publication.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Publication.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PublicationPackage.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PublicationPackage.java index 459aa8c7c48..4f436486413 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PublicationPackage.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PublicationPackage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PublicationPackageSummary.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PublicationPackageSummary.java index 2eb3f6276d7..d8018f54f1d 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PublicationPackageSummary.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PublicationPackageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PublicationSummary.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PublicationSummary.java index d7ea4391c1b..713503c891f 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PublicationSummary.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PublicationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Publisher.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Publisher.java index 72874e49bb2..ea781125ddc 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Publisher.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Publisher.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PublisherSummary.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PublisherSummary.java index c8387e08e4d..be5f7bb48ab 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PublisherSummary.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/PublisherSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Region.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Region.java index 38ab195b663..2de73f591d7 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Region.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Region.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ReportCollection.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ReportCollection.java index ee7272640a5..93a22650b09 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ReportCollection.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ReportCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ReportSummary.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ReportSummary.java index 7c6086942ca..2dc6e973910 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ReportSummary.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ReportSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ReportTypeCollection.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ReportTypeCollection.java index 63866ed5b69..ee858c5f4aa 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ReportTypeCollection.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ReportTypeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ReportTypeSummary.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ReportTypeSummary.java index 56c90c34b1e..cfc0a883bb6 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ReportTypeSummary.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ReportTypeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Screenshot.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Screenshot.java index 50c32b9c815..9690a705dea 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Screenshot.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/Screenshot.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/SearchDetailsTypeEnum.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/SearchDetailsTypeEnum.java index accb83c1709..f0a6ba132a7 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/SearchDetailsTypeEnum.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/SearchDetailsTypeEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/SearchListingsDetails.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/SearchListingsDetails.java index 01966c7826e..8e32fbe9124 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/SearchListingsDetails.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/SearchListingsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/StructuredSearchDetails.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/StructuredSearchDetails.java index 033173b3949..e0897f12211 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/StructuredSearchDetails.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/StructuredSearchDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/SupportContact.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/SupportContact.java index 3dbaf6b3a42..92425313246 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/SupportContact.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/SupportContact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/TaxSummary.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/TaxSummary.java index c6e4e00e520..883105ed43f 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/TaxSummary.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/TaxSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/TextBasedEula.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/TextBasedEula.java index 1af19f8092c..4fdd31293d1 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/TextBasedEula.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/TextBasedEula.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ThirdPartyPaidListingEligibility.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ThirdPartyPaidListingEligibility.java index 109ea634ede..603e10c182d 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ThirdPartyPaidListingEligibility.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/ThirdPartyPaidListingEligibility.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/UpdateAcceptedAgreementDetails.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/UpdateAcceptedAgreementDetails.java index 9ee0065b489..8fad75aa040 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/UpdateAcceptedAgreementDetails.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/UpdateAcceptedAgreementDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/UpdatePublicationDetails.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/UpdatePublicationDetails.java index 02563b014e5..8db0e36675a 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/UpdatePublicationDetails.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/UpdatePublicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/UploadData.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/UploadData.java index 012469aec15..ceed20a4cab 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/UploadData.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/UploadData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequest.java index 9f21716bbf7..f9d4ceed517 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestActionType.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestActionType.java index fa1d4040bb8..1cd1e01dc73 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestActionType.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestCollection.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestCollection.java index 6dde5c3c5d8..4bd254b885f 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestCollection.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestError.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestError.java index 065915ce9d1..5d5dfade9ad 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestError.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestErrorCollection.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestErrorCollection.java index de004e21c76..c625c4f68e7 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestErrorCollection.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestLogEntry.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestLogEntry.java index 6fe2ded6db5..7d2fe2ffeb8 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestLogEntry.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestLogEntryCollection.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestLogEntryCollection.java index 08da529cdf8..d0b73b628b4 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestLogEntryCollection.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestResource.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestResource.java index a36b4448b44..48522c7bca2 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestResource.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestResourceMetadataKey.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestResourceMetadataKey.java index 81be20834a6..10e070f3327 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestResourceMetadataKey.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestSummary.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestSummary.java index 01bf909a868..b98da58d3d5 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestSummary.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.model; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ChangePublicationCompartmentRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ChangePublicationCompartmentRequest.java index 110c3377e3b..9c87a719822 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ChangePublicationCompartmentRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ChangePublicationCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/CreateAcceptedAgreementRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/CreateAcceptedAgreementRequest.java index 1e2d333973c..367b0b00295 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/CreateAcceptedAgreementRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/CreateAcceptedAgreementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/CreateMarketplaceExternalAttestedMetadataRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/CreateMarketplaceExternalAttestedMetadataRequest.java index 26bb22cf723..7bf0256a9b1 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/CreateMarketplaceExternalAttestedMetadataRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/CreateMarketplaceExternalAttestedMetadataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/CreatePublicationRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/CreatePublicationRequest.java index 942e36ea7e4..febce12b759 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/CreatePublicationRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/CreatePublicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/DeleteAcceptedAgreementRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/DeleteAcceptedAgreementRequest.java index fe11751a290..4a14d9e4753 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/DeleteAcceptedAgreementRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/DeleteAcceptedAgreementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/DeletePublicationRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/DeletePublicationRequest.java index a5982bfd86d..d5d08268bd3 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/DeletePublicationRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/DeletePublicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ExportListingRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ExportListingRequest.java index 5342a77eeb9..13289735bc5 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ExportListingRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ExportListingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetAcceptedAgreementRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetAcceptedAgreementRequest.java index 7ab244ab502..f8bd22496fb 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetAcceptedAgreementRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetAcceptedAgreementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetAgreementRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetAgreementRequest.java index 6a655b42988..8b4ffcd9c83 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetAgreementRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetAgreementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetLaunchEligibilityRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetLaunchEligibilityRequest.java index 5af7f2cc9ad..219ef4bdd47 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetLaunchEligibilityRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetLaunchEligibilityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetListingRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetListingRequest.java index 9caf819c33f..12a13ae3d1b 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetListingRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetListingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetPackageRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetPackageRequest.java index 7d9a7411087..879c4afd133 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetPackageRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetPackageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetPublicationPackageRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetPublicationPackageRequest.java index 2044641609c..f0f575a8ac0 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetPublicationPackageRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetPublicationPackageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetPublicationRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetPublicationRequest.java index 538c7e66e5e..064a36c90f9 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetPublicationRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetPublicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetThirdPartyPaidListingEligibilityRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetThirdPartyPaidListingEligibilityRequest.java index 53e9c05cd9b..b6d0bca203d 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetThirdPartyPaidListingEligibilityRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetThirdPartyPaidListingEligibilityRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetWorkRequestRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetWorkRequestRequest.java index 5220aea5765..7cf3619b064 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetWorkRequestRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListAcceptedAgreementsRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListAcceptedAgreementsRequest.java index e8660660fa9..ba2af821708 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListAcceptedAgreementsRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListAcceptedAgreementsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListAgreementsRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListAgreementsRequest.java index 7018ed2d48e..fee56ae5b35 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListAgreementsRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListAgreementsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListCategoriesRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListCategoriesRequest.java index 8e14b40b42d..a26ab6ea0ab 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListCategoriesRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListCategoriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListListingsRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListListingsRequest.java index 4900b93d374..90f818313ab 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListListingsRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListListingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListMarketplaceMetadataPublicKeysRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListMarketplaceMetadataPublicKeysRequest.java index d85203bc58d..d39816ca3a3 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListMarketplaceMetadataPublicKeysRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListMarketplaceMetadataPublicKeysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListPackagesRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListPackagesRequest.java index 7fd6ecaca11..8a9c58efe57 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListPackagesRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListPackagesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListPublicationPackagesRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListPublicationPackagesRequest.java index 853dab855af..c27c886c553 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListPublicationPackagesRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListPublicationPackagesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListPublicationsRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListPublicationsRequest.java index 69406a90930..798cb1d9495 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListPublicationsRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListPublicationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListPublishersRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListPublishersRequest.java index 71d7ae70ff6..a20b37b626d 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListPublishersRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListPublishersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListReportTypesRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListReportTypesRequest.java index 6d5f71bf1d4..082221fdc0e 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListReportTypesRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListReportTypesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListReportsRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListReportsRequest.java index a8a737132d3..53f36ece9d1 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListReportsRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListReportsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListTaxesRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListTaxesRequest.java index 1639b7f0134..26dc969919d 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListTaxesRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListTaxesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListWorkRequestErrorsRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListWorkRequestErrorsRequest.java index 0c17e89ef8d..c843b71abdf 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListWorkRequestLogsRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListWorkRequestLogsRequest.java index ad9b42a3029..492765fcab8 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListWorkRequestLogsRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListWorkRequestsRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListWorkRequestsRequest.java index b8392c70e32..ddfcfa2984c 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListWorkRequestsRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/SearchListingsRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/SearchListingsRequest.java index 871f9e43f2b..d9b23c8e902 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/SearchListingsRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/SearchListingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/UpdateAcceptedAgreementRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/UpdateAcceptedAgreementRequest.java index cafcf23bead..2c9cffb0bc8 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/UpdateAcceptedAgreementRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/UpdateAcceptedAgreementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/UpdatePublicationRequest.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/UpdatePublicationRequest.java index 5ed20364f98..129f8960c43 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/UpdatePublicationRequest.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/requests/UpdatePublicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.requests; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ChangePublicationCompartmentResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ChangePublicationCompartmentResponse.java index 9d5e35822dd..8c5486de47b 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ChangePublicationCompartmentResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ChangePublicationCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/CreateAcceptedAgreementResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/CreateAcceptedAgreementResponse.java index 44ca8fce06c..0c4bc4e43aa 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/CreateAcceptedAgreementResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/CreateAcceptedAgreementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/CreateMarketplaceExternalAttestedMetadataResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/CreateMarketplaceExternalAttestedMetadataResponse.java index 5ae5810dcf6..8cdb5db4269 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/CreateMarketplaceExternalAttestedMetadataResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/CreateMarketplaceExternalAttestedMetadataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/CreatePublicationResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/CreatePublicationResponse.java index 466880c7121..bcd6b141f6f 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/CreatePublicationResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/CreatePublicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/DeleteAcceptedAgreementResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/DeleteAcceptedAgreementResponse.java index 9db8869a10c..b7d6ecfb9d6 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/DeleteAcceptedAgreementResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/DeleteAcceptedAgreementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/DeletePublicationResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/DeletePublicationResponse.java index d2bfa083cad..5b7f7f7cd32 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/DeletePublicationResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/DeletePublicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ExportListingResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ExportListingResponse.java index 24eecaa190d..dd531c01afc 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ExportListingResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ExportListingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetAcceptedAgreementResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetAcceptedAgreementResponse.java index 4a493a9725c..9684001cae4 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetAcceptedAgreementResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetAcceptedAgreementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetAgreementResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetAgreementResponse.java index 25b37aee139..5e18f042c15 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetAgreementResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetAgreementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetLaunchEligibilityResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetLaunchEligibilityResponse.java index 3b1fa387b6a..63e1b8f8de8 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetLaunchEligibilityResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetLaunchEligibilityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetListingResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetListingResponse.java index 3d1df8a82f3..67f461f83b6 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetListingResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetListingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetPackageResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetPackageResponse.java index 8d14cad4e12..82484e9c5f3 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetPackageResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetPackageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetPublicationPackageResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetPublicationPackageResponse.java index 954c38620c5..4f06927f25d 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetPublicationPackageResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetPublicationPackageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetPublicationResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetPublicationResponse.java index ac7d760a590..6aa0942e879 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetPublicationResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetPublicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetThirdPartyPaidListingEligibilityResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetThirdPartyPaidListingEligibilityResponse.java index 790dedea093..6547f2ea9e0 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetThirdPartyPaidListingEligibilityResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetThirdPartyPaidListingEligibilityResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetWorkRequestResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetWorkRequestResponse.java index 94ab0e5414b..fc0c70bab6e 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetWorkRequestResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListAcceptedAgreementsResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListAcceptedAgreementsResponse.java index 028622db542..b8fc115546c 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListAcceptedAgreementsResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListAcceptedAgreementsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListAgreementsResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListAgreementsResponse.java index ef66903dea0..4ae21baffb7 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListAgreementsResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListAgreementsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListCategoriesResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListCategoriesResponse.java index 0ea587f51e2..10523f33e2a 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListCategoriesResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListCategoriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListListingsResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListListingsResponse.java index 3a08f3899b9..8929ab23a7e 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListListingsResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListListingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListMarketplaceMetadataPublicKeysResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListMarketplaceMetadataPublicKeysResponse.java index 0b860f2b122..6f4fc3bc459 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListMarketplaceMetadataPublicKeysResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListMarketplaceMetadataPublicKeysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListPackagesResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListPackagesResponse.java index 18d331124e2..f6d2ed67a50 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListPackagesResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListPackagesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListPublicationPackagesResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListPublicationPackagesResponse.java index 170f3bf1757..5a4e38debc3 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListPublicationPackagesResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListPublicationPackagesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListPublicationsResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListPublicationsResponse.java index 88304588fe1..dc4f366e9e7 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListPublicationsResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListPublicationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListPublishersResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListPublishersResponse.java index c26c1e61a0e..34a831c0db0 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListPublishersResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListPublishersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListReportTypesResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListReportTypesResponse.java index bc646658f64..0933d4c97b6 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListReportTypesResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListReportTypesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListReportsResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListReportsResponse.java index 52e02406ce1..cac95f9939c 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListReportsResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListReportsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListTaxesResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListTaxesResponse.java index b8a88594ba7..b4c2db10354 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListTaxesResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListTaxesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListWorkRequestErrorsResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListWorkRequestErrorsResponse.java index ab28d296138..5942b4059df 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListWorkRequestLogsResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListWorkRequestLogsResponse.java index 552fd37fdcb..a4a95f291bf 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListWorkRequestLogsResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListWorkRequestsResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListWorkRequestsResponse.java index df74ac11449..ae87983fc21 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListWorkRequestsResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/SearchListingsResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/SearchListingsResponse.java index 6cce9f6fa43..edfee138522 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/SearchListingsResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/SearchListingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/UpdateAcceptedAgreementResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/UpdateAcceptedAgreementResponse.java index 529fefc6633..1accc0b4d5b 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/UpdateAcceptedAgreementResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/UpdateAcceptedAgreementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/UpdatePublicationResponse.java b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/UpdatePublicationResponse.java index 71bde8144b7..673df23705c 100644 --- a/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/UpdatePublicationResponse.java +++ b/bmc-marketplace/src/main/java/com/oracle/bmc/marketplace/responses/UpdatePublicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplace.responses; diff --git a/bmc-marketplace/src/main/resources/com/oracle/bmc/marketplace/client.properties b/bmc-marketplace/src/main/resources/com/oracle/bmc/marketplace/client.properties index 9088e85753f..2e8976d0c65 100644 --- a/bmc-marketplace/src/main/resources/com/oracle/bmc/marketplace/client.properties +++ b/bmc-marketplace/src/main/resources/com/oracle/bmc/marketplace/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-marketplaceprivateoffer/pom.xml b/bmc-marketplaceprivateoffer/pom.xml index e658c2f3b5b..dce3a4f26f2 100644 --- a/bmc-marketplaceprivateoffer/pom.xml +++ b/bmc-marketplaceprivateoffer/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-marketplaceprivateoffer @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/Attachment.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/Attachment.java index 9e2bb96567a..bc589723f51 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/Attachment.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/Attachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/AttachmentAsync.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/AttachmentAsync.java index 2bf91779e15..2df2c71ac62 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/AttachmentAsync.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/AttachmentAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/AttachmentAsyncClient.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/AttachmentAsyncClient.java index 33438555171..5e57405432d 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/AttachmentAsyncClient.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/AttachmentAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/AttachmentClient.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/AttachmentClient.java index 527e7057c85..36e595b9f76 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/AttachmentClient.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/AttachmentClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/AttachmentPaginators.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/AttachmentPaginators.java index d845788d80e..68d45319878 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/AttachmentPaginators.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/AttachmentPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/AttachmentWaiters.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/AttachmentWaiters.java index 1ebd672dbf5..00ffb2ae11b 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/AttachmentWaiters.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/AttachmentWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/Offer.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/Offer.java index df1b688b86c..e51d73540a1 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/Offer.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/Offer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/OfferAsync.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/OfferAsync.java index 300d51c4c4c..7a3e3fad59c 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/OfferAsync.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/OfferAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/OfferAsyncClient.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/OfferAsyncClient.java index 965f6628662..f592bca7591 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/OfferAsyncClient.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/OfferAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/OfferClient.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/OfferClient.java index b4b874b61e6..a0cc7698c94 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/OfferClient.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/OfferClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/OfferPaginators.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/OfferPaginators.java index 30e94910a3a..4e33cae6c4c 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/OfferPaginators.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/OfferPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/OfferWaiters.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/OfferWaiters.java index e9dc117ce24..55e2163eb2b 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/OfferWaiters.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/OfferWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/Attachment.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/Attachment.java index 046390f37b1..e5479a359b3 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/Attachment.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/Attachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.model; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/AttachmentCollection.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/AttachmentCollection.java index 80c20695c7d..cc2df61479e 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/AttachmentCollection.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/AttachmentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.model; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/AttachmentSummary.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/AttachmentSummary.java index 93bafca9756..9e1e518f6d4 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/AttachmentSummary.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/AttachmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.model; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/BuyerInformation.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/BuyerInformation.java index c6cd5e55774..23901d13228 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/BuyerInformation.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/BuyerInformation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.model; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/Contact.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/Contact.java index 56b8554f5e7..7c1862f64b7 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/Contact.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/Contact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.model; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/CreateAttachmentDetails.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/CreateAttachmentDetails.java index 5775d2e2861..65186f53a1d 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/CreateAttachmentDetails.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/CreateAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.model; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/CreateOfferDetails.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/CreateOfferDetails.java index d9662dce9a3..a5309353282 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/CreateOfferDetails.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/CreateOfferDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.model; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/CustomField.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/CustomField.java index dbc4fc4b0ae..59a22c92cea 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/CustomField.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/CustomField.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.model; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/Offer.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/Offer.java index 0ac2171c5fe..b1d3226e8a4 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/Offer.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/Offer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.model; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/OfferCollection.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/OfferCollection.java index 2573febd6a6..7dd115ca4f2 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/OfferCollection.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/OfferCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.model; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/OfferInternalDetail.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/OfferInternalDetail.java index 105a49d2544..4008129115d 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/OfferInternalDetail.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/OfferInternalDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.model; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/OfferSummary.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/OfferSummary.java index 69edf9418e8..7aada5ff691 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/OfferSummary.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/OfferSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.model; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/PackageType.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/PackageType.java index 520a43aed69..57cfbef9361 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/PackageType.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/PackageType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.model; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/Pricing.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/Pricing.java index c105ccef886..e5b8bd3403c 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/Pricing.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/Pricing.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.model; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/PublisherSummary.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/PublisherSummary.java index a12b1849bcb..381206d8560 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/PublisherSummary.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/PublisherSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.model; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/ResourceBundle.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/ResourceBundle.java index 5cd3c6ed384..e60d7786f3f 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/ResourceBundle.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/ResourceBundle.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.model; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/SellerInformation.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/SellerInformation.java index 7a6357b98d5..223d6e91055 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/SellerInformation.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/SellerInformation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.model; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/SortOrder.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/SortOrder.java index 006f68260e4..2350d377992 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/SortOrder.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.model; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/UpdateOfferDetails.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/UpdateOfferDetails.java index fd34fc3a3f8..bd133c2e6a8 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/UpdateOfferDetails.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/UpdateOfferDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.model; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/UploadData.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/UploadData.java index edfeb437561..28674e6bc6f 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/UploadData.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/model/UploadData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.model; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/CreateAttachmentRequest.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/CreateAttachmentRequest.java index 7e311594cec..d63fc492b60 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/CreateAttachmentRequest.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/CreateAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.requests; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/CreateOfferRequest.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/CreateOfferRequest.java index b8bf17b16ff..957d57f4954 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/CreateOfferRequest.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/CreateOfferRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.requests; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/DeleteAttachmentRequest.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/DeleteAttachmentRequest.java index e0894eb62b3..9cae10d46d4 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/DeleteAttachmentRequest.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/DeleteAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.requests; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/DeleteOfferRequest.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/DeleteOfferRequest.java index 71ad9c2e467..3011d96adf8 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/DeleteOfferRequest.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/DeleteOfferRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.requests; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/GetAttachmentContentRequest.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/GetAttachmentContentRequest.java index ff3a445a5c3..532305c6120 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/GetAttachmentContentRequest.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/GetAttachmentContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.requests; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/GetAttachmentRequest.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/GetAttachmentRequest.java index a1ac4937dae..c52efef352a 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/GetAttachmentRequest.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/GetAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.requests; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/GetOfferInternalDetailRequest.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/GetOfferInternalDetailRequest.java index dcae9013162..49fa3c8354f 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/GetOfferInternalDetailRequest.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/GetOfferInternalDetailRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.requests; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/GetOfferRequest.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/GetOfferRequest.java index 9f62c788baf..00b5807f06a 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/GetOfferRequest.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/GetOfferRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.requests; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/ListAttachmentsRequest.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/ListAttachmentsRequest.java index 980dec369bb..b00870a994c 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/ListAttachmentsRequest.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/ListAttachmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.requests; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/ListOffersRequest.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/ListOffersRequest.java index 9f97ef9a604..64df0cf7743 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/ListOffersRequest.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/ListOffersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.requests; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/UpdateOfferRequest.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/UpdateOfferRequest.java index 561d1c2f7b4..0b9fd365a4b 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/UpdateOfferRequest.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/requests/UpdateOfferRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.requests; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/CreateAttachmentResponse.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/CreateAttachmentResponse.java index 1a10b1bad60..9f1a6c16e7d 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/CreateAttachmentResponse.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/CreateAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.responses; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/CreateOfferResponse.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/CreateOfferResponse.java index e71b1706662..6098efe2e94 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/CreateOfferResponse.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/CreateOfferResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.responses; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/DeleteAttachmentResponse.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/DeleteAttachmentResponse.java index 8ebce24579b..d128ceee542 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/DeleteAttachmentResponse.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/DeleteAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.responses; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/DeleteOfferResponse.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/DeleteOfferResponse.java index 408c0eeec90..c18956a5ef0 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/DeleteOfferResponse.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/DeleteOfferResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.responses; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/GetAttachmentContentResponse.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/GetAttachmentContentResponse.java index dba2af8757e..a39faf0af80 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/GetAttachmentContentResponse.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/GetAttachmentContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.responses; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/GetAttachmentResponse.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/GetAttachmentResponse.java index 48611fab957..5ffebab37f2 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/GetAttachmentResponse.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/GetAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.responses; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/GetOfferInternalDetailResponse.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/GetOfferInternalDetailResponse.java index d15af929ac9..64e8ca297ee 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/GetOfferInternalDetailResponse.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/GetOfferInternalDetailResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.responses; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/GetOfferResponse.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/GetOfferResponse.java index d7791d694f3..a2c6e73fa8a 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/GetOfferResponse.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/GetOfferResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.responses; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/ListAttachmentsResponse.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/ListAttachmentsResponse.java index 768860ab463..947b8053557 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/ListAttachmentsResponse.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/ListAttachmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.responses; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/ListOffersResponse.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/ListOffersResponse.java index 744e387d0b9..53fa8e0b1d2 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/ListOffersResponse.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/ListOffersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.responses; diff --git a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/UpdateOfferResponse.java b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/UpdateOfferResponse.java index a4c60833c86..569e72dc2af 100644 --- a/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/UpdateOfferResponse.java +++ b/bmc-marketplaceprivateoffer/src/main/java/com/oracle/bmc/marketplaceprivateoffer/responses/UpdateOfferResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplaceprivateoffer.responses; diff --git a/bmc-marketplaceprivateoffer/src/main/resources/com/oracle/bmc/marketplaceprivateoffer/client.properties b/bmc-marketplaceprivateoffer/src/main/resources/com/oracle/bmc/marketplaceprivateoffer/client.properties index b3604c9c4dc..be42e1f5673 100644 --- a/bmc-marketplaceprivateoffer/src/main/resources/com/oracle/bmc/marketplaceprivateoffer/client.properties +++ b/bmc-marketplaceprivateoffer/src/main/resources/com/oracle/bmc/marketplaceprivateoffer/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-marketplacepublisher/pom.xml b/bmc-marketplacepublisher/pom.xml index 26b28bb7661..ac57420f334 100644 --- a/bmc-marketplacepublisher/pom.xml +++ b/bmc-marketplacepublisher/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-marketplacepublisher @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisher.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisher.java index 43be3e02607..f458947aadb 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisher.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisher.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisherAsync.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisherAsync.java index 360f822b4b5..e9e05e6bfae 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisherAsync.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisherAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisherAsyncClient.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisherAsyncClient.java index 42ee6d9b4d9..72047db21ae 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisherAsyncClient.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisherAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisherClient.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisherClient.java index 773fc2f7d0d..08d9d45fbf9 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisherClient.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisherClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisherPaginators.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisherPaginators.java index f64c68c4b5b..1e6181838a4 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisherPaginators.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisherPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisherWaiters.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisherWaiters.java index 380f86c185b..6005e1a1591 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisherWaiters.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/MarketplacePublisherWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ActionType.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ActionType.java index a382d6b1bb6..3d6c02deed7 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ActionType.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/AdditionalFilter.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/AdditionalFilter.java index 9018c42f06d..99ac86ebd6b 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/AdditionalFilter.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/AdditionalFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/AdditionalInfo.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/AdditionalInfo.java index de302d69581..c0ced760674 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/AdditionalInfo.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/AdditionalInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Artifact.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Artifact.java index a56dc82ceea..47a4ff06182 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Artifact.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Artifact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ArtifactCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ArtifactCollection.java index 804e426f9f2..44247220adf 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ArtifactCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ArtifactCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ArtifactSummary.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ArtifactSummary.java index 43be25f7e99..41853417934 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ArtifactSummary.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ArtifactSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ArtifactTypeEnum.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ArtifactTypeEnum.java index 650c6ed8c25..30d68017070 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ArtifactTypeEnum.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ArtifactTypeEnum.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/AvailableServiceCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/AvailableServiceCollection.java index c3c187b64be..1996f11d8a1 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/AvailableServiceCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/AvailableServiceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/AvailableServiceSummary.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/AvailableServiceSummary.java index 5ff288c4d5f..46d99df538a 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/AvailableServiceSummary.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/AvailableServiceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Category.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Category.java index a7c9103b931..46a0d31f1c5 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Category.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Category.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CategoryCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CategoryCollection.java index 97895ee0b92..3a6ef3c3033 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CategoryCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CategoryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CategorySummary.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CategorySummary.java index 1e6cf7f4acc..4482cde0fbc 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CategorySummary.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CategorySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ChangeArtifactCompartmentDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ChangeArtifactCompartmentDetails.java index 4604533c54a..b8c84590128 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ChangeArtifactCompartmentDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ChangeArtifactCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ChangeListingCompartmentDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ChangeListingCompartmentDetails.java index a34f6c50dc0..d15aded9642 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ChangeListingCompartmentDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ChangeListingCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ChangeTermCompartmentDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ChangeTermCompartmentDetails.java index d663cf341b6..334f15a9cd3 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ChangeTermCompartmentDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ChangeTermCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ContainerImageArtifact.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ContainerImageArtifact.java index 13038b494c7..2ff83e13161 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ContainerImageArtifact.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ContainerImageArtifact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ContainerImageDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ContainerImageDetails.java index 993895c4b91..2f7e1b3bd08 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ContainerImageDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ContainerImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ContainerPackage.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ContainerPackage.java index c171dd5556c..0e9a0d77d9a 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ContainerPackage.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ContainerPackage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateArtifactDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateArtifactDetails.java index 30e736b793f..ac914614799 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateArtifactDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateArtifactDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateContainerImageArtifactDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateContainerImageArtifactDetails.java index 80fa5a6885c..9e40d842344 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateContainerImageArtifactDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateContainerImageArtifactDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateContainerImageDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateContainerImageDetails.java index 7e7ffae6437..a5d5467ff97 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateContainerImageDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateContainerImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateCustomerSuccessAttachment.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateCustomerSuccessAttachment.java index bc1e4bb94c1..9bf4444096a 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateCustomerSuccessAttachment.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateCustomerSuccessAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateHelmChartImageDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateHelmChartImageDetails.java index 1ae72d041ee..4f5793a7bfe 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateHelmChartImageDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateHelmChartImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateKubernetesImageArtifactDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateKubernetesImageArtifactDetails.java index f9716a06342..66dc6585dbd 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateKubernetesImageArtifactDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateKubernetesImageArtifactDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateLeadGenListingRevisionDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateLeadGenListingRevisionDetails.java index 21a4e9f5c90..e43c2a9a12a 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateLeadGenListingRevisionDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateLeadGenListingRevisionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateListingDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateListingDetails.java index 0617b7bf023..a5457d0ebe4 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateListingDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateListingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateListingRevisionAttachmentDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateListingRevisionAttachmentDetails.java index a3eb388e06a..6d83c14546a 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateListingRevisionAttachmentDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateListingRevisionAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateListingRevisionDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateListingRevisionDetails.java index e3abfeba4a2..112e4c67199 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateListingRevisionDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateListingRevisionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateListingRevisionNoteDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateListingRevisionNoteDetails.java index 524369d1ea4..ef042db0eb8 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateListingRevisionNoteDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateListingRevisionNoteDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateListingRevisionPackageDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateListingRevisionPackageDetails.java index c98dd0f9b7b..1c3f5652331 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateListingRevisionPackageDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateListingRevisionPackageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateMachineImageArtifactDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateMachineImageArtifactDetails.java index 9e940591314..788bd5a2757 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateMachineImageArtifactDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateMachineImageArtifactDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateMachineImageDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateMachineImageDetails.java index 0542b5fc805..1c5d6ab89fe 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateMachineImageDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateMachineImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateOciListingRevisionDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateOciListingRevisionDetails.java index c22885d43b5..ab99fe61acf 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateOciListingRevisionDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateOciListingRevisionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateRelatedDocumentAttachmentDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateRelatedDocumentAttachmentDetails.java index 40f5938173a..fb8f4162472 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateRelatedDocumentAttachmentDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateRelatedDocumentAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateReviewSupportDocumentAttachment.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateReviewSupportDocumentAttachment.java index 563a5f0c9fd..79c0a41db38 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateReviewSupportDocumentAttachment.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateReviewSupportDocumentAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateScreenShotAttachmentDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateScreenShotAttachmentDetails.java index f33d7de8ef7..eb2107ff95c 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateScreenShotAttachmentDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateScreenShotAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateServiceListingRevisionDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateServiceListingRevisionDetails.java index 4f21dc496ef..bdaa4bf0b30 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateServiceListingRevisionDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateServiceListingRevisionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateStackArtifactDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateStackArtifactDetails.java index 3c1accd1c9c..df0aeaa0889 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateStackArtifactDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateStackArtifactDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateStackDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateStackDetails.java index 06cdc82cbe8..c390ccadc39 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateStackDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateStackDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateSupportedServiceAttachment.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateSupportedServiceAttachment.java index b091ebc1c18..13876624e42 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateSupportedServiceAttachment.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateSupportedServiceAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateTermDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateTermDetails.java index 65e94203e45..39c7169c0c0 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateTermDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateTermDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateVideoAttachmentDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateVideoAttachmentDetails.java index 278bdddcd91..a8adccded92 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateVideoAttachmentDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateVideoAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateVideoDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateVideoDetails.java index 401c490ae08..9e25cbd3338 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateVideoDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CreateVideoDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CustomerInstanceReportRecord.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CustomerInstanceReportRecord.java index bf8dad879e8..0a6fc2d50e4 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CustomerInstanceReportRecord.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CustomerInstanceReportRecord.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CustomerInstanceReportRecordCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CustomerInstanceReportRecordCollection.java index ef8ad9ba3d2..8563c619fe5 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CustomerInstanceReportRecordCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CustomerInstanceReportRecordCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CustomerSuccessAttachment.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CustomerSuccessAttachment.java index a951a12d26c..6f3e1f1a11b 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CustomerSuccessAttachment.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/CustomerSuccessAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/DisbursementReportRecord.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/DisbursementReportRecord.java index e2c2fbd6233..64eec8a0f69 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/DisbursementReportRecord.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/DisbursementReportRecord.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/DisbursementReportRecordCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/DisbursementReportRecordCollection.java index efeac3e7e08..ab6e6db2033 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/DisbursementReportRecordCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/DisbursementReportRecordCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/DownloadInfo.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/DownloadInfo.java index 33c426547ed..a4a7913ea53 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/DownloadInfo.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/DownloadInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/FilterProperty.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/FilterProperty.java index 1e6eb667105..d20f7f8bb6b 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/FilterProperty.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/FilterProperty.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/GeoLocation.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/GeoLocation.java index ffe4db11b0b..cdd18b78f84 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/GeoLocation.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/GeoLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/HelmChartImageDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/HelmChartImageDetails.java index f179ff42a59..a99a3070a2a 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/HelmChartImageDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/HelmChartImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/HelmChartPackage.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/HelmChartPackage.java index 873c555878e..779bf330955 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/HelmChartPackage.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/HelmChartPackage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ImageMemoryConstraints.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ImageMemoryConstraints.java index 0eaca047d3f..9956ab68d91 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ImageMemoryConstraints.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ImageMemoryConstraints.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ImageOcpuConstraints.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ImageOcpuConstraints.java index 1106036d684..c1aa9579062 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ImageOcpuConstraints.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ImageOcpuConstraints.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ImageShapeCompatibility.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ImageShapeCompatibility.java index e76c4f39930..1411584085f 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ImageShapeCompatibility.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ImageShapeCompatibility.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/KubernetesImageArtifact.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/KubernetesImageArtifact.java index 96d073dbf09..48c985d6ece 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/KubernetesImageArtifact.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/KubernetesImageArtifact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/LanguageItem.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/LanguageItem.java index 4a49c8ce75c..f8e6f9cb51a 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/LanguageItem.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/LanguageItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Lead.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Lead.java index 9b39861c5d3..5b7fd3c4421 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Lead.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Lead.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/LeadCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/LeadCollection.java index ff2c9d2853e..afc7ec555dc 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/LeadCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/LeadCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/LeadGenListingRevision.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/LeadGenListingRevision.java index 29d7b014e8a..1e3b34db3d5 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/LeadGenListingRevision.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/LeadGenListingRevision.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/LeadSummary.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/LeadSummary.java index d0d2b0c30e2..96bcfeb8915 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/LeadSummary.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/LeadSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Listing.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Listing.java index eac7531b9f4..e00766cd8f2 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Listing.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Listing.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingCollection.java index fe6988bc41e..37827a792b2 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingMeter.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingMeter.java index 375a406b380..c9973af442b 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingMeter.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingMeter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingPart.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingPart.java index 54d3833dc29..6f6240710c0 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingPart.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingPart.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingProduct.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingProduct.java index 8d9b2918664..3e4251c295b 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingProduct.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingProduct.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingProductAdditionalFilter.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingProductAdditionalFilter.java index b9365d03e8b..d82485ca784 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingProductAdditionalFilter.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingProductAdditionalFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevision.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevision.java index ffa681169fb..146e66296ec 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevision.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevision.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionAttachment.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionAttachment.java index 12bc51231f5..f5d3a76e89c 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionAttachment.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionAttachmentCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionAttachmentCollection.java index 5e403f79c0e..65d19f4f080 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionAttachmentCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionAttachmentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionAttachmentSummary.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionAttachmentSummary.java index 6d1a10eaab8..75e5284cd64 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionAttachmentSummary.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionAttachmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionCollection.java index dd4b1527a1c..8f103c56c59 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionIconAttachment.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionIconAttachment.java index 03442345cbf..50a3f9576ef 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionIconAttachment.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionIconAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionNote.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionNote.java index 359a7c7f6ef..ae6f8503da9 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionNote.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionNote.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionNoteCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionNoteCollection.java index 9c98b9b10c2..c21b089b025 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionNoteCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionNoteCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionNoteSummary.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionNoteSummary.java index 834d7c0ec91..2508b70fe11 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionNoteSummary.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionNoteSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionPackage.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionPackage.java index caf9dec1c06..19cf115500d 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionPackage.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionPackage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionPackageCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionPackageCollection.java index 3aa74d4eabc..d57fad2cb14 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionPackageCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionPackageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionPackageSummary.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionPackageSummary.java index 9e8f6690d95..ad8f072632f 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionPackageSummary.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionPackageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionSummary.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionSummary.java index 34484422535..866a187dcb6 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionSummary.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingRevisionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingSummary.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingSummary.java index a294036646d..31f8e099e59 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingSummary.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingType.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingType.java index e8b59abbb94..45acf5f0c3a 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingType.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ListingType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MachineImageArtifact.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MachineImageArtifact.java index e51d5397240..5cb535d073f 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MachineImageArtifact.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MachineImageArtifact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MachineImageDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MachineImageDetails.java index 6e47f291441..0c39654fdcc 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MachineImageDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MachineImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MachineImagePackage.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MachineImagePackage.java index 0f78f698f4e..eeed89ec1ea 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MachineImagePackage.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MachineImagePackage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MachineImagePackageDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MachineImagePackageDetails.java index d2ae2e3c126..a16d0fed7af 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MachineImagePackageDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MachineImagePackageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Market.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Market.java index 437bd5d5ce7..2f76a14625c 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Market.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Market.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MarketCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MarketCollection.java index 2e0271c7da9..9cd6035573c 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MarketCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MarketCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MarketSummary.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MarketSummary.java index d26f574f0ac..79082a42879 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MarketSummary.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MarketSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MeteredPricingPlan.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MeteredPricingPlan.java index 56c64705999..ccc30b42ed7 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MeteredPricingPlan.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/MeteredPricingPlan.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/NamedLink.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/NamedLink.java index 6e8bee6cb8c..e87b0244c27 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/NamedLink.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/NamedLink.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/OciListingRevision.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/OciListingRevision.java index c3a4dab6122..94da051259e 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/OciListingRevision.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/OciListingRevision.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/OperationStatus.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/OperationStatus.java index f319e218a80..1e92b50337e 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/OperationStatus.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/OperationType.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/OperationType.java index 252d4a5ba62..8f04122c13b 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/OperationType.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/OpnMembership.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/OpnMembership.java index b237349e366..f9deb82f367 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/OpnMembership.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/OpnMembership.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PackageType.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PackageType.java index 72a266fcd61..2478ac266dc 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PackageType.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PackageType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PricingPlan.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PricingPlan.java index ba094e14722..cf67757c06d 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PricingPlan.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PricingPlan.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PricingRate.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PricingRate.java index 07f01946fa9..41a398fb245 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PricingRate.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PricingRate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PrivateOfferAccountDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PrivateOfferAccountDetails.java index 1f473e801fb..46a391e7384 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PrivateOfferAccountDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PrivateOfferAccountDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Product.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Product.java index 5de5dd067a0..00827e8fc63 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Product.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Product.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ProductCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ProductCollection.java index efc09cbf8b7..bbeedb35146 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ProductCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ProductCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ProductSummary.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ProductSummary.java index 2700e0eff11..50b6d5bdcab 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ProductSummary.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ProductSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PublicationStatus.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PublicationStatus.java index dae6142ab06..11911eb9f98 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PublicationStatus.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PublicationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PublishListingRevisionAsPrivateDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PublishListingRevisionAsPrivateDetails.java index 818351d99d4..e87df0965a6 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PublishListingRevisionAsPrivateDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PublishListingRevisionAsPrivateDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Publisher.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Publisher.java index d84d07da978..7acba1edb19 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Publisher.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Publisher.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PublisherCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PublisherCollection.java index 0fa68a31748..05839b56e65 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PublisherCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PublisherCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PublisherSummary.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PublisherSummary.java index 9be539a9827..24c0fac0413 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PublisherSummary.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/PublisherSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/RelatedDocumentAttachment.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/RelatedDocumentAttachment.java index f8747ec2dee..77d3f5e6ffd 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/RelatedDocumentAttachment.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/RelatedDocumentAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ReviewSupportDocumentAttachment.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ReviewSupportDocumentAttachment.java index ad88d9653b6..7e0ff508223 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ReviewSupportDocumentAttachment.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ReviewSupportDocumentAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SaaSPricingPlan.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SaaSPricingPlan.java index a7a11378844..81bb4bccf03 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SaaSPricingPlan.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SaaSPricingPlan.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ScreenShotAttachment.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ScreenShotAttachment.java index 778a46542b1..a37942f7f04 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ScreenShotAttachment.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ScreenShotAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ServiceListingRevision.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ServiceListingRevision.java index 3d9921a7f2b..3dbea91fa03 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ServiceListingRevision.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ServiceListingRevision.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ShapeMemoryOptions.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ShapeMemoryOptions.java index 705699b7f34..57186020b62 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ShapeMemoryOptions.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ShapeMemoryOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ShapeOcpuOptions.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ShapeOcpuOptions.java index 0fc346786b8..af3f0cfd0bc 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ShapeOcpuOptions.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ShapeOcpuOptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SortOrder.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SortOrder.java index 4284f5b4d2d..4a745bd7024 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SortOrder.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/StackArtifact.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/StackArtifact.java index 38a084d9e22..1e4195b5996 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/StackArtifact.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/StackArtifact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/StackArtifactDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/StackArtifactDetails.java index c5a866d71c5..2d7c6884c22 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/StackArtifactDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/StackArtifactDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/StackPackage.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/StackPackage.java index 77c47c1ffc1..c62347dd1be 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/StackPackage.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/StackPackage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SubmitListingRevisionForReviewDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SubmitListingRevisionForReviewDetails.java index 3963ab3ffe9..43b55762229 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SubmitListingRevisionForReviewDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SubmitListingRevisionForReviewDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportContact.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportContact.java index 4174b66a20d..ebe1ed3aca9 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportContact.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportContact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportDoc.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportDoc.java index 29dc5d884db..c64a4123a6e 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportDoc.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportDoc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportDocCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportDocCollection.java index 2adfbdabc7d..4db2d29a2e8 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportDocCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportDocCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportDocSummary.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportDocSummary.java index be6d9cfc4bf..8b54499885e 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportDocSummary.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportDocSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportedCurrencyCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportedCurrencyCollection.java index e07d44a6e1b..aa1d3d18103 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportedCurrencyCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportedCurrencyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportedCurrencySummary.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportedCurrencySummary.java index 4af3d06f4fd..bc10307fbcf 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportedCurrencySummary.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportedCurrencySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportedServiceAttachment.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportedServiceAttachment.java index 88badf43672..646ee16cc3d 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportedServiceAttachment.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportedServiceAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportedShapeCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportedShapeCollection.java index 534b134dab0..77f3bde32c5 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportedShapeCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportedShapeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportedShapeSummary.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportedShapeSummary.java index d4b190ca2f0..e35bb74abf0 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportedShapeSummary.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/SupportedShapeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Term.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Term.java index 02c90f93e18..c1c507c025b 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Term.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/Term.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermCollection.java index ad8293d2f7e..5cf45e08d84 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermSummary.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermSummary.java index d0c2c2ce88c..9174bce363b 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermSummary.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermVersion.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermVersion.java index 8e041a613fb..ad2bdafd33f 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermVersion.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermVersionAttachment.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermVersionAttachment.java index 8805d17ae45..5989a7cc63a 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermVersionAttachment.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermVersionAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermVersionCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermVersionCollection.java index a03c31d1cdf..4c1f5b81ef3 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermVersionCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermVersionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermVersionSummary.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermVersionSummary.java index 2a3d2148b29..a9986f449a5 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermVersionSummary.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TermVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TrainedProfessionals.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TrainedProfessionals.java index 585b7737418..1183461f408 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TrainedProfessionals.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/TrainedProfessionals.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateArtifactDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateArtifactDetails.java index 9827e50e3f4..4973fa9d1d1 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateArtifactDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateArtifactDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateContainerImageArtifactDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateContainerImageArtifactDetails.java index a8b7c31f598..6320009a26a 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateContainerImageArtifactDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateContainerImageArtifactDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateContainerImageDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateContainerImageDetails.java index 1c19e15a7b3..6d7954b8343 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateContainerImageDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateContainerImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateCustomerSuccessAttachment.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateCustomerSuccessAttachment.java index d6790c82a45..4c5c1202ef5 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateCustomerSuccessAttachment.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateCustomerSuccessAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateHelmChartImageDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateHelmChartImageDetails.java index 91dae5be7d3..8c56643fefb 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateHelmChartImageDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateHelmChartImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateKubernetesImageArtifactDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateKubernetesImageArtifactDetails.java index 908ff2d2ac2..5f1bdfa8252 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateKubernetesImageArtifactDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateKubernetesImageArtifactDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateLeadGenListingRevisionDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateLeadGenListingRevisionDetails.java index b1edf9ab727..54f1f399402 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateLeadGenListingRevisionDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateLeadGenListingRevisionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateListingDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateListingDetails.java index d60cb1e8590..9c9ef69b5fa 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateListingDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateListingDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateListingRevisionAttachmentDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateListingRevisionAttachmentDetails.java index 9bc1d9ed70f..26ae479e60a 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateListingRevisionAttachmentDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateListingRevisionAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateListingRevisionDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateListingRevisionDetails.java index 11c006992f2..86dfe8b3024 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateListingRevisionDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateListingRevisionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateListingRevisionNoteDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateListingRevisionNoteDetails.java index 652565b0a24..2a21e9650cf 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateListingRevisionNoteDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateListingRevisionNoteDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateListingRevisionPackageDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateListingRevisionPackageDetails.java index 09455f50779..99bfa30bd4d 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateListingRevisionPackageDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateListingRevisionPackageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateMachineImageArtifactDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateMachineImageArtifactDetails.java index c4bd373482e..ae84532e2cf 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateMachineImageArtifactDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateMachineImageArtifactDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateMachineImageDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateMachineImageDetails.java index 170aba40128..eabb462b8ba 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateMachineImageDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateMachineImageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateOciListingRevisionDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateOciListingRevisionDetails.java index dce02500fc8..dac3a711e85 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateOciListingRevisionDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateOciListingRevisionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateRelatedDocumentAttachmentDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateRelatedDocumentAttachmentDetails.java index 976c01cafb9..c114b4cf577 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateRelatedDocumentAttachmentDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateRelatedDocumentAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateReviewSupportDocumentAttachment.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateReviewSupportDocumentAttachment.java index 95cd172ac31..26944a93d6b 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateReviewSupportDocumentAttachment.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateReviewSupportDocumentAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateScreenShotAttachmentDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateScreenShotAttachmentDetails.java index a41c448ea1a..0fc13d545e0 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateScreenShotAttachmentDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateScreenShotAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateServiceListingRevisionDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateServiceListingRevisionDetails.java index 98280517398..a4fef34298b 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateServiceListingRevisionDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateServiceListingRevisionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateStackArtifactDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateStackArtifactDetails.java index 1851345ca1a..a6efad9f4bc 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateStackArtifactDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateStackArtifactDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateStackDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateStackDetails.java index eaedb515f80..49ad9313d12 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateStackDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateStackDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateSupportedServiceAttachment.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateSupportedServiceAttachment.java index fe87952d384..40dc0ccb299 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateSupportedServiceAttachment.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateSupportedServiceAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateTermDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateTermDetails.java index 8ca210ff402..d21f7fbf2b8 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateTermDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateTermDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateTermVersionDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateTermVersionDetails.java index cf7c622afa7..f6847710861 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateTermVersionDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateTermVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateVideoAttachmentDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateVideoAttachmentDetails.java index 2b318c472d2..7d9a12db2b5 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateVideoAttachmentDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UpdateVideoAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UploadData.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UploadData.java index fc9de3e2e8d..138e57afced 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UploadData.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/UploadData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ValidationStatus.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ValidationStatus.java index 81ac73d1e44..0f916132346 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ValidationStatus.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/ValidationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/VersionDetails.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/VersionDetails.java index 22387a16039..21952d5d3f7 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/VersionDetails.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/VersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/VideoAttachment.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/VideoAttachment.java index 60e71daad75..3a30a28d2c4 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/VideoAttachment.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/VideoAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequest.java index d8ef0448f91..72258ba2d17 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestError.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestError.java index f59578029bf..6b496b3d20f 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestError.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestErrorCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestErrorCollection.java index 5069af59b8e..150e2d5c999 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestErrorCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestLogEntry.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestLogEntry.java index 915f3451484..d6e7e0dbc7d 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestLogEntry.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestLogEntryCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestLogEntryCollection.java index 715f028db84..61a79f102ea 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestLogEntryCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestResource.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestResource.java index 97e08e80f2a..872a2736ac2 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestResource.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestResourceMetadataKey.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestResourceMetadataKey.java index 32998b1841f..ef3abd5520a 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestResourceMetadataKey.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestSummary.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestSummary.java index 2d97d4317a0..b962f939c4f 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestSummary.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestSummaryCollection.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestSummaryCollection.java index b080f00ee9f..893300786a8 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestSummaryCollection.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.model; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ActivateTermVersionRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ActivateTermVersionRequest.java index 56de4b29fc5..dc3f825c9c7 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ActivateTermVersionRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ActivateTermVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CancelWorkRequestRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CancelWorkRequestRequest.java index b9f61e07520..124782f511b 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CancelWorkRequestRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CascadingDeleteListingRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CascadingDeleteListingRequest.java index 855c7c26b32..8fbdbf8ef22 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CascadingDeleteListingRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CascadingDeleteListingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CascadingDeleteListingRevisionRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CascadingDeleteListingRevisionRequest.java index b097f09920a..076e47962df 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CascadingDeleteListingRevisionRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CascadingDeleteListingRevisionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ChangeArtifactCompartmentRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ChangeArtifactCompartmentRequest.java index c31b9bf07ba..ca557ba9c9b 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ChangeArtifactCompartmentRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ChangeArtifactCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ChangeListingCompartmentRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ChangeListingCompartmentRequest.java index 701ad39b77a..adf14fded0c 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ChangeListingCompartmentRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ChangeListingCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ChangeListingRevisionToNewStatusRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ChangeListingRevisionToNewStatusRequest.java index eea318aab88..1e1e3bc32e5 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ChangeListingRevisionToNewStatusRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ChangeListingRevisionToNewStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ChangeTermCompartmentRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ChangeTermCompartmentRequest.java index fca17e28a04..3bd7b203a34 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ChangeTermCompartmentRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ChangeTermCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CloneListingRevisionRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CloneListingRevisionRequest.java index ea3e3191a8a..3edda449ff6 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CloneListingRevisionRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CloneListingRevisionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateArtifactRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateArtifactRequest.java index c4ccdb54e6e..0edc31893be 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateArtifactRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateListingRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateListingRequest.java index 8d6a63d85cc..48f48bccc2f 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateListingRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateListingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateListingRevisionAttachmentRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateListingRevisionAttachmentRequest.java index 15c451590aa..dc2781ade49 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateListingRevisionAttachmentRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateListingRevisionAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateListingRevisionNoteRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateListingRevisionNoteRequest.java index 08a0b7f0046..ce7fac080a1 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateListingRevisionNoteRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateListingRevisionNoteRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateListingRevisionPackageRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateListingRevisionPackageRequest.java index f7b234a849d..b6941c30b41 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateListingRevisionPackageRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateListingRevisionPackageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateListingRevisionRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateListingRevisionRequest.java index ba9ee2980dd..cdd1a75204b 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateListingRevisionRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateListingRevisionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateTermRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateTermRequest.java index 54b97b6228a..4c2e67b4465 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateTermRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateTermRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateTermVersionRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateTermVersionRequest.java index ccd51c400ef..025b92b9bc6 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateTermVersionRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/CreateTermVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteArtifactRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteArtifactRequest.java index 6de9b6c7c15..fc54f2a7bee 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteArtifactRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteListingRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteListingRequest.java index 90c9645928a..440d1a35746 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteListingRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteListingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteListingRevisionAttachmentRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteListingRevisionAttachmentRequest.java index afd0ebf382f..ca1540ad0f7 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteListingRevisionAttachmentRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteListingRevisionAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteListingRevisionNoteRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteListingRevisionNoteRequest.java index 8f4c4a6a383..7aa2fe38e29 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteListingRevisionNoteRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteListingRevisionNoteRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteListingRevisionPackageRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteListingRevisionPackageRequest.java index e3bb4b90f36..4906c1de74c 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteListingRevisionPackageRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteListingRevisionPackageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteListingRevisionRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteListingRevisionRequest.java index 5f421f161a2..8945e40918c 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteListingRevisionRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteListingRevisionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteTermRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteTermRequest.java index 8925bf5cde3..1a5921c68f4 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteTermRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteTermRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteTermVersionRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteTermVersionRequest.java index 1b0bfbd80bd..130910eeeb8 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteTermVersionRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/DeleteTermVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetArtifactRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetArtifactRequest.java index 4b36c8d8b56..7cbb0a3dfd1 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetArtifactRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetCategoryRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetCategoryRequest.java index 63cdaa5955e..135652bb972 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetCategoryRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetCategoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetLeadRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetLeadRequest.java index f8d68fed250..0bdc7be7c34 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetLeadRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetLeadRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRequest.java index 0f6877b210f..284a7100c0a 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionAttachmentContentRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionAttachmentContentRequest.java index 9562a94a627..ad8422e5a80 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionAttachmentContentRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionAttachmentContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionAttachmentRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionAttachmentRequest.java index 4ef67e2357b..2002f51c65a 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionAttachmentRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionIconContentRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionIconContentRequest.java index 725d781ac0d..1ddc6d55d33 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionIconContentRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionIconContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionNoteRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionNoteRequest.java index 0cb45264727..2f5331aab43 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionNoteRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionNoteRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionPackageRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionPackageRequest.java index d00c82bb72d..7f5d3006a69 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionPackageRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionPackageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionRequest.java index 8a0e1bdcac1..e6d99a8c29d 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetListingRevisionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetMarketRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetMarketRequest.java index 36ef2ef0bf5..74c4c10c335 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetMarketRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetMarketRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetProductRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetProductRequest.java index e1367f7c9bf..2c17dc9873d 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetProductRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetProductRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetPublisherRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetPublisherRequest.java index 8c32d489871..ca76d61e26f 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetPublisherRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetPublisherRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetSupportDocContentRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetSupportDocContentRequest.java index e10fbaba338..b9ca696f9d7 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetSupportDocContentRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetSupportDocContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetSupportDocRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetSupportDocRequest.java index 4ab4291371f..abd9baca992 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetSupportDocRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetSupportDocRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetTermRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetTermRequest.java index 535e2e801ee..9e32712cace 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetTermRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetTermRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetTermVersionContentRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetTermVersionContentRequest.java index 2380562ff0d..cb8fedaa57e 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetTermVersionContentRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetTermVersionContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetTermVersionRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetTermVersionRequest.java index 5e7ca6ea7fb..3bf718b2929 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetTermVersionRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetTermVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetWorkRequestRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetWorkRequestRequest.java index 30dedf7379a..016abc2f403 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetWorkRequestRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListArtifactsRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListArtifactsRequest.java index 1ed961c1fbf..f0953218a8a 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListArtifactsRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListArtifactsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListAvailableServicesRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListAvailableServicesRequest.java index 70e87236989..761a6508d61 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListAvailableServicesRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListAvailableServicesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListCategoriesRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListCategoriesRequest.java index 86478ae6c2b..2ef3188fda6 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListCategoriesRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListCategoriesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListCustomerInstanceReportRecordsRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListCustomerInstanceReportRecordsRequest.java index ecf7c5a722b..e8f707ba0ae 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListCustomerInstanceReportRecordsRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListCustomerInstanceReportRecordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListDisbursementReportRecordsRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListDisbursementReportRecordsRequest.java index 8c1c91bc4b1..7f2b35ed752 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListDisbursementReportRecordsRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListDisbursementReportRecordsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListLeadsRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListLeadsRequest.java index ab25c678e40..8f3da987463 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListLeadsRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListLeadsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListListingRevisionAttachmentsRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListListingRevisionAttachmentsRequest.java index 86ef1133efa..326ea9cfbe0 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListListingRevisionAttachmentsRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListListingRevisionAttachmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListListingRevisionNotesRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListListingRevisionNotesRequest.java index ea6b1d7af9d..0617244f40b 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListListingRevisionNotesRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListListingRevisionNotesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListListingRevisionPackagesRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListListingRevisionPackagesRequest.java index e77d2b5a2b4..9b1115f6a28 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListListingRevisionPackagesRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListListingRevisionPackagesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListListingRevisionsRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListListingRevisionsRequest.java index b321a419ce1..8852e6b91a5 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListListingRevisionsRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListListingRevisionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListListingsRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListListingsRequest.java index a3deba3a5ba..709688e65ec 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListListingsRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListListingsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListMarketsRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListMarketsRequest.java index 4d7c9a89f04..5e06415f666 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListMarketsRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListMarketsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListProductsRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListProductsRequest.java index 4e009c21449..1626f97d2cc 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListProductsRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListProductsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListPublishersRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListPublishersRequest.java index 3a6d86848d1..ab06cb5b757 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListPublishersRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListPublishersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListSupportDocsRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListSupportDocsRequest.java index 5b4ac87ccf2..a987c4b8b36 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListSupportDocsRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListSupportDocsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListSupportedCurrenciesRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListSupportedCurrenciesRequest.java index ce549ca680f..48118b4cee7 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListSupportedCurrenciesRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListSupportedCurrenciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListSupportedShapesRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListSupportedShapesRequest.java index 7c326371e84..1fd53a8e678 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListSupportedShapesRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListSupportedShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListTermVersionsRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListTermVersionsRequest.java index a67c8d4f5b7..4882881f424 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListTermVersionsRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListTermVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListTermsRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListTermsRequest.java index 1b177058eca..22533ddfa19 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListTermsRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListTermsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListWorkRequestErrorsRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListWorkRequestErrorsRequest.java index 7fa11e398e2..e15649783b5 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListWorkRequestLogsRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListWorkRequestLogsRequest.java index 3f4a0534dd1..bde5fa3ef7f 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListWorkRequestLogsRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListWorkRequestsRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListWorkRequestsRequest.java index 88d1959a9e1..b465cb50018 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListWorkRequestsRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/MarkListingRevisionPackageAsDefaultRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/MarkListingRevisionPackageAsDefaultRequest.java index 3f3639537e0..6cab4b05b8f 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/MarkListingRevisionPackageAsDefaultRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/MarkListingRevisionPackageAsDefaultRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/PublishListingRevisionAsPrivateRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/PublishListingRevisionAsPrivateRequest.java index 74f6ff1e61c..c1497aa6260 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/PublishListingRevisionAsPrivateRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/PublishListingRevisionAsPrivateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/PublishListingRevisionPackageRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/PublishListingRevisionPackageRequest.java index 0ab13e52bf4..ebc8331f319 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/PublishListingRevisionPackageRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/PublishListingRevisionPackageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/PublishListingRevisionRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/PublishListingRevisionRequest.java index f8f35517408..0c0ebd64c76 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/PublishListingRevisionRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/PublishListingRevisionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/SubmitListingRevisionForReviewRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/SubmitListingRevisionForReviewRequest.java index 628fa2bf41a..92f129e0259 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/SubmitListingRevisionForReviewRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/SubmitListingRevisionForReviewRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UnPublishListingRevisionPackageRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UnPublishListingRevisionPackageRequest.java index 268fa5dc670..c023b8ab45e 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UnPublishListingRevisionPackageRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UnPublishListingRevisionPackageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateArtifactRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateArtifactRequest.java index f0973db00b7..5e69add3f88 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateArtifactRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRequest.java index a17263744e9..b879ad941b1 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionAttachmentContentRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionAttachmentContentRequest.java index 673a94d7169..31f79e9e065 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionAttachmentContentRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionAttachmentContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionAttachmentRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionAttachmentRequest.java index f41a66c7b9b..fd736189aad 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionAttachmentRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionIconContentRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionIconContentRequest.java index 0a6dd69bc06..04e91c4bd92 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionIconContentRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionIconContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionNoteRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionNoteRequest.java index bcaa4cfae94..eb4141bc2ce 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionNoteRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionNoteRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionPackageRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionPackageRequest.java index 32da1fc80b6..57108a26f4d 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionPackageRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionPackageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionRequest.java index 8b67f506f8a..205fb52e1bd 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateListingRevisionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateTermRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateTermRequest.java index 6724b32c1e2..3c3362756e8 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateTermRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateTermRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateTermVersionContentRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateTermVersionContentRequest.java index 204182960c3..e40fbc358f6 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateTermVersionContentRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateTermVersionContentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateTermVersionRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateTermVersionRequest.java index 3f02f204156..35bda2ed25d 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateTermVersionRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/UpdateTermVersionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ValidateAndPublishArtifactRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ValidateAndPublishArtifactRequest.java index 4bccd71a201..3d7246097e5 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ValidateAndPublishArtifactRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/ValidateAndPublishArtifactRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/WithdrawListingRevisionRequest.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/WithdrawListingRevisionRequest.java index bebee9c8161..45d3fa0c8d9 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/WithdrawListingRevisionRequest.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/requests/WithdrawListingRevisionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.requests; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ActivateTermVersionResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ActivateTermVersionResponse.java index 5509b91c914..64341086a11 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ActivateTermVersionResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ActivateTermVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CancelWorkRequestResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CancelWorkRequestResponse.java index d366cff03af..cfdce19d776 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CancelWorkRequestResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CascadingDeleteListingResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CascadingDeleteListingResponse.java index b2537f27a92..56b96e524e2 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CascadingDeleteListingResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CascadingDeleteListingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CascadingDeleteListingRevisionResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CascadingDeleteListingRevisionResponse.java index 2a2e0dc84a2..81854910341 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CascadingDeleteListingRevisionResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CascadingDeleteListingRevisionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ChangeArtifactCompartmentResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ChangeArtifactCompartmentResponse.java index e9f468d6692..2955e1207f7 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ChangeArtifactCompartmentResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ChangeArtifactCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ChangeListingCompartmentResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ChangeListingCompartmentResponse.java index a68b5b23929..2205218619d 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ChangeListingCompartmentResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ChangeListingCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ChangeListingRevisionToNewStatusResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ChangeListingRevisionToNewStatusResponse.java index c46df27f400..79d44435575 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ChangeListingRevisionToNewStatusResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ChangeListingRevisionToNewStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ChangeTermCompartmentResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ChangeTermCompartmentResponse.java index 8f2d1c282df..117ba7cbf1e 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ChangeTermCompartmentResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ChangeTermCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CloneListingRevisionResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CloneListingRevisionResponse.java index e6275b8be8f..5298129acd0 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CloneListingRevisionResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CloneListingRevisionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateArtifactResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateArtifactResponse.java index c09ae88989b..99488593482 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateArtifactResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateListingResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateListingResponse.java index 1503ecab325..b99f06a3a4b 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateListingResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateListingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateListingRevisionAttachmentResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateListingRevisionAttachmentResponse.java index 966ac052bd9..272218c51a1 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateListingRevisionAttachmentResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateListingRevisionAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateListingRevisionNoteResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateListingRevisionNoteResponse.java index d30a5ec1e05..f2ce5880eae 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateListingRevisionNoteResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateListingRevisionNoteResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateListingRevisionPackageResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateListingRevisionPackageResponse.java index 40366e9319a..9a15e22a2d0 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateListingRevisionPackageResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateListingRevisionPackageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateListingRevisionResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateListingRevisionResponse.java index 2acf1c4aef7..dd08034903c 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateListingRevisionResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateListingRevisionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateTermResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateTermResponse.java index fe8eedce97f..374d4105de8 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateTermResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateTermResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateTermVersionResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateTermVersionResponse.java index 81a7531cb8f..5488680685e 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateTermVersionResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/CreateTermVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteArtifactResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteArtifactResponse.java index a48b3c36c52..30ed4219f2e 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteArtifactResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteListingResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteListingResponse.java index e16d49eee9e..04ce9e588fb 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteListingResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteListingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteListingRevisionAttachmentResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteListingRevisionAttachmentResponse.java index 0d234aac1df..1090fca7c50 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteListingRevisionAttachmentResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteListingRevisionAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteListingRevisionNoteResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteListingRevisionNoteResponse.java index 9af78891e0a..8beef58c4d3 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteListingRevisionNoteResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteListingRevisionNoteResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteListingRevisionPackageResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteListingRevisionPackageResponse.java index cb47189ea90..5eabe0cd8eb 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteListingRevisionPackageResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteListingRevisionPackageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteListingRevisionResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteListingRevisionResponse.java index df72217a94c..37996f4180d 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteListingRevisionResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteListingRevisionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteTermResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteTermResponse.java index 3b173802b23..f6411660f96 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteTermResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteTermResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteTermVersionResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteTermVersionResponse.java index 7750153887f..fe7056de108 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteTermVersionResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/DeleteTermVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetArtifactResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetArtifactResponse.java index 60cbd6d6787..9af5b306e39 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetArtifactResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetCategoryResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetCategoryResponse.java index 8401cb3d215..9160e930799 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetCategoryResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetCategoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetLeadResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetLeadResponse.java index e85955b3e6e..c6e56d72fa8 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetLeadResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetLeadResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingResponse.java index 7ffbc9ca5b3..8e187129fea 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionAttachmentContentResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionAttachmentContentResponse.java index e1f6b7bbdf3..a6c11251b72 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionAttachmentContentResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionAttachmentContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionAttachmentResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionAttachmentResponse.java index 7f1ea05d285..df1e87bd6cf 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionAttachmentResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionIconContentResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionIconContentResponse.java index aa36f0f5393..3afab5d1376 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionIconContentResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionIconContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionNoteResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionNoteResponse.java index dade630aeae..842dedd688b 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionNoteResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionNoteResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionPackageResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionPackageResponse.java index c65c6175d46..5851f3e0e76 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionPackageResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionPackageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionResponse.java index b1dfb36f7c3..9778aec3b76 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetListingRevisionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetMarketResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetMarketResponse.java index b144813ee7f..cdfc5d44197 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetMarketResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetMarketResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetProductResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetProductResponse.java index 0da2b18bbc8..1e40ab4c099 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetProductResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetProductResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetPublisherResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetPublisherResponse.java index 68b00f80507..15912e3f053 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetPublisherResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetPublisherResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetSupportDocContentResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetSupportDocContentResponse.java index b189e291d80..b4b7d754144 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetSupportDocContentResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetSupportDocContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetSupportDocResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetSupportDocResponse.java index ddce7b9c391..cf6ef757d53 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetSupportDocResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetSupportDocResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetTermResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetTermResponse.java index c9e4352bff8..7685acf7624 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetTermResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetTermResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetTermVersionContentResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetTermVersionContentResponse.java index 8af626f8333..17791585d1b 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetTermVersionContentResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetTermVersionContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetTermVersionResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetTermVersionResponse.java index c009893f90b..14d46af461d 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetTermVersionResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetTermVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetWorkRequestResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetWorkRequestResponse.java index ca19a90caf2..0e85deb8b82 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetWorkRequestResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListArtifactsResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListArtifactsResponse.java index 5f2bf1ae322..b147ddaec97 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListArtifactsResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListArtifactsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListAvailableServicesResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListAvailableServicesResponse.java index 699d8cae23e..c4a1548b33f 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListAvailableServicesResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListAvailableServicesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListCategoriesResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListCategoriesResponse.java index bc5160a567a..9dc45d54c1f 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListCategoriesResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListCategoriesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListCustomerInstanceReportRecordsResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListCustomerInstanceReportRecordsResponse.java index 1cc0d1a1201..f644d275ae9 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListCustomerInstanceReportRecordsResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListCustomerInstanceReportRecordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListDisbursementReportRecordsResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListDisbursementReportRecordsResponse.java index 48402476b50..09a0d907a3b 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListDisbursementReportRecordsResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListDisbursementReportRecordsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListLeadsResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListLeadsResponse.java index ecb9fa67169..5b9c4cfc7d0 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListLeadsResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListLeadsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListListingRevisionAttachmentsResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListListingRevisionAttachmentsResponse.java index 1aaf94ec1d0..67402c4d200 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListListingRevisionAttachmentsResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListListingRevisionAttachmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListListingRevisionNotesResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListListingRevisionNotesResponse.java index bedfc5bdba6..9b6e264d1f9 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListListingRevisionNotesResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListListingRevisionNotesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListListingRevisionPackagesResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListListingRevisionPackagesResponse.java index 5c7319d4ba4..8d0694670a2 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListListingRevisionPackagesResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListListingRevisionPackagesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListListingRevisionsResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListListingRevisionsResponse.java index 4d8b94bb0b9..3681ee5b640 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListListingRevisionsResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListListingRevisionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListListingsResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListListingsResponse.java index cb52b287315..1c508a14637 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListListingsResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListListingsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListMarketsResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListMarketsResponse.java index 06718c94cd5..398f0347158 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListMarketsResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListMarketsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListProductsResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListProductsResponse.java index ef3f2550584..3f2f181b848 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListProductsResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListProductsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListPublishersResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListPublishersResponse.java index 5df31309c84..c2aa7983cda 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListPublishersResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListPublishersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListSupportDocsResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListSupportDocsResponse.java index 9546118e4be..224b92d25ea 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListSupportDocsResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListSupportDocsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListSupportedCurrenciesResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListSupportedCurrenciesResponse.java index 1776110f8e1..3fd50dfed02 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListSupportedCurrenciesResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListSupportedCurrenciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListSupportedShapesResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListSupportedShapesResponse.java index e26e98101d1..8ba087b262c 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListSupportedShapesResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListSupportedShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListTermVersionsResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListTermVersionsResponse.java index 16f78ceb7ae..be1979427b2 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListTermVersionsResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListTermVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListTermsResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListTermsResponse.java index 2150d971da1..2734f8ed392 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListTermsResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListTermsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListWorkRequestErrorsResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListWorkRequestErrorsResponse.java index fee12a018ec..af22ee21877 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListWorkRequestLogsResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListWorkRequestLogsResponse.java index 1861e67fe20..d453697aa23 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListWorkRequestLogsResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListWorkRequestsResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListWorkRequestsResponse.java index 680aecf6dcb..c4aafadef26 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListWorkRequestsResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/MarkListingRevisionPackageAsDefaultResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/MarkListingRevisionPackageAsDefaultResponse.java index 51cd41a5e0b..0ca4697aff9 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/MarkListingRevisionPackageAsDefaultResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/MarkListingRevisionPackageAsDefaultResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/PublishListingRevisionAsPrivateResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/PublishListingRevisionAsPrivateResponse.java index 7f200f54841..3d40c35921b 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/PublishListingRevisionAsPrivateResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/PublishListingRevisionAsPrivateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/PublishListingRevisionPackageResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/PublishListingRevisionPackageResponse.java index 1528662880a..9aea5b82299 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/PublishListingRevisionPackageResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/PublishListingRevisionPackageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/PublishListingRevisionResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/PublishListingRevisionResponse.java index edb605a3bb8..014e645037d 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/PublishListingRevisionResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/PublishListingRevisionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/SubmitListingRevisionForReviewResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/SubmitListingRevisionForReviewResponse.java index ebdaad8fc8d..75cabd827f7 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/SubmitListingRevisionForReviewResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/SubmitListingRevisionForReviewResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UnPublishListingRevisionPackageResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UnPublishListingRevisionPackageResponse.java index 6d5732cb649..e0c03a9b6c4 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UnPublishListingRevisionPackageResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UnPublishListingRevisionPackageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateArtifactResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateArtifactResponse.java index 2b9ea6fd49a..031ccfce7d1 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateArtifactResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingResponse.java index b3a7c18dc4a..cf2d4ffcf74 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionAttachmentContentResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionAttachmentContentResponse.java index 79325e44272..3cffc060852 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionAttachmentContentResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionAttachmentContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionAttachmentResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionAttachmentResponse.java index bba48d757ed..bbe7a201a37 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionAttachmentResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionIconContentResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionIconContentResponse.java index cef8b2502ef..42270a32a87 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionIconContentResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionIconContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionNoteResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionNoteResponse.java index 5c8869fc863..1b01ba2a0ca 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionNoteResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionNoteResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionPackageResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionPackageResponse.java index a16675f6293..b7e36cc16b5 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionPackageResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionPackageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionResponse.java index f6fc95ab577..27ce5149b92 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateListingRevisionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateTermResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateTermResponse.java index 9e9ddf5b382..b642269868d 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateTermResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateTermResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateTermVersionContentResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateTermVersionContentResponse.java index f724eea8625..6f71a121494 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateTermVersionContentResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateTermVersionContentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateTermVersionResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateTermVersionResponse.java index 92dbd8ea2b2..286322303e1 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateTermVersionResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/UpdateTermVersionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ValidateAndPublishArtifactResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ValidateAndPublishArtifactResponse.java index 454b40ac72e..6ed42c55126 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ValidateAndPublishArtifactResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/ValidateAndPublishArtifactResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/WithdrawListingRevisionResponse.java b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/WithdrawListingRevisionResponse.java index ef1fc6ee76f..7ef6099759c 100644 --- a/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/WithdrawListingRevisionResponse.java +++ b/bmc-marketplacepublisher/src/main/java/com/oracle/bmc/marketplacepublisher/responses/WithdrawListingRevisionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.marketplacepublisher.responses; diff --git a/bmc-marketplacepublisher/src/main/resources/com/oracle/bmc/marketplacepublisher/client.properties b/bmc-marketplacepublisher/src/main/resources/com/oracle/bmc/marketplacepublisher/client.properties index ad2edc5e5de..cebedd9ec8d 100644 --- a/bmc-marketplacepublisher/src/main/resources/com/oracle/bmc/marketplacepublisher/client.properties +++ b/bmc-marketplacepublisher/src/main/resources/com/oracle/bmc/marketplacepublisher/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-mediaservices/pom.xml b/bmc-mediaservices/pom.xml index dd7d61a9c7e..51a37e0dc7d 100644 --- a/bmc-mediaservices/pom.xml +++ b/bmc-mediaservices/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-mediaservices @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServices.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServices.java index 3b55ac4c534..ec5b83811e7 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServices.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServices.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServicesAsync.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServicesAsync.java index 1ce79104539..72424293f71 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServicesAsync.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServicesAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServicesAsyncClient.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServicesAsyncClient.java index cfeae4a00ad..eb891f6cf01 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServicesAsyncClient.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServicesAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServicesClient.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServicesClient.java index 87fd3c9541e..4295ccb273c 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServicesClient.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServicesClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServicesPaginators.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServicesPaginators.java index deb6bddb909..c7a19aa053c 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServicesPaginators.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServicesPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServicesWaiters.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServicesWaiters.java index 38191b0bd50..ff2e9767d07 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServicesWaiters.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaServicesWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaStream.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaStream.java index 32ddd65e4e6..7668aed67f8 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaStream.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaStream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaStreamAsync.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaStreamAsync.java index 6a434b0640b..8d710e9f5a6 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaStreamAsync.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaStreamAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaStreamAsyncClient.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaStreamAsyncClient.java index c95e4acfa9c..060c7f88535 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaStreamAsyncClient.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaStreamAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaStreamClient.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaStreamClient.java index 2ba7951c87e..cb2122880da 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaStreamClient.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/MediaStreamClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/AddLockDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/AddLockDetails.java index dbc14b0d1b4..a073ec278ed 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/AddLockDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/AddLockDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/AkamaiManualStreamCdnConfig.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/AkamaiManualStreamCdnConfig.java index e88a458d1e8..dc6b92907b8 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/AkamaiManualStreamCdnConfig.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/AkamaiManualStreamCdnConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/AssetMetadataEntryDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/AssetMetadataEntryDetails.java index 9a5ba827b1f..9f6b1a233ea 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/AssetMetadataEntryDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/AssetMetadataEntryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/AssetType.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/AssetType.java index 0d9dd12eec8..585f7d04ede 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/AssetType.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/AssetType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ChangeMediaAssetCompartmentDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ChangeMediaAssetCompartmentDetails.java index 857a2711d97..3179ad8502c 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ChangeMediaAssetCompartmentDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ChangeMediaAssetCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ChangeMediaWorkflowCompartmentDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ChangeMediaWorkflowCompartmentDetails.java index ae8ca584d47..9e09a75e3d6 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ChangeMediaWorkflowCompartmentDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ChangeMediaWorkflowCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ChangeMediaWorkflowConfigurationCompartmentDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ChangeMediaWorkflowConfigurationCompartmentDetails.java index b76f068221f..3c861e3d9c2 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ChangeMediaWorkflowConfigurationCompartmentDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ChangeMediaWorkflowConfigurationCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ChangeMediaWorkflowJobCompartmentDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ChangeMediaWorkflowJobCompartmentDetails.java index 3f8030672cb..870f3cc9a16 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ChangeMediaWorkflowJobCompartmentDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ChangeMediaWorkflowJobCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ChangeStreamDistributionChannelCompartmentDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ChangeStreamDistributionChannelCompartmentDetails.java index 46fae478bb6..d27133552a8 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ChangeStreamDistributionChannelCompartmentDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ChangeStreamDistributionChannelCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaAssetDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaAssetDetails.java index f370810cfa4..6d426100c87 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaAssetDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaWorkflowConfigurationDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaWorkflowConfigurationDetails.java index 2524b7918d9..179b7960cbb 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaWorkflowConfigurationDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaWorkflowConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaWorkflowDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaWorkflowDetails.java index a332e84b9c7..797e225f6e2 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaWorkflowDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaWorkflowDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaWorkflowJobByIdDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaWorkflowJobByIdDetails.java index ad64953557d..274dce4caee 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaWorkflowJobByIdDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaWorkflowJobByIdDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaWorkflowJobByNameDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaWorkflowJobByNameDetails.java index e6f59e6fd8c..6bbb6c5d174 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaWorkflowJobByNameDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaWorkflowJobByNameDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaWorkflowJobDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaWorkflowJobDetails.java index 256d23070e9..6fd9bc25a87 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaWorkflowJobDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateMediaWorkflowJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateStreamCdnConfigDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateStreamCdnConfigDetails.java index 2f495eab181..456e2d1445f 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateStreamCdnConfigDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateStreamCdnConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateStreamDistributionChannelDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateStreamDistributionChannelDetails.java index d41b38a8b7a..185087a0d00 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateStreamDistributionChannelDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateStreamDistributionChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateStreamPackagingConfigDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateStreamPackagingConfigDetails.java index f9a70f25f24..5f9ca635938 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateStreamPackagingConfigDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/CreateStreamPackagingConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/DashStreamPackagingConfig.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/DashStreamPackagingConfig.java index 4a1f333184f..09544ab9deb 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/DashStreamPackagingConfig.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/DashStreamPackagingConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/DeleteMode.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/DeleteMode.java index d52e41fb572..b2d0562be9c 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/DeleteMode.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/DeleteMode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/EdgeStreamCdnConfig.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/EdgeStreamCdnConfig.java index 18efc69d5e1..54b735cdbd0 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/EdgeStreamCdnConfig.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/EdgeStreamCdnConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/GenerateSessionTokenDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/GenerateSessionTokenDetails.java index 15f01666c59..671cd97a396 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/GenerateSessionTokenDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/GenerateSessionTokenDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/HlsStreamPackagingConfig.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/HlsStreamPackagingConfig.java index fdb5287ea54..771efaaf7bb 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/HlsStreamPackagingConfig.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/HlsStreamPackagingConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/IngestStreamDistributionChannelDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/IngestStreamDistributionChannelDetails.java index e3cf1e8e782..24433c32306 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/IngestStreamDistributionChannelDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/IngestStreamDistributionChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/IngestStreamDistributionChannelResult.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/IngestStreamDistributionChannelResult.java index 8f6f52df391..8a6cd908ed8 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/IngestStreamDistributionChannelResult.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/IngestStreamDistributionChannelResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/JobOutput.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/JobOutput.java index e5aba778970..88b4374b41c 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/JobOutput.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/JobOutput.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/LifecycleState.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/LifecycleState.java index f46dba268ad..78494246e81 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/LifecycleState.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/LifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAsset.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAsset.java index e0420355c67..815cd0e3a57 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAsset.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAsset.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetCollection.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetCollection.java index b89099bb4cc..66cbe8e4e26 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetCollection.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetDistributionChannelAttachment.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetDistributionChannelAttachment.java index 82c2cac37b1..8918e1229e1 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetDistributionChannelAttachment.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetDistributionChannelAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetDistributionChannelAttachmentCollection.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetDistributionChannelAttachmentCollection.java index d24d959c447..097085b5d0a 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetDistributionChannelAttachmentCollection.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetDistributionChannelAttachmentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetDistributionChannelAttachmentSortBy.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetDistributionChannelAttachmentSortBy.java index b6394ff87b2..0ca5180c881 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetDistributionChannelAttachmentSortBy.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetDistributionChannelAttachmentSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetDistributionChannelAttachmentSummary.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetDistributionChannelAttachmentSummary.java index ff46413815e..3b7ca27475e 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetDistributionChannelAttachmentSummary.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetDistributionChannelAttachmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetSortBy.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetSortBy.java index 1ac77fe0470..f21e0ce562f 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetSortBy.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetSummary.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetSummary.java index d8d582bbbb1..9675679e23f 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetSummary.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetTag.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetTag.java index e2749a80f75..f9e7d883e21 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetTag.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaAssetTag.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflow.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflow.java index 26ce9ff0783..0f1515e9c24 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflow.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflow.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowCollection.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowCollection.java index 4e012e06de6..553698a2ca3 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowCollection.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowConfiguration.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowConfiguration.java index 924a1bb8184..62c37d83678 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowConfiguration.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowConfigurationCollection.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowConfigurationCollection.java index fe85718bc8d..f5c7a90e8a3 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowConfigurationCollection.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowConfigurationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowConfigurationSummary.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowConfigurationSummary.java index 417988eeb9e..301f9883847 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowConfigurationSummary.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowConfigurationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowJob.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowJob.java index 5ca9c41a2a0..4c82c2649f0 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowJob.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowJob.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowJobCollection.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowJobCollection.java index de2fb33fee4..87265de8d4d 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowJobCollection.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowJobCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowJobSortBy.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowJobSortBy.java index df8023695d0..445ccb38d13 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowJobSortBy.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowJobSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowJobSummary.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowJobSummary.java index a0b27aff1ab..6a78a01bbbe 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowJobSummary.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowJobSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowSummary.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowSummary.java index 3b0bab530c1..212309de342 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowSummary.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowTask.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowTask.java index 98eae8c9d27..e930bd9776e 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowTask.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowTask.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowTaskDeclaration.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowTaskDeclaration.java index cebfc6b6763..3b9381c5233 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowTaskDeclaration.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowTaskDeclaration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowTaskDeclarationCollection.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowTaskDeclarationCollection.java index 0e66af1d844..650fc0784ad 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowTaskDeclarationCollection.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowTaskDeclarationCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowTaskDeclarationSortBy.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowTaskDeclarationSortBy.java index e1842617093..ec014bf1a7f 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowTaskDeclarationSortBy.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowTaskDeclarationSortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowTaskState.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowTaskState.java index 97a1ef495ab..cc6a701636c 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowTaskState.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/MediaWorkflowTaskState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/Metadata.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/Metadata.java index 10b40296f80..81dbc3196a6 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/Metadata.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/Metadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/RemoveLockDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/RemoveLockDetails.java index 47f799cb279..4edd2026e8a 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/RemoveLockDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/RemoveLockDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ResourceLock.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ResourceLock.java index 849a6667b18..f6e7cd0b3a3 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ResourceLock.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/ResourceLock.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/SessionToken.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/SessionToken.java index 279430c1889..e8a22e53b3d 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/SessionToken.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/SessionToken.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/SortBy.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/SortBy.java index c684152a208..839d75c5765 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/SortBy.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/SortBy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/SortOrder.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/SortOrder.java index 2dc8736f55a..bb2b6e93e1e 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/SortOrder.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamCdnConfig.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamCdnConfig.java index 71e04826835..f1d530e80d0 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamCdnConfig.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamCdnConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamCdnConfigCollection.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamCdnConfigCollection.java index 5665a6ef39b..ad49158ce25 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamCdnConfigCollection.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamCdnConfigCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamCdnConfigSection.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamCdnConfigSection.java index a6baab7a95a..4e6cd3169fc 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamCdnConfigSection.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamCdnConfigSection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamCdnConfigSummary.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamCdnConfigSummary.java index 3782e228b12..60cf08424d1 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamCdnConfigSummary.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamCdnConfigSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamDistributionChannel.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamDistributionChannel.java index 5a82f63b8ea..480cf3685a9 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamDistributionChannel.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamDistributionChannel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamDistributionChannelCollection.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamDistributionChannelCollection.java index e42f72e2d10..afb861f0c4c 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamDistributionChannelCollection.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamDistributionChannelCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamDistributionChannelSummary.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamDistributionChannelSummary.java index 47878db965c..29f294fabf7 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamDistributionChannelSummary.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamDistributionChannelSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfig.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfig.java index e1d8772978c..c07d972a45c 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfig.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfigCollection.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfigCollection.java index 605882c2cce..ec308b81459 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfigCollection.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfigCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfigEncryption.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfigEncryption.java index d5aefd5ebcf..06f9db4d4cf 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfigEncryption.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfigEncryption.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfigEncryptionAes128.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfigEncryptionAes128.java index 3db9bbad43d..28ba93b52d1 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfigEncryptionAes128.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfigEncryptionAes128.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfigEncryptionNone.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfigEncryptionNone.java index cec14c33222..0cdca3e9379 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfigEncryptionNone.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfigEncryptionNone.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfigSummary.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfigSummary.java index 34d7f8d15c8..ae43944925f 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfigSummary.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/StreamPackagingConfigSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/SystemMediaWorkflow.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/SystemMediaWorkflow.java index bf3a85baa1c..02c8760190d 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/SystemMediaWorkflow.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/SystemMediaWorkflow.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/SystemMediaWorkflowCollection.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/SystemMediaWorkflowCollection.java index 7142a1bed16..a4b1db43d43 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/SystemMediaWorkflowCollection.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/SystemMediaWorkflowCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateMediaAssetDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateMediaAssetDetails.java index 6b4b9e0feaa..acc214999c1 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateMediaAssetDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateMediaAssetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateMediaWorkflowConfigurationDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateMediaWorkflowConfigurationDetails.java index 7d73c50f0e6..c9983149341 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateMediaWorkflowConfigurationDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateMediaWorkflowConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateMediaWorkflowDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateMediaWorkflowDetails.java index fabe2d4ddb9..e771adb968d 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateMediaWorkflowDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateMediaWorkflowDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateMediaWorkflowJobDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateMediaWorkflowJobDetails.java index c66ec7084fa..37ef841ef8a 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateMediaWorkflowJobDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateMediaWorkflowJobDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateStreamCdnConfigDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateStreamCdnConfigDetails.java index 5a9fac76907..323d98787ac 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateStreamCdnConfigDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateStreamCdnConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateStreamDistributionChannelDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateStreamDistributionChannelDetails.java index 8894c287cff..c12bcabe841 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateStreamDistributionChannelDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateStreamDistributionChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateStreamPackagingConfigDetails.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateStreamPackagingConfigDetails.java index 9110c707bf8..10d0f395da5 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateStreamPackagingConfigDetails.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/model/UpdateStreamPackagingConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.model; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddMediaAssetLockRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddMediaAssetLockRequest.java index 65b82e51520..7036ff2e30a 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddMediaAssetLockRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddMediaAssetLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddMediaWorkflowConfigurationLockRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddMediaWorkflowConfigurationLockRequest.java index f0bb031f287..525c07e0976 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddMediaWorkflowConfigurationLockRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddMediaWorkflowConfigurationLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddMediaWorkflowJobLockRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddMediaWorkflowJobLockRequest.java index a2940c9f754..363140e64f0 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddMediaWorkflowJobLockRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddMediaWorkflowJobLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddMediaWorkflowLockRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddMediaWorkflowLockRequest.java index 5b18b7cca4d..a5cf8f19aba 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddMediaWorkflowLockRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddMediaWorkflowLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddStreamCdnConfigLockRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddStreamCdnConfigLockRequest.java index d7432bff6b2..8342ec60f01 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddStreamCdnConfigLockRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddStreamCdnConfigLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddStreamDistributionChannelLockRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddStreamDistributionChannelLockRequest.java index b1ac724736e..c8c0c507e23 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddStreamDistributionChannelLockRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddStreamDistributionChannelLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddStreamPackagingConfigLockRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddStreamPackagingConfigLockRequest.java index 78f9f5d1352..73c1877a588 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddStreamPackagingConfigLockRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/AddStreamPackagingConfigLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ChangeMediaAssetCompartmentRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ChangeMediaAssetCompartmentRequest.java index 494635f0a6a..eb34b510c2b 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ChangeMediaAssetCompartmentRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ChangeMediaAssetCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ChangeMediaWorkflowCompartmentRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ChangeMediaWorkflowCompartmentRequest.java index 3c0c5674d64..aadda73b7da 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ChangeMediaWorkflowCompartmentRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ChangeMediaWorkflowCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ChangeMediaWorkflowConfigurationCompartmentRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ChangeMediaWorkflowConfigurationCompartmentRequest.java index 3a877350bfb..802a4ba84c7 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ChangeMediaWorkflowConfigurationCompartmentRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ChangeMediaWorkflowConfigurationCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ChangeMediaWorkflowJobCompartmentRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ChangeMediaWorkflowJobCompartmentRequest.java index 0fd5807230f..a7ff091481f 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ChangeMediaWorkflowJobCompartmentRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ChangeMediaWorkflowJobCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ChangeStreamDistributionChannelCompartmentRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ChangeStreamDistributionChannelCompartmentRequest.java index b2662c4d9cc..a59c848724b 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ChangeStreamDistributionChannelCompartmentRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ChangeStreamDistributionChannelCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateMediaAssetRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateMediaAssetRequest.java index c620a778b49..95ccbb28863 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateMediaAssetRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateMediaAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateMediaWorkflowConfigurationRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateMediaWorkflowConfigurationRequest.java index 5e9924246df..8f1ced888d7 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateMediaWorkflowConfigurationRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateMediaWorkflowConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateMediaWorkflowJobRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateMediaWorkflowJobRequest.java index 3e0397a6056..dc8236d7aac 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateMediaWorkflowJobRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateMediaWorkflowJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateMediaWorkflowRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateMediaWorkflowRequest.java index 7649f09ba80..918022b0c4a 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateMediaWorkflowRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateMediaWorkflowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateStreamCdnConfigRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateStreamCdnConfigRequest.java index 22398d642c0..4ed69b9a820 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateStreamCdnConfigRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateStreamCdnConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateStreamDistributionChannelRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateStreamDistributionChannelRequest.java index 0d8a4154b95..c782f725cef 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateStreamDistributionChannelRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateStreamDistributionChannelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateStreamPackagingConfigRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateStreamPackagingConfigRequest.java index 8f0535d349d..8a7ee6b7ade 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateStreamPackagingConfigRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/CreateStreamPackagingConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteMediaAssetDistributionChannelAttachmentRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteMediaAssetDistributionChannelAttachmentRequest.java index 36f92529d47..36d13cdce0b 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteMediaAssetDistributionChannelAttachmentRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteMediaAssetDistributionChannelAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteMediaAssetRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteMediaAssetRequest.java index 3ea12316937..f44357a26a3 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteMediaAssetRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteMediaAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteMediaWorkflowConfigurationRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteMediaWorkflowConfigurationRequest.java index 91cc8d3e7cd..41ff4bfa649 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteMediaWorkflowConfigurationRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteMediaWorkflowConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteMediaWorkflowJobRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteMediaWorkflowJobRequest.java index c4e5e673965..27649532dc7 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteMediaWorkflowJobRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteMediaWorkflowJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteMediaWorkflowRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteMediaWorkflowRequest.java index 1b8520b91ca..c9fe3ec5739 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteMediaWorkflowRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteMediaWorkflowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteStreamCdnConfigRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteStreamCdnConfigRequest.java index 339b8a19873..fa707e5f3c6 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteStreamCdnConfigRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteStreamCdnConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteStreamDistributionChannelRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteStreamDistributionChannelRequest.java index ccbcdf1f096..ef074043507 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteStreamDistributionChannelRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteStreamDistributionChannelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteStreamPackagingConfigRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteStreamPackagingConfigRequest.java index 529ba6b08fd..39b7f03495e 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteStreamPackagingConfigRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/DeleteStreamPackagingConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GeneratePlaylistRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GeneratePlaylistRequest.java index 305793b8fb1..96b403df841 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GeneratePlaylistRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GeneratePlaylistRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GenerateSessionTokenRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GenerateSessionTokenRequest.java index 32bca92b921..1412e2e738c 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GenerateSessionTokenRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GenerateSessionTokenRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetMediaAssetDistributionChannelAttachmentRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetMediaAssetDistributionChannelAttachmentRequest.java index cb1744d894c..90b14a6c12e 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetMediaAssetDistributionChannelAttachmentRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetMediaAssetDistributionChannelAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetMediaAssetRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetMediaAssetRequest.java index 4dc23a2869e..b6a64ef5a2d 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetMediaAssetRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetMediaAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetMediaWorkflowConfigurationRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetMediaWorkflowConfigurationRequest.java index 13b669cf52e..e04c67a9d56 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetMediaWorkflowConfigurationRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetMediaWorkflowConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetMediaWorkflowJobRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetMediaWorkflowJobRequest.java index 4a6757f7db0..41f1923b41e 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetMediaWorkflowJobRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetMediaWorkflowJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetMediaWorkflowRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetMediaWorkflowRequest.java index 264c423216f..a5e5195d5a1 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetMediaWorkflowRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetMediaWorkflowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetStreamCdnConfigRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetStreamCdnConfigRequest.java index 21f08a52582..fab9e3b49a4 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetStreamCdnConfigRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetStreamCdnConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetStreamDistributionChannelRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetStreamDistributionChannelRequest.java index 600bc530295..0e8d5cc7540 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetStreamDistributionChannelRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetStreamDistributionChannelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetStreamPackagingConfigRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetStreamPackagingConfigRequest.java index da3bd8ca0b7..07f354b1dce 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetStreamPackagingConfigRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/GetStreamPackagingConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/IngestStreamDistributionChannelRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/IngestStreamDistributionChannelRequest.java index 461e8c4f0ad..820a190987f 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/IngestStreamDistributionChannelRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/IngestStreamDistributionChannelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaAssetDistributionChannelAttachmentsRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaAssetDistributionChannelAttachmentsRequest.java index f40e5c3d07c..1d2514d68d9 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaAssetDistributionChannelAttachmentsRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaAssetDistributionChannelAttachmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaAssetsRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaAssetsRequest.java index 4418bbc4540..d1abb059d07 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaAssetsRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaAssetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaWorkflowConfigurationsRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaWorkflowConfigurationsRequest.java index 49ff4af9115..5b8a2ec77db 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaWorkflowConfigurationsRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaWorkflowConfigurationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaWorkflowJobsRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaWorkflowJobsRequest.java index 00813d683a0..f5d6b553a4f 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaWorkflowJobsRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaWorkflowJobsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaWorkflowTaskDeclarationsRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaWorkflowTaskDeclarationsRequest.java index 98772f2e552..2a754f1fb9b 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaWorkflowTaskDeclarationsRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaWorkflowTaskDeclarationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaWorkflowsRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaWorkflowsRequest.java index 6cd3d05ab72..1a42f06b646 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaWorkflowsRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListMediaWorkflowsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListStreamCdnConfigsRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListStreamCdnConfigsRequest.java index 5d4ae1ca2bf..475015ef344 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListStreamCdnConfigsRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListStreamCdnConfigsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListStreamDistributionChannelsRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListStreamDistributionChannelsRequest.java index 3412d7811fa..ff7500d39be 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListStreamDistributionChannelsRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListStreamDistributionChannelsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListStreamPackagingConfigsRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListStreamPackagingConfigsRequest.java index 3505871f215..6974939724c 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListStreamPackagingConfigsRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListStreamPackagingConfigsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListSystemMediaWorkflowsRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListSystemMediaWorkflowsRequest.java index 394942dc60d..570306b9de7 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListSystemMediaWorkflowsRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/ListSystemMediaWorkflowsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveMediaAssetLockRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveMediaAssetLockRequest.java index 61dda449ff3..cc0918e94b5 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveMediaAssetLockRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveMediaAssetLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveMediaWorkflowConfigurationLockRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveMediaWorkflowConfigurationLockRequest.java index 3553318114d..50400c3e5a1 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveMediaWorkflowConfigurationLockRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveMediaWorkflowConfigurationLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveMediaWorkflowJobLockRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveMediaWorkflowJobLockRequest.java index 1ebaad5f9db..1734a4c758e 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveMediaWorkflowJobLockRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveMediaWorkflowJobLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveMediaWorkflowLockRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveMediaWorkflowLockRequest.java index 10f648a257b..2001026faf0 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveMediaWorkflowLockRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveMediaWorkflowLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveStreamCdnConfigLockRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveStreamCdnConfigLockRequest.java index b2db0eea3e7..18015937d2e 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveStreamCdnConfigLockRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveStreamCdnConfigLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveStreamDistributionChannelLockRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveStreamDistributionChannelLockRequest.java index 0dbea4841dd..0dc651a5b85 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveStreamDistributionChannelLockRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveStreamDistributionChannelLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveStreamPackagingConfigLockRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveStreamPackagingConfigLockRequest.java index 5a689bb87e7..3bf02ceb758 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveStreamPackagingConfigLockRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/RemoveStreamPackagingConfigLockRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateMediaAssetRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateMediaAssetRequest.java index 716611845b5..36a5519ab08 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateMediaAssetRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateMediaAssetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateMediaWorkflowConfigurationRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateMediaWorkflowConfigurationRequest.java index 3cae1d2c6d4..81a09ed0f1a 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateMediaWorkflowConfigurationRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateMediaWorkflowConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateMediaWorkflowJobRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateMediaWorkflowJobRequest.java index 4a12529e9d7..c025a2eb440 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateMediaWorkflowJobRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateMediaWorkflowJobRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateMediaWorkflowRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateMediaWorkflowRequest.java index 68ab945b395..0726e92502e 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateMediaWorkflowRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateMediaWorkflowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateStreamCdnConfigRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateStreamCdnConfigRequest.java index 0312ceaea34..f942ef99a09 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateStreamCdnConfigRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateStreamCdnConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateStreamDistributionChannelRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateStreamDistributionChannelRequest.java index 76fff9bbc95..4028fcb801f 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateStreamDistributionChannelRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateStreamDistributionChannelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateStreamPackagingConfigRequest.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateStreamPackagingConfigRequest.java index 54f729d2c44..b82067ec161 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateStreamPackagingConfigRequest.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/requests/UpdateStreamPackagingConfigRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.requests; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddMediaAssetLockResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddMediaAssetLockResponse.java index 3103d8f43fe..c893b465e23 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddMediaAssetLockResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddMediaAssetLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddMediaWorkflowConfigurationLockResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddMediaWorkflowConfigurationLockResponse.java index 12ab937957e..34dfe8b6179 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddMediaWorkflowConfigurationLockResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddMediaWorkflowConfigurationLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddMediaWorkflowJobLockResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddMediaWorkflowJobLockResponse.java index 5aff357f6ec..269b3b1802b 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddMediaWorkflowJobLockResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddMediaWorkflowJobLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddMediaWorkflowLockResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddMediaWorkflowLockResponse.java index 591e2d730c3..8c84bfe6191 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddMediaWorkflowLockResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddMediaWorkflowLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddStreamCdnConfigLockResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddStreamCdnConfigLockResponse.java index 2f68dab9036..83da11f6b02 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddStreamCdnConfigLockResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddStreamCdnConfigLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddStreamDistributionChannelLockResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddStreamDistributionChannelLockResponse.java index a5f7e904f58..f6a1a2a51dc 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddStreamDistributionChannelLockResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddStreamDistributionChannelLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddStreamPackagingConfigLockResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddStreamPackagingConfigLockResponse.java index 1c1be8a60b5..f63f142afd0 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddStreamPackagingConfigLockResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/AddStreamPackagingConfigLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ChangeMediaAssetCompartmentResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ChangeMediaAssetCompartmentResponse.java index 9315dd48631..773ee486f02 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ChangeMediaAssetCompartmentResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ChangeMediaAssetCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ChangeMediaWorkflowCompartmentResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ChangeMediaWorkflowCompartmentResponse.java index 97b56404dd6..7df036ff883 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ChangeMediaWorkflowCompartmentResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ChangeMediaWorkflowCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ChangeMediaWorkflowConfigurationCompartmentResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ChangeMediaWorkflowConfigurationCompartmentResponse.java index db447b7a9dc..03924aa62a8 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ChangeMediaWorkflowConfigurationCompartmentResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ChangeMediaWorkflowConfigurationCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ChangeMediaWorkflowJobCompartmentResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ChangeMediaWorkflowJobCompartmentResponse.java index dc6d39c7244..468db28e204 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ChangeMediaWorkflowJobCompartmentResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ChangeMediaWorkflowJobCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ChangeStreamDistributionChannelCompartmentResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ChangeStreamDistributionChannelCompartmentResponse.java index 2a9aa466653..352e5060d74 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ChangeStreamDistributionChannelCompartmentResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ChangeStreamDistributionChannelCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateMediaAssetResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateMediaAssetResponse.java index de3e716e1b4..9a9f6ff44d9 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateMediaAssetResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateMediaAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateMediaWorkflowConfigurationResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateMediaWorkflowConfigurationResponse.java index 699b48bd996..10a73d19ddd 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateMediaWorkflowConfigurationResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateMediaWorkflowConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateMediaWorkflowJobResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateMediaWorkflowJobResponse.java index 46066f5cb47..016ef79efc3 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateMediaWorkflowJobResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateMediaWorkflowJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateMediaWorkflowResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateMediaWorkflowResponse.java index a88b0b7669f..5dc6b7cf1b6 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateMediaWorkflowResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateMediaWorkflowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateStreamCdnConfigResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateStreamCdnConfigResponse.java index 2961acf2fec..116bc776b80 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateStreamCdnConfigResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateStreamCdnConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateStreamDistributionChannelResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateStreamDistributionChannelResponse.java index 4de7a5c86f7..bf9da4aafb6 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateStreamDistributionChannelResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateStreamDistributionChannelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateStreamPackagingConfigResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateStreamPackagingConfigResponse.java index 3bd7f894162..2f8a19397ab 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateStreamPackagingConfigResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/CreateStreamPackagingConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteMediaAssetDistributionChannelAttachmentResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteMediaAssetDistributionChannelAttachmentResponse.java index c808758df8e..7807e7d8fee 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteMediaAssetDistributionChannelAttachmentResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteMediaAssetDistributionChannelAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteMediaAssetResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteMediaAssetResponse.java index 54c393abe86..58f3820c8c6 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteMediaAssetResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteMediaAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteMediaWorkflowConfigurationResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteMediaWorkflowConfigurationResponse.java index d67cf550a1d..cf44b4de405 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteMediaWorkflowConfigurationResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteMediaWorkflowConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteMediaWorkflowJobResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteMediaWorkflowJobResponse.java index a27982616b0..e0bfd6360b4 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteMediaWorkflowJobResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteMediaWorkflowJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteMediaWorkflowResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteMediaWorkflowResponse.java index 5839f30db6f..b0a3d4eab0b 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteMediaWorkflowResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteMediaWorkflowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteStreamCdnConfigResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteStreamCdnConfigResponse.java index 1f1b8387a57..65572181377 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteStreamCdnConfigResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteStreamCdnConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteStreamDistributionChannelResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteStreamDistributionChannelResponse.java index 84e170ce3ee..bce97814a7f 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteStreamDistributionChannelResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteStreamDistributionChannelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteStreamPackagingConfigResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteStreamPackagingConfigResponse.java index 1cdb9722633..e65388a108e 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteStreamPackagingConfigResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/DeleteStreamPackagingConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GeneratePlaylistResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GeneratePlaylistResponse.java index 8bc45ce3fe2..54034d2eb92 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GeneratePlaylistResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GeneratePlaylistResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GenerateSessionTokenResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GenerateSessionTokenResponse.java index 15c36230190..f4bd443d075 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GenerateSessionTokenResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GenerateSessionTokenResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetMediaAssetDistributionChannelAttachmentResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetMediaAssetDistributionChannelAttachmentResponse.java index 088640a2ff7..96e6a3e0f9b 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetMediaAssetDistributionChannelAttachmentResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetMediaAssetDistributionChannelAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetMediaAssetResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetMediaAssetResponse.java index 24510db4daa..9d5a7330465 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetMediaAssetResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetMediaAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetMediaWorkflowConfigurationResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetMediaWorkflowConfigurationResponse.java index dc2065086e2..e0ef4c34548 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetMediaWorkflowConfigurationResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetMediaWorkflowConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetMediaWorkflowJobResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetMediaWorkflowJobResponse.java index d1b92d3f012..9def77b5d48 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetMediaWorkflowJobResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetMediaWorkflowJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetMediaWorkflowResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetMediaWorkflowResponse.java index fa6c8937de2..0b7a650fb74 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetMediaWorkflowResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetMediaWorkflowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetStreamCdnConfigResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetStreamCdnConfigResponse.java index d03d3a45858..00d528083dc 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetStreamCdnConfigResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetStreamCdnConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetStreamDistributionChannelResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetStreamDistributionChannelResponse.java index b5ea3604f90..4d3731ca5d5 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetStreamDistributionChannelResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetStreamDistributionChannelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetStreamPackagingConfigResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetStreamPackagingConfigResponse.java index f574de75509..0ba67e2365f 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetStreamPackagingConfigResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/GetStreamPackagingConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/IngestStreamDistributionChannelResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/IngestStreamDistributionChannelResponse.java index 2f2ae6316d3..1daba06c323 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/IngestStreamDistributionChannelResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/IngestStreamDistributionChannelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaAssetDistributionChannelAttachmentsResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaAssetDistributionChannelAttachmentsResponse.java index c3609e264df..7a7a376b2b5 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaAssetDistributionChannelAttachmentsResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaAssetDistributionChannelAttachmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaAssetsResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaAssetsResponse.java index 9a2f0042800..94d51ce8316 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaAssetsResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaAssetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaWorkflowConfigurationsResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaWorkflowConfigurationsResponse.java index 59e12161901..fda62e7ce9a 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaWorkflowConfigurationsResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaWorkflowConfigurationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaWorkflowJobsResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaWorkflowJobsResponse.java index 9986253c9c2..5f23ac0aa01 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaWorkflowJobsResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaWorkflowJobsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaWorkflowTaskDeclarationsResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaWorkflowTaskDeclarationsResponse.java index 83f8ad2adec..46decbd998e 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaWorkflowTaskDeclarationsResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaWorkflowTaskDeclarationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaWorkflowsResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaWorkflowsResponse.java index 36ead9191ab..1905e1eaa5d 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaWorkflowsResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListMediaWorkflowsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListStreamCdnConfigsResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListStreamCdnConfigsResponse.java index 87254e3cb7b..cd2f42140fb 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListStreamCdnConfigsResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListStreamCdnConfigsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListStreamDistributionChannelsResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListStreamDistributionChannelsResponse.java index 555839eaa39..9ccdb7a5eea 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListStreamDistributionChannelsResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListStreamDistributionChannelsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListStreamPackagingConfigsResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListStreamPackagingConfigsResponse.java index 65a7523f065..2d732cdfebf 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListStreamPackagingConfigsResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListStreamPackagingConfigsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListSystemMediaWorkflowsResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListSystemMediaWorkflowsResponse.java index 8170625ce48..ef888dfa4da 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListSystemMediaWorkflowsResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/ListSystemMediaWorkflowsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveMediaAssetLockResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveMediaAssetLockResponse.java index 466765b832d..2fe33693b6b 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveMediaAssetLockResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveMediaAssetLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveMediaWorkflowConfigurationLockResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveMediaWorkflowConfigurationLockResponse.java index 2260984fb04..f4682933d07 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveMediaWorkflowConfigurationLockResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveMediaWorkflowConfigurationLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveMediaWorkflowJobLockResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveMediaWorkflowJobLockResponse.java index 474a860e70a..b723e424ec2 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveMediaWorkflowJobLockResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveMediaWorkflowJobLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveMediaWorkflowLockResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveMediaWorkflowLockResponse.java index 9af18cd77ec..d79627e5579 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveMediaWorkflowLockResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveMediaWorkflowLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveStreamCdnConfigLockResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveStreamCdnConfigLockResponse.java index 0b6e667b04e..cb02294d711 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveStreamCdnConfigLockResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveStreamCdnConfigLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveStreamDistributionChannelLockResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveStreamDistributionChannelLockResponse.java index 79faac57be7..4ba7ed5ffb4 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveStreamDistributionChannelLockResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveStreamDistributionChannelLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveStreamPackagingConfigLockResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveStreamPackagingConfigLockResponse.java index e0fbab527df..98fba1bf4b6 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveStreamPackagingConfigLockResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/RemoveStreamPackagingConfigLockResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateMediaAssetResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateMediaAssetResponse.java index f8792e27200..56d76180dca 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateMediaAssetResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateMediaAssetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateMediaWorkflowConfigurationResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateMediaWorkflowConfigurationResponse.java index 1d5a67de3a3..6811e14319c 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateMediaWorkflowConfigurationResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateMediaWorkflowConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateMediaWorkflowJobResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateMediaWorkflowJobResponse.java index 502cb83bf04..44c01edf3df 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateMediaWorkflowJobResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateMediaWorkflowJobResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateMediaWorkflowResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateMediaWorkflowResponse.java index a5c92f65c25..9216a461696 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateMediaWorkflowResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateMediaWorkflowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateStreamCdnConfigResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateStreamCdnConfigResponse.java index 872ba6c7b38..2cfc0a52118 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateStreamCdnConfigResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateStreamCdnConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateStreamDistributionChannelResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateStreamDistributionChannelResponse.java index 81ab6d86ff4..9447585f021 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateStreamDistributionChannelResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateStreamDistributionChannelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateStreamPackagingConfigResponse.java b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateStreamPackagingConfigResponse.java index 30185ae10b8..1783b3f5f7d 100644 --- a/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateStreamPackagingConfigResponse.java +++ b/bmc-mediaservices/src/main/java/com/oracle/bmc/mediaservices/responses/UpdateStreamPackagingConfigResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mediaservices.responses; diff --git a/bmc-mediaservices/src/main/resources/com/oracle/bmc/mediaservices/client.properties b/bmc-mediaservices/src/main/resources/com/oracle/bmc/mediaservices/client.properties index 67f7a8db587..9a5762512e2 100644 --- a/bmc-mediaservices/src/main/resources/com/oracle/bmc/mediaservices/client.properties +++ b/bmc-mediaservices/src/main/resources/com/oracle/bmc/mediaservices/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-mngdmac/pom.xml b/bmc-mngdmac/pom.xml index 1e508d77b18..ef091523084 100644 --- a/bmc-mngdmac/pom.xml +++ b/bmc-mngdmac/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-mngdmac @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDevice.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDevice.java index 33bb02ae258..1f3ca674f35 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDevice.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDevice.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDeviceAsync.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDeviceAsync.java index 6eb0315464d..de02fefdabd 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDeviceAsync.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDeviceAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDeviceAsyncClient.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDeviceAsyncClient.java index 5481b554a49..5a0837118c9 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDeviceAsyncClient.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDeviceAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDeviceClient.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDeviceClient.java index 3f0fed06359..59963f1489b 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDeviceClient.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDeviceClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDevicePaginators.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDevicePaginators.java index 3db8c5d0673..9c2befa5e56 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDevicePaginators.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDevicePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDeviceWaiters.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDeviceWaiters.java index f189956db2f..5602dfcac4d 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDeviceWaiters.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacDeviceWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrder.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrder.java index bd46e50fed2..4995039d9f0 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrder.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrderAsync.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrderAsync.java index 56cc1627dde..a26e617a043 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrderAsync.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrderAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrderAsyncClient.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrderAsyncClient.java index 9d8567a2682..8a883bf0652 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrderAsyncClient.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrderAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrderClient.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrderClient.java index f55347d2904..b198c2b9d08 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrderClient.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrderClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrderPaginators.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrderPaginators.java index 079e89a0db5..9764532253c 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrderPaginators.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrderPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrderWaiters.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrderWaiters.java index 5892388167e..6e048864a67 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrderWaiters.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/MacOrderWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/ActionType.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/ActionType.java index 4b9c46acebd..9305e905fa7 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/ActionType.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/CancelMacOrderDetails.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/CancelMacOrderDetails.java index 40bf9c70b11..1e696be3356 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/CancelMacOrderDetails.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/CancelMacOrderDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/ChangeMacOrderCompartmentDetails.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/ChangeMacOrderCompartmentDetails.java index 2e434a3001c..800a34b235d 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/ChangeMacOrderCompartmentDetails.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/ChangeMacOrderCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/CreateMacOrderDetails.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/CreateMacOrderDetails.java index 6ff828ba9e4..885fc992703 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/CreateMacOrderDetails.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/CreateMacOrderDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/CreateNodeConfigDetails.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/CreateNodeConfigDetails.java index 5caeb82689d..29fc928eac8 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/CreateNodeConfigDetails.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/CreateNodeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacDevice.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacDevice.java index e898cf2d82d..55bc4e43c50 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacDevice.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacDevice.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacDeviceCollection.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacDeviceCollection.java index 517cde36b45..5b052bbe2e3 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacDeviceCollection.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacDeviceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacDeviceSummary.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacDeviceSummary.java index a5bda265ff6..6db999d18d9 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacDeviceSummary.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacDeviceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacOrder.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacOrder.java index aaf0a1f9fcd..071a9276bdc 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacOrder.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacOrderCollection.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacOrderCollection.java index baac94d51f3..d6be6bd9ec5 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacOrderCollection.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacOrderCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacOrderSummary.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacOrderSummary.java index 45e3122564e..8a8c3b18d0a 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacOrderSummary.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/MacOrderSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/NodeConfig.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/NodeConfig.java index 056dc89941e..f185dbb97b2 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/NodeConfig.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/NodeConfig.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/OperationStatus.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/OperationStatus.java index 0d3b325ac68..139675a9094 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/OperationStatus.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/OperationType.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/OperationType.java index 8a0ca1eccf5..4d28777a337 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/OperationType.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/OpsActionCreateMacDeviceDetails.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/OpsActionCreateMacDeviceDetails.java index f0406026359..d414ac8aa28 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/OpsActionCreateMacDeviceDetails.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/OpsActionCreateMacDeviceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/OpsActionUpdateMacDeviceDetails.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/OpsActionUpdateMacDeviceDetails.java index f0f16e4a11c..493be479f6d 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/OpsActionUpdateMacDeviceDetails.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/OpsActionUpdateMacDeviceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/OpsActionUpdateMacOrderDetails.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/OpsActionUpdateMacOrderDetails.java index b3ee8ff46e0..d2316a6cf2e 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/OpsActionUpdateMacOrderDetails.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/OpsActionUpdateMacOrderDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/SortOrder.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/SortOrder.java index 421afe92d72..588350a527d 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/SortOrder.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/UpdateMacOrderDetails.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/UpdateMacOrderDetails.java index adbf27d6cb9..5075b52d5db 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/UpdateMacOrderDetails.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/UpdateMacOrderDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/UpdateNodeConfigDetails.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/UpdateNodeConfigDetails.java index 1c4f4aeb55d..973e4e4a3ca 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/UpdateNodeConfigDetails.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/UpdateNodeConfigDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequest.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequest.java index 639448b5a7e..1cd5dbf6806 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequest.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestError.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestError.java index 0bcf645212e..c1692ac385e 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestError.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestErrorCollection.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestErrorCollection.java index 4995d119af9..905335e8e45 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestErrorCollection.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestLogEntry.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestLogEntry.java index 90ad6f98efc..4705c46e240 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestLogEntry.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestLogEntryCollection.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestLogEntryCollection.java index 5c751727098..52d5fd6de17 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestLogEntryCollection.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestResource.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestResource.java index 00cb5fbdf0e..c4abd4745a2 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestResource.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestResourceMetadataKey.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestResourceMetadataKey.java index 98db71fb5f1..53f48eca112 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestResourceMetadataKey.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestSummary.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestSummary.java index 831d67f6125..17bb7991d4d 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestSummary.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestSummaryCollection.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestSummaryCollection.java index 56522fcf435..586bd8f06ea 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestSummaryCollection.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.model; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/CancelMacOrderRequest.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/CancelMacOrderRequest.java index 5690dfd153c..594304cee25 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/CancelMacOrderRequest.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/CancelMacOrderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.requests; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/CancelWorkRequestRequest.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/CancelWorkRequestRequest.java index f6cd170d7b8..73231f25892 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/CancelWorkRequestRequest.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.requests; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ChangeMacOrderCompartmentRequest.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ChangeMacOrderCompartmentRequest.java index 41a81541a2f..160206adb6e 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ChangeMacOrderCompartmentRequest.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ChangeMacOrderCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.requests; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/CreateMacOrderRequest.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/CreateMacOrderRequest.java index 870d081e8c2..cee0c9e97d2 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/CreateMacOrderRequest.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/CreateMacOrderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.requests; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/GetMacDeviceRequest.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/GetMacDeviceRequest.java index 432f7f77d08..5c4fa7b4a04 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/GetMacDeviceRequest.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/GetMacDeviceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.requests; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/GetMacOrderRequest.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/GetMacOrderRequest.java index a6449a5be64..2b479607000 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/GetMacOrderRequest.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/GetMacOrderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.requests; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/GetWorkRequestRequest.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/GetWorkRequestRequest.java index a4ad4fe4e12..2317ac68578 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/GetWorkRequestRequest.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.requests; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ListMacDevicesRequest.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ListMacDevicesRequest.java index 4f892889664..94eebd054fd 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ListMacDevicesRequest.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ListMacDevicesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.requests; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ListMacOrdersRequest.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ListMacOrdersRequest.java index db0fbe9168c..469cbfa49e6 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ListMacOrdersRequest.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ListMacOrdersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.requests; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ListWorkRequestErrorsRequest.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ListWorkRequestErrorsRequest.java index 94f941d3aa5..d4feef8116a 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.requests; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ListWorkRequestLogsRequest.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ListWorkRequestLogsRequest.java index b4962d72de8..e8ac7ef0737 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ListWorkRequestLogsRequest.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.requests; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ListWorkRequestsRequest.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ListWorkRequestsRequest.java index 111d02181ca..e2f3aeb5def 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ListWorkRequestsRequest.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.requests; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/TerminateMacDeviceRequest.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/TerminateMacDeviceRequest.java index 16b46c035fb..be6ae30964b 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/TerminateMacDeviceRequest.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/TerminateMacDeviceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.requests; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/UpdateMacOrderRequest.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/UpdateMacOrderRequest.java index 62fd376639b..b3f7ce7129b 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/UpdateMacOrderRequest.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/requests/UpdateMacOrderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.requests; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/CancelMacOrderResponse.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/CancelMacOrderResponse.java index 6087bff6e29..e6ee299537e 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/CancelMacOrderResponse.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/CancelMacOrderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.responses; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/CancelWorkRequestResponse.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/CancelWorkRequestResponse.java index 890b67ad03b..6a9325651cf 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/CancelWorkRequestResponse.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.responses; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ChangeMacOrderCompartmentResponse.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ChangeMacOrderCompartmentResponse.java index accbb815aa9..a6398d97828 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ChangeMacOrderCompartmentResponse.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ChangeMacOrderCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.responses; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/CreateMacOrderResponse.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/CreateMacOrderResponse.java index 70f5d513226..9f6e95d291a 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/CreateMacOrderResponse.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/CreateMacOrderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.responses; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/GetMacDeviceResponse.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/GetMacDeviceResponse.java index 46ded628a88..7017d4205fd 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/GetMacDeviceResponse.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/GetMacDeviceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.responses; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/GetMacOrderResponse.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/GetMacOrderResponse.java index 7c8a935ce2c..de737864a3d 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/GetMacOrderResponse.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/GetMacOrderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.responses; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/GetWorkRequestResponse.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/GetWorkRequestResponse.java index 9ef33724989..bbe45ab2dba 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/GetWorkRequestResponse.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.responses; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ListMacDevicesResponse.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ListMacDevicesResponse.java index e2601bc0a11..96a62eba764 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ListMacDevicesResponse.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ListMacDevicesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.responses; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ListMacOrdersResponse.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ListMacOrdersResponse.java index 9955bac3dff..d0a8cd382ee 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ListMacOrdersResponse.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ListMacOrdersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.responses; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ListWorkRequestErrorsResponse.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ListWorkRequestErrorsResponse.java index 4a860f28449..ebc887849e3 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.responses; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ListWorkRequestLogsResponse.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ListWorkRequestLogsResponse.java index 3c4bde52828..35f1a748738 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ListWorkRequestLogsResponse.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.responses; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ListWorkRequestsResponse.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ListWorkRequestsResponse.java index 7adb7606b89..99d079838e4 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ListWorkRequestsResponse.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.responses; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/TerminateMacDeviceResponse.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/TerminateMacDeviceResponse.java index 356c7212d7f..da933087878 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/TerminateMacDeviceResponse.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/TerminateMacDeviceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.responses; diff --git a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/UpdateMacOrderResponse.java b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/UpdateMacOrderResponse.java index 7cb7fe56382..ee285ca954a 100644 --- a/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/UpdateMacOrderResponse.java +++ b/bmc-mngdmac/src/main/java/com/oracle/bmc/mngdmac/responses/UpdateMacOrderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mngdmac.responses; diff --git a/bmc-mngdmac/src/main/resources/com/oracle/bmc/mngdmac/client.properties b/bmc-mngdmac/src/main/resources/com/oracle/bmc/mngdmac/client.properties index e98dce92574..64b0a66ddbb 100644 --- a/bmc-mngdmac/src/main/resources/com/oracle/bmc/mngdmac/client.properties +++ b/bmc-mngdmac/src/main/resources/com/oracle/bmc/mngdmac/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-modeldeployment/pom.xml b/bmc-modeldeployment/pom.xml index 21b0027f8c1..d7be342e8b7 100644 --- a/bmc-modeldeployment/pom.xml +++ b/bmc-modeldeployment/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-modeldeployment @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/ModelDeployment.java b/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/ModelDeployment.java index 418f0aecc28..7385290e3eb 100644 --- a/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/ModelDeployment.java +++ b/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/ModelDeployment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.modeldeployment; diff --git a/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/ModelDeploymentAsync.java b/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/ModelDeploymentAsync.java index 34f63349a7a..371ee01a30a 100644 --- a/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/ModelDeploymentAsync.java +++ b/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/ModelDeploymentAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.modeldeployment; diff --git a/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/ModelDeploymentAsyncClient.java b/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/ModelDeploymentAsyncClient.java index 579898af03f..36199cfae55 100644 --- a/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/ModelDeploymentAsyncClient.java +++ b/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/ModelDeploymentAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.modeldeployment; diff --git a/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/ModelDeploymentClient.java b/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/ModelDeploymentClient.java index 99dd7fc8afc..1742c487cc1 100644 --- a/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/ModelDeploymentClient.java +++ b/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/ModelDeploymentClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.modeldeployment; diff --git a/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/model/InferenceResult.java b/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/model/InferenceResult.java index 91ebdeeecc3..681a92009d2 100644 --- a/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/model/InferenceResult.java +++ b/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/model/InferenceResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.modeldeployment.model; diff --git a/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/requests/PredictRequest.java b/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/requests/PredictRequest.java index 1ab17685432..1644b251a1a 100644 --- a/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/requests/PredictRequest.java +++ b/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/requests/PredictRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.modeldeployment.requests; diff --git a/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/requests/PredictWithResponseStreamRequest.java b/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/requests/PredictWithResponseStreamRequest.java index 547d65d7a18..f50606dbe35 100644 --- a/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/requests/PredictWithResponseStreamRequest.java +++ b/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/requests/PredictWithResponseStreamRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.modeldeployment.requests; diff --git a/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/responses/PredictResponse.java b/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/responses/PredictResponse.java index 74a7a09011c..11db9bd4f19 100644 --- a/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/responses/PredictResponse.java +++ b/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/responses/PredictResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.modeldeployment.responses; diff --git a/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/responses/PredictWithResponseStreamResponse.java b/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/responses/PredictWithResponseStreamResponse.java index 399d9176c22..ddad0d1e628 100644 --- a/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/responses/PredictWithResponseStreamResponse.java +++ b/bmc-modeldeployment/src/main/java/com/oracle/bmc/modeldeployment/responses/PredictWithResponseStreamResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.modeldeployment.responses; diff --git a/bmc-modeldeployment/src/main/resources/com/oracle/bmc/modeldeployment/client.properties b/bmc-modeldeployment/src/main/resources/com/oracle/bmc/modeldeployment/client.properties index 6cde854a942..a3410c40e58 100644 --- a/bmc-modeldeployment/src/main/resources/com/oracle/bmc/modeldeployment/client.properties +++ b/bmc-modeldeployment/src/main/resources/com/oracle/bmc/modeldeployment/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-monitoring/pom.xml b/bmc-monitoring/pom.xml index b0ad1afea4c..4bff1a01113 100644 --- a/bmc-monitoring/pom.xml +++ b/bmc-monitoring/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-monitoring @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/Monitoring.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/Monitoring.java index b673a04f5b8..3dde98555ec 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/Monitoring.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/Monitoring.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/MonitoringAsync.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/MonitoringAsync.java index 440e97d3b71..7c979fd8869 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/MonitoringAsync.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/MonitoringAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/MonitoringAsyncClient.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/MonitoringAsyncClient.java index 8329d16b85e..6c3416ee755 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/MonitoringAsyncClient.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/MonitoringAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/MonitoringClient.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/MonitoringClient.java index 51d4ced03ed..fe065370c89 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/MonitoringClient.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/MonitoringClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/MonitoringPaginators.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/MonitoringPaginators.java index 4bf3e004eca..c21362f28e5 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/MonitoringPaginators.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/MonitoringPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/MonitoringWaiters.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/MonitoringWaiters.java index b6602f36d61..5b64dccf37c 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/MonitoringWaiters.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/MonitoringWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AggregatedDatapoint.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AggregatedDatapoint.java index 2c32f18feac..7d1a758ece8 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AggregatedDatapoint.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AggregatedDatapoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/Alarm.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/Alarm.java index 58144e81b42..8bd7a635fed 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/Alarm.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/Alarm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmDimensionStatesCollection.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmDimensionStatesCollection.java index 63a6c93e79c..75ac0af6758 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmDimensionStatesCollection.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmDimensionStatesCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmDimensionStatesEntry.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmDimensionStatesEntry.java index b8e7488ac4e..1863b7ba01c 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmDimensionStatesEntry.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmDimensionStatesEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmHistoryCollection.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmHistoryCollection.java index c2c154e7223..ea51e2890a2 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmHistoryCollection.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmHistoryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmHistoryEntry.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmHistoryEntry.java index 5de9965101c..fa9f26cee39 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmHistoryEntry.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmHistoryEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmOverride.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmOverride.java index 15611ed48e9..ded15041a6c 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmOverride.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmOverride.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmStatusSummary.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmStatusSummary.java index 7ddc006a7a1..c683e685eb8 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmStatusSummary.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmStatusSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSummary.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSummary.java index e9af7919913..20344bceda7 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSummary.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppression.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppression.java index b49c82ee126..a3ee00fbff3 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppression.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppression.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionAlarmTarget.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionAlarmTarget.java index cf0c40c6750..aec99fb449e 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionAlarmTarget.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionAlarmTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionCollection.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionCollection.java index f6c1fe47c50..2219753db8d 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionCollection.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionCompartmentTarget.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionCompartmentTarget.java index 1886ce51336..8bbd2bfa2d9 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionCompartmentTarget.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionCompartmentTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionHistoryItem.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionHistoryItem.java index 8c05b0ad8b1..e47cda06a2b 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionHistoryItem.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionHistoryItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionHistoryItemCollection.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionHistoryItemCollection.java index 437d2f227cc..29e9f07a2c6 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionHistoryItemCollection.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionHistoryItemCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionSummary.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionSummary.java index 23737ce0855..4f0e4dd3f67 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionSummary.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionTarget.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionTarget.java index b044b188dfd..fd2e4070d0f 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionTarget.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/AlarmSuppressionTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/ChangeAlarmCompartmentDetails.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/ChangeAlarmCompartmentDetails.java index 650f89642c9..733b0b9cebe 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/ChangeAlarmCompartmentDetails.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/ChangeAlarmCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/CreateAlarmDetails.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/CreateAlarmDetails.java index 71d01b38c6a..d92292f0bd7 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/CreateAlarmDetails.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/CreateAlarmDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/CreateAlarmSuppressionDetails.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/CreateAlarmSuppressionDetails.java index 38f75d629b4..5c7b4a3ca06 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/CreateAlarmSuppressionDetails.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/CreateAlarmSuppressionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/Datapoint.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/Datapoint.java index dbcd2b89478..1264ee53520 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/Datapoint.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/Datapoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/FailedMetricRecord.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/FailedMetricRecord.java index 99a004a3816..c437cefbbef 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/FailedMetricRecord.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/FailedMetricRecord.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/ListMetricsDetails.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/ListMetricsDetails.java index d3fec4a114e..0d1e79d9a5c 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/ListMetricsDetails.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/ListMetricsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/Metric.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/Metric.java index 517c91d268d..c0130e7c736 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/Metric.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/Metric.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/MetricData.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/MetricData.java index f4c904d6c61..2aa611128eb 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/MetricData.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/MetricData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/MetricDataDetails.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/MetricDataDetails.java index 9f90b5740a1..283a2acf471 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/MetricDataDetails.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/MetricDataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/PostMetricDataDetails.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/PostMetricDataDetails.java index a35e4367ffe..b5f56e40538 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/PostMetricDataDetails.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/PostMetricDataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/PostMetricDataResponseDetails.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/PostMetricDataResponseDetails.java index f2e315d945b..dd975dd2925 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/PostMetricDataResponseDetails.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/PostMetricDataResponseDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/Recurrence.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/Recurrence.java index f6a15db2ed6..e4c0b77eaae 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/Recurrence.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/Recurrence.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/RetrieveDimensionStatesDetails.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/RetrieveDimensionStatesDetails.java index 088c018c5fb..b5df85e862b 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/RetrieveDimensionStatesDetails.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/RetrieveDimensionStatesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/SummarizeAlarmSuppressionHistoryDetails.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/SummarizeAlarmSuppressionHistoryDetails.java index fb10ea2c8f3..6901b37dc0f 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/SummarizeAlarmSuppressionHistoryDetails.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/SummarizeAlarmSuppressionHistoryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/SummarizeMetricsDataDetails.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/SummarizeMetricsDataDetails.java index ea0fc4ee991..f8ef6948815 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/SummarizeMetricsDataDetails.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/SummarizeMetricsDataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/Suppression.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/Suppression.java index 7c2667d1d7d..0b50f587bdd 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/Suppression.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/Suppression.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/SuppressionCondition.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/SuppressionCondition.java index 2e2977c4450..696cc67ead1 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/SuppressionCondition.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/SuppressionCondition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/UpdateAlarmDetails.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/UpdateAlarmDetails.java index 2449e64504e..5b8050437cc 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/UpdateAlarmDetails.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/model/UpdateAlarmDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.model; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/ChangeAlarmCompartmentRequest.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/ChangeAlarmCompartmentRequest.java index 59d2be23f7e..c44cc1552a9 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/ChangeAlarmCompartmentRequest.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/ChangeAlarmCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.requests; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/CreateAlarmRequest.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/CreateAlarmRequest.java index a9e1c7c74a6..fc0e3e55235 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/CreateAlarmRequest.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/CreateAlarmRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.requests; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/CreateAlarmSuppressionRequest.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/CreateAlarmSuppressionRequest.java index a8646428b05..8e568030f80 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/CreateAlarmSuppressionRequest.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/CreateAlarmSuppressionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.requests; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/DeleteAlarmRequest.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/DeleteAlarmRequest.java index cf00a83e1c0..114d50b4712 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/DeleteAlarmRequest.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/DeleteAlarmRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.requests; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/DeleteAlarmSuppressionRequest.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/DeleteAlarmSuppressionRequest.java index 0f3d1fd3e33..8b200407549 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/DeleteAlarmSuppressionRequest.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/DeleteAlarmSuppressionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.requests; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/GetAlarmHistoryRequest.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/GetAlarmHistoryRequest.java index 290ed0b6c36..6ad6e0076e7 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/GetAlarmHistoryRequest.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/GetAlarmHistoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.requests; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/GetAlarmRequest.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/GetAlarmRequest.java index ac528e55bcf..1acbd7b15b3 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/GetAlarmRequest.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/GetAlarmRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.requests; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/GetAlarmSuppressionRequest.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/GetAlarmSuppressionRequest.java index 2d2e55bd7fa..6a51712c1f7 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/GetAlarmSuppressionRequest.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/GetAlarmSuppressionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.requests; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/ListAlarmSuppressionsRequest.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/ListAlarmSuppressionsRequest.java index 136367f3e9f..0aaf0e64c99 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/ListAlarmSuppressionsRequest.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/ListAlarmSuppressionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.requests; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/ListAlarmsRequest.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/ListAlarmsRequest.java index 3e58650e259..5a3122d3a1d 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/ListAlarmsRequest.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/ListAlarmsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.requests; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/ListAlarmsStatusRequest.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/ListAlarmsStatusRequest.java index 7b362d1e174..af41b4bb26b 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/ListAlarmsStatusRequest.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/ListAlarmsStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.requests; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/ListMetricsRequest.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/ListMetricsRequest.java index db031a66b40..88fa5b52a15 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/ListMetricsRequest.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/ListMetricsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.requests; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/PostMetricDataRequest.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/PostMetricDataRequest.java index 31be0919978..b9546388ece 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/PostMetricDataRequest.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/PostMetricDataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.requests; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/RemoveAlarmSuppressionRequest.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/RemoveAlarmSuppressionRequest.java index 5861f8bb68a..d2f6ab22db3 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/RemoveAlarmSuppressionRequest.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/RemoveAlarmSuppressionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.requests; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/RetrieveDimensionStatesRequest.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/RetrieveDimensionStatesRequest.java index c1b2b4cefc4..5f2925c105c 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/RetrieveDimensionStatesRequest.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/RetrieveDimensionStatesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.requests; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/SummarizeAlarmSuppressionHistoryRequest.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/SummarizeAlarmSuppressionHistoryRequest.java index e0901a6d837..2c92037e6e1 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/SummarizeAlarmSuppressionHistoryRequest.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/SummarizeAlarmSuppressionHistoryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.requests; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/SummarizeMetricsDataRequest.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/SummarizeMetricsDataRequest.java index e49b49549c9..cd5f3a521b2 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/SummarizeMetricsDataRequest.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/SummarizeMetricsDataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.requests; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/UpdateAlarmRequest.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/UpdateAlarmRequest.java index cec55e363bd..c8532e21cea 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/UpdateAlarmRequest.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/requests/UpdateAlarmRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.requests; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/ChangeAlarmCompartmentResponse.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/ChangeAlarmCompartmentResponse.java index faf43e72c46..03dc875afe3 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/ChangeAlarmCompartmentResponse.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/ChangeAlarmCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.responses; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/CreateAlarmResponse.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/CreateAlarmResponse.java index ebda11c9093..91df78a66d8 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/CreateAlarmResponse.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/CreateAlarmResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.responses; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/CreateAlarmSuppressionResponse.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/CreateAlarmSuppressionResponse.java index b1ac971b4bb..e8d15c7cdda 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/CreateAlarmSuppressionResponse.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/CreateAlarmSuppressionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.responses; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/DeleteAlarmResponse.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/DeleteAlarmResponse.java index 9861849e7fd..099e728aeb1 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/DeleteAlarmResponse.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/DeleteAlarmResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.responses; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/DeleteAlarmSuppressionResponse.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/DeleteAlarmSuppressionResponse.java index d4993383f37..8783173214b 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/DeleteAlarmSuppressionResponse.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/DeleteAlarmSuppressionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.responses; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/GetAlarmHistoryResponse.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/GetAlarmHistoryResponse.java index 4873b76c4db..e94cdd0d5bc 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/GetAlarmHistoryResponse.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/GetAlarmHistoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.responses; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/GetAlarmResponse.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/GetAlarmResponse.java index d0cea9b21af..6f7af5c4df7 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/GetAlarmResponse.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/GetAlarmResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.responses; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/GetAlarmSuppressionResponse.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/GetAlarmSuppressionResponse.java index 751e522fada..84f49984acf 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/GetAlarmSuppressionResponse.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/GetAlarmSuppressionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.responses; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/ListAlarmSuppressionsResponse.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/ListAlarmSuppressionsResponse.java index 2a8367fe32a..68258c1e470 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/ListAlarmSuppressionsResponse.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/ListAlarmSuppressionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.responses; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/ListAlarmsResponse.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/ListAlarmsResponse.java index ca5eb5006f3..08e600a8a6f 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/ListAlarmsResponse.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/ListAlarmsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.responses; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/ListAlarmsStatusResponse.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/ListAlarmsStatusResponse.java index 2669a45a2e6..19013fc7d3e 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/ListAlarmsStatusResponse.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/ListAlarmsStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.responses; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/ListMetricsResponse.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/ListMetricsResponse.java index dc24d292373..33c12643061 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/ListMetricsResponse.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/ListMetricsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.responses; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/PostMetricDataResponse.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/PostMetricDataResponse.java index 5ad4a524eef..ccb1a81b138 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/PostMetricDataResponse.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/PostMetricDataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.responses; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/RemoveAlarmSuppressionResponse.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/RemoveAlarmSuppressionResponse.java index 017c6078f4d..1fd1132934d 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/RemoveAlarmSuppressionResponse.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/RemoveAlarmSuppressionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.responses; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/RetrieveDimensionStatesResponse.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/RetrieveDimensionStatesResponse.java index ae71009fe87..57324cc79ac 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/RetrieveDimensionStatesResponse.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/RetrieveDimensionStatesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.responses; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/SummarizeAlarmSuppressionHistoryResponse.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/SummarizeAlarmSuppressionHistoryResponse.java index 605bd65b53b..8d34c4c953e 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/SummarizeAlarmSuppressionHistoryResponse.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/SummarizeAlarmSuppressionHistoryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.responses; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/SummarizeMetricsDataResponse.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/SummarizeMetricsDataResponse.java index 0973e5fde1f..16e8ea7b1bd 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/SummarizeMetricsDataResponse.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/SummarizeMetricsDataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.responses; diff --git a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/UpdateAlarmResponse.java b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/UpdateAlarmResponse.java index 0d474cf70f8..50fe8bbbbe8 100644 --- a/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/UpdateAlarmResponse.java +++ b/bmc-monitoring/src/main/java/com/oracle/bmc/monitoring/responses/UpdateAlarmResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.monitoring.responses; diff --git a/bmc-monitoring/src/main/resources/com/oracle/bmc/monitoring/client.properties b/bmc-monitoring/src/main/resources/com/oracle/bmc/monitoring/client.properties index b062f6dee34..896cee5a1c5 100644 --- a/bmc-monitoring/src/main/resources/com/oracle/bmc/monitoring/client.properties +++ b/bmc-monitoring/src/main/resources/com/oracle/bmc/monitoring/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-multicloud/pom.xml b/bmc-multicloud/pom.xml index 0eec2d3ee7a..410253ef723 100644 --- a/bmc-multicloud/pom.xml +++ b/bmc-multicloud/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-multicloud @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/Metadata.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/Metadata.java index f25c3864be1..af54a0bd111 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/Metadata.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/Metadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MetadataAsync.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MetadataAsync.java index 621efbf3aed..892a8bf81a7 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MetadataAsync.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MetadataAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MetadataAsyncClient.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MetadataAsyncClient.java index 231999934d9..d3fc1d7bc8f 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MetadataAsyncClient.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MetadataAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MetadataClient.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MetadataClient.java index 584e6829321..4da79201098 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MetadataClient.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MetadataClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MetadataPaginators.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MetadataPaginators.java index 064b0aa44d6..13e2ce23fe7 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MetadataPaginators.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MetadataPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MultiCloudsMetadata.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MultiCloudsMetadata.java index 04dcc015c73..d7d9f0b02a7 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MultiCloudsMetadata.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MultiCloudsMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MultiCloudsMetadataAsync.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MultiCloudsMetadataAsync.java index 7fc20eff639..6e7bcb89b16 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MultiCloudsMetadataAsync.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MultiCloudsMetadataAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MultiCloudsMetadataAsyncClient.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MultiCloudsMetadataAsyncClient.java index 7206b00edcd..53564f35683 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MultiCloudsMetadataAsyncClient.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MultiCloudsMetadataAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MultiCloudsMetadataClient.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MultiCloudsMetadataClient.java index 23dbba252e1..9664f4af80d 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MultiCloudsMetadataClient.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MultiCloudsMetadataClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MultiCloudsMetadataPaginators.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MultiCloudsMetadataPaginators.java index a1aac4ffffb..038ae7e43df 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MultiCloudsMetadataPaginators.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MultiCloudsMetadataPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudResources.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudResources.java index ed4287728b6..3b3a7ba74f2 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudResources.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudResources.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudResourcesAsync.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudResourcesAsync.java index 1bb0ab1db97..340a3b8e0bb 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudResourcesAsync.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudResourcesAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudResourcesAsyncClient.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudResourcesAsyncClient.java index ef7ae64aa89..7b554f8337f 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudResourcesAsyncClient.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudResourcesAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudResourcesClient.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudResourcesClient.java index d2b0f1be434..7fc1e3d8a6d 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudResourcesClient.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudResourcesClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudResourcesPaginators.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudResourcesPaginators.java index ab8d75a760a..4d35f400164 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudResourcesPaginators.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudResourcesPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/Multicloudsubscriptions.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/Multicloudsubscriptions.java index 551267607f9..e7adf8cb33d 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/Multicloudsubscriptions.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/Multicloudsubscriptions.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudsubscriptionsAsync.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudsubscriptionsAsync.java index 84c9ac96db2..1de6462baab 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudsubscriptionsAsync.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudsubscriptionsAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudsubscriptionsAsyncClient.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudsubscriptionsAsyncClient.java index c8bd6ace558..e64d9223c39 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudsubscriptionsAsyncClient.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudsubscriptionsAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudsubscriptionsClient.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudsubscriptionsClient.java index 94de8d02dd2..af14aeb3867 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudsubscriptionsClient.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudsubscriptionsClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudsubscriptionsPaginators.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudsubscriptionsPaginators.java index 92467422942..ee1f33bf2e3 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudsubscriptionsPaginators.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/MulticloudsubscriptionsPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubNetworkAnchor.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubNetworkAnchor.java index 3d86dd83759..3c78d388740 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubNetworkAnchor.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubNetworkAnchor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubNetworkAnchorAsync.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubNetworkAnchorAsync.java index a24472d9fc5..2bcebfda828 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubNetworkAnchorAsync.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubNetworkAnchorAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubNetworkAnchorAsyncClient.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubNetworkAnchorAsyncClient.java index eaabcfaae13..c66332979ff 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubNetworkAnchorAsyncClient.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubNetworkAnchorAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubNetworkAnchorClient.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubNetworkAnchorClient.java index f612101b194..2b2c45bfd9e 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubNetworkAnchorClient.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubNetworkAnchorClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubNetworkAnchorPaginators.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubNetworkAnchorPaginators.java index d09a2570d03..a3be4281f0e 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubNetworkAnchorPaginators.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubNetworkAnchorPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchor.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchor.java index 945584731ac..574372c3123 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchor.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchorAsync.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchorAsync.java index 3198ee468cf..3168b1028c2 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchorAsync.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchorAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchorAsyncClient.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchorAsyncClient.java index d4adc02f843..1a71e25c39e 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchorAsyncClient.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchorAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchorClient.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchorClient.java index 78f96e7b6ce..e07d8db6e4b 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchorClient.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchorClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchorPaginators.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchorPaginators.java index 71f0f7fd3fa..d70a2d303bc 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchorPaginators.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchorPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchorWaiters.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchorWaiters.java index bec36fb0179..16a16594203 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchorWaiters.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/OmhubResourceAnchorWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ActionKindHeader.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ActionKindHeader.java index d7a25df15bf..3ef37ba776a 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ActionKindHeader.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ActionKindHeader.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/AwsCloudServiceProviderMetadataItem.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/AwsCloudServiceProviderMetadataItem.java index 67704115d45..1ba0cc26f90 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/AwsCloudServiceProviderMetadataItem.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/AwsCloudServiceProviderMetadataItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/AzureCloudServiceProviderMetadataItem.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/AzureCloudServiceProviderMetadataItem.java index 9c0569610a2..c6a8293999d 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/AzureCloudServiceProviderMetadataItem.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/AzureCloudServiceProviderMetadataItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/CloudServiceProviderMetadataItem.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/CloudServiceProviderMetadataItem.java index 4ae016e4408..52a59843b94 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/CloudServiceProviderMetadataItem.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/CloudServiceProviderMetadataItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/CloudServiceProviderNetworkMetadataItem.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/CloudServiceProviderNetworkMetadataItem.java index 68016f75ec6..96db405d156 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/CloudServiceProviderNetworkMetadataItem.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/CloudServiceProviderNetworkMetadataItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/CspZoneKeyReferenceId.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/CspZoneKeyReferenceId.java index f9493ececcc..20a247202d2 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/CspZoneKeyReferenceId.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/CspZoneKeyReferenceId.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocation.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocation.java index f1fdfa56e5b..74d9942230e 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocation.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationDetail.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationDetail.java index bf42d7cb4c6..02913884d99 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationDetail.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationDetail.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationMappingMetadatumSummary.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationMappingMetadatumSummary.java index 21149b84455..7f68d670e28 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationMappingMetadatumSummary.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationMappingMetadatumSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationMappingMetadatumSummaryCollection.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationMappingMetadatumSummaryCollection.java index a23076a13ec..52565565cde 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationMappingMetadatumSummaryCollection.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationMappingMetadatumSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationSummariesMetadatumSummary.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationSummariesMetadatumSummary.java index afad2415518..318e9c4e68d 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationSummariesMetadatumSummary.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationSummariesMetadatumSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationSummariesMetadatumSummaryCollection.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationSummariesMetadatumSummaryCollection.java index 9e0636bec49..815af32fd25 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationSummariesMetadatumSummaryCollection.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationSummariesMetadatumSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationSummary.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationSummary.java index 9394f8a1655..57823ccaac9 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationSummary.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationsMetadatumCollection.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationsMetadatumCollection.java index 81a4e6edbe8..95b7e9bab26 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationsMetadatumCollection.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationsMetadatumCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationsMetadatumSummary.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationsMetadatumSummary.java index 525c65aed24..8d2769100ca 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationsMetadatumSummary.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ExternalLocationsMetadatumSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/GcpCloudServiceProviderMetadataItem.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/GcpCloudServiceProviderMetadataItem.java index b3451d22a5f..ecaa00752c9 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/GcpCloudServiceProviderMetadataItem.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/GcpCloudServiceProviderMetadataItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MultiCloudMetadata.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MultiCloudMetadata.java index 69db3d3e395..fa5f7cf1cf3 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MultiCloudMetadata.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MultiCloudMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MultiCloudMetadataCollection.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MultiCloudMetadataCollection.java index d9a0bf6392f..92b66f83b41 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MultiCloudMetadataCollection.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MultiCloudMetadataCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MultiCloudMetadataSummary.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MultiCloudMetadataSummary.java index d2d4ca1ba10..0883c630395 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MultiCloudMetadataSummary.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MultiCloudMetadataSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MulticloudResourceCollection.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MulticloudResourceCollection.java index ef36f56543b..8c8d9d37bbe 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MulticloudResourceCollection.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MulticloudResourceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MulticloudResourceSummary.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MulticloudResourceSummary.java index 0a11f3a7fa0..c8dcb703773 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MulticloudResourceSummary.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MulticloudResourceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MulticloudSubscriptionCollection.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MulticloudSubscriptionCollection.java index 866533ecaa2..99649aa89aa 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MulticloudSubscriptionCollection.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MulticloudSubscriptionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MulticloudSubscriptionSummary.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MulticloudSubscriptionSummary.java index aa00e6d809b..2b83116b937 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MulticloudSubscriptionSummary.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/MulticloudSubscriptionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/NetworkAnchor.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/NetworkAnchor.java index 986c87de896..4406eeebcd9 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/NetworkAnchor.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/NetworkAnchor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/NetworkAnchorCollection.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/NetworkAnchorCollection.java index 79884b22d8a..f1ec286a120 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/NetworkAnchorCollection.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/NetworkAnchorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/NetworkAnchorConnectionStatus.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/NetworkAnchorConnectionStatus.java index 28d9bef3fb9..6e87fb9e28a 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/NetworkAnchorConnectionStatus.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/NetworkAnchorConnectionStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/NetworkAnchorSummary.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/NetworkAnchorSummary.java index cb788b61028..8706dd7822c 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/NetworkAnchorSummary.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/NetworkAnchorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/OciDns.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/OciDns.java index c22e7289fa8..88434323be8 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/OciDns.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/OciDns.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/OciNetworkMetadata.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/OciNetworkMetadata.java index bb2c3c3a08c..f4758468cb1 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/OciNetworkMetadata.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/OciNetworkMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/OciNetworkSubnet.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/OciNetworkSubnet.java index 3777544a3bc..1d59e83e4d6 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/OciNetworkSubnet.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/OciNetworkSubnet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/OciVcn.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/OciVcn.java index 8ca8c051199..d860b6eb8ff 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/OciVcn.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/OciVcn.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/OmHubCp.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/OmHubCp.java index 99d3bcab002..d9fbc67b377 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/OmHubCp.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/OmHubCp.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/Properties.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/Properties.java index a9c37719f96..6417ede85b3 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/Properties.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/Properties.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ResourceAnchor.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ResourceAnchor.java index 37a3f1ee69f..b54992a663e 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ResourceAnchor.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ResourceAnchor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ResourceAnchorCollection.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ResourceAnchorCollection.java index 7fc20e13963..5cce68dd8dd 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ResourceAnchorCollection.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ResourceAnchorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ResourceAnchorSummary.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ResourceAnchorSummary.java index 2b6cc0fdb75..5834291f31a 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ResourceAnchorSummary.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/ResourceAnchorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/SortOrder.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/SortOrder.java index a1ad36c2751..3710174afc9 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/SortOrder.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/SubscriptionType.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/SubscriptionType.java index cb06c2cf442..26ac7324cfd 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/SubscriptionType.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/model/SubscriptionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.model; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/GetMultiCloudMetadataRequest.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/GetMultiCloudMetadataRequest.java index a16fda3098d..2306e73752c 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/GetMultiCloudMetadataRequest.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/GetMultiCloudMetadataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.requests; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/GetNetworkAnchorRequest.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/GetNetworkAnchorRequest.java index b5385e7265b..3b399b25b60 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/GetNetworkAnchorRequest.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/GetNetworkAnchorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.requests; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/GetResourceAnchorRequest.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/GetResourceAnchorRequest.java index 01515854b5d..cedcca4ee24 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/GetResourceAnchorRequest.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/GetResourceAnchorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.requests; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListExternalLocationDetailsMetadataRequest.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListExternalLocationDetailsMetadataRequest.java index 01e41b0cca4..a7f484be453 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListExternalLocationDetailsMetadataRequest.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListExternalLocationDetailsMetadataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.requests; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListExternalLocationMappingMetadataRequest.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListExternalLocationMappingMetadataRequest.java index 3899b193760..f9911f3bded 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListExternalLocationMappingMetadataRequest.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListExternalLocationMappingMetadataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.requests; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListExternalLocationSummariesMetadataRequest.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListExternalLocationSummariesMetadataRequest.java index 48ace696513..d3d9c124bf6 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListExternalLocationSummariesMetadataRequest.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListExternalLocationSummariesMetadataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.requests; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListMultiCloudMetadataRequest.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListMultiCloudMetadataRequest.java index 7c0934e3788..6db61d81e8f 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListMultiCloudMetadataRequest.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListMultiCloudMetadataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.requests; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListMulticloudResourcesRequest.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListMulticloudResourcesRequest.java index 833642d163d..f8a9cb8dd53 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListMulticloudResourcesRequest.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListMulticloudResourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.requests; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListMulticloudSubscriptionsRequest.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListMulticloudSubscriptionsRequest.java index 4ef6db3d54f..b2ed0a1e8f1 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListMulticloudSubscriptionsRequest.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListMulticloudSubscriptionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.requests; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListNetworkAnchorsRequest.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListNetworkAnchorsRequest.java index 7c58520b07f..33b9a3c86c7 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListNetworkAnchorsRequest.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListNetworkAnchorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.requests; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListResourceAnchorsRequest.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListResourceAnchorsRequest.java index 71c72a4993a..3470292270a 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListResourceAnchorsRequest.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/requests/ListResourceAnchorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.requests; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/GetMultiCloudMetadataResponse.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/GetMultiCloudMetadataResponse.java index 74e91d6c7d9..573f6551114 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/GetMultiCloudMetadataResponse.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/GetMultiCloudMetadataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.responses; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/GetNetworkAnchorResponse.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/GetNetworkAnchorResponse.java index 73268a6ee9c..fdf3ac26ce2 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/GetNetworkAnchorResponse.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/GetNetworkAnchorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.responses; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/GetResourceAnchorResponse.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/GetResourceAnchorResponse.java index b812dcc2c51..bed2d66f0be 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/GetResourceAnchorResponse.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/GetResourceAnchorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.responses; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListExternalLocationDetailsMetadataResponse.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListExternalLocationDetailsMetadataResponse.java index adde2798604..4725f05cf21 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListExternalLocationDetailsMetadataResponse.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListExternalLocationDetailsMetadataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.responses; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListExternalLocationMappingMetadataResponse.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListExternalLocationMappingMetadataResponse.java index 0ec2d2ffb84..4c6ced01c42 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListExternalLocationMappingMetadataResponse.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListExternalLocationMappingMetadataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.responses; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListExternalLocationSummariesMetadataResponse.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListExternalLocationSummariesMetadataResponse.java index 7a807a521b8..e3852de0c32 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListExternalLocationSummariesMetadataResponse.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListExternalLocationSummariesMetadataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.responses; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListMultiCloudMetadataResponse.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListMultiCloudMetadataResponse.java index 343fb0858a3..b0b4e4d6b5e 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListMultiCloudMetadataResponse.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListMultiCloudMetadataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.responses; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListMulticloudResourcesResponse.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListMulticloudResourcesResponse.java index 2847ff6f1ca..6b525012fe4 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListMulticloudResourcesResponse.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListMulticloudResourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.responses; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListMulticloudSubscriptionsResponse.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListMulticloudSubscriptionsResponse.java index 3185574e2fd..494753eb6bd 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListMulticloudSubscriptionsResponse.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListMulticloudSubscriptionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.responses; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListNetworkAnchorsResponse.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListNetworkAnchorsResponse.java index d2f979a2291..f25cac38a77 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListNetworkAnchorsResponse.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListNetworkAnchorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.responses; diff --git a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListResourceAnchorsResponse.java b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListResourceAnchorsResponse.java index 84a15be4401..90c762edb44 100644 --- a/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListResourceAnchorsResponse.java +++ b/bmc-multicloud/src/main/java/com/oracle/bmc/multicloud/responses/ListResourceAnchorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.multicloud.responses; diff --git a/bmc-multicloud/src/main/resources/com/oracle/bmc/multicloud/client.properties b/bmc-multicloud/src/main/resources/com/oracle/bmc/multicloud/client.properties index 0f7dff15c13..422d75b703a 100644 --- a/bmc-multicloud/src/main/resources/com/oracle/bmc/multicloud/client.properties +++ b/bmc-multicloud/src/main/resources/com/oracle/bmc/multicloud/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-mysql/pom.xml b/bmc-mysql/pom.xml index 7423c47029d..ef5439864f1 100644 --- a/bmc-mysql/pom.xml +++ b/bmc-mysql/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-mysql @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/Channels.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/Channels.java index 6ea7b08b632..419f15c6bc3 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/Channels.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/Channels.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ChannelsAsync.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ChannelsAsync.java index 67f6f828301..3f5b8736aea 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ChannelsAsync.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ChannelsAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ChannelsAsyncClient.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ChannelsAsyncClient.java index 28d96a1ca8b..e1d223f4dc6 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ChannelsAsyncClient.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ChannelsAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ChannelsClient.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ChannelsClient.java index 20fbc8a526b..373facf5b0d 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ChannelsClient.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ChannelsClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ChannelsPaginators.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ChannelsPaginators.java index cb12dfd2f0f..89ccfb2b367 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ChannelsPaginators.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ChannelsPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ChannelsWaiters.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ChannelsWaiters.java index 9a87ca5cff2..8cb0f9b8982 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ChannelsWaiters.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ChannelsWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackups.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackups.java index a260487316a..fcc1def3ca5 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackups.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackups.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackupsAsync.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackupsAsync.java index d87c0bfd547..dceb4e20834 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackupsAsync.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackupsAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackupsAsyncClient.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackupsAsyncClient.java index dfc03320fbe..67aeb1e80fd 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackupsAsyncClient.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackupsAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackupsClient.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackupsClient.java index 255eeb8d4d1..bb3be3b50d5 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackupsClient.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackupsClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackupsPaginators.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackupsPaginators.java index d0e06434b2d..5ce04319ddf 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackupsPaginators.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackupsPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackupsWaiters.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackupsWaiters.java index 0b90bfca7cf..8c4925bafb1 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackupsWaiters.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbBackupsWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystem.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystem.java index df56ccd5fac..75d206ff580 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystem.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystemAsync.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystemAsync.java index d029248ead0..d515fb580da 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystemAsync.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystemAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystemAsyncClient.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystemAsyncClient.java index 6f2fdbcc78b..8f02dcde50d 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystemAsyncClient.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystemAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystemClient.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystemClient.java index e9c03994c6a..2d728952246 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystemClient.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystemClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystemPaginators.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystemPaginators.java index d896811664e..c0867b07989 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystemPaginators.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystemPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystemWaiters.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystemWaiters.java index e8a563b2c0b..7312c5a9efe 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystemWaiters.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/DbSystemWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/Mysqlaas.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/Mysqlaas.java index 8faf9c2d5b0..bf5e461990a 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/Mysqlaas.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/Mysqlaas.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/MysqlaasAsync.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/MysqlaasAsync.java index 96374378cd4..67fb4306341 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/MysqlaasAsync.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/MysqlaasAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/MysqlaasAsyncClient.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/MysqlaasAsyncClient.java index c3c8ecca79f..5da0960dd60 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/MysqlaasAsyncClient.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/MysqlaasAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/MysqlaasClient.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/MysqlaasClient.java index 96f12bfc4ad..9404bd20075 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/MysqlaasClient.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/MysqlaasClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/MysqlaasPaginators.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/MysqlaasPaginators.java index 28bca1f5d95..f42a252eb94 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/MysqlaasPaginators.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/MysqlaasPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/MysqlaasWaiters.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/MysqlaasWaiters.java index eccf1fdcb9d..14a617c593c 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/MysqlaasWaiters.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/MysqlaasWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/Replicas.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/Replicas.java index 49aebd2d913..04a270b1c21 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/Replicas.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/Replicas.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ReplicasAsync.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ReplicasAsync.java index e9263b48146..f7b40fa5965 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ReplicasAsync.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ReplicasAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ReplicasAsyncClient.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ReplicasAsyncClient.java index 47b2e3214ff..ae0c4ac2f95 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ReplicasAsyncClient.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ReplicasAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ReplicasClient.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ReplicasClient.java index 1dff9321a6f..e1c0ebefce2 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ReplicasClient.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ReplicasClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ReplicasPaginators.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ReplicasPaginators.java index e36aeb949f4..ca05601ff33 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ReplicasPaginators.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ReplicasPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ReplicasWaiters.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ReplicasWaiters.java index 38a71ad5f9a..0dce7c59e64 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ReplicasWaiters.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/ReplicasWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequests.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequests.java index aa94893cac7..ebfbe175f90 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequests.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequests.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequestsAsync.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequestsAsync.java index a330214350b..e1ccb894c42 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequestsAsync.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequestsAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequestsAsyncClient.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequestsAsyncClient.java index 1ad5dcea4cc..bb5aeb80660 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequestsAsyncClient.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequestsAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequestsClient.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequestsClient.java index 2d4a5d2b084..512deaa56f2 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequestsClient.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequestsClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequestsPaginators.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequestsPaginators.java index 17c4f5a7e97..dfa3f32512a 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequestsPaginators.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequestsPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequestsWaiters.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequestsWaiters.java index 74197853cad..fd75555fd79 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequestsWaiters.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/WorkRequestsWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/AddHeatWaveClusterDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/AddHeatWaveClusterDetails.java index 5ab8c062ef9..d80103c144e 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/AddHeatWaveClusterDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/AddHeatWaveClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/AnonymousTransactionsHandling.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/AnonymousTransactionsHandling.java index 7dd65d42ace..2cca86a2f76 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/AnonymousTransactionsHandling.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/AnonymousTransactionsHandling.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/AssignManualUuidHandling.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/AssignManualUuidHandling.java index 8ea3e93cc43..21c587f5239 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/AssignManualUuidHandling.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/AssignManualUuidHandling.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/AssignTargetUuidHandling.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/AssignTargetUuidHandling.java index 8d97e3caf8c..82c146a20f4 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/AssignTargetUuidHandling.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/AssignTargetUuidHandling.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/Backup.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/Backup.java index 3cf00096a7c..2cb1d93d039 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/Backup.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/Backup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/BackupPolicy.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/BackupPolicy.java index fadc8064bab..bf7b8156b90 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/BackupPolicy.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/BackupPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/BackupSummary.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/BackupSummary.java index b6d40bc612e..04382956ddd 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/BackupSummary.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/BackupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/BackupValidationDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/BackupValidationDetails.java index 342bfcdf8aa..7e9e18fc8ee 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/BackupValidationDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/BackupValidationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CaCertificate.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CaCertificate.java index 42e2a185b32..638849045ed 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CaCertificate.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CaCertificate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CertificateGenerationType.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CertificateGenerationType.java index b88a043df32..e69db05a87e 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CertificateGenerationType.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CertificateGenerationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChangeBackupCompartmentDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChangeBackupCompartmentDetails.java index 3ffdb485c52..285ab363a67 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChangeBackupCompartmentDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChangeBackupCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/Channel.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/Channel.java index 285c2367f2b..93d914bf60b 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/Channel.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/Channel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelFilter.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelFilter.java index 081b54db303..2ed95d71e76 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelFilter.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelSource.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelSource.java index 95012819251..13613d6e637 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelSource.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelSourceMysql.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelSourceMysql.java index 67d2d1f8520..f2a2a40a9b7 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelSourceMysql.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelSourceMysql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelSummary.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelSummary.java index abb94a77ca1..9279510c246 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelSummary.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelTarget.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelTarget.java index 5eeaacc26fb..37f05a62464 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelTarget.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelTarget.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelTargetDbSystem.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelTargetDbSystem.java index 9c5edaeeae6..cb87f3714af 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelTargetDbSystem.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ChannelTargetDbSystem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/Configuration.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/Configuration.java index b0dccab0e8d..ab289c7b365 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/Configuration.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/Configuration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ConfigurationSummary.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ConfigurationSummary.java index ab602b7e982..52b92e84f71 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ConfigurationSummary.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ConfigurationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ConfigurationVariables.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ConfigurationVariables.java index 046651fe4ba..f5a407d2fe6 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ConfigurationVariables.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ConfigurationVariables.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CopyBackupDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CopyBackupDetails.java index 4fccd8bcb09..71252f7efb7 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CopyBackupDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CopyBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CopyPolicy.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CopyPolicy.java index 0b317767377..741272997fe 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CopyPolicy.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CopyPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CrashRecoveryStatus.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CrashRecoveryStatus.java index 34e5862eca4..5f1ce2cbe4b 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CrashRecoveryStatus.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CrashRecoveryStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateBackupDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateBackupDetails.java index 260b63d19dc..68d16b356b7 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateBackupDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateBackupPolicyDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateBackupPolicyDetails.java index 5eda1f17f6a..b6a8a5dffbf 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateBackupPolicyDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateBackupPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateChannelDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateChannelDetails.java index a2939856889..fc66556c5f7 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateChannelDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateChannelSourceDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateChannelSourceDetails.java index 8315a0ee42b..08b2af4140b 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateChannelSourceDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateChannelSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateChannelSourceFromMysqlDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateChannelSourceFromMysqlDetails.java index adecb2fd6c5..1618217576d 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateChannelSourceFromMysqlDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateChannelSourceFromMysqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateChannelTargetDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateChannelTargetDetails.java index 8892cfc9450..f8c32289562 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateChannelTargetDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateChannelTargetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateChannelTargetFromDbSystemDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateChannelTargetFromDbSystemDetails.java index 33ff10ed75f..537a4a12d4c 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateChannelTargetFromDbSystemDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateChannelTargetFromDbSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateConfigurationDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateConfigurationDetails.java index 7f03001a708..8eb0e5ef96c 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateConfigurationDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDatabaseConsoleDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDatabaseConsoleDetails.java new file mode 100644 index 00000000000..303340bdd14 --- /dev/null +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDatabaseConsoleDetails.java @@ -0,0 +1,178 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.mysql.model; + +/** + * Details required to configure the database console while creating a DB System.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190415") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = CreateDatabaseConsoleDetails.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class CreateDatabaseConsoleDetails + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({"status", "port"}) + public CreateDatabaseConsoleDetails(DatabaseConsoleStatus status, Integer port) { + super(); + this.status = status; + this.port = port; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** Enable/disable the database console on the DB System. */ + @com.fasterxml.jackson.annotation.JsonProperty("status") + private DatabaseConsoleStatus status; + + /** + * Enable/disable the database console on the DB System. + * + * @param status the value to set + * @return this builder + */ + public Builder status(DatabaseConsoleStatus status) { + this.status = status; + this.__explicitlySet__.add("status"); + return this; + } + /** + * The port on which the database console can be accessed. Supported port numbers are 443 + * and from 1024 to 65535. + */ + @com.fasterxml.jackson.annotation.JsonProperty("port") + private Integer port; + + /** + * The port on which the database console can be accessed. Supported port numbers are 443 + * and from 1024 to 65535. + * + * @param port the value to set + * @return this builder + */ + public Builder port(Integer port) { + this.port = port; + this.__explicitlySet__.add("port"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public CreateDatabaseConsoleDetails build() { + CreateDatabaseConsoleDetails model = + new CreateDatabaseConsoleDetails(this.status, this.port); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(CreateDatabaseConsoleDetails model) { + if (model.wasPropertyExplicitlySet("status")) { + this.status(model.getStatus()); + } + if (model.wasPropertyExplicitlySet("port")) { + this.port(model.getPort()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** Enable/disable the database console on the DB System. */ + @com.fasterxml.jackson.annotation.JsonProperty("status") + private final DatabaseConsoleStatus status; + + /** + * Enable/disable the database console on the DB System. + * + * @return the value + */ + public DatabaseConsoleStatus getStatus() { + return status; + } + + /** + * The port on which the database console can be accessed. Supported port numbers are 443 and + * from 1024 to 65535. + */ + @com.fasterxml.jackson.annotation.JsonProperty("port") + private final Integer port; + + /** + * The port on which the database console can be accessed. Supported port numbers are 443 and + * from 1024 to 65535. + * + * @return the value + */ + public Integer getPort() { + return port; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("CreateDatabaseConsoleDetails("); + sb.append("super=").append(super.toString()); + sb.append("status=").append(String.valueOf(this.status)); + sb.append(", port=").append(String.valueOf(this.port)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof CreateDatabaseConsoleDetails)) { + return false; + } + + CreateDatabaseConsoleDetails other = (CreateDatabaseConsoleDetails) o; + return java.util.Objects.equals(this.status, other.status) + && java.util.Objects.equals(this.port, other.port) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.status == null ? 43 : this.status.hashCode()); + result = (result * PRIME) + (this.port == null ? 43 : this.port.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemDetails.java index 7ec4fc8a485..d0f03feaf37 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; @@ -28,6 +28,7 @@ public final class CreateDbSystemDetails "description", "compartmentId", "rest", + "databaseConsole", "isHighlyAvailable", "availabilityDomain", "faultDomain", @@ -65,6 +66,7 @@ public CreateDbSystemDetails( String description, String compartmentId, CreateRestDetails rest, + CreateDatabaseConsoleDetails databaseConsole, Boolean isHighlyAvailable, String availabilityDomain, String faultDomain, @@ -101,6 +103,7 @@ public CreateDbSystemDetails( this.description = description; this.compartmentId = compartmentId; this.rest = rest; + this.databaseConsole = databaseConsole; this.isHighlyAvailable = isHighlyAvailable; this.availabilityDomain = availabilityDomain; this.faultDomain = faultDomain; @@ -190,6 +193,15 @@ public Builder rest(CreateRestDetails rest) { this.__explicitlySet__.add("rest"); return this; } + + @com.fasterxml.jackson.annotation.JsonProperty("databaseConsole") + private CreateDatabaseConsoleDetails databaseConsole; + + public Builder databaseConsole(CreateDatabaseConsoleDetails databaseConsole) { + this.databaseConsole = databaseConsole; + this.__explicitlySet__.add("databaseConsole"); + return this; + } /** * Specifies if the DB System is highly available. * @@ -768,6 +780,7 @@ public CreateDbSystemDetails build() { this.description, this.compartmentId, this.rest, + this.databaseConsole, this.isHighlyAvailable, this.availabilityDomain, this.faultDomain, @@ -819,6 +832,9 @@ public Builder copy(CreateDbSystemDetails model) { if (model.wasPropertyExplicitlySet("rest")) { this.rest(model.getRest()); } + if (model.wasPropertyExplicitlySet("databaseConsole")) { + this.databaseConsole(model.getDatabaseConsole()); + } if (model.wasPropertyExplicitlySet("isHighlyAvailable")) { this.isHighlyAvailable(model.getIsHighlyAvailable()); } @@ -971,6 +987,13 @@ public CreateRestDetails getRest() { return rest; } + @com.fasterxml.jackson.annotation.JsonProperty("databaseConsole") + private final CreateDatabaseConsoleDetails databaseConsole; + + public CreateDatabaseConsoleDetails getDatabaseConsole() { + return databaseConsole; + } + /** * Specifies if the DB System is highly available. * @@ -1487,6 +1510,7 @@ public String toString(boolean includeByteArrayContents) { sb.append(", description=").append(String.valueOf(this.description)); sb.append(", compartmentId=").append(String.valueOf(this.compartmentId)); sb.append(", rest=").append(String.valueOf(this.rest)); + sb.append(", databaseConsole=").append(String.valueOf(this.databaseConsole)); sb.append(", isHighlyAvailable=").append(String.valueOf(this.isHighlyAvailable)); sb.append(", availabilityDomain=").append(String.valueOf(this.availabilityDomain)); sb.append(", faultDomain=").append(String.valueOf(this.faultDomain)); @@ -1536,6 +1560,7 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.description, other.description) && java.util.Objects.equals(this.compartmentId, other.compartmentId) && java.util.Objects.equals(this.rest, other.rest) + && java.util.Objects.equals(this.databaseConsole, other.databaseConsole) && java.util.Objects.equals(this.isHighlyAvailable, other.isHighlyAvailable) && java.util.Objects.equals(this.availabilityDomain, other.availabilityDomain) && java.util.Objects.equals(this.faultDomain, other.faultDomain) @@ -1580,6 +1605,9 @@ public int hashCode() { (result * PRIME) + (this.compartmentId == null ? 43 : this.compartmentId.hashCode()); result = (result * PRIME) + (this.rest == null ? 43 : this.rest.hashCode()); + result = + (result * PRIME) + + (this.databaseConsole == null ? 43 : this.databaseConsole.hashCode()); result = (result * PRIME) + (this.isHighlyAvailable == null ? 43 : this.isHighlyAvailable.hashCode()); diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemSourceDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemSourceDetails.java index cf610572965..982fba99820 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemSourceDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemSourceFromBackupDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemSourceFromBackupDetails.java index 6359a73454f..4ecd4f60091 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemSourceFromBackupDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemSourceFromBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemSourceFromNoneDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemSourceFromNoneDetails.java index 48320e3717e..a43a26720ed 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemSourceFromNoneDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemSourceFromNoneDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemSourceFromPitrDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemSourceFromPitrDetails.java index 8e7daab2fe6..f0b25a021b5 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemSourceFromPitrDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemSourceFromPitrDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemSourceImportFromUrlDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemSourceImportFromUrlDetails.java index 94f640c53e0..2a2b4d15ae3 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemSourceImportFromUrlDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDbSystemSourceImportFromUrlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDeletionPolicyDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDeletionPolicyDetails.java index 94b7f374a8f..0e8a8d366cd 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDeletionPolicyDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateDeletionPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateMaintenanceDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateMaintenanceDetails.java index b80cc06a33e..e96272ebb1b 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateMaintenanceDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateMaintenanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateReadEndpointDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateReadEndpointDetails.java index 42b958079fe..7eeb085e506 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateReadEndpointDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateReadEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateReplicaDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateReplicaDetails.java index d2a69001a6d..427c13e0fa6 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateReplicaDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateReplicaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateRestDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateRestDetails.java index 8e9fb4eaf05..f03a6a5f74c 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateRestDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CreateRestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CustomerContact.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CustomerContact.java index 025c874df06..18a84b882e0 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CustomerContact.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/CustomerContact.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DataStorage.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DataStorage.java index fb6bfdc8ca2..969379db6a1 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DataStorage.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DataStorage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DataStorageDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DataStorageDetails.java index 5abe469e98a..9244b3f9a1d 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DataStorageDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DataStorageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DatabaseConsoleDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DatabaseConsoleDetails.java new file mode 100644 index 00000000000..ffaf2b40bb5 --- /dev/null +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DatabaseConsoleDetails.java @@ -0,0 +1,177 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.mysql.model; + +/** + * Database console configuration details.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190415") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = DatabaseConsoleDetails.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class DatabaseConsoleDetails + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({"status", "port"}) + public DatabaseConsoleDetails(DatabaseConsoleStatus status, Integer port) { + super(); + this.status = status; + this.port = port; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** Whether the database console is enabled on the DB System. */ + @com.fasterxml.jackson.annotation.JsonProperty("status") + private DatabaseConsoleStatus status; + + /** + * Whether the database console is enabled on the DB System. + * + * @param status the value to set + * @return this builder + */ + public Builder status(DatabaseConsoleStatus status) { + this.status = status; + this.__explicitlySet__.add("status"); + return this; + } + /** + * The port on which the database console can be accessed. Supported port numbers are 443 + * and from 1024 to 65535. + */ + @com.fasterxml.jackson.annotation.JsonProperty("port") + private Integer port; + + /** + * The port on which the database console can be accessed. Supported port numbers are 443 + * and from 1024 to 65535. + * + * @param port the value to set + * @return this builder + */ + public Builder port(Integer port) { + this.port = port; + this.__explicitlySet__.add("port"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public DatabaseConsoleDetails build() { + DatabaseConsoleDetails model = new DatabaseConsoleDetails(this.status, this.port); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(DatabaseConsoleDetails model) { + if (model.wasPropertyExplicitlySet("status")) { + this.status(model.getStatus()); + } + if (model.wasPropertyExplicitlySet("port")) { + this.port(model.getPort()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** Whether the database console is enabled on the DB System. */ + @com.fasterxml.jackson.annotation.JsonProperty("status") + private final DatabaseConsoleStatus status; + + /** + * Whether the database console is enabled on the DB System. + * + * @return the value + */ + public DatabaseConsoleStatus getStatus() { + return status; + } + + /** + * The port on which the database console can be accessed. Supported port numbers are 443 and + * from 1024 to 65535. + */ + @com.fasterxml.jackson.annotation.JsonProperty("port") + private final Integer port; + + /** + * The port on which the database console can be accessed. Supported port numbers are 443 and + * from 1024 to 65535. + * + * @return the value + */ + public Integer getPort() { + return port; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("DatabaseConsoleDetails("); + sb.append("super=").append(super.toString()); + sb.append("status=").append(String.valueOf(this.status)); + sb.append(", port=").append(String.valueOf(this.port)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof DatabaseConsoleDetails)) { + return false; + } + + DatabaseConsoleDetails other = (DatabaseConsoleDetails) o; + return java.util.Objects.equals(this.status, other.status) + && java.util.Objects.equals(this.port, other.port) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.status == null ? 43 : this.status.hashCode()); + result = (result * PRIME) + (this.port == null ? 43 : this.port.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DatabaseConsoleStatus.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DatabaseConsoleStatus.java new file mode 100644 index 00000000000..1fc00fd12c1 --- /dev/null +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DatabaseConsoleStatus.java @@ -0,0 +1,53 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.mysql.model; + +/** Whether the database console is enabled on the DB System. */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190415") +public enum DatabaseConsoleStatus implements com.oracle.bmc.http.internal.BmcEnum { + Enabled("ENABLED"), + Disabled("DISABLED"), + + /** + * This value is used if a service returns a value for this enum that is not recognized by this + * version of the SDK. + */ + UnknownEnumValue(null); + + private static final org.slf4j.Logger LOG = + org.slf4j.LoggerFactory.getLogger(DatabaseConsoleStatus.class); + + private final String value; + private static java.util.Map map; + + static { + map = new java.util.HashMap<>(); + for (DatabaseConsoleStatus v : DatabaseConsoleStatus.values()) { + if (v != UnknownEnumValue) { + map.put(v.getValue(), v); + } + } + } + + DatabaseConsoleStatus(String value) { + this.value = value; + } + + @com.fasterxml.jackson.annotation.JsonValue + public String getValue() { + return value; + } + + @com.fasterxml.jackson.annotation.JsonCreator + public static DatabaseConsoleStatus create(String key) { + if (map.containsKey(key)) { + return map.get(key); + } + LOG.warn( + "Received unknown value '{}' for enum 'DatabaseConsoleStatus', returning UnknownEnumValue", + key); + return UnknownEnumValue; + } +} diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DatabaseManagementStatus.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DatabaseManagementStatus.java index 47caa3df940..909900cf272 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DatabaseManagementStatus.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DatabaseManagementStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystem.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystem.java index 69ad0d0de55..874ee0f5672 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystem.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; @@ -30,6 +30,7 @@ public final class DbSystem extends com.oracle.bmc.http.client.internal.Explicit "nsgIds", "securityAttributes", "rest", + "databaseConsole", "isHighlyAvailable", "currentPlacement", "isHeatWaveClusterAttached", @@ -77,6 +78,7 @@ public DbSystem( java.util.List nsgIds, java.util.Map> securityAttributes, RestDetails rest, + DatabaseConsoleDetails databaseConsole, Boolean isHighlyAvailable, DbSystemPlacement currentPlacement, Boolean isHeatWaveClusterAttached, @@ -123,6 +125,7 @@ public DbSystem( this.nsgIds = nsgIds; this.securityAttributes = securityAttributes; this.rest = rest; + this.databaseConsole = databaseConsole; this.isHighlyAvailable = isHighlyAvailable; this.currentPlacement = currentPlacement; this.isHeatWaveClusterAttached = isHeatWaveClusterAttached; @@ -287,6 +290,15 @@ public Builder rest(RestDetails rest) { this.__explicitlySet__.add("rest"); return this; } + + @com.fasterxml.jackson.annotation.JsonProperty("databaseConsole") + private DatabaseConsoleDetails databaseConsole; + + public Builder databaseConsole(DatabaseConsoleDetails databaseConsole) { + this.databaseConsole = databaseConsole; + this.__explicitlySet__.add("databaseConsole"); + return this; + } /** Specifies if the DB System is highly available. */ @com.fasterxml.jackson.annotation.JsonProperty("isHighlyAvailable") private Boolean isHighlyAvailable; @@ -909,6 +921,7 @@ public DbSystem build() { this.nsgIds, this.securityAttributes, this.rest, + this.databaseConsole, this.isHighlyAvailable, this.currentPlacement, this.isHeatWaveClusterAttached, @@ -978,6 +991,9 @@ public Builder copy(DbSystem model) { if (model.wasPropertyExplicitlySet("rest")) { this.rest(model.getRest()); } + if (model.wasPropertyExplicitlySet("databaseConsole")) { + this.databaseConsole(model.getDatabaseConsole()); + } if (model.wasPropertyExplicitlySet("isHighlyAvailable")) { this.isHighlyAvailable(model.getIsHighlyAvailable()); } @@ -1208,6 +1224,13 @@ public RestDetails getRest() { return rest; } + @com.fasterxml.jackson.annotation.JsonProperty("databaseConsole") + private final DatabaseConsoleDetails databaseConsole; + + public DatabaseConsoleDetails getDatabaseConsole() { + return databaseConsole; + } + /** Specifies if the DB System is highly available. */ @com.fasterxml.jackson.annotation.JsonProperty("isHighlyAvailable") private final Boolean isHighlyAvailable; @@ -1916,6 +1939,7 @@ public String toString(boolean includeByteArrayContents) { sb.append(", nsgIds=").append(String.valueOf(this.nsgIds)); sb.append(", securityAttributes=").append(String.valueOf(this.securityAttributes)); sb.append(", rest=").append(String.valueOf(this.rest)); + sb.append(", databaseConsole=").append(String.valueOf(this.databaseConsole)); sb.append(", isHighlyAvailable=").append(String.valueOf(this.isHighlyAvailable)); sb.append(", currentPlacement=").append(String.valueOf(this.currentPlacement)); sb.append(", isHeatWaveClusterAttached=") @@ -1977,6 +2001,7 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.nsgIds, other.nsgIds) && java.util.Objects.equals(this.securityAttributes, other.securityAttributes) && java.util.Objects.equals(this.rest, other.rest) + && java.util.Objects.equals(this.databaseConsole, other.databaseConsole) && java.util.Objects.equals(this.isHighlyAvailable, other.isHighlyAvailable) && java.util.Objects.equals(this.currentPlacement, other.currentPlacement) && java.util.Objects.equals( @@ -2037,6 +2062,9 @@ public int hashCode() { ? 43 : this.securityAttributes.hashCode()); result = (result * PRIME) + (this.rest == null ? 43 : this.rest.hashCode()); + result = + (result * PRIME) + + (this.databaseConsole == null ? 43 : this.databaseConsole.hashCode()); result = (result * PRIME) + (this.isHighlyAvailable == null ? 43 : this.isHighlyAvailable.hashCode()); diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemEndpoint.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemEndpoint.java index f481efc9ff3..103ff5674a4 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemEndpoint.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemPlacement.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemPlacement.java index cbbc660d5e5..6083cfdae73 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemPlacement.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemPlacement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSnapshot.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSnapshot.java index 01b45fe9ad8..14f6b6addcd 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSnapshot.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSnapshot.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; @@ -44,6 +44,7 @@ public final class DbSystemSnapshot "port", "portX", "rest", + "databaseConsole", "isHighlyAvailable", "endpoints", "maintenance", @@ -79,6 +80,7 @@ public DbSystemSnapshot( Integer port, Integer portX, RestDetails rest, + DatabaseConsoleDetails databaseConsole, Boolean isHighlyAvailable, java.util.List endpoints, MaintenanceDetails maintenance, @@ -113,6 +115,7 @@ public DbSystemSnapshot( this.port = port; this.portX = portX; this.rest = rest; + this.databaseConsole = databaseConsole; this.isHighlyAvailable = isHighlyAvailable; this.endpoints = endpoints; this.maintenance = maintenance; @@ -465,6 +468,15 @@ public Builder rest(RestDetails rest) { this.__explicitlySet__.add("rest"); return this; } + + @com.fasterxml.jackson.annotation.JsonProperty("databaseConsole") + private DatabaseConsoleDetails databaseConsole; + + public Builder databaseConsole(DatabaseConsoleDetails databaseConsole) { + this.databaseConsole = databaseConsole; + this.__explicitlySet__.add("databaseConsole"); + return this; + } /** Specifies if the DB System is highly available. */ @com.fasterxml.jackson.annotation.JsonProperty("isHighlyAvailable") private Boolean isHighlyAvailable; @@ -662,6 +674,7 @@ public DbSystemSnapshot build() { this.port, this.portX, this.rest, + this.databaseConsole, this.isHighlyAvailable, this.endpoints, this.maintenance, @@ -745,6 +758,9 @@ public Builder copy(DbSystemSnapshot model) { if (model.wasPropertyExplicitlySet("rest")) { this.rest(model.getRest()); } + if (model.wasPropertyExplicitlySet("databaseConsole")) { + this.databaseConsole(model.getDatabaseConsole()); + } if (model.wasPropertyExplicitlySet("isHighlyAvailable")) { this.isHighlyAvailable(model.getIsHighlyAvailable()); } @@ -1087,6 +1103,13 @@ public RestDetails getRest() { return rest; } + @com.fasterxml.jackson.annotation.JsonProperty("databaseConsole") + private final DatabaseConsoleDetails databaseConsole; + + public DatabaseConsoleDetails getDatabaseConsole() { + return databaseConsole; + } + /** Specifies if the DB System is highly available. */ @com.fasterxml.jackson.annotation.JsonProperty("isHighlyAvailable") private final Boolean isHighlyAvailable; @@ -1267,6 +1290,7 @@ public String toString(boolean includeByteArrayContents) { sb.append(", port=").append(String.valueOf(this.port)); sb.append(", portX=").append(String.valueOf(this.portX)); sb.append(", rest=").append(String.valueOf(this.rest)); + sb.append(", databaseConsole=").append(String.valueOf(this.databaseConsole)); sb.append(", isHighlyAvailable=").append(String.valueOf(this.isHighlyAvailable)); sb.append(", endpoints=").append(String.valueOf(this.endpoints)); sb.append(", maintenance=").append(String.valueOf(this.maintenance)); @@ -1314,6 +1338,7 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.port, other.port) && java.util.Objects.equals(this.portX, other.portX) && java.util.Objects.equals(this.rest, other.rest) + && java.util.Objects.equals(this.databaseConsole, other.databaseConsole) && java.util.Objects.equals(this.isHighlyAvailable, other.isHighlyAvailable) && java.util.Objects.equals(this.endpoints, other.endpoints) && java.util.Objects.equals(this.maintenance, other.maintenance) @@ -1374,6 +1399,9 @@ public int hashCode() { result = (result * PRIME) + (this.port == null ? 43 : this.port.hashCode()); result = (result * PRIME) + (this.portX == null ? 43 : this.portX.hashCode()); result = (result * PRIME) + (this.rest == null ? 43 : this.rest.hashCode()); + result = + (result * PRIME) + + (this.databaseConsole == null ? 43 : this.databaseConsole.hashCode()); result = (result * PRIME) + (this.isHighlyAvailable == null ? 43 : this.isHighlyAvailable.hashCode()); diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSnapshotSummary.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSnapshotSummary.java index 00f1ba212ae..bbcc6d55ec4 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSnapshotSummary.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSnapshotSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSource.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSource.java index 3b615993ee3..fd21f679a2f 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSource.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSourceFromBackup.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSourceFromBackup.java index 529f9275c5f..bd62ad3b455 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSourceFromBackup.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSourceFromBackup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSourceFromNone.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSourceFromNone.java index fe55cdef57b..e82b1365144 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSourceFromNone.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSourceFromNone.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSourceFromPitr.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSourceFromPitr.java index a0dffd572a5..f0037e23385 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSourceFromPitr.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSourceFromPitr.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSourceImportFromUrl.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSourceImportFromUrl.java index 9b3cff4b434..ad965f353b4 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSourceImportFromUrl.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSourceImportFromUrl.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSummary.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSummary.java index 7e4538aae08..50689b00019 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSummary.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DbSystemSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; @@ -28,6 +28,7 @@ public final class DbSystemSummary "description", "compartmentId", "rest", + "databaseConsole", "isHighlyAvailable", "currentPlacement", "isHeatWaveClusterAttached", @@ -57,6 +58,7 @@ public DbSystemSummary( String description, String compartmentId, RestDetails rest, + DatabaseConsoleDetails databaseConsole, Boolean isHighlyAvailable, DbSystemPlacement currentPlacement, Boolean isHeatWaveClusterAttached, @@ -85,6 +87,7 @@ public DbSystemSummary( this.description = description; this.compartmentId = compartmentId; this.rest = rest; + this.databaseConsole = databaseConsole; this.isHighlyAvailable = isHighlyAvailable; this.currentPlacement = currentPlacement; this.isHeatWaveClusterAttached = isHeatWaveClusterAttached; @@ -180,6 +183,15 @@ public Builder rest(RestDetails rest) { this.__explicitlySet__.add("rest"); return this; } + + @com.fasterxml.jackson.annotation.JsonProperty("databaseConsole") + private DatabaseConsoleDetails databaseConsole; + + public Builder databaseConsole(DatabaseConsoleDetails databaseConsole) { + this.databaseConsole = databaseConsole; + this.__explicitlySet__.add("databaseConsole"); + return this; + } /** Specifies if the DB System is highly available. */ @com.fasterxml.jackson.annotation.JsonProperty("isHighlyAvailable") private Boolean isHighlyAvailable; @@ -577,6 +589,7 @@ public DbSystemSummary build() { this.description, this.compartmentId, this.rest, + this.databaseConsole, this.isHighlyAvailable, this.currentPlacement, this.isHeatWaveClusterAttached, @@ -622,6 +635,9 @@ public Builder copy(DbSystemSummary model) { if (model.wasPropertyExplicitlySet("rest")) { this.rest(model.getRest()); } + if (model.wasPropertyExplicitlySet("databaseConsole")) { + this.databaseConsole(model.getDatabaseConsole()); + } if (model.wasPropertyExplicitlySet("isHighlyAvailable")) { this.isHighlyAvailable(model.getIsHighlyAvailable()); } @@ -760,6 +776,13 @@ public RestDetails getRest() { return rest; } + @com.fasterxml.jackson.annotation.JsonProperty("databaseConsole") + private final DatabaseConsoleDetails databaseConsole; + + public DatabaseConsoleDetails getDatabaseConsole() { + return databaseConsole; + } + /** Specifies if the DB System is highly available. */ @com.fasterxml.jackson.annotation.JsonProperty("isHighlyAvailable") private final Boolean isHighlyAvailable; @@ -1120,6 +1143,7 @@ public String toString(boolean includeByteArrayContents) { sb.append(", description=").append(String.valueOf(this.description)); sb.append(", compartmentId=").append(String.valueOf(this.compartmentId)); sb.append(", rest=").append(String.valueOf(this.rest)); + sb.append(", databaseConsole=").append(String.valueOf(this.databaseConsole)); sb.append(", isHighlyAvailable=").append(String.valueOf(this.isHighlyAvailable)); sb.append(", currentPlacement=").append(String.valueOf(this.currentPlacement)); sb.append(", isHeatWaveClusterAttached=") @@ -1162,6 +1186,7 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.description, other.description) && java.util.Objects.equals(this.compartmentId, other.compartmentId) && java.util.Objects.equals(this.rest, other.rest) + && java.util.Objects.equals(this.databaseConsole, other.databaseConsole) && java.util.Objects.equals(this.isHighlyAvailable, other.isHighlyAvailable) && java.util.Objects.equals(this.currentPlacement, other.currentPlacement) && java.util.Objects.equals( @@ -1199,6 +1224,9 @@ public int hashCode() { (result * PRIME) + (this.compartmentId == null ? 43 : this.compartmentId.hashCode()); result = (result * PRIME) + (this.rest == null ? 43 : this.rest.hashCode()); + result = + (result * PRIME) + + (this.databaseConsole == null ? 43 : this.databaseConsole.hashCode()); result = (result * PRIME) + (this.isHighlyAvailable == null ? 43 : this.isHighlyAvailable.hashCode()); diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DeletionPolicyDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DeletionPolicyDetails.java index 14e6f004ecf..fca9aff4b73 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DeletionPolicyDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/DeletionPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/EncryptDataDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/EncryptDataDetails.java index 8305af6c4ad..fd4880dd7f9 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/EncryptDataDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/EncryptDataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ErrorOnAnonymousHandling.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ErrorOnAnonymousHandling.java index 8128ad7e58e..b11faedeb17 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ErrorOnAnonymousHandling.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ErrorOnAnonymousHandling.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveCluster.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveCluster.java index 6e172b7abf3..379933b9ab6 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveCluster.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveCluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveClusterMemoryEstimate.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveClusterMemoryEstimate.java index f3a8eea36b0..4683ef8e18c 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveClusterMemoryEstimate.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveClusterMemoryEstimate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveClusterMemoryEstimateStatus.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveClusterMemoryEstimateStatus.java index 64fef88c330..b02897392e0 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveClusterMemoryEstimateStatus.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveClusterMemoryEstimateStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveClusterSchemaMemoryEstimate.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveClusterSchemaMemoryEstimate.java index c9f0e66e007..0f33077bce2 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveClusterSchemaMemoryEstimate.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveClusterSchemaMemoryEstimate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveClusterSummary.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveClusterSummary.java index e84e252329e..e7360e2cdbe 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveClusterSummary.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveClusterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveClusterTableMemoryEstimate.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveClusterTableMemoryEstimate.java index 6206734c0f9..3f72e04ad25 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveClusterTableMemoryEstimate.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveClusterTableMemoryEstimate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveNode.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveNode.java index a2fb2a29402..861425ed980 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveNode.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/HeatWaveNode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/InitializationVariables.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/InitializationVariables.java index f01fc01c976..b380faa408e 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/InitializationVariables.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/InitializationVariables.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/InnoDbShutdownMode.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/InnoDbShutdownMode.java index 00f81ea5f45..094e20a962d 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/InnoDbShutdownMode.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/InnoDbShutdownMode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/KeyGenerationType.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/KeyGenerationType.java index 1aa15bfb2bb..544988fda41 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/KeyGenerationType.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/KeyGenerationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/MaintenanceAction.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/MaintenanceAction.java index ae4ef05d54e..13c1f42c9c1 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/MaintenanceAction.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/MaintenanceAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/MaintenanceDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/MaintenanceDetails.java index 484fd079055..d9f085e7d4e 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/MaintenanceDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/MaintenanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/MaintenanceScheduleType.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/MaintenanceScheduleType.java index f3ddb7f5489..1842231ecae 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/MaintenanceScheduleType.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/MaintenanceScheduleType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/MaintenanceType.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/MaintenanceType.java index 5d3a8311f16..621003ed1a2 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/MaintenanceType.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/MaintenanceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/PemCaCertificate.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/PemCaCertificate.java index 26a2e49a9c0..e3138ff430b 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/PemCaCertificate.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/PemCaCertificate.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/PitrPolicy.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/PitrPolicy.java index eedf3fa944f..7bb686f7fe1 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/PitrPolicy.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/PitrPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/PointInTimeRecoveryDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/PointInTimeRecoveryDetails.java index c56d72c9413..1ce34c8336b 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/PointInTimeRecoveryDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/PointInTimeRecoveryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/PreparedBackupDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/PreparedBackupDetails.java index 0a36a610007..62ec2bc12bf 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/PreparedBackupDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/PreparedBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ReadEndpointDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ReadEndpointDetails.java index 60968fdf723..aa7f7ab5970 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ReadEndpointDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ReadEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/Replica.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/Replica.java index 9a3ca6fa669..0406bd85246 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/Replica.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/Replica.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ReplicaOverrides.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ReplicaOverrides.java index ceb46900718..f6c4c542b86 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ReplicaOverrides.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ReplicaOverrides.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ReplicaSummary.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ReplicaSummary.java index ef055185c5d..96c81d1a12a 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ReplicaSummary.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ReplicaSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/RestConfigurationType.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/RestConfigurationType.java index fbcd34df031..b876eaa0a25 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/RestConfigurationType.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/RestConfigurationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/RestDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/RestDetails.java index 1416ae6052e..10569d1da0e 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/RestDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/RestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/RestartDbSystemDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/RestartDbSystemDetails.java index 3c360cf13a9..366664a23fc 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/RestartDbSystemDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/RestartDbSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/SecureConnectionDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/SecureConnectionDetails.java index 8bf753c40ec..c32656bd5c0 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/SecureConnectionDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/SecureConnectionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ShapeSummary.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ShapeSummary.java index cfbeffdd8c6..c54d806901d 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ShapeSummary.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ShapeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/SoftDelete.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/SoftDelete.java index 9710a6ebc3b..374b8aee520 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/SoftDelete.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/SoftDelete.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/StopDbSystemDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/StopDbSystemDetails.java index fa0798471d5..01cb5786c80 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/StopDbSystemDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/StopDbSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateBackupDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateBackupDetails.java index c3ccceeefc3..32511c21fab 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateBackupDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateBackupPolicyDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateBackupPolicyDetails.java index 191ccd43f37..14dba3dc51d 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateBackupPolicyDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateBackupPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateChannelDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateChannelDetails.java index c9fb9bfce2b..a8d27cbe884 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateChannelDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateChannelSourceDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateChannelSourceDetails.java index b7e5c0262aa..daa98834024 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateChannelSourceDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateChannelSourceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateChannelSourceFromMysqlDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateChannelSourceFromMysqlDetails.java index 86cc1004cef..2ccc570be01 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateChannelSourceFromMysqlDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateChannelSourceFromMysqlDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateChannelTargetDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateChannelTargetDetails.java index 43e88407cc5..fcb641103d5 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateChannelTargetDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateChannelTargetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateChannelTargetFromDbSystemDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateChannelTargetFromDbSystemDetails.java index 0bbe5bda1ff..e0e19961541 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateChannelTargetFromDbSystemDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateChannelTargetFromDbSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateConfigurationDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateConfigurationDetails.java index e6225063a64..d61fa153776 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateConfigurationDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateDatabaseConsoleDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateDatabaseConsoleDetails.java new file mode 100644 index 00000000000..1fdb31de06d --- /dev/null +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateDatabaseConsoleDetails.java @@ -0,0 +1,178 @@ +/** + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. + * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + */ +package com.oracle.bmc.mysql.model; + +/** + * Details required to configure the database console while updating a DB System.
+ * Note: Objects should always be created or deserialized using the {@link Builder}. This model + * distinguishes fields that are {@code null} because they are unset from fields that are explicitly + * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a + * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link + * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set + * fields into account. The constructor, on the other hand, does not take the explicitly set fields + * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code + * null}). + */ +@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20190415") +@com.fasterxml.jackson.databind.annotation.JsonDeserialize( + builder = UpdateDatabaseConsoleDetails.Builder.class) +@com.fasterxml.jackson.annotation.JsonFilter( + com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) +public final class UpdateDatabaseConsoleDetails + extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { + @Deprecated + @java.beans.ConstructorProperties({"status", "port"}) + public UpdateDatabaseConsoleDetails(DatabaseConsoleStatus status, Integer port) { + super(); + this.status = status; + this.port = port; + } + + @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") + public static class Builder { + /** Enable/disable the database console on the DB System. */ + @com.fasterxml.jackson.annotation.JsonProperty("status") + private DatabaseConsoleStatus status; + + /** + * Enable/disable the database console on the DB System. + * + * @param status the value to set + * @return this builder + */ + public Builder status(DatabaseConsoleStatus status) { + this.status = status; + this.__explicitlySet__.add("status"); + return this; + } + /** + * The port on which the database console can be accessed. Supported port numbers are 443 + * and from 1024 to 65535. + */ + @com.fasterxml.jackson.annotation.JsonProperty("port") + private Integer port; + + /** + * The port on which the database console can be accessed. Supported port numbers are 443 + * and from 1024 to 65535. + * + * @param port the value to set + * @return this builder + */ + public Builder port(Integer port) { + this.port = port; + this.__explicitlySet__.add("port"); + return this; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + private final java.util.Set __explicitlySet__ = new java.util.HashSet(); + + public UpdateDatabaseConsoleDetails build() { + UpdateDatabaseConsoleDetails model = + new UpdateDatabaseConsoleDetails(this.status, this.port); + for (String explicitlySetProperty : this.__explicitlySet__) { + model.markPropertyAsExplicitlySet(explicitlySetProperty); + } + return model; + } + + @com.fasterxml.jackson.annotation.JsonIgnore + public Builder copy(UpdateDatabaseConsoleDetails model) { + if (model.wasPropertyExplicitlySet("status")) { + this.status(model.getStatus()); + } + if (model.wasPropertyExplicitlySet("port")) { + this.port(model.getPort()); + } + return this; + } + } + + /** Create a new builder. */ + public static Builder builder() { + return new Builder(); + } + + public Builder toBuilder() { + return new Builder().copy(this); + } + + /** Enable/disable the database console on the DB System. */ + @com.fasterxml.jackson.annotation.JsonProperty("status") + private final DatabaseConsoleStatus status; + + /** + * Enable/disable the database console on the DB System. + * + * @return the value + */ + public DatabaseConsoleStatus getStatus() { + return status; + } + + /** + * The port on which the database console can be accessed. Supported port numbers are 443 and + * from 1024 to 65535. + */ + @com.fasterxml.jackson.annotation.JsonProperty("port") + private final Integer port; + + /** + * The port on which the database console can be accessed. Supported port numbers are 443 and + * from 1024 to 65535. + * + * @return the value + */ + public Integer getPort() { + return port; + } + + @Override + public String toString() { + return this.toString(true); + } + + /** + * Return a string representation of the object. + * + * @param includeByteArrayContents true to include the full contents of byte arrays + * @return string representation + */ + public String toString(boolean includeByteArrayContents) { + java.lang.StringBuilder sb = new java.lang.StringBuilder(); + sb.append("UpdateDatabaseConsoleDetails("); + sb.append("super=").append(super.toString()); + sb.append("status=").append(String.valueOf(this.status)); + sb.append(", port=").append(String.valueOf(this.port)); + sb.append(")"); + return sb.toString(); + } + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (!(o instanceof UpdateDatabaseConsoleDetails)) { + return false; + } + + UpdateDatabaseConsoleDetails other = (UpdateDatabaseConsoleDetails) o; + return java.util.Objects.equals(this.status, other.status) + && java.util.Objects.equals(this.port, other.port) + && super.equals(other); + } + + @Override + public int hashCode() { + final int PRIME = 59; + int result = 1; + result = (result * PRIME) + (this.status == null ? 43 : this.status.hashCode()); + result = (result * PRIME) + (this.port == null ? 43 : this.port.hashCode()); + result = (result * PRIME) + super.hashCode(); + return result; + } +} diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateDbSystemDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateDbSystemDetails.java index a8561882713..9973d858acf 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateDbSystemDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateDbSystemDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; @@ -32,6 +32,7 @@ public final class UpdateDbSystemDetails "databaseMode", "accessMode", "rest", + "databaseConsole", "isHighlyAvailable", "availabilityDomain", "faultDomain", @@ -67,6 +68,7 @@ public UpdateDbSystemDetails( DbSystem.DatabaseMode databaseMode, DbSystem.AccessMode accessMode, UpdateRestDetails rest, + UpdateDatabaseConsoleDetails databaseConsole, Boolean isHighlyAvailable, String availabilityDomain, String faultDomain, @@ -101,6 +103,7 @@ public UpdateDbSystemDetails( this.databaseMode = databaseMode; this.accessMode = accessMode; this.rest = rest; + this.databaseConsole = databaseConsole; this.isHighlyAvailable = isHighlyAvailable; this.availabilityDomain = availabilityDomain; this.faultDomain = faultDomain; @@ -275,6 +278,15 @@ public Builder rest(UpdateRestDetails rest) { this.__explicitlySet__.add("rest"); return this; } + + @com.fasterxml.jackson.annotation.JsonProperty("databaseConsole") + private UpdateDatabaseConsoleDetails databaseConsole; + + public Builder databaseConsole(UpdateDatabaseConsoleDetails databaseConsole) { + this.databaseConsole = databaseConsole; + this.__explicitlySet__.add("databaseConsole"); + return this; + } /** * Specifies if the DB System is highly available. * @@ -752,6 +764,7 @@ public UpdateDbSystemDetails build() { this.databaseMode, this.accessMode, this.rest, + this.databaseConsole, this.isHighlyAvailable, this.availabilityDomain, this.faultDomain, @@ -809,6 +822,9 @@ public Builder copy(UpdateDbSystemDetails model) { if (model.wasPropertyExplicitlySet("rest")) { this.rest(model.getRest()); } + if (model.wasPropertyExplicitlySet("databaseConsole")) { + this.databaseConsole(model.getDatabaseConsole()); + } if (model.wasPropertyExplicitlySet("isHighlyAvailable")) { this.isHighlyAvailable(model.getIsHighlyAvailable()); } @@ -1025,6 +1041,13 @@ public UpdateRestDetails getRest() { return rest; } + @com.fasterxml.jackson.annotation.JsonProperty("databaseConsole") + private final UpdateDatabaseConsoleDetails databaseConsole; + + public UpdateDatabaseConsoleDetails getDatabaseConsole() { + return databaseConsole; + } + /** * Specifies if the DB System is highly available. * @@ -1459,6 +1482,7 @@ public String toString(boolean includeByteArrayContents) { sb.append(", databaseMode=").append(String.valueOf(this.databaseMode)); sb.append(", accessMode=").append(String.valueOf(this.accessMode)); sb.append(", rest=").append(String.valueOf(this.rest)); + sb.append(", databaseConsole=").append(String.valueOf(this.databaseConsole)); sb.append(", isHighlyAvailable=").append(String.valueOf(this.isHighlyAvailable)); sb.append(", availabilityDomain=").append(String.valueOf(this.availabilityDomain)); sb.append(", faultDomain=").append(String.valueOf(this.faultDomain)); @@ -1506,6 +1530,7 @@ public boolean equals(Object o) { && java.util.Objects.equals(this.databaseMode, other.databaseMode) && java.util.Objects.equals(this.accessMode, other.accessMode) && java.util.Objects.equals(this.rest, other.rest) + && java.util.Objects.equals(this.databaseConsole, other.databaseConsole) && java.util.Objects.equals(this.isHighlyAvailable, other.isHighlyAvailable) && java.util.Objects.equals(this.availabilityDomain, other.availabilityDomain) && java.util.Objects.equals(this.faultDomain, other.faultDomain) @@ -1550,6 +1575,9 @@ public int hashCode() { result = (result * PRIME) + (this.databaseMode == null ? 43 : this.databaseMode.hashCode()); result = (result * PRIME) + (this.accessMode == null ? 43 : this.accessMode.hashCode()); result = (result * PRIME) + (this.rest == null ? 43 : this.rest.hashCode()); + result = + (result * PRIME) + + (this.databaseConsole == null ? 43 : this.databaseConsole.hashCode()); result = (result * PRIME) + (this.isHighlyAvailable == null ? 43 : this.isHighlyAvailable.hashCode()); diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateDeletionPolicyDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateDeletionPolicyDetails.java index 8da77bf056e..68a6ba1cb9b 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateDeletionPolicyDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateDeletionPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateHeatWaveClusterDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateHeatWaveClusterDetails.java index 44be00ee67e..b124cb7ace7 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateHeatWaveClusterDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateHeatWaveClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateMaintenanceDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateMaintenanceDetails.java index 82e2fc9acf6..cc90c1db2fb 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateMaintenanceDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateMaintenanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateReadEndpointDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateReadEndpointDetails.java index 60f82554bfb..320b29342b8 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateReadEndpointDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateReadEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateReplicaDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateReplicaDetails.java index d196cb41ba9..e0fbf854836 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateReplicaDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateReplicaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateRestDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateRestDetails.java index 9ccde54be02..daebfec8a0d 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateRestDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/UpdateRestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ValidateBackupDetails.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ValidateBackupDetails.java index 4c517194d8c..d59ac007f35 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ValidateBackupDetails.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/ValidateBackupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/Version.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/Version.java index 5c5657a99d3..0e4d74d3778 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/Version.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/Version.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/VersionPreference.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/VersionPreference.java index 564cf3d3633..92ae528474d 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/VersionPreference.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/VersionPreference.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/VersionSummary.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/VersionSummary.java index 19cdc592e25..abd11773525 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/VersionSummary.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/VersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/VersionTrackPreference.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/VersionTrackPreference.java index 8658faf0d91..c472dc51035 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/VersionTrackPreference.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/VersionTrackPreference.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequest.java index 3da5893d791..a74e93e0664 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestError.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestError.java index 845c6c97daf..da4cbcd9718 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestError.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestLogEntry.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestLogEntry.java index 3396f726395..01a348987a3 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestLogEntry.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestOperationStatus.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestOperationStatus.java index b2523870142..d0fa5bbc983 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestOperationStatus.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestOperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestOperationType.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestOperationType.java index 32b11ac7e6f..58ebd9da0e9 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestOperationType.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestOperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestResource.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestResource.java index 06753173f0c..7966332d4d5 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestResource.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestResourceActionType.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestResourceActionType.java index 4e75af6d43b..6df4fdb1408 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestResourceActionType.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestResourceActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestSummary.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestSummary.java index 0e07d6f7e44..3b5f2bab731 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestSummary.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.model; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/AddHeatWaveClusterRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/AddHeatWaveClusterRequest.java index a3c8cd5be63..aa9c93ce6ea 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/AddHeatWaveClusterRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/AddHeatWaveClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CancelBackupDeletionRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CancelBackupDeletionRequest.java index cd39ecbccd4..ac81558cde2 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CancelBackupDeletionRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CancelBackupDeletionRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ChangeBackupCompartmentRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ChangeBackupCompartmentRequest.java index 6af3271aa50..78ecfa2fe8d 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ChangeBackupCompartmentRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ChangeBackupCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CopyBackupRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CopyBackupRequest.java index 541d6622765..21bad513ae0 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CopyBackupRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CopyBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CreateBackupRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CreateBackupRequest.java index 1d27f4f6a37..0f7ba00d946 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CreateBackupRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CreateBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CreateChannelRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CreateChannelRequest.java index 0fbbe3a4caf..58f92f006b7 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CreateChannelRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CreateChannelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CreateConfigurationRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CreateConfigurationRequest.java index 5d2d9dad654..ff095de3cb1 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CreateConfigurationRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CreateConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CreateDbSystemRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CreateDbSystemRequest.java index d2ad460e0f5..265ae5f1114 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CreateDbSystemRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CreateDbSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CreateReplicaRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CreateReplicaRequest.java index d95bfbc59cb..6bd5f89e226 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CreateReplicaRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/CreateReplicaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteBackupRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteBackupRequest.java index e67caf73213..e871b54bb44 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteBackupRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteChannelRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteChannelRequest.java index c7551b8e73c..ab3cd1c449a 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteChannelRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteChannelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteConfigurationRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteConfigurationRequest.java index e05f0cf4594..ad4698934b5 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteConfigurationRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteDbSystemRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteDbSystemRequest.java index b6dc90cacce..d5e5e8e0298 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteDbSystemRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteDbSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteHeatWaveClusterRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteHeatWaveClusterRequest.java index a02bdcd323b..844a19a5d7d 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteHeatWaveClusterRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteHeatWaveClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteReplicaRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteReplicaRequest.java index 361b3ed1473..afffa66317f 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteReplicaRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/DeleteReplicaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GenerateHeatWaveClusterMemoryEstimateRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GenerateHeatWaveClusterMemoryEstimateRequest.java index 3d7f1a51f37..738f30f8785 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GenerateHeatWaveClusterMemoryEstimateRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GenerateHeatWaveClusterMemoryEstimateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetBackupRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetBackupRequest.java index 0a03c393be9..4c4b6cbdcab 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetBackupRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetChannelRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetChannelRequest.java index 00f635268d3..521be4c9fb5 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetChannelRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetChannelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetConfigurationRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetConfigurationRequest.java index bf1029bf20f..25f19d8d38f 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetConfigurationRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetDbSystemRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetDbSystemRequest.java index 2dc5d241fc6..45c5cb0cae0 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetDbSystemRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetDbSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetHeatWaveClusterMemoryEstimateRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetHeatWaveClusterMemoryEstimateRequest.java index f53a1265e65..b8e1d6b1504 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetHeatWaveClusterMemoryEstimateRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetHeatWaveClusterMemoryEstimateRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetHeatWaveClusterRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetHeatWaveClusterRequest.java index 5218c7811b3..f11d1df3588 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetHeatWaveClusterRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetHeatWaveClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetReplicaRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetReplicaRequest.java index 9063ce5cc22..9b381a94acb 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetReplicaRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetReplicaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetWorkRequestRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetWorkRequestRequest.java index 551d6fb544c..134b39436b7 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetWorkRequestRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListBackupsRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListBackupsRequest.java index 0a06df3f074..bfda5105524 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListBackupsRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListBackupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListChannelsRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListChannelsRequest.java index bbca055b3a1..f6e2ef9a31b 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListChannelsRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListChannelsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListConfigurationsRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListConfigurationsRequest.java index 12d2373d7a6..ed1414a03dc 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListConfigurationsRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListConfigurationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListDbSystemsRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListDbSystemsRequest.java index 3919b05f652..f9201da4b16 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListDbSystemsRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListDbSystemsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListReplicasRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListReplicasRequest.java index 151710e1136..c87cc9e04c2 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListReplicasRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListReplicasRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListShapesRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListShapesRequest.java index cd854fcea4c..0ab0b7f84a6 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListShapesRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListVersionsRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListVersionsRequest.java index e706b844c84..d79c94aac3b 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListVersionsRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListWorkRequestErrorsRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListWorkRequestErrorsRequest.java index b6aaf2976f2..d2043a96489 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListWorkRequestLogsRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListWorkRequestLogsRequest.java index a10d4fd3292..69a46e451bc 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListWorkRequestLogsRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListWorkRequestsRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListWorkRequestsRequest.java index 5b239b11cd1..d9b4812865b 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListWorkRequestsRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ResetChannelRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ResetChannelRequest.java index 00863d37cc8..73e79d5da24 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ResetChannelRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ResetChannelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/RestartDbSystemRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/RestartDbSystemRequest.java index c9b66527cc9..f3f60e575c4 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/RestartDbSystemRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/RestartDbSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/RestartHeatWaveClusterRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/RestartHeatWaveClusterRequest.java index dd068b41f7e..d776b1f7d45 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/RestartHeatWaveClusterRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/RestartHeatWaveClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ResumeChannelRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ResumeChannelRequest.java index 485ff61c84b..1ef77766d04 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ResumeChannelRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ResumeChannelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/StartDbSystemRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/StartDbSystemRequest.java index 46eaee03406..8f6cc8e096e 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/StartDbSystemRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/StartDbSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/StartHeatWaveClusterRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/StartHeatWaveClusterRequest.java index 1fe30da16a3..421703908a2 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/StartHeatWaveClusterRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/StartHeatWaveClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/StopDbSystemRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/StopDbSystemRequest.java index 014c8f026b0..dcebf9b79d5 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/StopDbSystemRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/StopDbSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/StopHeatWaveClusterRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/StopHeatWaveClusterRequest.java index 95192cabd5f..f1831907262 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/StopHeatWaveClusterRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/StopHeatWaveClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateBackupRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateBackupRequest.java index 1d6c80e26e2..4bda5786fda 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateBackupRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateChannelRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateChannelRequest.java index 44849ed4a6a..58afe66ea59 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateChannelRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateChannelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateConfigurationRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateConfigurationRequest.java index 84223838e9d..416de615d68 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateConfigurationRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateDbSystemRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateDbSystemRequest.java index 8e5812512e4..07662712e34 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateDbSystemRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateDbSystemRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateHeatWaveClusterRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateHeatWaveClusterRequest.java index a21b70d35f1..c57d71d3920 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateHeatWaveClusterRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateHeatWaveClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateReplicaRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateReplicaRequest.java index a1e647b33f2..afd73e52081 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateReplicaRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/UpdateReplicaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ValidateBackupRequest.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ValidateBackupRequest.java index 09cc5b19cc0..5442c7450c7 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ValidateBackupRequest.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/requests/ValidateBackupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.requests; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/AddHeatWaveClusterResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/AddHeatWaveClusterResponse.java index 10ca6dbfd04..bb85882f2a2 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/AddHeatWaveClusterResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/AddHeatWaveClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CancelBackupDeletionResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CancelBackupDeletionResponse.java index 3841ec9ba38..81058f9f223 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CancelBackupDeletionResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CancelBackupDeletionResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ChangeBackupCompartmentResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ChangeBackupCompartmentResponse.java index ba8b42e0542..a8bc60fd37a 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ChangeBackupCompartmentResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ChangeBackupCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CopyBackupResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CopyBackupResponse.java index 7ba7497b7a5..e78848c9f34 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CopyBackupResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CopyBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CreateBackupResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CreateBackupResponse.java index 89f13edce61..7ca66c0d0cd 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CreateBackupResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CreateBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CreateChannelResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CreateChannelResponse.java index 4c52831b9a3..d142565d5f2 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CreateChannelResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CreateChannelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CreateConfigurationResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CreateConfigurationResponse.java index 59a5be88264..a8dc87d038d 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CreateConfigurationResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CreateConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CreateDbSystemResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CreateDbSystemResponse.java index da2a2972d7b..001f809f008 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CreateDbSystemResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CreateDbSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CreateReplicaResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CreateReplicaResponse.java index 309d8ff8407..87232669dd8 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CreateReplicaResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/CreateReplicaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteBackupResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteBackupResponse.java index 765b8aeb452..37c8dd6e1b5 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteBackupResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteChannelResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteChannelResponse.java index 071c3863c70..0a36ec636e4 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteChannelResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteChannelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteConfigurationResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteConfigurationResponse.java index 63791c5f826..99c002efc7b 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteConfigurationResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteDbSystemResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteDbSystemResponse.java index 99473ad1661..e3f2b3f1f82 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteDbSystemResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteDbSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteHeatWaveClusterResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteHeatWaveClusterResponse.java index 637c32b4da2..78bbff041bf 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteHeatWaveClusterResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteHeatWaveClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteReplicaResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteReplicaResponse.java index 5ca63e53e6f..421c23e6ed2 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteReplicaResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/DeleteReplicaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GenerateHeatWaveClusterMemoryEstimateResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GenerateHeatWaveClusterMemoryEstimateResponse.java index 1013f57cb9d..eee24c8dc5b 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GenerateHeatWaveClusterMemoryEstimateResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GenerateHeatWaveClusterMemoryEstimateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetBackupResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetBackupResponse.java index c724658ae7e..389cc97fc5c 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetBackupResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetChannelResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetChannelResponse.java index 5c7a2da4c45..afaa033babd 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetChannelResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetChannelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetConfigurationResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetConfigurationResponse.java index 4844ca608bb..2dc3e2a52c9 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetConfigurationResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetDbSystemResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetDbSystemResponse.java index d6e8cbb3ed8..08aaa587445 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetDbSystemResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetDbSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetHeatWaveClusterMemoryEstimateResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetHeatWaveClusterMemoryEstimateResponse.java index 4870175b4c8..9c1de230465 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetHeatWaveClusterMemoryEstimateResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetHeatWaveClusterMemoryEstimateResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetHeatWaveClusterResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetHeatWaveClusterResponse.java index 87b2aede2e7..25170560759 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetHeatWaveClusterResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetHeatWaveClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetReplicaResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetReplicaResponse.java index f990a5b9355..a68aad587eb 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetReplicaResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetReplicaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetWorkRequestResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetWorkRequestResponse.java index 5ca87926707..692c41946ec 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetWorkRequestResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListBackupsResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListBackupsResponse.java index f25a72b847a..b5ae1b54bfd 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListBackupsResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListBackupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListChannelsResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListChannelsResponse.java index 7089413a4aa..faf264e2ce6 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListChannelsResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListChannelsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListConfigurationsResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListConfigurationsResponse.java index 5ed8b1a6298..9a984ccc9f3 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListConfigurationsResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListConfigurationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListDbSystemsResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListDbSystemsResponse.java index a42f5b17802..bcae8bd389b 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListDbSystemsResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListDbSystemsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListReplicasResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListReplicasResponse.java index 6c5b77d85c1..8b8935ac29a 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListReplicasResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListReplicasResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListShapesResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListShapesResponse.java index 90d8bc92d5a..4dbb8cb6336 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListShapesResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListVersionsResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListVersionsResponse.java index ee464958cc1..420243d187e 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListVersionsResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListWorkRequestErrorsResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListWorkRequestErrorsResponse.java index 95f91967263..7743cac5f49 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListWorkRequestLogsResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListWorkRequestLogsResponse.java index a0b62eeebd9..b206f7897ab 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListWorkRequestLogsResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListWorkRequestsResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListWorkRequestsResponse.java index a9ef282d21c..7ee3d10b3f9 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListWorkRequestsResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ResetChannelResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ResetChannelResponse.java index df5ce7e62e3..1cddcc78943 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ResetChannelResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ResetChannelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/RestartDbSystemResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/RestartDbSystemResponse.java index 21748c7e781..27d436d6079 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/RestartDbSystemResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/RestartDbSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/RestartHeatWaveClusterResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/RestartHeatWaveClusterResponse.java index 99f9b25f707..5ce51df45f3 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/RestartHeatWaveClusterResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/RestartHeatWaveClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ResumeChannelResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ResumeChannelResponse.java index 9fbf0a0c57a..b548c324be2 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ResumeChannelResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ResumeChannelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/StartDbSystemResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/StartDbSystemResponse.java index 293e8db8a1d..0fe8d460720 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/StartDbSystemResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/StartDbSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/StartHeatWaveClusterResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/StartHeatWaveClusterResponse.java index d2f8da2b8f6..da2b4268f02 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/StartHeatWaveClusterResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/StartHeatWaveClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/StopDbSystemResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/StopDbSystemResponse.java index 47b78d4e316..a9b0d607c37 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/StopDbSystemResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/StopDbSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/StopHeatWaveClusterResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/StopHeatWaveClusterResponse.java index d5f8be0c093..eaf2d34f36b 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/StopHeatWaveClusterResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/StopHeatWaveClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateBackupResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateBackupResponse.java index ae4a6813922..d5851c36876 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateBackupResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateChannelResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateChannelResponse.java index 97a63ae8eca..323710d8afc 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateChannelResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateChannelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateConfigurationResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateConfigurationResponse.java index ae11da27cf3..a21645b2579 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateConfigurationResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateDbSystemResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateDbSystemResponse.java index 05b39083579..1494924972c 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateDbSystemResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateDbSystemResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateHeatWaveClusterResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateHeatWaveClusterResponse.java index 99054cc3f68..a3365d25bb3 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateHeatWaveClusterResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateHeatWaveClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateReplicaResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateReplicaResponse.java index c6cded19179..88a2470854c 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateReplicaResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/UpdateReplicaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ValidateBackupResponse.java b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ValidateBackupResponse.java index cd9358d9142..89d3e9e7c91 100644 --- a/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ValidateBackupResponse.java +++ b/bmc-mysql/src/main/java/com/oracle/bmc/mysql/responses/ValidateBackupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.mysql.responses; diff --git a/bmc-mysql/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-mysql/reflect-config.json b/bmc-mysql/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-mysql/reflect-config.json index 8e7eb60b4e5..d52c24dea7d 100644 --- a/bmc-mysql/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-mysql/reflect-config.json +++ b/bmc-mysql/src/main/resources/META-INF/native-image/com.oracle.oci.sdk/oci-java-sdk-mysql/reflect-config.json @@ -539,6 +539,20 @@ "allDeclaredMethods": true, "allDeclaredConstructors": true }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.mysql.model.CreateDatabaseConsoleDetails", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.mysql.model.CreateDatabaseConsoleDetails$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, { "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, "name": "com.oracle.bmc.mysql.model.CreateDbSystemDetails", @@ -746,6 +760,26 @@ "allDeclaredMethods": true, "allDeclaredConstructors": true }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.mysql.model.DatabaseConsoleDetails", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.mysql.model.DatabaseConsoleDetails$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.mysql.model.DatabaseConsoleStatus", + "allDeclaredFields": true, + "allDeclaredMethods": true + }, { "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, "name": "com.oracle.bmc.mysql.model.DatabaseManagementStatus", @@ -1471,6 +1505,20 @@ "allDeclaredMethods": true, "allDeclaredConstructors": true }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.mysql.model.UpdateDatabaseConsoleDetails", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "queryAllDeclaredConstructors": true + }, + { + "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, + "name": "com.oracle.bmc.mysql.model.UpdateDatabaseConsoleDetails$Builder", + "allDeclaredFields": true, + "allDeclaredMethods": true, + "allDeclaredConstructors": true + }, { "condition" : { "typeReachable" : "com.fasterxml.jackson.databind.ObjectMapper" }, "name": "com.oracle.bmc.mysql.model.UpdateDbSystemDetails", diff --git a/bmc-mysql/src/main/resources/com/oracle/bmc/mysql/client.properties b/bmc-mysql/src/main/resources/com/oracle/bmc/mysql/client.properties index 723a52b7e9a..9b915cca015 100644 --- a/bmc-mysql/src/main/resources/com/oracle/bmc/mysql/client.properties +++ b/bmc-mysql/src/main/resources/com/oracle/bmc/mysql/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-networkfirewall/pom.xml b/bmc-networkfirewall/pom.xml index f501e534131..5c93467258d 100644 --- a/bmc-networkfirewall/pom.xml +++ b/bmc-networkfirewall/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-networkfirewall @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewall.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewall.java index 8394719545b..968b932c17f 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewall.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewall.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewallAsync.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewallAsync.java index 4bcdc5e1f41..4612f64fdbb 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewallAsync.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewallAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewallAsyncClient.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewallAsyncClient.java index df49d1d8562..a7f58eeaaa9 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewallAsyncClient.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewallAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewallClient.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewallClient.java index 628598b207f..4ac0fdc5289 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewallClient.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewallClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewallPaginators.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewallPaginators.java index f05b9d2ca28..3401305cad4 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewallPaginators.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewallPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewallWaiters.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewallWaiters.java index 5a9f2bd1099..93ed4d08e97 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewallWaiters.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/NetworkFirewallWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ActionType.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ActionType.java index 2bf30227fd4..42ec5052370 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ActionType.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/AddressList.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/AddressList.java index 403cb5a83d8..5c1a7955c37 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/AddressList.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/AddressList.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/AddressListSummary.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/AddressListSummary.java index b93acdf0690..8c262eeaa36 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/AddressListSummary.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/AddressListSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/AddressListSummaryCollection.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/AddressListSummaryCollection.java index 365e83aa248..68b6655f315 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/AddressListSummaryCollection.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/AddressListSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/AddressListType.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/AddressListType.java index 2238bded418..3e09440a17a 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/AddressListType.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/AddressListType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/AppType.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/AppType.java index c75ef53032f..b436493a7c2 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/AppType.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/AppType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/Application.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/Application.java index 504caf9c23a..e06691f5a60 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/Application.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/Application.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplicationGroup.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplicationGroup.java index 902e386a419..31ca282a8c3 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplicationGroup.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplicationGroup.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplicationGroupSummary.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplicationGroupSummary.java index 54437353945..151378cf4ad 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplicationGroupSummary.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplicationGroupSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplicationGroupSummaryCollection.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplicationGroupSummaryCollection.java index 113c5854b4f..620597be869 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplicationGroupSummaryCollection.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplicationGroupSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplicationSummary.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplicationSummary.java index e8777800578..264f2ab6475 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplicationSummary.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplicationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplicationSummaryCollection.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplicationSummaryCollection.java index 83e9b7ef2c0..b687c420a2f 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplicationSummaryCollection.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplicationSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplyNetworkFirewallPolicyDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplyNetworkFirewallPolicyDetails.java index e20dad83e41..3d433df6ee6 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplyNetworkFirewallPolicyDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ApplyNetworkFirewallPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ChangeNetworkFirewallCompartmentDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ChangeNetworkFirewallCompartmentDetails.java index bb8cf6966a8..66d0051e1c3 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ChangeNetworkFirewallCompartmentDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ChangeNetworkFirewallCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ChangeNetworkFirewallPolicyCompartmentDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ChangeNetworkFirewallPolicyCompartmentDetails.java index 6cadde4a749..cdc9d6ed9a5 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ChangeNetworkFirewallPolicyCompartmentDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ChangeNetworkFirewallPolicyCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CloneNetworkFirewallPolicyDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CloneNetworkFirewallPolicyDetails.java index ef23af3386a..62a6e201813 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CloneNetworkFirewallPolicyDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CloneNetworkFirewallPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateAddressListDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateAddressListDetails.java index c41c6102424..76178b5f71d 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateAddressListDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateAddressListDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateApplicationDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateApplicationDetails.java index fbc6d20045c..216ed590ff2 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateApplicationDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateApplicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateApplicationGroupDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateApplicationGroupDetails.java index 10d4e7d8921..97ba4bd23ac 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateApplicationGroupDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateApplicationGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateDecryptionProfileDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateDecryptionProfileDetails.java index f0dad4b65a9..448355345a4 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateDecryptionProfileDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateDecryptionProfileDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateDecryptionRuleDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateDecryptionRuleDetails.java index ec1a73e16a4..9b403dd4f4a 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateDecryptionRuleDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateDecryptionRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateIcmp6ApplicationDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateIcmp6ApplicationDetails.java index f5798470753..639d711a5cd 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateIcmp6ApplicationDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateIcmp6ApplicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateIcmpApplicationDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateIcmpApplicationDetails.java index defb37bdd51..d75d17825de 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateIcmpApplicationDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateIcmpApplicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateMappedSecretDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateMappedSecretDetails.java index aec602188e2..cc9325b5300 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateMappedSecretDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateMappedSecretDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateNatRuleDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateNatRuleDetails.java index e12b5de3992..8231b3c04fa 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateNatRuleDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateNatRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateNatV4RuleDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateNatV4RuleDetails.java index c5332551747..d5464fc48cb 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateNatV4RuleDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateNatV4RuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateNetworkFirewallDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateNetworkFirewallDetails.java index 15b0adb8bc0..97d0c4859bc 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateNetworkFirewallDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateNetworkFirewallDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateNetworkFirewallPolicyDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateNetworkFirewallPolicyDetails.java index 71eef2926d6..64e4e57c70a 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateNetworkFirewallPolicyDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateNetworkFirewallPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateSecurityRuleDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateSecurityRuleDetails.java index 9a0bb952658..08f595acf8c 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateSecurityRuleDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateSecurityRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateServiceDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateServiceDetails.java index fd5a784271f..d585940a342 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateServiceDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateServiceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateServiceListDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateServiceListDetails.java index a8ff81aa7d7..f5893236746 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateServiceListDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateServiceListDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateSslForwardProxyProfileDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateSslForwardProxyProfileDetails.java index a6b45db38ba..7c533890489 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateSslForwardProxyProfileDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateSslForwardProxyProfileDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateSslInboundInspectionProfileDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateSslInboundInspectionProfileDetails.java index 2951855f7ad..f2c76493d78 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateSslInboundInspectionProfileDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateSslInboundInspectionProfileDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateTcpServiceDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateTcpServiceDetails.java index d4ba0de3aa7..8dd41982432 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateTcpServiceDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateTcpServiceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateTunnelInspectionRuleDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateTunnelInspectionRuleDetails.java index d9422fb5249..f532b637d3c 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateTunnelInspectionRuleDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateTunnelInspectionRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateUdpServiceDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateUdpServiceDetails.java index 35f1c4df419..63268e1db49 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateUdpServiceDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateUdpServiceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateUrlListDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateUrlListDetails.java index 1f5ac3850f2..ea958c13ac7 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateUrlListDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateUrlListDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateVaultMappedSecretDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateVaultMappedSecretDetails.java index 8e8744f6019..641da959cc7 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateVaultMappedSecretDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateVaultMappedSecretDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateVxlanInspectionRuleDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateVxlanInspectionRuleDetails.java index e25b34b4951..764e7b8f697 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateVxlanInspectionRuleDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/CreateVxlanInspectionRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionActionType.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionActionType.java index abeef195749..bb718388aee 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionActionType.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionProfile.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionProfile.java index ac387cec022..46873e20b10 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionProfile.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionProfile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionProfileSummary.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionProfileSummary.java index 1db3f366436..594e292f2a5 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionProfileSummary.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionProfileSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionProfileSummaryCollection.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionProfileSummaryCollection.java index a1314630d96..34422ed3024 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionProfileSummaryCollection.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionProfileSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionRule.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionRule.java index 56908d1f2e3..2e04e2af8c0 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionRule.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionRuleMatchCriteria.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionRuleMatchCriteria.java index 046fd80bdcd..a62fe36bbd2 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionRuleMatchCriteria.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionRuleMatchCriteria.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionRuleSummary.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionRuleSummary.java index b5594f3f8fe..c25055dfb22 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionRuleSummary.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionRuleSummaryCollection.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionRuleSummaryCollection.java index 846797c71dc..2029adc7b08 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionRuleSummaryCollection.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/DecryptionRuleSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/Icmp6Application.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/Icmp6Application.java index 902d3d3e915..c052f795b72 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/Icmp6Application.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/Icmp6Application.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/Icmp6ApplicationSummary.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/Icmp6ApplicationSummary.java index 7f6fcaa9ced..00fd304445e 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/Icmp6ApplicationSummary.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/Icmp6ApplicationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/IcmpApplication.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/IcmpApplication.java index 5bd19fa0fc4..35d75bb9bdf 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/IcmpApplication.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/IcmpApplication.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/IcmpApplicationSummary.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/IcmpApplicationSummary.java index 6f976a41008..9f69356cdf1 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/IcmpApplicationSummary.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/IcmpApplicationSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/InspectActionType.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/InspectActionType.java index 9ad499ca178..a170f4b3a03 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/InspectActionType.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/InspectActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/InspectionType.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/InspectionType.java index 47ba52c9627..69bc260e32a 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/InspectionType.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/InspectionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/LifecycleState.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/LifecycleState.java index 0f933ae562f..a00df4680f5 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/LifecycleState.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/LifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/MappedSecret.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/MappedSecret.java index 5442e5af3f3..631fc7e1bf7 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/MappedSecret.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/MappedSecret.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/MappedSecretSummary.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/MappedSecretSummary.java index 4e4388a541a..a0da59a4f62 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/MappedSecretSummary.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/MappedSecretSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/MappedSecretSummaryCollection.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/MappedSecretSummaryCollection.java index 1ec2e205d18..5d732dd96fd 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/MappedSecretSummaryCollection.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/MappedSecretSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/MappedSecretType.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/MappedSecretType.java index 6a68a37bfdb..74517f4b649 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/MappedSecretType.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/MappedSecretType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatConfigurationRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatConfigurationRequest.java index 3c8ca9f3cc4..c88a245f577 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatConfigurationRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatConfigurationResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatConfigurationResponse.java index ac88941db11..6f55d766b74 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatConfigurationResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatRule.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatRule.java index 18192dc6595..cc41f62a353 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatRule.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatRuleCollection.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatRuleCollection.java index f2fc0d19eb4..3391abcfd61 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatRuleCollection.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatRuleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatRuleMatchCriteria.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatRuleMatchCriteria.java index c4b0a564486..e13187bc17f 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatRuleMatchCriteria.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatRuleMatchCriteria.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatRuleSummary.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatRuleSummary.java index 8e22cbcaf1f..38a2559a6fe 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatRuleSummary.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatType.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatType.java index 3db86df81e5..3493a84f152 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatType.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatV4ActionType.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatV4ActionType.java index ddb997d038c..620cddc0a0e 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatV4ActionType.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatV4ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatV4NatRule.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatV4NatRule.java index e29270fba89..5119517754d 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatV4NatRule.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatV4NatRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatV4NatSummary.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatV4NatSummary.java index 0ae1e8fd8f7..343f6c930c6 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatV4NatSummary.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NatV4NatSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewall.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewall.java index c6678ef76ee..66d62acd13f 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewall.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewall.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewallCollection.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewallCollection.java index 6e65fa6cbdd..f546288cbf3 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewallCollection.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewallCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewallPolicy.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewallPolicy.java index cd1675039f6..b2cfbc93637 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewallPolicy.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewallPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewallPolicySummary.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewallPolicySummary.java index c29453ef7fc..f8862fa2345 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewallPolicySummary.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewallPolicySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewallPolicySummaryCollection.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewallPolicySummaryCollection.java index 9e48a8efd1b..11b0403ec5d 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewallPolicySummaryCollection.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewallPolicySummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewallSummary.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewallSummary.java index 513c33e7881..81ebb7fe4c1 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewallSummary.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/NetworkFirewallSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/OperationStatus.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/OperationStatus.java index 25e7203f4c5..85e13c0092e 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/OperationStatus.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/OperationType.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/OperationType.java index d97b1df44ad..d5d3a5ee4d4 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/OperationType.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/PortRange.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/PortRange.java index b8cbdf4a537..96566180294 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/PortRange.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/PortRange.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/RulePosition.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/RulePosition.java index a06a6c95c79..204df7668ac 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/RulePosition.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/RulePosition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SecurityRule.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SecurityRule.java index 8b93262feed..1bf710870d7 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SecurityRule.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SecurityRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SecurityRuleMatchCriteria.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SecurityRuleMatchCriteria.java index 96c36018b1c..f6d559fca92 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SecurityRuleMatchCriteria.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SecurityRuleMatchCriteria.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SecurityRuleSummary.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SecurityRuleSummary.java index 1ba864f3d31..9b978bb8d82 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SecurityRuleSummary.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SecurityRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SecurityRuleSummaryCollection.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SecurityRuleSummaryCollection.java index 8a5e2a76622..6438f7da147 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SecurityRuleSummaryCollection.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SecurityRuleSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/Service.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/Service.java index aa4fc023550..5bb800f8d64 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/Service.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/Service.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceList.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceList.java index 2e2d8e80230..6e1c6676fb1 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceList.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceList.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceListSummary.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceListSummary.java index 8c851182c71..62b31904996 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceListSummary.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceListSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceListSummaryCollection.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceListSummaryCollection.java index a89707de296..22429105f73 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceListSummaryCollection.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceListSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceSummary.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceSummary.java index 1e62097d883..83f5fbfcca4 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceSummary.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceSummaryCollection.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceSummaryCollection.java index 97d8513853d..886ba0c4d44 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceSummaryCollection.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceType.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceType.java index 64d72b6436a..ee011c1ac19 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceType.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/ServiceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SimpleUrlPattern.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SimpleUrlPattern.java index fc05ed476cc..a939171e18e 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SimpleUrlPattern.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SimpleUrlPattern.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SortOrder.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SortOrder.java index f795b3f91e7..13940e9a7a3 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SortOrder.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SslForwardProxyProfile.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SslForwardProxyProfile.java index 8f412ec08f9..717803c27f9 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SslForwardProxyProfile.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SslForwardProxyProfile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SslInboundInspectionProfile.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SslInboundInspectionProfile.java index d1479dedd0d..c95c81494b6 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SslInboundInspectionProfile.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/SslInboundInspectionProfile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TcpService.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TcpService.java index ad896e32eac..95f66974d07 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TcpService.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TcpService.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TrafficActionType.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TrafficActionType.java index fdc65ddb838..095b3ec0521 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TrafficActionType.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TrafficActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TrafficInspectionType.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TrafficInspectionType.java index e767b193c18..479980b5516 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TrafficInspectionType.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TrafficInspectionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TunnelInspectionProtocol.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TunnelInspectionProtocol.java index 4e69120d3df..195ab48f6b8 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TunnelInspectionProtocol.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TunnelInspectionProtocol.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TunnelInspectionRule.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TunnelInspectionRule.java index d26ea6b1fa7..11d11502c11 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TunnelInspectionRule.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TunnelInspectionRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TunnelInspectionRuleSummary.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TunnelInspectionRuleSummary.java index d595d3a8433..965bbd89eb8 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TunnelInspectionRuleSummary.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TunnelInspectionRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TunnelInspectionRuleSummaryCollection.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TunnelInspectionRuleSummaryCollection.java index f9eb7e16c70..d7c7fdaa92d 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TunnelInspectionRuleSummaryCollection.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/TunnelInspectionRuleSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UdpService.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UdpService.java index c529fa3445e..fec136d5b6d 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UdpService.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UdpService.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateAddressListDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateAddressListDetails.java index bebfae6b7b2..df5d18a7e4b 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateAddressListDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateAddressListDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateApplicationDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateApplicationDetails.java index b1aa56b5b58..30b1c0f82d2 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateApplicationDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateApplicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateApplicationGroupDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateApplicationGroupDetails.java index fb4398f35c1..3b229b6f54e 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateApplicationGroupDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateApplicationGroupDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateDecryptionProfileDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateDecryptionProfileDetails.java index 0b3807cf65d..ff7d8a02431 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateDecryptionProfileDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateDecryptionProfileDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateDecryptionRuleDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateDecryptionRuleDetails.java index 6d1f0113fde..5d5dff7d166 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateDecryptionRuleDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateDecryptionRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateFqdnAddressListDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateFqdnAddressListDetails.java index a4b63e8a9b9..cd82e71d348 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateFqdnAddressListDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateFqdnAddressListDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateIcmp6ApplicationDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateIcmp6ApplicationDetails.java index 49571ededb2..dfb51c3d36f 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateIcmp6ApplicationDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateIcmp6ApplicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateIcmpApplicationDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateIcmpApplicationDetails.java index f473e3bc377..b3305e94b76 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateIcmpApplicationDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateIcmpApplicationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateIpAddressListDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateIpAddressListDetails.java index 0b70ddb7fc6..cf601292104 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateIpAddressListDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateIpAddressListDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateMappedSecretDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateMappedSecretDetails.java index 0d08fb95e89..89b2e76d53e 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateMappedSecretDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateMappedSecretDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateNatRuleDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateNatRuleDetails.java index 9ca98018a75..586c9025cd3 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateNatRuleDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateNatRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateNatV4RuleDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateNatV4RuleDetails.java index 3cc24264828..5e3da64e837 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateNatV4RuleDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateNatV4RuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateNetworkFirewallDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateNetworkFirewallDetails.java index e1fce897d24..a0c920d2eec 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateNetworkFirewallDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateNetworkFirewallDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateNetworkFirewallPolicyDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateNetworkFirewallPolicyDetails.java index f394592cca9..ce8502c4109 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateNetworkFirewallPolicyDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateNetworkFirewallPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateSecurityRuleDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateSecurityRuleDetails.java index 37f583238aa..4adf8491da3 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateSecurityRuleDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateSecurityRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateServiceDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateServiceDetails.java index 10e9b6138ba..a76c3842d64 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateServiceDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateServiceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateServiceListDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateServiceListDetails.java index fd5bd3474d6..e787a0202aa 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateServiceListDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateServiceListDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateSslForwardProxyProfileDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateSslForwardProxyProfileDetails.java index ba449e8cb12..459a1042b56 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateSslForwardProxyProfileDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateSslForwardProxyProfileDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateSslInboundInspectionProfileDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateSslInboundInspectionProfileDetails.java index 8a752c46a67..0bedf15a610 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateSslInboundInspectionProfileDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateSslInboundInspectionProfileDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateTcpServiceDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateTcpServiceDetails.java index 6daef900bb3..3aae69ed587 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateTcpServiceDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateTcpServiceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateTunnelInspectionRuleDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateTunnelInspectionRuleDetails.java index 3d14482eda5..9f5b7c9264d 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateTunnelInspectionRuleDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateTunnelInspectionRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateUdpServiceDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateUdpServiceDetails.java index 4c61ffcc7da..520e0dba37d 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateUdpServiceDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateUdpServiceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateUrlListDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateUrlListDetails.java index ef76118223e..780532af4a0 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateUrlListDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateUrlListDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateVaultMappedSecretDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateVaultMappedSecretDetails.java index 4f6c65862ca..a1a2224eb57 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateVaultMappedSecretDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateVaultMappedSecretDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateVxlanInspectionRuleDetails.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateVxlanInspectionRuleDetails.java index e166d9ff3ec..610723f26b6 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateVxlanInspectionRuleDetails.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UpdateVxlanInspectionRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UrlList.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UrlList.java index 0491b2f25c2..72a2bc350b8 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UrlList.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UrlList.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UrlListSummary.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UrlListSummary.java index 0b53eee2e8f..ed959ddad92 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UrlListSummary.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UrlListSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UrlListSummaryCollection.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UrlListSummaryCollection.java index 6f8361d7ee3..337ea37668e 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UrlListSummaryCollection.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UrlListSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UrlPattern.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UrlPattern.java index 8e7615e9a77..288378e60bb 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UrlPattern.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/UrlPattern.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/VaultMappedSecret.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/VaultMappedSecret.java index 0d12abda1e2..b0fdf9f971a 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/VaultMappedSecret.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/VaultMappedSecret.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/VxlanInspectionRule.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/VxlanInspectionRule.java index 1ed6ccc0c04..102b7672f99 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/VxlanInspectionRule.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/VxlanInspectionRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/VxlanInspectionRuleMatchCriteria.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/VxlanInspectionRuleMatchCriteria.java index d15d1d445f6..549b9ae8243 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/VxlanInspectionRuleMatchCriteria.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/VxlanInspectionRuleMatchCriteria.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/VxlanInspectionRuleProfile.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/VxlanInspectionRuleProfile.java index 47099f8579d..abf2ae741a5 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/VxlanInspectionRuleProfile.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/VxlanInspectionRuleProfile.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/VxlanInspectionRuleSummary.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/VxlanInspectionRuleSummary.java index 8115946d3a2..02a141c149d 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/VxlanInspectionRuleSummary.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/VxlanInspectionRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequest.java index 638e00a4a40..ea2ff145a3d 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestError.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestError.java index 814d41c085f..78c4dc6a9d9 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestError.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestErrorCollection.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestErrorCollection.java index 4b24a0cd070..f9d055944f5 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestErrorCollection.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestLogEntry.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestLogEntry.java index e1baab6d16c..22a0efec00b 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestLogEntry.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestLogEntryCollection.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestLogEntryCollection.java index 89b8b847156..165b80c551c 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestLogEntryCollection.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestResource.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestResource.java index e412b3bb43b..fc03f935e02 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestResource.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestResourceMetadataKey.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestResourceMetadataKey.java index 2c3b77c8bb5..1c4a3e8f0c6 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestResourceMetadataKey.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestSummary.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestSummary.java index 8befd1b5b88..db5369c7290 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestSummary.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestSummaryCollection.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestSummaryCollection.java index 1f15ac4e31f..063d7da7bf5 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestSummaryCollection.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/model/WorkRequestSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.model; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ApplyNetworkFirewallPolicyRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ApplyNetworkFirewallPolicyRequest.java index 392a8e22204..38ad7be0541 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ApplyNetworkFirewallPolicyRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ApplyNetworkFirewallPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadAddressListsRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadAddressListsRequest.java index 6768d44fbc2..7914aff527a 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadAddressListsRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadAddressListsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadApplicationGroupsRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadApplicationGroupsRequest.java index 03c8ade7cd6..be41e16f99d 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadApplicationGroupsRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadApplicationGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadApplicationsRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadApplicationsRequest.java index 893ac228534..86d796b872c 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadApplicationsRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadApplicationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadDecryptionProfilesRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadDecryptionProfilesRequest.java index 7b446ecd6ed..c1b1c9f498a 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadDecryptionProfilesRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadDecryptionProfilesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadDecryptionRulesRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadDecryptionRulesRequest.java index 9531e5ac364..dcd5071ee8e 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadDecryptionRulesRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadDecryptionRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadMappedSecretsRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadMappedSecretsRequest.java index 1a1c3dba9ed..5e01d361776 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadMappedSecretsRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadMappedSecretsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadNatRulesRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadNatRulesRequest.java index b600e44a44f..0fb29b207ce 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadNatRulesRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadNatRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadSecurityRulesRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadSecurityRulesRequest.java index 58ed9934a95..ac30382059f 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadSecurityRulesRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadSecurityRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadServiceListsRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadServiceListsRequest.java index c4bea06f3d3..bbab37db1d0 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadServiceListsRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadServiceListsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadServicesRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadServicesRequest.java index 189e46dd2db..adb72cb0db8 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadServicesRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadServicesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadTunnelInspectionRulesRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadTunnelInspectionRulesRequest.java index ea35c95ea74..37d96f26405 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadTunnelInspectionRulesRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadTunnelInspectionRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadUrlListsRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadUrlListsRequest.java index 247cc4334df..793f0bc709b 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadUrlListsRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/BulkUploadUrlListsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CancelWorkRequestRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CancelWorkRequestRequest.java index f3f25ebb581..54d0448b05f 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CancelWorkRequestRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ChangeNetworkFirewallCompartmentRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ChangeNetworkFirewallCompartmentRequest.java index 398be6f121f..b8e5c396e40 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ChangeNetworkFirewallCompartmentRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ChangeNetworkFirewallCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ChangeNetworkFirewallPolicyCompartmentRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ChangeNetworkFirewallPolicyCompartmentRequest.java index 971db976a0c..5bca9a3d4c5 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ChangeNetworkFirewallPolicyCompartmentRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ChangeNetworkFirewallPolicyCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CloneNetworkFirewallPolicyRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CloneNetworkFirewallPolicyRequest.java index a94a442a249..79e48c3ce49 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CloneNetworkFirewallPolicyRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CloneNetworkFirewallPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateAddressListRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateAddressListRequest.java index d66aa202f9e..72d62dfd9a2 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateAddressListRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateAddressListRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateApplicationGroupRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateApplicationGroupRequest.java index 7ff2758b089..b1e231269af 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateApplicationGroupRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateApplicationGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateApplicationRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateApplicationRequest.java index 3f64d455730..4a1515f9425 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateApplicationRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateDecryptionProfileRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateDecryptionProfileRequest.java index ee667c427e2..0c01bb8190c 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateDecryptionProfileRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateDecryptionProfileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateDecryptionRuleRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateDecryptionRuleRequest.java index 38c2d1938ab..9e399b78859 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateDecryptionRuleRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateDecryptionRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateMappedSecretRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateMappedSecretRequest.java index 3e8fac6686f..6c78e4c9520 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateMappedSecretRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateMappedSecretRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateNatRuleRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateNatRuleRequest.java index 8386cdfdece..46ad3cc48ee 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateNatRuleRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateNatRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateNetworkFirewallPolicyRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateNetworkFirewallPolicyRequest.java index 45bf9494a67..269af34130f 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateNetworkFirewallPolicyRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateNetworkFirewallPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateNetworkFirewallRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateNetworkFirewallRequest.java index 949c7944797..0190702d4fb 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateNetworkFirewallRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateNetworkFirewallRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateSecurityRuleRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateSecurityRuleRequest.java index 4b67b671a15..3717110cce1 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateSecurityRuleRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateSecurityRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateServiceListRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateServiceListRequest.java index 85062eb492f..fc48233b4d5 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateServiceListRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateServiceListRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateServiceRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateServiceRequest.java index 4712ea9a131..caf94681c98 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateServiceRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateServiceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateTunnelInspectionRuleRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateTunnelInspectionRuleRequest.java index 80963886f7e..49ea3521413 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateTunnelInspectionRuleRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateTunnelInspectionRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateUrlListRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateUrlListRequest.java index 770e0eb8489..cf37933c4de 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateUrlListRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/CreateUrlListRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteAddressListRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteAddressListRequest.java index cf9d737f357..de36554447f 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteAddressListRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteAddressListRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteApplicationGroupRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteApplicationGroupRequest.java index 0fbfbd54365..7cde9ee3925 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteApplicationGroupRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteApplicationGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteApplicationRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteApplicationRequest.java index 2e51b0d3fa8..d6b2d8348d3 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteApplicationRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteDecryptionProfileRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteDecryptionProfileRequest.java index 01161a9039d..8fe6f918546 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteDecryptionProfileRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteDecryptionProfileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteDecryptionRuleRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteDecryptionRuleRequest.java index 0e4ce41efe3..a4c75caf2b0 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteDecryptionRuleRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteDecryptionRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteMappedSecretRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteMappedSecretRequest.java index 9e86f9b6b84..42c6129746d 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteMappedSecretRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteMappedSecretRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteNatRuleRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteNatRuleRequest.java index a071fde7c8d..e820c243702 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteNatRuleRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteNatRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteNetworkFirewallPolicyRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteNetworkFirewallPolicyRequest.java index 7a5ce2d5048..f31cd0c64a9 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteNetworkFirewallPolicyRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteNetworkFirewallPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteNetworkFirewallRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteNetworkFirewallRequest.java index cb6dd931639..eb52628f253 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteNetworkFirewallRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteNetworkFirewallRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteSecurityRuleRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteSecurityRuleRequest.java index 79f9907cb4b..cb3c852f5bc 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteSecurityRuleRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteSecurityRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteServiceListRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteServiceListRequest.java index abed786d9ba..fda55f27713 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteServiceListRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteServiceListRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteServiceRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteServiceRequest.java index 011941f20f1..29158cc4c8b 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteServiceRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteServiceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteTunnelInspectionRuleRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteTunnelInspectionRuleRequest.java index ef99afbee48..6f8d54b948a 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteTunnelInspectionRuleRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteTunnelInspectionRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteUrlListRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteUrlListRequest.java index 069cea8ae1a..704f5ff0db2 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteUrlListRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/DeleteUrlListRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetAddressListRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetAddressListRequest.java index f882a6c8041..66434bda59e 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetAddressListRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetAddressListRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetApplicationGroupRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetApplicationGroupRequest.java index 311677b5a05..cb5f4be1f16 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetApplicationGroupRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetApplicationGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetApplicationRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetApplicationRequest.java index 5f6a4501998..694b3d1a54d 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetApplicationRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetDecryptionProfileRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetDecryptionProfileRequest.java index 438e0277533..6dfc2307593 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetDecryptionProfileRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetDecryptionProfileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetDecryptionRuleRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetDecryptionRuleRequest.java index ccd0af770ad..594fcb54f57 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetDecryptionRuleRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetDecryptionRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetMappedSecretRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetMappedSecretRequest.java index 8f95defeccb..cd5b458d089 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetMappedSecretRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetMappedSecretRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetNatRuleRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetNatRuleRequest.java index 63e419727ca..9afab7dce19 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetNatRuleRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetNatRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetNetworkFirewallPolicyRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetNetworkFirewallPolicyRequest.java index 3f96bcbd1ba..be934f8760a 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetNetworkFirewallPolicyRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetNetworkFirewallPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetNetworkFirewallRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetNetworkFirewallRequest.java index fb0a4ebbb99..cf9bbed934a 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetNetworkFirewallRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetNetworkFirewallRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetSecurityRuleRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetSecurityRuleRequest.java index 91d4d5d99ee..01e770bcadc 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetSecurityRuleRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetSecurityRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetServiceListRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetServiceListRequest.java index 92864748005..b16e97698d5 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetServiceListRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetServiceListRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetServiceRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetServiceRequest.java index 8fff4f8ae08..b1e8cb519cf 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetServiceRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetServiceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetTunnelInspectionRuleRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetTunnelInspectionRuleRequest.java index 27247f62a2f..c403fc3a708 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetTunnelInspectionRuleRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetTunnelInspectionRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetUrlListRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetUrlListRequest.java index 3cb96a76706..00b4dc889bc 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetUrlListRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetUrlListRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetWorkRequestRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetWorkRequestRequest.java index 4eef96ab140..4eff270f6ae 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetWorkRequestRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListAddressListsRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListAddressListsRequest.java index 2fc4c6388e6..1d9bac56e69 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListAddressListsRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListAddressListsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListApplicationGroupsRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListApplicationGroupsRequest.java index a06a87cdb8c..464306a9779 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListApplicationGroupsRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListApplicationGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListApplicationsRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListApplicationsRequest.java index d9ce60cb36d..bc7f43c483e 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListApplicationsRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListApplicationsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListDecryptionProfilesRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListDecryptionProfilesRequest.java index be72ff26d2d..337b9117b90 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListDecryptionProfilesRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListDecryptionProfilesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListDecryptionRulesRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListDecryptionRulesRequest.java index d14a9dfedea..22a719698b0 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListDecryptionRulesRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListDecryptionRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListMappedSecretsRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListMappedSecretsRequest.java index c238017ea41..92f9bafbcc9 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListMappedSecretsRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListMappedSecretsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListNatRulesRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListNatRulesRequest.java index 76b95f04423..ee1bb0405fb 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListNatRulesRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListNatRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListNetworkFirewallPoliciesRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListNetworkFirewallPoliciesRequest.java index a5282ad54c1..1aa8699cfa2 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListNetworkFirewallPoliciesRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListNetworkFirewallPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListNetworkFirewallsRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListNetworkFirewallsRequest.java index 21fd652d372..8bf7fcc6ecd 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListNetworkFirewallsRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListNetworkFirewallsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListSecurityRulesRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListSecurityRulesRequest.java index d74fc8b5aff..1c900c30f46 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListSecurityRulesRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListSecurityRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListServiceListsRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListServiceListsRequest.java index fcdafe3007a..ff6e87fd169 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListServiceListsRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListServiceListsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListServicesRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListServicesRequest.java index 0d7b7e415d0..6907deb327d 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListServicesRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListServicesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListTunnelInspectionRulesRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListTunnelInspectionRulesRequest.java index d84ca30ecf4..e9a150aa803 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListTunnelInspectionRulesRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListTunnelInspectionRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListUrlListsRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListUrlListsRequest.java index 46d16b3e152..66bf6cd5028 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListUrlListsRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListUrlListsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListWorkRequestErrorsRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListWorkRequestErrorsRequest.java index 9124b21fbe3..5b7ec6a0eac 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListWorkRequestLogsRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListWorkRequestLogsRequest.java index c5eb83efeef..4b915c867c5 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListWorkRequestLogsRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListWorkRequestsRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListWorkRequestsRequest.java index a1059b5b4f3..51c87bc49f5 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListWorkRequestsRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/MigrateNetworkFirewallPolicyRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/MigrateNetworkFirewallPolicyRequest.java index c525cb722cc..a11a3803e25 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/MigrateNetworkFirewallPolicyRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/MigrateNetworkFirewallPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateAddressListRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateAddressListRequest.java index d911b2e7626..f3209a5bfff 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateAddressListRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateAddressListRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateApplicationGroupRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateApplicationGroupRequest.java index 4521dd1f46d..e07ee798fc9 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateApplicationGroupRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateApplicationGroupRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateApplicationRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateApplicationRequest.java index 128f33fc305..d80c9d57ddd 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateApplicationRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateApplicationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateDecryptionProfileRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateDecryptionProfileRequest.java index fbf659dc31f..6e95406b7f2 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateDecryptionProfileRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateDecryptionProfileRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateDecryptionRuleRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateDecryptionRuleRequest.java index 55f8931b174..365ce708165 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateDecryptionRuleRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateDecryptionRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateMappedSecretRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateMappedSecretRequest.java index f75b4b6eba9..f30315fc369 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateMappedSecretRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateMappedSecretRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateNatRuleRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateNatRuleRequest.java index 0485bfc167f..e3dcdb5f3e8 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateNatRuleRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateNatRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateNetworkFirewallPolicyRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateNetworkFirewallPolicyRequest.java index 4be6e175729..0fcc190c5ae 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateNetworkFirewallPolicyRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateNetworkFirewallPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateNetworkFirewallRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateNetworkFirewallRequest.java index 08b0019e6d2..1f95af82cd2 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateNetworkFirewallRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateNetworkFirewallRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateSecurityRuleRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateSecurityRuleRequest.java index d15ba3d407f..5c32c0ebec8 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateSecurityRuleRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateSecurityRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateServiceListRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateServiceListRequest.java index 1255117062c..e75fbada12a 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateServiceListRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateServiceListRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateServiceRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateServiceRequest.java index b97e4a2e092..14d03d2b93b 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateServiceRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateServiceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateTunnelInspectionRuleRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateTunnelInspectionRuleRequest.java index f1bc139e24c..d7c49557bb3 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateTunnelInspectionRuleRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateTunnelInspectionRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateUrlListRequest.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateUrlListRequest.java index 0a92a27340c..97b3e78f91e 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateUrlListRequest.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/requests/UpdateUrlListRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.requests; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ApplyNetworkFirewallPolicyResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ApplyNetworkFirewallPolicyResponse.java index 2dbb75e4800..cb5fb07f98b 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ApplyNetworkFirewallPolicyResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ApplyNetworkFirewallPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadAddressListsResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadAddressListsResponse.java index 283d49b890c..8c3f023e983 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadAddressListsResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadAddressListsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadApplicationGroupsResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadApplicationGroupsResponse.java index 5e8532585ab..cc28d41befd 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadApplicationGroupsResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadApplicationGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadApplicationsResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadApplicationsResponse.java index 7104d97597e..0a393ed95cb 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadApplicationsResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadApplicationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadDecryptionProfilesResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadDecryptionProfilesResponse.java index 0d002781ad3..853e1389d41 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadDecryptionProfilesResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadDecryptionProfilesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadDecryptionRulesResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadDecryptionRulesResponse.java index e4e3915fc1d..37d732b14db 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadDecryptionRulesResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadDecryptionRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadMappedSecretsResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadMappedSecretsResponse.java index a4dd67d3357..8a39ed111be 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadMappedSecretsResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadMappedSecretsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadNatRulesResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadNatRulesResponse.java index 4cf82547552..badc17d6677 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadNatRulesResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadNatRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadSecurityRulesResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadSecurityRulesResponse.java index ad8f2b87e06..34ff0f5716f 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadSecurityRulesResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadSecurityRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadServiceListsResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadServiceListsResponse.java index 4c266338659..342658121a1 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadServiceListsResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadServiceListsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadServicesResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadServicesResponse.java index f8d15dfaf16..28aa12e4016 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadServicesResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadServicesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadTunnelInspectionRulesResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadTunnelInspectionRulesResponse.java index 04ae1dbe1d3..c0d8ea29180 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadTunnelInspectionRulesResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadTunnelInspectionRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadUrlListsResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadUrlListsResponse.java index 3bb2d27bffa..01e6eaa85ea 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadUrlListsResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/BulkUploadUrlListsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CancelWorkRequestResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CancelWorkRequestResponse.java index 182a9a4211e..10f3d3afc64 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CancelWorkRequestResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ChangeNetworkFirewallCompartmentResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ChangeNetworkFirewallCompartmentResponse.java index 824bf68e6ea..3ad5575361b 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ChangeNetworkFirewallCompartmentResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ChangeNetworkFirewallCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ChangeNetworkFirewallPolicyCompartmentResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ChangeNetworkFirewallPolicyCompartmentResponse.java index ba46a972785..8622bad6d04 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ChangeNetworkFirewallPolicyCompartmentResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ChangeNetworkFirewallPolicyCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CloneNetworkFirewallPolicyResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CloneNetworkFirewallPolicyResponse.java index dd0443f65ea..590c53254da 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CloneNetworkFirewallPolicyResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CloneNetworkFirewallPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateAddressListResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateAddressListResponse.java index 2419dd7eaa6..4ef3d470a56 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateAddressListResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateAddressListResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateApplicationGroupResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateApplicationGroupResponse.java index d8fb3ae629d..20d572fa5af 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateApplicationGroupResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateApplicationGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateApplicationResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateApplicationResponse.java index 1bff31cf201..93f1bf4f8b9 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateApplicationResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateDecryptionProfileResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateDecryptionProfileResponse.java index cac31d5814a..65868a1ec65 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateDecryptionProfileResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateDecryptionProfileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateDecryptionRuleResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateDecryptionRuleResponse.java index 5fef8204339..cdae22a1ea3 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateDecryptionRuleResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateDecryptionRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateMappedSecretResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateMappedSecretResponse.java index 899854e47da..86a349358e9 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateMappedSecretResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateMappedSecretResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateNatRuleResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateNatRuleResponse.java index 96281bb1e4d..42237458955 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateNatRuleResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateNatRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateNetworkFirewallPolicyResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateNetworkFirewallPolicyResponse.java index 0ff0497646b..bab6674d5b5 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateNetworkFirewallPolicyResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateNetworkFirewallPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateNetworkFirewallResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateNetworkFirewallResponse.java index 485e112c5f9..61de8ceb572 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateNetworkFirewallResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateNetworkFirewallResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateSecurityRuleResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateSecurityRuleResponse.java index 66f498eb14e..c4ea7c749ae 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateSecurityRuleResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateSecurityRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateServiceListResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateServiceListResponse.java index 619ed4d1a68..d739683befa 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateServiceListResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateServiceListResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateServiceResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateServiceResponse.java index 004f00e378b..5de3f08fc55 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateServiceResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateServiceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateTunnelInspectionRuleResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateTunnelInspectionRuleResponse.java index 4ea49fd1225..b6f98cc73a2 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateTunnelInspectionRuleResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateTunnelInspectionRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateUrlListResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateUrlListResponse.java index 8472427eddb..9fac50d3174 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateUrlListResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/CreateUrlListResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteAddressListResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteAddressListResponse.java index b41255027d4..bceb6cd5771 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteAddressListResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteAddressListResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteApplicationGroupResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteApplicationGroupResponse.java index 74002e61a31..37f8d9cf896 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteApplicationGroupResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteApplicationGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteApplicationResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteApplicationResponse.java index 191fc28f062..2b2f56b0d6f 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteApplicationResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteDecryptionProfileResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteDecryptionProfileResponse.java index ba28524eafb..e30487f4f34 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteDecryptionProfileResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteDecryptionProfileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteDecryptionRuleResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteDecryptionRuleResponse.java index ed6ec23c634..e415d2dada8 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteDecryptionRuleResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteDecryptionRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteMappedSecretResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteMappedSecretResponse.java index c62c4fb44b9..81592d1c093 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteMappedSecretResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteMappedSecretResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteNatRuleResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteNatRuleResponse.java index 62334af9dbf..1805b02fc2f 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteNatRuleResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteNatRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteNetworkFirewallPolicyResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteNetworkFirewallPolicyResponse.java index d599127ef9b..6c5d3771afa 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteNetworkFirewallPolicyResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteNetworkFirewallPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteNetworkFirewallResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteNetworkFirewallResponse.java index 035ac7d2e83..729fcecea06 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteNetworkFirewallResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteNetworkFirewallResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteSecurityRuleResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteSecurityRuleResponse.java index 2de6767bf88..f46a77a5d86 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteSecurityRuleResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteSecurityRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteServiceListResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteServiceListResponse.java index 4cb0fa0f006..94460a04cf6 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteServiceListResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteServiceListResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteServiceResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteServiceResponse.java index 48ee53ca75e..2bee5642260 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteServiceResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteServiceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteTunnelInspectionRuleResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteTunnelInspectionRuleResponse.java index 5ff1bab4000..efef0b1d6fe 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteTunnelInspectionRuleResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteTunnelInspectionRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteUrlListResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteUrlListResponse.java index 1d9771b8b73..b996b5cd3c7 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteUrlListResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/DeleteUrlListResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetAddressListResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetAddressListResponse.java index a154526b1be..5340ee19dbf 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetAddressListResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetAddressListResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetApplicationGroupResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetApplicationGroupResponse.java index af5c1371b5c..96d9c31ea27 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetApplicationGroupResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetApplicationGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetApplicationResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetApplicationResponse.java index e8915c01813..2ca62a4e3b7 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetApplicationResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetDecryptionProfileResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetDecryptionProfileResponse.java index ad65836cc7d..215b0ae9b72 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetDecryptionProfileResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetDecryptionProfileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetDecryptionRuleResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetDecryptionRuleResponse.java index 6fde9e53dec..1067901b0ca 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetDecryptionRuleResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetDecryptionRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetMappedSecretResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetMappedSecretResponse.java index afc0dc5887d..7fd43dba03b 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetMappedSecretResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetMappedSecretResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetNatRuleResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetNatRuleResponse.java index 11baf5379c1..f155db143ba 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetNatRuleResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetNatRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetNetworkFirewallPolicyResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetNetworkFirewallPolicyResponse.java index 885a7c4bb43..1282a2d0d4f 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetNetworkFirewallPolicyResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetNetworkFirewallPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetNetworkFirewallResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetNetworkFirewallResponse.java index 4444f1cd608..f972bf3a987 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetNetworkFirewallResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetNetworkFirewallResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetSecurityRuleResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetSecurityRuleResponse.java index 808984c5c77..d436274696d 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetSecurityRuleResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetSecurityRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetServiceListResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetServiceListResponse.java index 2b9395f1995..5ce62a149e4 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetServiceListResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetServiceListResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetServiceResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetServiceResponse.java index 481c54240da..3fa1336f363 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetServiceResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetServiceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetTunnelInspectionRuleResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetTunnelInspectionRuleResponse.java index 8a8b35a9a1e..68c7ba0652b 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetTunnelInspectionRuleResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetTunnelInspectionRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetUrlListResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetUrlListResponse.java index 11fe5e16bf0..00d0860c5de 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetUrlListResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetUrlListResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetWorkRequestResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetWorkRequestResponse.java index be3b4def3e2..a449bebe813 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetWorkRequestResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListAddressListsResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListAddressListsResponse.java index 52c19b5bd78..1177ef68636 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListAddressListsResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListAddressListsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListApplicationGroupsResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListApplicationGroupsResponse.java index 5319696e4b8..f176e0d7183 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListApplicationGroupsResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListApplicationGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListApplicationsResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListApplicationsResponse.java index c7b57c86289..a9a2aca47ab 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListApplicationsResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListApplicationsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListDecryptionProfilesResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListDecryptionProfilesResponse.java index f236b9128b0..253c3521437 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListDecryptionProfilesResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListDecryptionProfilesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListDecryptionRulesResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListDecryptionRulesResponse.java index 26127438c5d..1befab8b01f 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListDecryptionRulesResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListDecryptionRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListMappedSecretsResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListMappedSecretsResponse.java index ff86a12805e..6820d125368 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListMappedSecretsResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListMappedSecretsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListNatRulesResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListNatRulesResponse.java index 90ff59bfa81..64a1733f307 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListNatRulesResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListNatRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListNetworkFirewallPoliciesResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListNetworkFirewallPoliciesResponse.java index a51b26d076b..a1234ef468c 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListNetworkFirewallPoliciesResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListNetworkFirewallPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListNetworkFirewallsResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListNetworkFirewallsResponse.java index 4abe9b137f8..8fad53ea1f8 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListNetworkFirewallsResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListNetworkFirewallsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListSecurityRulesResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListSecurityRulesResponse.java index 3f5f6dcc540..df10ef06806 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListSecurityRulesResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListSecurityRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListServiceListsResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListServiceListsResponse.java index f1e672dbe2a..ac9fdb4847a 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListServiceListsResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListServiceListsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListServicesResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListServicesResponse.java index 28f09282b07..a6d4979a4e9 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListServicesResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListServicesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListTunnelInspectionRulesResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListTunnelInspectionRulesResponse.java index 168f650348a..a70591e0572 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListTunnelInspectionRulesResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListTunnelInspectionRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListUrlListsResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListUrlListsResponse.java index 009a11f4009..ee3121c5577 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListUrlListsResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListUrlListsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListWorkRequestErrorsResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListWorkRequestErrorsResponse.java index 30310dec8ed..4372da6c606 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListWorkRequestLogsResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListWorkRequestLogsResponse.java index aed97ec644e..f68392fabdb 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListWorkRequestLogsResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListWorkRequestsResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListWorkRequestsResponse.java index 25738d52d4b..d43d4016073 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListWorkRequestsResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/MigrateNetworkFirewallPolicyResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/MigrateNetworkFirewallPolicyResponse.java index 1ec71f454f2..c4282c875e5 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/MigrateNetworkFirewallPolicyResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/MigrateNetworkFirewallPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateAddressListResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateAddressListResponse.java index 9a8ff35a354..827c8edd786 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateAddressListResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateAddressListResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateApplicationGroupResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateApplicationGroupResponse.java index c0199055e5e..ba8ae4240c0 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateApplicationGroupResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateApplicationGroupResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateApplicationResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateApplicationResponse.java index 2e642be2bf4..4c15c84e555 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateApplicationResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateApplicationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateDecryptionProfileResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateDecryptionProfileResponse.java index aee1f4a82af..2d9c4ff5afd 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateDecryptionProfileResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateDecryptionProfileResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateDecryptionRuleResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateDecryptionRuleResponse.java index 2490fd7b454..eda17c1709e 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateDecryptionRuleResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateDecryptionRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateMappedSecretResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateMappedSecretResponse.java index ecd695b9cb1..f7d8e039ed1 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateMappedSecretResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateMappedSecretResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateNatRuleResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateNatRuleResponse.java index 54e659a7a20..c78849cf143 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateNatRuleResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateNatRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateNetworkFirewallPolicyResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateNetworkFirewallPolicyResponse.java index bd096a20710..d9b2b7d3ce0 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateNetworkFirewallPolicyResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateNetworkFirewallPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateNetworkFirewallResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateNetworkFirewallResponse.java index 39eda3c9028..6faeeca3560 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateNetworkFirewallResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateNetworkFirewallResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateSecurityRuleResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateSecurityRuleResponse.java index 9f4c038c720..1d73178355a 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateSecurityRuleResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateSecurityRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateServiceListResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateServiceListResponse.java index 11ca632ed5b..e05e4c7e1a0 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateServiceListResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateServiceListResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateServiceResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateServiceResponse.java index a2badd53895..2a060e9d1ec 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateServiceResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateServiceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateTunnelInspectionRuleResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateTunnelInspectionRuleResponse.java index 8c3b30e1678..71dd9ad84e6 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateTunnelInspectionRuleResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateTunnelInspectionRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateUrlListResponse.java b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateUrlListResponse.java index bb6a5497bca..59d54beffd1 100644 --- a/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateUrlListResponse.java +++ b/bmc-networkfirewall/src/main/java/com/oracle/bmc/networkfirewall/responses/UpdateUrlListResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkfirewall.responses; diff --git a/bmc-networkfirewall/src/main/resources/com/oracle/bmc/networkfirewall/client.properties b/bmc-networkfirewall/src/main/resources/com/oracle/bmc/networkfirewall/client.properties index 2fd09fd9df0..a8d84194156 100644 --- a/bmc-networkfirewall/src/main/resources/com/oracle/bmc/networkfirewall/client.properties +++ b/bmc-networkfirewall/src/main/resources/com/oracle/bmc/networkfirewall/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-networkloadbalancer/pom.xml b/bmc-networkloadbalancer/pom.xml index 73374694e66..9d7b033813f 100644 --- a/bmc-networkloadbalancer/pom.xml +++ b/bmc-networkloadbalancer/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-networkloadbalancer @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancer.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancer.java index 63561154b98..ee1817446d3 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancer.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancerAsync.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancerAsync.java index 405b2301d1f..fddcb131842 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancerAsync.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancerAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancerAsyncClient.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancerAsyncClient.java index 992c0134b99..160b00ab3af 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancerAsyncClient.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancerAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancerClient.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancerClient.java index 9ebe472cc41..eb5c36b1144 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancerClient.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancerClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancerPaginators.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancerPaginators.java index 90088aa69da..e5b96e565c5 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancerPaginators.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancerPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancerWaiters.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancerWaiters.java index eb68e08c063..be141899c63 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancerWaiters.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/NetworkLoadBalancerWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ActionType.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ActionType.java index 873b47e85da..30a96d1c08f 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ActionType.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ActionType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/Backend.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/Backend.java index 66618cdeb4d..cc99f13dac9 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/Backend.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/Backend.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendCollection.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendCollection.java index 54a6fcc56c8..7f6531d4829 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendCollection.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendDetails.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendDetails.java index 4e0c319af99..1ae1c604e7a 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendDetails.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendHealth.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendHealth.java index 680d4d5578a..0b620d319e5 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendHealth.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendHealth.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendOperationalStatus.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendOperationalStatus.java index c57d4b7a29c..e9a6dc738d1 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendOperationalStatus.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendOperationalStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSet.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSet.java index 15c28729062..b449a5261cd 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSet.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSet.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSetCollection.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSetCollection.java index a2fb3a0c139..db3b2a06c21 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSetCollection.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSetCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSetDetails.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSetDetails.java index 6347bb173bd..fc0c1ff45cc 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSetDetails.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSetHealth.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSetHealth.java index d30c4090d94..a65faf32029 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSetHealth.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSetHealth.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSetSummary.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSetSummary.java index 15a72b7001e..9db620e79f2 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSetSummary.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSetSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSummary.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSummary.java index 97dc4d0f927..442c85fdf59 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSummary.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/BackendSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ChangeNetworkLoadBalancerCompartmentDetails.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ChangeNetworkLoadBalancerCompartmentDetails.java index 8efda002f93..e6b440916bc 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ChangeNetworkLoadBalancerCompartmentDetails.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ChangeNetworkLoadBalancerCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/CreateBackendDetails.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/CreateBackendDetails.java index 9fb60810034..dbbd35b84b5 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/CreateBackendDetails.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/CreateBackendDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/CreateBackendSetDetails.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/CreateBackendSetDetails.java index 8a7a990d886..787062b5178 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/CreateBackendSetDetails.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/CreateBackendSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/CreateListenerDetails.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/CreateListenerDetails.java index f489c63df5a..0e98ddf8459 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/CreateListenerDetails.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/CreateListenerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/CreateNetworkLoadBalancerDetails.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/CreateNetworkLoadBalancerDetails.java index 0e8c6f547ce..7fe1fba11e4 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/CreateNetworkLoadBalancerDetails.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/CreateNetworkLoadBalancerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/DnsHealthCheckQueryClasses.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/DnsHealthCheckQueryClasses.java index de0c8020ce3..59439a49397 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/DnsHealthCheckQueryClasses.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/DnsHealthCheckQueryClasses.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/DnsHealthCheckQueryTypes.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/DnsHealthCheckQueryTypes.java index ae784bce842..0e6c45f8744 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/DnsHealthCheckQueryTypes.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/DnsHealthCheckQueryTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/DnsHealthCheckRCodes.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/DnsHealthCheckRCodes.java index d276ca8f2c3..48d7d497c27 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/DnsHealthCheckRCodes.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/DnsHealthCheckRCodes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/DnsHealthCheckTransportProtocols.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/DnsHealthCheckTransportProtocols.java index d77b9c41546..982e6e1b4a8 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/DnsHealthCheckTransportProtocols.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/DnsHealthCheckTransportProtocols.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/DnsHealthCheckerDetails.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/DnsHealthCheckerDetails.java index d6db6211ad8..9c0f0431bc5 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/DnsHealthCheckerDetails.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/DnsHealthCheckerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/HcsInfraIpVersion.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/HcsInfraIpVersion.java index 51d7708461a..9716b0bdd6d 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/HcsInfraIpVersion.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/HcsInfraIpVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/HealthCheckProtocols.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/HealthCheckProtocols.java index 351c4236710..71404ad13a0 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/HealthCheckProtocols.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/HealthCheckProtocols.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/HealthCheckResult.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/HealthCheckResult.java index a9a20072d62..cc15d487c64 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/HealthCheckResult.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/HealthCheckResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/HealthChecker.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/HealthChecker.java index 802195d6fc8..5e56557315b 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/HealthChecker.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/HealthChecker.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/HealthCheckerDetails.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/HealthCheckerDetails.java index 1c40b4c04e6..42f940fb62c 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/HealthCheckerDetails.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/HealthCheckerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/IpAddress.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/IpAddress.java index 2c267b96ddf..08783404afc 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/IpAddress.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/IpAddress.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/IpVersion.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/IpVersion.java index 8a68a722ad9..de0ceeb0559 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/IpVersion.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/IpVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/LifecycleState.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/LifecycleState.java index f6d5b0beba0..1f5ea719fb4 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/LifecycleState.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/LifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/Listener.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/Listener.java index 98d08fd4dd9..13f354d1f9a 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/Listener.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/Listener.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ListenerCollection.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ListenerCollection.java index c79013f669f..e9cbc721b36 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ListenerCollection.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ListenerCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ListenerDetails.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ListenerDetails.java index 73b283818f7..64e70d494d5 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ListenerDetails.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ListenerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ListenerProtocols.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ListenerProtocols.java index e3870a4cff7..1f4a2abce26 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ListenerProtocols.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ListenerProtocols.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ListenerSummary.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ListenerSummary.java index f1bc7589e61..82b78b14bed 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ListenerSummary.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ListenerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancer.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancer.java index 456c056bfa3..155424b2cae 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancer.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancer.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancerCollection.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancerCollection.java index 60ac7507665..0921797baa7 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancerCollection.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancerCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancerHealth.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancerHealth.java index 30fe8f8213b..70e1790050d 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancerHealth.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancerHealth.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancerHealthCollection.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancerHealthCollection.java index fcf1dc91fd5..7a870c61b81 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancerHealthCollection.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancerHealthCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancerHealthSummary.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancerHealthSummary.java index 8d93c51808f..d2d6e997a4c 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancerHealthSummary.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancerHealthSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancerSummary.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancerSummary.java index b9bc612b064..11eba0aa788 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancerSummary.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancerSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancersPolicyCollection.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancersPolicyCollection.java index 48c01befb2c..e4ffceb4add 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancersPolicyCollection.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancersPolicyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancersPolicySummary.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancersPolicySummary.java index 4320f4bbcab..932e827c588 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancersPolicySummary.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancersPolicySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancersProtocolCollection.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancersProtocolCollection.java index 62b0d44f247..e318f143f72 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancersProtocolCollection.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancersProtocolCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancersProtocolSummary.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancersProtocolSummary.java index d63d35dc3e2..534e0fa8117 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancersProtocolSummary.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancersProtocolSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancingPolicy.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancingPolicy.java index ab59d2bd17b..4e31955d006 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancingPolicy.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NetworkLoadBalancingPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NlbIpVersion.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NlbIpVersion.java index 3b772514c57..f07456b1598 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NlbIpVersion.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/NlbIpVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/OperationStatus.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/OperationStatus.java index 89867281deb..c89c7d17b21 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/OperationStatus.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/OperationType.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/OperationType.java index fd841b32242..1eebd3e6604 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/OperationType.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/OperationType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ReservedIP.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ReservedIP.java index b4720d9f352..39237433552 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ReservedIP.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/ReservedIP.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/SortOrder.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/SortOrder.java index adc6270c720..7d8abf6a99b 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/SortOrder.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/SortOrder.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateBackendDetails.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateBackendDetails.java index 54906c5eee0..d4797cf1be2 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateBackendDetails.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateBackendDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateBackendSetDetails.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateBackendSetDetails.java index 3ca1bc18258..150f3ea4bb1 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateBackendSetDetails.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateBackendSetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateHealthCheckerDetails.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateHealthCheckerDetails.java index 6ad5f2c45a3..5d76f35c8d1 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateHealthCheckerDetails.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateHealthCheckerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateListenerDetails.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateListenerDetails.java index 93182ee998e..75e3d9367f4 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateListenerDetails.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateListenerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateNetworkLoadBalancerDetails.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateNetworkLoadBalancerDetails.java index 30692618b1f..b07d6c37013 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateNetworkLoadBalancerDetails.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateNetworkLoadBalancerDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateNetworkSecurityGroupsDetails.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateNetworkSecurityGroupsDetails.java index f69341ec89d..649d0a74c3c 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateNetworkSecurityGroupsDetails.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/UpdateNetworkSecurityGroupsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequest.java index cf9db1c3140..a4caaeac7f1 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestCollection.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestCollection.java index 6052a39667d..1e05a4c8231 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestCollection.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestError.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestError.java index 7774d5c34cb..070ecc0bbf1 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestError.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestErrorCollection.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestErrorCollection.java index af9cb8585e4..28505d011b1 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestErrorCollection.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestLogEntry.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestLogEntry.java index bc0cc1fbcb7..e9743d54e63 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestLogEntry.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestLogEntryCollection.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestLogEntryCollection.java index 91f10dc13fa..0d7fea1dfe8 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestLogEntryCollection.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestResource.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestResource.java index 72994a41031..e06500694b1 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestResource.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestSummary.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestSummary.java index fd4904b8945..f00de345663 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestSummary.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.model; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ChangeNetworkLoadBalancerCompartmentRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ChangeNetworkLoadBalancerCompartmentRequest.java index 7a07d9312c0..2d2cfd29042 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ChangeNetworkLoadBalancerCompartmentRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ChangeNetworkLoadBalancerCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/CreateBackendRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/CreateBackendRequest.java index e9d339fa649..ec9a57321e5 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/CreateBackendRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/CreateBackendRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/CreateBackendSetRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/CreateBackendSetRequest.java index f4bebbc6291..2c45bb10751 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/CreateBackendSetRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/CreateBackendSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/CreateListenerRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/CreateListenerRequest.java index 8aec70b99d0..fdf422d0771 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/CreateListenerRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/CreateListenerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/CreateNetworkLoadBalancerRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/CreateNetworkLoadBalancerRequest.java index 6ac9b2c46c4..8d60d2ebb68 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/CreateNetworkLoadBalancerRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/CreateNetworkLoadBalancerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/DeleteBackendRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/DeleteBackendRequest.java index 1b8d4ecb07b..ecaf1817498 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/DeleteBackendRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/DeleteBackendRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/DeleteBackendSetRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/DeleteBackendSetRequest.java index 9f4ecd78fb8..531e7e850b5 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/DeleteBackendSetRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/DeleteBackendSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/DeleteListenerRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/DeleteListenerRequest.java index 12dfb2b3ca2..c978de7dd04 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/DeleteListenerRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/DeleteListenerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/DeleteNetworkLoadBalancerRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/DeleteNetworkLoadBalancerRequest.java index 3761581d0fb..22adc8ad70d 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/DeleteNetworkLoadBalancerRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/DeleteNetworkLoadBalancerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetBackendHealthRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetBackendHealthRequest.java index a76ef4aa6e0..e1867aacdc1 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetBackendHealthRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetBackendHealthRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetBackendOperationalStatusRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetBackendOperationalStatusRequest.java index 2f9be8f12d1..0bd27e7d9d4 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetBackendOperationalStatusRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetBackendOperationalStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetBackendRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetBackendRequest.java index bb265cf9854..a21ffc31167 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetBackendRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetBackendRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetBackendSetHealthRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetBackendSetHealthRequest.java index 1b296bf5792..f7f43aaeef6 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetBackendSetHealthRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetBackendSetHealthRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetBackendSetRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetBackendSetRequest.java index 58ae6a98fad..db46345ce86 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetBackendSetRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetBackendSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetHealthCheckerRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetHealthCheckerRequest.java index 0b8995a8a4a..ad81a643e52 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetHealthCheckerRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetHealthCheckerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetListenerRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetListenerRequest.java index c0fcd3f4936..c3b8d6388c7 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetListenerRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetListenerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetNetworkLoadBalancerHealthRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetNetworkLoadBalancerHealthRequest.java index 1d10398de3d..c9cb8d93da4 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetNetworkLoadBalancerHealthRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetNetworkLoadBalancerHealthRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetNetworkLoadBalancerRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetNetworkLoadBalancerRequest.java index 0ae04aa9648..37931de085b 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetNetworkLoadBalancerRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetNetworkLoadBalancerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetWorkRequestRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetWorkRequestRequest.java index 6c7cd6884a4..ec04f1fe764 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetWorkRequestRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListBackendSetsRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListBackendSetsRequest.java index d6fb5e8def9..53f2c9981c9 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListBackendSetsRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListBackendSetsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListBackendsRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListBackendsRequest.java index 682b469fe6e..709d0fc650e 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListBackendsRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListBackendsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListListenersRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListListenersRequest.java index ec19a4efd00..11b09077e11 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListListenersRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListListenersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListNetworkLoadBalancerHealthsRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListNetworkLoadBalancerHealthsRequest.java index 5c98a97de02..e3b11a3b4b5 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListNetworkLoadBalancerHealthsRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListNetworkLoadBalancerHealthsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListNetworkLoadBalancersPoliciesRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListNetworkLoadBalancersPoliciesRequest.java index 3d7bdb380e5..39b00fdbd7a 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListNetworkLoadBalancersPoliciesRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListNetworkLoadBalancersPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListNetworkLoadBalancersProtocolsRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListNetworkLoadBalancersProtocolsRequest.java index 7e5ff9a117e..d19cd085ddb 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListNetworkLoadBalancersProtocolsRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListNetworkLoadBalancersProtocolsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListNetworkLoadBalancersRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListNetworkLoadBalancersRequest.java index d147c458a57..b04fd53d5f7 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListNetworkLoadBalancersRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListNetworkLoadBalancersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListWorkRequestErrorsRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListWorkRequestErrorsRequest.java index 840cedf4e60..9dc7a9ef4b9 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListWorkRequestLogsRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListWorkRequestLogsRequest.java index b139d21104d..cef426d0db1 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListWorkRequestLogsRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListWorkRequestsRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListWorkRequestsRequest.java index 64ced94d34e..ae368c2bdad 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListWorkRequestsRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateBackendRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateBackendRequest.java index 17f8967e1cc..575f4a5df04 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateBackendRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateBackendRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateBackendSetRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateBackendSetRequest.java index f33be79b28e..cae915b7dc3 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateBackendSetRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateBackendSetRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateHealthCheckerRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateHealthCheckerRequest.java index fb5ad6b1d71..fdd3776947d 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateHealthCheckerRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateHealthCheckerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateListenerRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateListenerRequest.java index 2d7c28b2aa5..6f14ce00f85 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateListenerRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateListenerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateNetworkLoadBalancerRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateNetworkLoadBalancerRequest.java index 27021e4a94e..f7a2db04c38 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateNetworkLoadBalancerRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateNetworkLoadBalancerRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateNetworkSecurityGroupsRequest.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateNetworkSecurityGroupsRequest.java index 794ae70d188..4e386100dfc 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateNetworkSecurityGroupsRequest.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/requests/UpdateNetworkSecurityGroupsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.requests; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ChangeNetworkLoadBalancerCompartmentResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ChangeNetworkLoadBalancerCompartmentResponse.java index 0eee0e8063c..91168bba3e7 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ChangeNetworkLoadBalancerCompartmentResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ChangeNetworkLoadBalancerCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/CreateBackendResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/CreateBackendResponse.java index 78b8dfbfd95..14defdb5e30 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/CreateBackendResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/CreateBackendResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/CreateBackendSetResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/CreateBackendSetResponse.java index 6898283c873..7fb5f99efac 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/CreateBackendSetResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/CreateBackendSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/CreateListenerResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/CreateListenerResponse.java index 911bd1211a2..3955a696268 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/CreateListenerResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/CreateListenerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/CreateNetworkLoadBalancerResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/CreateNetworkLoadBalancerResponse.java index fecf797b76d..7d3ce9298e1 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/CreateNetworkLoadBalancerResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/CreateNetworkLoadBalancerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/DeleteBackendResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/DeleteBackendResponse.java index de19f11ba84..09511d0881d 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/DeleteBackendResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/DeleteBackendResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/DeleteBackendSetResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/DeleteBackendSetResponse.java index d043bcf617c..5215a5b0576 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/DeleteBackendSetResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/DeleteBackendSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/DeleteListenerResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/DeleteListenerResponse.java index 9e884113fbe..26e6f84eb3b 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/DeleteListenerResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/DeleteListenerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/DeleteNetworkLoadBalancerResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/DeleteNetworkLoadBalancerResponse.java index 0a5d9be4609..6403ceeeaae 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/DeleteNetworkLoadBalancerResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/DeleteNetworkLoadBalancerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetBackendHealthResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetBackendHealthResponse.java index 002d890e95a..94506b5b6b7 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetBackendHealthResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetBackendHealthResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetBackendOperationalStatusResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetBackendOperationalStatusResponse.java index 25efe80ecab..2b742f68610 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetBackendOperationalStatusResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetBackendOperationalStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetBackendResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetBackendResponse.java index 9620d92d709..102a2902daf 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetBackendResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetBackendResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetBackendSetHealthResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetBackendSetHealthResponse.java index 773f55f5c63..9b6ab816a52 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetBackendSetHealthResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetBackendSetHealthResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetBackendSetResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetBackendSetResponse.java index a937b38d124..c66d45e01e7 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetBackendSetResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetBackendSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetHealthCheckerResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetHealthCheckerResponse.java index 8f8eadf52e3..5763567c548 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetHealthCheckerResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetHealthCheckerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetListenerResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetListenerResponse.java index 415c445ee23..7c949b546be 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetListenerResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetListenerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetNetworkLoadBalancerHealthResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetNetworkLoadBalancerHealthResponse.java index daf0cb92a34..370423965a3 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetNetworkLoadBalancerHealthResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetNetworkLoadBalancerHealthResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetNetworkLoadBalancerResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetNetworkLoadBalancerResponse.java index c55c42aec78..9ea1514228f 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetNetworkLoadBalancerResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetNetworkLoadBalancerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetWorkRequestResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetWorkRequestResponse.java index 4936a91e6a9..fcf352609b8 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetWorkRequestResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListBackendSetsResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListBackendSetsResponse.java index e81b4fe2c3a..314823420ce 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListBackendSetsResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListBackendSetsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListBackendsResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListBackendsResponse.java index 386ee6744e4..149e6f5eb37 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListBackendsResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListBackendsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListListenersResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListListenersResponse.java index 9690082dfbe..c7b7334503e 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListListenersResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListListenersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListNetworkLoadBalancerHealthsResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListNetworkLoadBalancerHealthsResponse.java index 44414fffae6..fdd92911c34 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListNetworkLoadBalancerHealthsResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListNetworkLoadBalancerHealthsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListNetworkLoadBalancersPoliciesResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListNetworkLoadBalancersPoliciesResponse.java index edab7a4d06f..d65b6c0320c 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListNetworkLoadBalancersPoliciesResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListNetworkLoadBalancersPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListNetworkLoadBalancersProtocolsResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListNetworkLoadBalancersProtocolsResponse.java index 856005337b7..e9b2ab58f9f 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListNetworkLoadBalancersProtocolsResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListNetworkLoadBalancersProtocolsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListNetworkLoadBalancersResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListNetworkLoadBalancersResponse.java index e903b802749..b5c6d384ff7 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListNetworkLoadBalancersResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListNetworkLoadBalancersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListWorkRequestErrorsResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListWorkRequestErrorsResponse.java index c37c42835f8..d125d4f3b0e 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListWorkRequestLogsResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListWorkRequestLogsResponse.java index e70f41dd691..9b5e394aae5 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListWorkRequestLogsResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListWorkRequestsResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListWorkRequestsResponse.java index 16b986d9754..5c8193e4495 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListWorkRequestsResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateBackendResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateBackendResponse.java index abb642d383c..d72f6478d4f 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateBackendResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateBackendResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateBackendSetResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateBackendSetResponse.java index 10f2ff0ebed..9b1008ee746 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateBackendSetResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateBackendSetResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateHealthCheckerResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateHealthCheckerResponse.java index 7ade3b193fa..35b96b184c0 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateHealthCheckerResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateHealthCheckerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateListenerResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateListenerResponse.java index 98b4a08e805..2506fd14ffa 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateListenerResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateListenerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateNetworkLoadBalancerResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateNetworkLoadBalancerResponse.java index d93aa8239aa..81e2f9481e6 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateNetworkLoadBalancerResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateNetworkLoadBalancerResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateNetworkSecurityGroupsResponse.java b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateNetworkSecurityGroupsResponse.java index 465b65587f2..76bf6eb377b 100644 --- a/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateNetworkSecurityGroupsResponse.java +++ b/bmc-networkloadbalancer/src/main/java/com/oracle/bmc/networkloadbalancer/responses/UpdateNetworkSecurityGroupsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.networkloadbalancer.responses; diff --git a/bmc-networkloadbalancer/src/main/resources/com/oracle/bmc/networkloadbalancer/client.properties b/bmc-networkloadbalancer/src/main/resources/com/oracle/bmc/networkloadbalancer/client.properties index ab38cc7ed78..d069cbf80a1 100644 --- a/bmc-networkloadbalancer/src/main/resources/com/oracle/bmc/networkloadbalancer/client.properties +++ b/bmc-networkloadbalancer/src/main/resources/com/oracle/bmc/networkloadbalancer/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-nosql/pom.xml b/bmc-nosql/pom.xml index 1023b4f7703..780f956aefb 100644 --- a/bmc-nosql/pom.xml +++ b/bmc-nosql/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-nosql @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/Nosql.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/Nosql.java index ef3c40d1006..1ecce93b474 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/Nosql.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/Nosql.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/NosqlAsync.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/NosqlAsync.java index 3fb751f0b09..dd37adeb718 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/NosqlAsync.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/NosqlAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/NosqlAsyncClient.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/NosqlAsyncClient.java index aee83a6b1b7..e4c156392ba 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/NosqlAsyncClient.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/NosqlAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/NosqlClient.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/NosqlClient.java index a51cdedf8d7..8d3c76b811a 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/NosqlClient.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/NosqlClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/NosqlPaginators.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/NosqlPaginators.java index 02ee12feb07..dffe01c1926 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/NosqlPaginators.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/NosqlPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/NosqlWaiters.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/NosqlWaiters.java index 2ada7836c37..2989d438a05 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/NosqlWaiters.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/NosqlWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/ChangeTableCompartmentDetails.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/ChangeTableCompartmentDetails.java index fcd05eb8a24..cd839c67eb1 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/ChangeTableCompartmentDetails.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/ChangeTableCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Column.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Column.java index 84051800f2d..08e5178ebee 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Column.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Column.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Configuration.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Configuration.java index 47db704a91d..92705bfcaef 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Configuration.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Configuration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/CreateIndexDetails.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/CreateIndexDetails.java index 7fe00fdf85e..9860ca7e6e6 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/CreateIndexDetails.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/CreateIndexDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/CreateReplicaDetails.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/CreateReplicaDetails.java index 383693938d0..553367227a5 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/CreateReplicaDetails.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/CreateReplicaDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/CreateTableDetails.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/CreateTableDetails.java index 93426c82bfd..e99f8183dad 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/CreateTableDetails.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/CreateTableDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/DeleteRowResult.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/DeleteRowResult.java index 61eeda75a28..4c8c4e10148 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/DeleteRowResult.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/DeleteRowResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/HostedConfiguration.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/HostedConfiguration.java index 43074322fed..fe677ab74ba 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/HostedConfiguration.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/HostedConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Identity.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Identity.java index 020ebdfe2de..4f5ebc6de7b 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Identity.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Identity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Index.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Index.java index c0e2cd110fd..90a12937369 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Index.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Index.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/IndexCollection.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/IndexCollection.java index 70db8fc57c5..e5085074be7 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/IndexCollection.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/IndexCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/IndexKey.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/IndexKey.java index 6c9e8d8ec8b..b9e743d7be0 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/IndexKey.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/IndexKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/IndexSummary.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/IndexSummary.java index f10e6ab3d48..43f8f1814e4 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/IndexSummary.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/IndexSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/KmsKey.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/KmsKey.java index 7b9d98cb25f..93e2c8c9795 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/KmsKey.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/KmsKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/MultiTenancyConfiguration.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/MultiTenancyConfiguration.java index 5a2d8144a4c..b4f1016d3fd 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/MultiTenancyConfiguration.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/MultiTenancyConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/PreparedStatement.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/PreparedStatement.java index d6346ee0436..284f304c82d 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/PreparedStatement.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/PreparedStatement.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/QueryDetails.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/QueryDetails.java index ad6c56bef6a..de3a22fb6c5 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/QueryDetails.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/QueryDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/QueryResultCollection.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/QueryResultCollection.java index 7da3a806650..8818be635fc 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/QueryResultCollection.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/QueryResultCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Replica.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Replica.java index a8676766f11..34598261553 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Replica.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Replica.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/RequestUsage.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/RequestUsage.java index d9ea5783c5d..36ef5020fa4 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/RequestUsage.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/RequestUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Row.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Row.java index d67741d8897..110fddde519 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Row.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Row.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Schema.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Schema.java index e126938c0be..7ffd20f6b71 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Schema.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Schema.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/StatementSummary.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/StatementSummary.java index 996c8a892fe..32169a28101 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/StatementSummary.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/StatementSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Table.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Table.java index f07ca16ee34..afdba9b6613 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Table.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/Table.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/TableCollection.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/TableCollection.java index dd0eb313b40..b487d08365e 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/TableCollection.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/TableCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/TableLimits.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/TableLimits.java index e17536fc714..73a85cb8aa9 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/TableLimits.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/TableLimits.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/TableSummary.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/TableSummary.java index 8aced1ab428..e5fc109195e 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/TableSummary.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/TableSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/TableUsageCollection.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/TableUsageCollection.java index 97f1b3b0755..608b1ef9c0f 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/TableUsageCollection.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/TableUsageCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/TableUsageSummary.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/TableUsageSummary.java index aba435b8730..eb034aa8af7 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/TableUsageSummary.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/TableUsageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateConfigurationDetails.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateConfigurationDetails.java index 529263a4dcf..9e1da2d0d48 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateConfigurationDetails.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateHostedConfigurationDetails.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateHostedConfigurationDetails.java index d7a19e13bf8..42af056917b 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateHostedConfigurationDetails.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateHostedConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateMultiTenancyConfigurationDetails.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateMultiTenancyConfigurationDetails.java index c1cf69a0623..2a0e5e9fd24 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateMultiTenancyConfigurationDetails.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateMultiTenancyConfigurationDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateRowDetails.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateRowDetails.java index 8e94de5d6f9..a1997f47a9d 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateRowDetails.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateRowDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateRowResult.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateRowResult.java index 758b502c485..9e6109472ad 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateRowResult.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateRowResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateTableDetails.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateTableDetails.java index bc687845661..b2d2791d4f9 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateTableDetails.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/UpdateTableDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequest.java index d399ccfbc18..d46be79fc6d 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestCollection.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestCollection.java index 91711d44411..0735afa45a4 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestCollection.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestError.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestError.java index db63abff239..ce6826c064d 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestError.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestErrorCollection.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestErrorCollection.java index ab3a840677c..520b72db778 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestErrorCollection.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestLogEntry.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestLogEntry.java index eefa8ba6f40..36d9c517fb8 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestLogEntry.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestLogEntryCollection.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestLogEntryCollection.java index a3c1211ba5e..79b6079c802 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestLogEntryCollection.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestResource.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestResource.java index 1ce8894df16..31885117ac7 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestResource.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestSummary.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestSummary.java index f57872dc9d8..545b17f638e 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestSummary.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.model; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ChangeTableCompartmentRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ChangeTableCompartmentRequest.java index 570bc1fefab..e1dfc4f86bb 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ChangeTableCompartmentRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ChangeTableCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/CreateIndexRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/CreateIndexRequest.java index 59c23e5134f..39a0a202750 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/CreateIndexRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/CreateIndexRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/CreateReplicaRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/CreateReplicaRequest.java index 884eac78af1..a80642bdb04 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/CreateReplicaRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/CreateReplicaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/CreateTableRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/CreateTableRequest.java index 4c74b24cc38..6a885377fe7 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/CreateTableRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/CreateTableRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/DeleteIndexRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/DeleteIndexRequest.java index b491d7b1e6f..bfacf6f299c 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/DeleteIndexRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/DeleteIndexRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/DeleteReplicaRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/DeleteReplicaRequest.java index 1ecf39d0f3e..74864030b97 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/DeleteReplicaRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/DeleteReplicaRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/DeleteRowRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/DeleteRowRequest.java index abe1c767050..a4ff5d383b0 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/DeleteRowRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/DeleteRowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/DeleteTableRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/DeleteTableRequest.java index e6065dec1eb..008e01fface 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/DeleteTableRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/DeleteTableRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/DeleteWorkRequestRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/DeleteWorkRequestRequest.java index 8bc4c622603..4614259b1b2 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/DeleteWorkRequestRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/DeleteWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/GetConfigurationRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/GetConfigurationRequest.java index d3ceba0f556..cad202183e6 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/GetConfigurationRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/GetConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/GetIndexRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/GetIndexRequest.java index 399460e7ad6..264a4ae492b 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/GetIndexRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/GetIndexRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/GetRowRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/GetRowRequest.java index ecb666ba62a..5d4d00049ac 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/GetRowRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/GetRowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/GetTableRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/GetTableRequest.java index a66e554f36e..f402ff9e6c9 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/GetTableRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/GetTableRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/GetWorkRequestRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/GetWorkRequestRequest.java index ded59f3f05b..43e3fe10c55 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/GetWorkRequestRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListIndexesRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListIndexesRequest.java index 9b015c7f0b2..6f87a1e0b35 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListIndexesRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListIndexesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListTableUsageRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListTableUsageRequest.java index 35139b78e98..e1a4a47b680 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListTableUsageRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListTableUsageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListTablesRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListTablesRequest.java index 46b91391007..4984167053e 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListTablesRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListTablesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListWorkRequestErrorsRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListWorkRequestErrorsRequest.java index e76a687ea4f..ba5970607dc 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListWorkRequestLogsRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListWorkRequestLogsRequest.java index eb5dbe08fdb..457421884f6 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListWorkRequestLogsRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListWorkRequestsRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListWorkRequestsRequest.java index 225229eeacc..6e32172f518 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListWorkRequestsRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/PrepareStatementRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/PrepareStatementRequest.java index 6a1deb6f9dd..f6458d7a73c 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/PrepareStatementRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/PrepareStatementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/QueryRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/QueryRequest.java index ae2fe2bab58..c1b499c1f16 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/QueryRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/QueryRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/SummarizeStatementRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/SummarizeStatementRequest.java index 181793c1445..548c35ee584 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/SummarizeStatementRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/SummarizeStatementRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/UnassignKmsKeyRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/UnassignKmsKeyRequest.java index 189398312f1..e5ecb7bf6ab 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/UnassignKmsKeyRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/UnassignKmsKeyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/UpdateConfigurationRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/UpdateConfigurationRequest.java index 684b6f6d67e..dac9ded1182 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/UpdateConfigurationRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/UpdateConfigurationRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/UpdateRowRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/UpdateRowRequest.java index b747a2caa7c..d49c7e2fb03 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/UpdateRowRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/UpdateRowRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/UpdateTableRequest.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/UpdateTableRequest.java index 2772e373595..fd78182dce6 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/UpdateTableRequest.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/requests/UpdateTableRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.requests; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ChangeTableCompartmentResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ChangeTableCompartmentResponse.java index b1d53d56d4e..1883f58bf0a 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ChangeTableCompartmentResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ChangeTableCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/CreateIndexResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/CreateIndexResponse.java index 4efd6d9bdf4..8abb805801b 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/CreateIndexResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/CreateIndexResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/CreateReplicaResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/CreateReplicaResponse.java index 7db7757ab43..c1bcc8fa168 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/CreateReplicaResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/CreateReplicaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/CreateTableResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/CreateTableResponse.java index 94a0500092e..2edabca1127 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/CreateTableResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/CreateTableResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/DeleteIndexResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/DeleteIndexResponse.java index 19b6517aa80..5687f403281 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/DeleteIndexResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/DeleteIndexResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/DeleteReplicaResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/DeleteReplicaResponse.java index 3d295136616..464ac6ad382 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/DeleteReplicaResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/DeleteReplicaResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/DeleteRowResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/DeleteRowResponse.java index 13cca3350a0..a74136da3f3 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/DeleteRowResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/DeleteRowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/DeleteTableResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/DeleteTableResponse.java index 9a7119a795c..2b53ab2e815 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/DeleteTableResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/DeleteTableResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/DeleteWorkRequestResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/DeleteWorkRequestResponse.java index f4ef67caba2..d57a1976ba9 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/DeleteWorkRequestResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/DeleteWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/GetConfigurationResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/GetConfigurationResponse.java index 915200245b6..ec029019de6 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/GetConfigurationResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/GetConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/GetIndexResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/GetIndexResponse.java index 10c7fb85f53..13023fb5f7c 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/GetIndexResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/GetIndexResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/GetRowResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/GetRowResponse.java index 3842f98ceb5..e57fd757d46 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/GetRowResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/GetRowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/GetTableResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/GetTableResponse.java index 88710a437d5..084b9de1447 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/GetTableResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/GetTableResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/GetWorkRequestResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/GetWorkRequestResponse.java index 72a8dbc534d..f5cad276b10 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/GetWorkRequestResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListIndexesResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListIndexesResponse.java index 6c400b6b7e1..8c5f7b2fb36 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListIndexesResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListIndexesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListTableUsageResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListTableUsageResponse.java index 50cc21822d3..1a2a4486e5f 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListTableUsageResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListTableUsageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListTablesResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListTablesResponse.java index 089fee52f06..afc71309299 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListTablesResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListTablesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListWorkRequestErrorsResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListWorkRequestErrorsResponse.java index aa6dd228ce9..507b862f449 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListWorkRequestLogsResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListWorkRequestLogsResponse.java index 524b1eba73d..ac302c7b0c2 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListWorkRequestLogsResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListWorkRequestsResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListWorkRequestsResponse.java index f4a53767e4b..ab7bc16e31b 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListWorkRequestsResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/PrepareStatementResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/PrepareStatementResponse.java index df3cf9f09b4..7deaedd5dba 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/PrepareStatementResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/PrepareStatementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/QueryResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/QueryResponse.java index 76318852acd..363093cbf82 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/QueryResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/QueryResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/SummarizeStatementResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/SummarizeStatementResponse.java index a0de661cfe2..2dd4f875af6 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/SummarizeStatementResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/SummarizeStatementResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/UnassignKmsKeyResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/UnassignKmsKeyResponse.java index 91a6f3ddeb8..64748d51aaf 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/UnassignKmsKeyResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/UnassignKmsKeyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/UpdateConfigurationResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/UpdateConfigurationResponse.java index 98a70e75277..77381704b30 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/UpdateConfigurationResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/UpdateConfigurationResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/UpdateRowResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/UpdateRowResponse.java index 13189b05b49..5f5dae59802 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/UpdateRowResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/UpdateRowResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/UpdateTableResponse.java b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/UpdateTableResponse.java index 8f0e109d283..f107554cabd 100644 --- a/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/UpdateTableResponse.java +++ b/bmc-nosql/src/main/java/com/oracle/bmc/nosql/responses/UpdateTableResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.nosql.responses; diff --git a/bmc-nosql/src/main/resources/com/oracle/bmc/nosql/client.properties b/bmc-nosql/src/main/resources/com/oracle/bmc/nosql/client.properties index 0445a76702c..55febe3c966 100644 --- a/bmc-nosql/src/main/resources/com/oracle/bmc/nosql/client.properties +++ b/bmc-nosql/src/main/resources/com/oracle/bmc/nosql/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-objectstorage/bmc-objectstorage-combined/pom.xml b/bmc-objectstorage/bmc-objectstorage-combined/pom.xml index dae2db09ed5..fffad7e02a4 100644 --- a/bmc-objectstorage/bmc-objectstorage-combined/pom.xml +++ b/bmc-objectstorage/bmc-objectstorage-combined/pom.xml @@ -5,7 +5,7 @@ com.oracle.oci.sdk oci-java-sdk-objectstorage-parent - 3.77.2 + 3.78.0 ../pom.xml @@ -18,12 +18,12 @@ com.oracle.oci.sdk oci-java-sdk-objectstorage-generated - 3.77.2 + 3.78.0 com.oracle.oci.sdk oci-java-sdk-objectstorage-extensions - 3.77.2 + 3.78.0 diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/pom.xml b/bmc-objectstorage/bmc-objectstorage-extensions/pom.xml index b8cb28d1e09..c96544121db 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/pom.xml +++ b/bmc-objectstorage/bmc-objectstorage-extensions/pom.xml @@ -5,7 +5,7 @@ com.oracle.oci.sdk oci-java-sdk-objectstorage-parent - 3.77.2 + 3.78.0 ../pom.xml @@ -25,17 +25,17 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 com.oracle.oci.sdk oci-java-sdk-common-httpclient - 3.77.2 + 3.78.0 com.oracle.oci.sdk oci-java-sdk-objectstorage-generated - 3.77.2 + 3.78.0 org.slf4j diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/internal/ObjectStorageUtils.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/internal/ObjectStorageUtils.java index e3e6290d58f..46625f0f8b5 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/internal/ObjectStorageUtils.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/internal/ObjectStorageUtils.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.internal; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/DownloadConfiguration.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/DownloadConfiguration.java index 20cdb8f4ce2..0414067908a 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/DownloadConfiguration.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/DownloadConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/DownloadManager.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/DownloadManager.java index dd2c38b2110..545619a291b 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/DownloadManager.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/DownloadManager.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/MultipartManifest.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/MultipartManifest.java index 6c47d0f1128..502f0bdc589 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/MultipartManifest.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/MultipartManifest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/MultipartObjectAssembler.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/MultipartObjectAssembler.java index 4f21620b79c..26194c81299 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/MultipartObjectAssembler.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/MultipartObjectAssembler.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/ProgressReporter.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/ProgressReporter.java index 5cd7a1efbaf..c235a3f117c 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/ProgressReporter.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/ProgressReporter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/ProgressTracker.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/ProgressTracker.java index d1415dcf5ba..0588d8498be 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/ProgressTracker.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/ProgressTracker.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/ProgressTrackerFactory.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/ProgressTrackerFactory.java index 2983b49a5a3..b515a1022ba 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/ProgressTrackerFactory.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/ProgressTrackerFactory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/ProgressTrackingInputStreamFactory.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/ProgressTrackingInputStreamFactory.java index 557268e1dff..71ba020ee10 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/ProgressTrackingInputStreamFactory.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/ProgressTrackingInputStreamFactory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/UploadConfiguration.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/UploadConfiguration.java index 18b57120167..04955913233 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/UploadConfiguration.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/UploadConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/UploadManager.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/UploadManager.java index 016768abf9f..cd2d8abb122 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/UploadManager.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/UploadManager.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/CRC32C.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/CRC32C.java index 4a39c0bcf7d..b8f4f366179 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/CRC32C.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/CRC32C.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/CRC32CDigest.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/CRC32CDigest.java index 5ecfa6094fb..e1694c11149 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/CRC32CDigest.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/CRC32CDigest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/ChecksumInfo.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/ChecksumInfo.java index 13d96e24dbd..62573ab0ebb 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/ChecksumInfo.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/ChecksumInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/ChecksumInputStream.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/ChecksumInputStream.java index 03091e4afc2..357eb78f6fa 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/ChecksumInputStream.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/ChecksumInputStream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/ChecksumUtils.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/ChecksumUtils.java index 73a35436318..d24cb41f625 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/ChecksumUtils.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/ChecksumUtils.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartManifestImpl.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartManifestImpl.java index 6d3c49d2ef0..3a2a3177e9b 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartManifestImpl.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartManifestImpl.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartTransferManager.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartTransferManager.java index df1de65de8b..e6fe4c589d3 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartTransferManager.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartTransferManager.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartUploadFailedPartDetails.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartUploadFailedPartDetails.java index 0bd736f13b5..deee277d9ac 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartUploadFailedPartDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartUploadFailedPartDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartUtils.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartUtils.java index 854e0a92cb8..bb330f98c16 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartUtils.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartUtils.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/StreamChunkCreator.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/StreamChunkCreator.java index 04ab35e48ae..22d5e739dad 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/StreamChunkCreator.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/StreamChunkCreator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/StreamHelper.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/StreamHelper.java index 14eef8aacf4..c92f8c6b691 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/StreamHelper.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/StreamHelper.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/download/DownloadExecution.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/download/DownloadExecution.java index c1b25d35d75..771269e5c64 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/download/DownloadExecution.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/download/DownloadExecution.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal.download; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/download/DownloadThread.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/download/DownloadThread.java index 01159ae6a1f..65285dd4a52 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/download/DownloadThread.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/download/DownloadThread.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal.download; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/download/MultithreadStream.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/download/MultithreadStream.java index df3ca055f9d..daa60cac0cf 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/download/MultithreadStream.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/download/MultithreadStream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal.download; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/download/RetryingStream.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/download/RetryingStream.java index 8d8d2b29db6..be40d0491ca 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/download/RetryingStream.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/download/RetryingStream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal.download; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/download/SimpleRetry.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/download/SimpleRetry.java index 8181798f73f..e01599a76bb 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/download/SimpleRetry.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/main/java/com/oracle/bmc/objectstorage/transfer/internal/download/SimpleRetry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal.download; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/DownloadConfigurationTest.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/DownloadConfigurationTest.java index e12df6f32b4..e9f58d6ff5f 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/DownloadConfigurationTest.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/DownloadConfigurationTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/DownloadManagerErrorHandlingTest.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/DownloadManagerErrorHandlingTest.java index 7b4b93516ef..895c4df38d8 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/DownloadManagerErrorHandlingTest.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/DownloadManagerErrorHandlingTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/DownloadManagerTest.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/DownloadManagerTest.java index e4d304dd63b..b82d4aaa81c 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/DownloadManagerTest.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/DownloadManagerTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/MultipartObjectAssemblerTest.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/MultipartObjectAssemblerTest.java index 1aff99957a1..38646a7708b 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/MultipartObjectAssemblerTest.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/MultipartObjectAssemblerTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/ProgressTrackerTest.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/ProgressTrackerTest.java index 2290a03e63c..bc492a66acc 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/ProgressTrackerTest.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/ProgressTrackerTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/ProgressTrackingInputStreamTest.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/ProgressTrackingInputStreamTest.java index 44eedaa3070..0b36d79712f 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/ProgressTrackingInputStreamTest.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/ProgressTrackingInputStreamTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/UploadManagerTest.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/UploadManagerTest.java index 3928c7648fa..14f51681712 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/UploadManagerTest.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/UploadManagerTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/FailingInputStream.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/FailingInputStream.java index b22bb79d140..eb27a441c78 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/FailingInputStream.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/FailingInputStream.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.helper; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/FailingInputStreamTest.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/FailingInputStreamTest.java index 367079c0bfb..125b629164f 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/FailingInputStreamTest.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/FailingInputStreamTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.helper; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/FailureInjector.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/FailureInjector.java index 7200917a5c8..1c0b586dd32 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/FailureInjector.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/FailureInjector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.helper; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/MockObject.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/MockObject.java index 4adb437cd1a..83edf6dcb3f 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/MockObject.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/MockObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.helper; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/MockObjectStorage.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/MockObjectStorage.java index f9cf8b17b28..3b0e508cf30 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/MockObjectStorage.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/MockObjectStorage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.helper; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/MockObjectTest.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/MockObjectTest.java index 1b616d49a39..4a2a67ae62c 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/MockObjectTest.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/MockObjectTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.helper; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/NoFailureInjector.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/NoFailureInjector.java index 5fc4ca2d4a2..ecb313d8e39 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/NoFailureInjector.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/NoFailureInjector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.helper; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/NoFailureInjectorTest.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/NoFailureInjectorTest.java index 81d82c645ea..12d0dd5eb98 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/NoFailureInjectorTest.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/NoFailureInjectorTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.helper; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/RandomFailureInjector.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/RandomFailureInjector.java index 3b680e0ec8f..2722b23f75b 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/RandomFailureInjector.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/RandomFailureInjector.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.helper; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/RandomFailureInjectorTest.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/RandomFailureInjectorTest.java index 0e158f9ce4a..68f2dfd4c96 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/RandomFailureInjectorTest.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/helper/RandomFailureInjectorTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.helper; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/CRC32CTest.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/CRC32CTest.java index d9f2fc93143..bb5c00bb154 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/CRC32CTest.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/CRC32CTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/ChecksumInputStreamTest.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/ChecksumInputStreamTest.java index 2a3e65a0eb1..38ba5723643 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/ChecksumInputStreamTest.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/ChecksumInputStreamTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/ChecksumUtilsTest.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/ChecksumUtilsTest.java index 4f77f3df469..5b6d7e7c15b 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/ChecksumUtilsTest.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/ChecksumUtilsTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartTransferManagerTest.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartTransferManagerTest.java index 267ea157325..8e84bd73c08 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartTransferManagerTest.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartTransferManagerTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartUtilsTest.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartUtilsTest.java index 8cbeebb6ed2..84b86ab68e6 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartUtilsTest.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/MultipartUtilsTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/StreamChunkCreatorTest.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/StreamChunkCreatorTest.java index 16e5da9847a..c28ce7d4c87 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/StreamChunkCreatorTest.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/StreamChunkCreatorTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/StreamHelperTest.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/StreamHelperTest.java index 9033a547a18..7170f8371ff 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/StreamHelperTest.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/StreamHelperTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/download/RetryingStreamTest.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/download/RetryingStreamTest.java index 34d87f6e00c..ac9a99c3050 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/download/RetryingStreamTest.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/download/RetryingStreamTest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal.download; diff --git a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/download/chaos/IOExceptionThrowingObjectStorageClient.java b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/download/chaos/IOExceptionThrowingObjectStorageClient.java index 90fdfc4bd2d..c764b36a105 100644 --- a/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/download/chaos/IOExceptionThrowingObjectStorageClient.java +++ b/bmc-objectstorage/bmc-objectstorage-extensions/src/test/java/com/oracle/bmc/objectstorage/transfer/internal/download/chaos/IOExceptionThrowingObjectStorageClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.transfer.internal.download.chaos; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/pom.xml b/bmc-objectstorage/bmc-objectstorage-generated/pom.xml index 42ed7ae2f54..bf483cb8f1b 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/pom.xml +++ b/bmc-objectstorage/bmc-objectstorage-generated/pom.xml @@ -5,7 +5,7 @@ com.oracle.oci.sdk oci-java-sdk-objectstorage-parent - 3.77.2 + 3.78.0 ../pom.xml @@ -19,7 +19,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStorage.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStorage.java index 08c398adde4..4861325ab6d 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStorage.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStorage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStorageAsync.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStorageAsync.java index 5c893d27cb5..e6237f694ce 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStorageAsync.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStorageAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStorageAsyncClient.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStorageAsyncClient.java index ebf6e4e28a9..889c9e937a6 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStorageAsyncClient.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStorageAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStorageClient.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStorageClient.java index 95f6cc3f26c..feb4ae9be45 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStorageClient.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStorageClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStoragePaginators.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStoragePaginators.java index d362f48ef6c..51820faec32 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStoragePaginators.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStoragePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStorageWaiters.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStorageWaiters.java index 9718aa9a881..2d41b11c0c1 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStorageWaiters.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/ObjectStorageWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/internal/http/ObjectMetadataInterceptor.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/internal/http/ObjectMetadataInterceptor.java index c84ce819937..189fe0e8281 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/internal/http/ObjectMetadataInterceptor.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/internal/http/ObjectMetadataInterceptor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.internal.http; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/AccessTargetDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/AccessTargetDetails.java index 686bd35f648..e6ad38fba69 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/AccessTargetDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/AccessTargetDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ArchivalState.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ArchivalState.java index 5c1c0c3c68b..280f81bd585 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ArchivalState.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ArchivalState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/BatchDeleteObjectIdentifier.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/BatchDeleteObjectIdentifier.java index 28896885d54..3baadbee8bb 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/BatchDeleteObjectIdentifier.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/BatchDeleteObjectIdentifier.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/BatchDeleteObjectsDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/BatchDeleteObjectsDetails.java index 02520726f4d..d3f352d009e 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/BatchDeleteObjectsDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/BatchDeleteObjectsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/BatchDeleteObjectsResult.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/BatchDeleteObjectsResult.java index ef0449de32b..2ca234c89af 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/BatchDeleteObjectsResult.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/BatchDeleteObjectsResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/Bucket.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/Bucket.java index 63e53cff32f..e45b8c8d6b9 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/Bucket.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/Bucket.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/BucketSummary.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/BucketSummary.java index a9d72ec7df2..ea7c05ecb02 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/BucketSummary.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/BucketSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ChecksumAlgorithm.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ChecksumAlgorithm.java index 34ba18ce37d..433edc97500 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ChecksumAlgorithm.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ChecksumAlgorithm.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CommitMultipartUploadDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CommitMultipartUploadDetails.java index 5428673b8ea..c923a6774da 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CommitMultipartUploadDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CommitMultipartUploadDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CommitMultipartUploadPartDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CommitMultipartUploadPartDetails.java index 85af64430bb..c91d5d6ad9d 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CommitMultipartUploadPartDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CommitMultipartUploadPartDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CopyObjectDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CopyObjectDetails.java index 18f484db53d..c0124b55e25 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CopyObjectDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CopyObjectDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreateBucketDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreateBucketDetails.java index ca73b78c466..e82ded24dde 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreateBucketDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreateBucketDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreateMultipartUploadDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreateMultipartUploadDetails.java index da98bb9d06e..442e3bc74d8 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreateMultipartUploadDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreateMultipartUploadDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreatePreauthenticatedRequestDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreatePreauthenticatedRequestDetails.java index aff166867df..0e985a32734 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreatePreauthenticatedRequestDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreatePreauthenticatedRequestDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreatePrivateEndpointDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreatePrivateEndpointDetails.java index 46318e337fc..8d651596208 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreatePrivateEndpointDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreatePrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreateReplicationPolicyDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreateReplicationPolicyDetails.java index e2a7adbc616..666f0fdc525 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreateReplicationPolicyDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreateReplicationPolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreateRetentionRuleDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreateRetentionRuleDetails.java index 7dca3c6f6ef..e4c3319c97a 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreateRetentionRuleDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/CreateRetentionRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/DeletedObjectResult.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/DeletedObjectResult.java index 89a22dec7e8..2a93c2a372e 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/DeletedObjectResult.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/DeletedObjectResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/Duration.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/Duration.java index 30e2d8efb6b..62d2a0d1a26 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/Duration.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/Duration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/FailedObjectResult.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/FailedObjectResult.java index 3ebe1180ceb..5188c15892d 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/FailedObjectResult.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/FailedObjectResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/Fqdns.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/Fqdns.java index 823f30b2bd8..81172bf0f19 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/Fqdns.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/Fqdns.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ListObjects.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ListObjects.java index bd80616e074..c96f84931c7 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ListObjects.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ListObjects.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/MultipartUpload.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/MultipartUpload.java index 496f54cce2f..5a95c06f1f5 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/MultipartUpload.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/MultipartUpload.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/MultipartUploadPartSummary.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/MultipartUploadPartSummary.java index eb2df40bd0f..5e22317ce6f 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/MultipartUploadPartSummary.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/MultipartUploadPartSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/NamespaceMetadata.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/NamespaceMetadata.java index 82503c0439e..71a897a4afc 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/NamespaceMetadata.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/NamespaceMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectLifecyclePolicy.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectLifecyclePolicy.java index 8c3dd18fc53..83a7ba6594e 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectLifecyclePolicy.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectLifecyclePolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectLifecycleRule.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectLifecycleRule.java index 77938f073d5..ddad066f4b4 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectLifecycleRule.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectLifecycleRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectNameFilter.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectNameFilter.java index 39cc70a143c..b161f4aa406 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectNameFilter.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectNameFilter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectSummary.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectSummary.java index 0c808f0da62..884c655baae 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectSummary.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectVersionCollection.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectVersionCollection.java index 688e8795e0e..8df0ed1bd0d 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectVersionCollection.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectVersionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectVersionSummary.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectVersionSummary.java index 3752fc91fee..1f18c3727b8 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectVersionSummary.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ObjectVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PatternDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PatternDetails.java index 0bd4d715933..e019b96e118 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PatternDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PatternDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PreauthenticatedRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PreauthenticatedRequest.java index 894f521647b..1a065694cca 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PreauthenticatedRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PreauthenticatedRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PreauthenticatedRequestSummary.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PreauthenticatedRequestSummary.java index f7564a93b96..f10753c1b39 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PreauthenticatedRequestSummary.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PreauthenticatedRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PrefixFqdns.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PrefixFqdns.java index 936d2c80cf4..9a6bebcb7fc 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PrefixFqdns.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PrefixFqdns.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PrivateEndpoint.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PrivateEndpoint.java index 392a8b26918..ae73b97b920 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PrivateEndpoint.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PrivateEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PrivateEndpointSummary.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PrivateEndpointSummary.java index eb99dc6cf4b..0e80f9696be 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PrivateEndpointSummary.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PrivateEndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PutObjectLifecyclePolicyDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PutObjectLifecyclePolicyDetails.java index dd608b4fd0f..5735476242b 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PutObjectLifecyclePolicyDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/PutObjectLifecyclePolicyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ReencryptObjectDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ReencryptObjectDetails.java index d1e651f5d48..1fff577f277 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ReencryptObjectDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ReencryptObjectDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RenameObjectDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RenameObjectDetails.java index 8ee0984dd08..6958a16eb9a 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RenameObjectDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RenameObjectDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ReplicationPolicy.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ReplicationPolicy.java index 0b5c011ef8f..edb07a07d18 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ReplicationPolicy.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ReplicationPolicy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ReplicationPolicySummary.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ReplicationPolicySummary.java index 4e18dd47299..4f04df47a56 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ReplicationPolicySummary.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ReplicationPolicySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ReplicationSource.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ReplicationSource.java index 345cc22cdf7..6290b931adf 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ReplicationSource.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/ReplicationSource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RestoreObjectsDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RestoreObjectsDetails.java index 2c234c76c58..c066758fbe3 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RestoreObjectsDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RestoreObjectsDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RetentionRule.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RetentionRule.java index 08fc71e6420..348966eed4e 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RetentionRule.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RetentionRule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RetentionRuleCollection.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RetentionRuleCollection.java index 1853b3004dc..1497f20b4b3 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RetentionRuleCollection.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RetentionRuleCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RetentionRuleDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RetentionRuleDetails.java index 28d9f292820..64daf0d3a9d 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RetentionRuleDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RetentionRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RetentionRuleSummary.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RetentionRuleSummary.java index 01c6e5f810a..679c85e08e5 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RetentionRuleSummary.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/RetentionRuleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/SSECustomerKeyDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/SSECustomerKeyDetails.java index 755f9de4f04..308a0bab670 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/SSECustomerKeyDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/SSECustomerKeyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/StorageTier.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/StorageTier.java index 7ba3fb55a20..e71c1672bab 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/StorageTier.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/StorageTier.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/UpdateBucketDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/UpdateBucketDetails.java index b24baaf8397..01925099dc5 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/UpdateBucketDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/UpdateBucketDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/UpdateNamespaceMetadataDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/UpdateNamespaceMetadataDetails.java index c3b515f5ca8..0d6b9be1aad 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/UpdateNamespaceMetadataDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/UpdateNamespaceMetadataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/UpdateObjectStorageTierDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/UpdateObjectStorageTierDetails.java index 0983ef709e2..230780f6fff 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/UpdateObjectStorageTierDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/UpdateObjectStorageTierDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/UpdatePrivateEndpointDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/UpdatePrivateEndpointDetails.java index 1729136ca4a..15ad4b2c37e 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/UpdatePrivateEndpointDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/UpdatePrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/UpdateRetentionRuleDetails.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/UpdateRetentionRuleDetails.java index d0a0b2661f9..8b4578f8dce 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/UpdateRetentionRuleDetails.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/UpdateRetentionRuleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequest.java index 872da660c41..a57ce818766 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequestError.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequestError.java index 228983957c0..dae37d3dd59 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequestError.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequestLogEntry.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequestLogEntry.java index c162eec8c23..023a1292b1f 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequestLogEntry.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequestResource.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequestResource.java index d1719b7aa51..1f7f7a723d6 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequestResource.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequestResourceMetadataKey.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequestResourceMetadataKey.java index 68afc354c56..08b9133c508 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequestResourceMetadataKey.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequestResourceMetadataKey.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequestSummary.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequestSummary.java index c838aa89ebf..2c8f36ebba6 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequestSummary.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.model; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/AbortMultipartUploadRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/AbortMultipartUploadRequest.java index 3f5ab9ab914..963ad372487 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/AbortMultipartUploadRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/AbortMultipartUploadRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/BatchDeleteObjectsRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/BatchDeleteObjectsRequest.java index 62604d71393..9bd2738b82d 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/BatchDeleteObjectsRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/BatchDeleteObjectsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CancelWorkRequestRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CancelWorkRequestRequest.java index bb77fca6408..6483e014afe 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CancelWorkRequestRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CancelWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CommitMultipartUploadRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CommitMultipartUploadRequest.java index 486bea1d1d7..b019fa29ece 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CommitMultipartUploadRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CommitMultipartUploadRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CopyObjectRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CopyObjectRequest.java index 1906aba2004..8b747239e57 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CopyObjectRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CopyObjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreateBucketRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreateBucketRequest.java index 8fca3ba93ec..bb2fd2dbde2 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreateBucketRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreateBucketRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreateMultipartUploadRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreateMultipartUploadRequest.java index 0bbfb6f5846..12a00739252 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreateMultipartUploadRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreateMultipartUploadRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreatePreauthenticatedRequestRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreatePreauthenticatedRequestRequest.java index dd399c7b820..8d82a3cf307 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreatePreauthenticatedRequestRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreatePreauthenticatedRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreatePrivateEndpointRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreatePrivateEndpointRequest.java index 16539b3813f..46cdecee90c 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreatePrivateEndpointRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreatePrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreateReplicationPolicyRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreateReplicationPolicyRequest.java index 5ebb49b8a50..f419e9300a7 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreateReplicationPolicyRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreateReplicationPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreateRetentionRuleRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreateRetentionRuleRequest.java index 50feb535314..9064c47d50d 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreateRetentionRuleRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/CreateRetentionRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeleteBucketRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeleteBucketRequest.java index 01e3eea1af8..612067de265 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeleteBucketRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeleteBucketRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeleteObjectLifecyclePolicyRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeleteObjectLifecyclePolicyRequest.java index 91e52b93162..3c515301711 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeleteObjectLifecyclePolicyRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeleteObjectLifecyclePolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeleteObjectRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeleteObjectRequest.java index 09eddb726aa..c32f0fc4c3d 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeleteObjectRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeleteObjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeletePreauthenticatedRequestRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeletePreauthenticatedRequestRequest.java index 2eff9c307ba..6a0f6068bd3 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeletePreauthenticatedRequestRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeletePreauthenticatedRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeletePrivateEndpointRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeletePrivateEndpointRequest.java index ba8881af92e..e3e54bc2214 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeletePrivateEndpointRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeletePrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeleteReplicationPolicyRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeleteReplicationPolicyRequest.java index 3fdfb425343..82041f22bdb 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeleteReplicationPolicyRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeleteReplicationPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeleteRetentionRuleRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeleteRetentionRuleRequest.java index 2332c4bf887..fd95c90fafb 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeleteRetentionRuleRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/DeleteRetentionRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetBucketRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetBucketRequest.java index 750dd39a32a..7b7c673a37e 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetBucketRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetBucketRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetNamespaceMetadataRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetNamespaceMetadataRequest.java index 771a884043e..47223b06eba 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetNamespaceMetadataRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetNamespaceMetadataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetNamespaceRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetNamespaceRequest.java index 1c61ab68c6b..cb2b08fcaff 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetNamespaceRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetNamespaceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetObjectLifecyclePolicyRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetObjectLifecyclePolicyRequest.java index 090a176318b..ee11fc12588 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetObjectLifecyclePolicyRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetObjectLifecyclePolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetObjectRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetObjectRequest.java index fe250f2da4c..4f870ba98cb 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetObjectRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetObjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetPreauthenticatedRequestRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetPreauthenticatedRequestRequest.java index 704ebb9d03a..c06fe17449f 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetPreauthenticatedRequestRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetPreauthenticatedRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetPrivateEndpointRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetPrivateEndpointRequest.java index 7c5087b6846..6eeb69c7797 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetPrivateEndpointRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetReplicationPolicyRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetReplicationPolicyRequest.java index 236feeec7cd..9451cd49d96 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetReplicationPolicyRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetReplicationPolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetRetentionRuleRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetRetentionRuleRequest.java index 39cb9ec4c35..0ec7d00ad88 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetRetentionRuleRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetRetentionRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetWorkRequestRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetWorkRequestRequest.java index abf8dbc77e6..beb0d6a0a85 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetWorkRequestRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/HeadBucketRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/HeadBucketRequest.java index 5230a7aec8c..2f2d109c383 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/HeadBucketRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/HeadBucketRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/HeadObjectRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/HeadObjectRequest.java index 0bfad807722..f0fdd29110a 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/HeadObjectRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/HeadObjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListBucketsRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListBucketsRequest.java index 2beb94bcbf0..289ba41296d 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListBucketsRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListBucketsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListMultipartUploadPartsRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListMultipartUploadPartsRequest.java index 9d6c44fb501..042fff3a26d 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListMultipartUploadPartsRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListMultipartUploadPartsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListMultipartUploadsRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListMultipartUploadsRequest.java index f800bba4128..f839824af9c 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListMultipartUploadsRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListMultipartUploadsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListObjectVersionsRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListObjectVersionsRequest.java index 419901a06de..fe2d13ba31f 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListObjectVersionsRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListObjectVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListObjectsRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListObjectsRequest.java index 8664a1e5eaf..d97ce832eb8 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListObjectsRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListObjectsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListPreauthenticatedRequestsRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListPreauthenticatedRequestsRequest.java index 8c3d53637cd..b70400f85c9 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListPreauthenticatedRequestsRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListPreauthenticatedRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListPrivateEndpointsRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListPrivateEndpointsRequest.java index ba8ca2babbb..fe4c5d00d13 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListPrivateEndpointsRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListPrivateEndpointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListReplicationPoliciesRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListReplicationPoliciesRequest.java index 1e25400cc80..045001b4717 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListReplicationPoliciesRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListReplicationPoliciesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListReplicationSourcesRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListReplicationSourcesRequest.java index d65f1e5252f..4a0c0342220 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListReplicationSourcesRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListReplicationSourcesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListRetentionRulesRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListRetentionRulesRequest.java index 516c3886048..2c9221cfd8b 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListRetentionRulesRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListRetentionRulesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListWorkRequestErrorsRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListWorkRequestErrorsRequest.java index a71c598aaac..e3762c22fae 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListWorkRequestLogsRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListWorkRequestLogsRequest.java index 8136f897842..2ce4845b373 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListWorkRequestLogsRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListWorkRequestsRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListWorkRequestsRequest.java index aa0d70e325e..d9a893462fd 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListWorkRequestsRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/MakeBucketWritableRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/MakeBucketWritableRequest.java index f0e6c702215..789253184b6 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/MakeBucketWritableRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/MakeBucketWritableRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/PutObjectLifecyclePolicyRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/PutObjectLifecyclePolicyRequest.java index e651a63bde8..11f4ab3440f 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/PutObjectLifecyclePolicyRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/PutObjectLifecyclePolicyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/PutObjectRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/PutObjectRequest.java index f1b0cff5197..bda3bc51a69 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/PutObjectRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/PutObjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ReencryptBucketRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ReencryptBucketRequest.java index d7c0f597a68..dd4266f6f21 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ReencryptBucketRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ReencryptBucketRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ReencryptObjectRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ReencryptObjectRequest.java index 2c3543db31a..388d4711baf 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ReencryptObjectRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/ReencryptObjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/RenameObjectRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/RenameObjectRequest.java index e52b5066c2c..199a8acbef9 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/RenameObjectRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/RenameObjectRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/RestoreObjectsRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/RestoreObjectsRequest.java index 892c015a886..88d6e0bfe91 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/RestoreObjectsRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/RestoreObjectsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UpdateBucketRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UpdateBucketRequest.java index d5fe9b75e74..1aeaf0680f2 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UpdateBucketRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UpdateBucketRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UpdateNamespaceMetadataRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UpdateNamespaceMetadataRequest.java index 7c6c030b8f2..6b5dcf245a5 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UpdateNamespaceMetadataRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UpdateNamespaceMetadataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UpdateObjectStorageTierRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UpdateObjectStorageTierRequest.java index 40140730720..8a293c628e3 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UpdateObjectStorageTierRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UpdateObjectStorageTierRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UpdatePrivateEndpointRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UpdatePrivateEndpointRequest.java index 1b29d198cbc..77410a3ee35 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UpdatePrivateEndpointRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UpdatePrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UpdateRetentionRuleRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UpdateRetentionRuleRequest.java index 3632b253fec..3633f142753 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UpdateRetentionRuleRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UpdateRetentionRuleRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UploadPartRequest.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UploadPartRequest.java index a4cdf341885..cc0b8cc034b 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UploadPartRequest.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/requests/UploadPartRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.requests; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/AbortMultipartUploadResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/AbortMultipartUploadResponse.java index f3429d76602..f1212aeeb02 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/AbortMultipartUploadResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/AbortMultipartUploadResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/BatchDeleteObjectsResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/BatchDeleteObjectsResponse.java index 3e694eacf29..17da4811820 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/BatchDeleteObjectsResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/BatchDeleteObjectsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CancelWorkRequestResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CancelWorkRequestResponse.java index 7a182f3a983..32ca15dcdc4 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CancelWorkRequestResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CancelWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CommitMultipartUploadResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CommitMultipartUploadResponse.java index 008b492fa7d..a61369d123c 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CommitMultipartUploadResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CommitMultipartUploadResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CopyObjectResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CopyObjectResponse.java index 64757359977..bc1791c23ad 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CopyObjectResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CopyObjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreateBucketResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreateBucketResponse.java index 584b30afa42..e48464ba12f 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreateBucketResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreateBucketResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreateMultipartUploadResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreateMultipartUploadResponse.java index 45562c8c2f0..e7c082a7d02 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreateMultipartUploadResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreateMultipartUploadResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreatePreauthenticatedRequestResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreatePreauthenticatedRequestResponse.java index cef8bad8f34..b96818c8647 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreatePreauthenticatedRequestResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreatePreauthenticatedRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreatePrivateEndpointResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreatePrivateEndpointResponse.java index 7776e13b6f2..108ef5be176 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreatePrivateEndpointResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreatePrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreateReplicationPolicyResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreateReplicationPolicyResponse.java index 85112f3915e..fc10a51528b 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreateReplicationPolicyResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreateReplicationPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreateRetentionRuleResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreateRetentionRuleResponse.java index 7cfcecaaf1e..38ccc5ef488 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreateRetentionRuleResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/CreateRetentionRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeleteBucketResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeleteBucketResponse.java index 953e1b5599f..519ce913618 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeleteBucketResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeleteBucketResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeleteObjectLifecyclePolicyResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeleteObjectLifecyclePolicyResponse.java index f2758c60b60..646aab49bfc 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeleteObjectLifecyclePolicyResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeleteObjectLifecyclePolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeleteObjectResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeleteObjectResponse.java index 272dd064c98..8351f739c78 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeleteObjectResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeleteObjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeletePreauthenticatedRequestResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeletePreauthenticatedRequestResponse.java index 1f652468dc8..7d016b83496 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeletePreauthenticatedRequestResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeletePreauthenticatedRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeletePrivateEndpointResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeletePrivateEndpointResponse.java index 677d43539bd..cc379bbdced 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeletePrivateEndpointResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeletePrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeleteReplicationPolicyResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeleteReplicationPolicyResponse.java index 44b87c71c8d..eb95bb43e64 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeleteReplicationPolicyResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeleteReplicationPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeleteRetentionRuleResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeleteRetentionRuleResponse.java index 897cf967691..c4160b5aef0 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeleteRetentionRuleResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/DeleteRetentionRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetBucketResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetBucketResponse.java index 203e0571ebf..22891b72330 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetBucketResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetBucketResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetNamespaceMetadataResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetNamespaceMetadataResponse.java index fbdb6a35648..da1f5bc84d9 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetNamespaceMetadataResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetNamespaceMetadataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetNamespaceResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetNamespaceResponse.java index 2bb91ef3a48..3814eeb7c80 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetNamespaceResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetNamespaceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetObjectLifecyclePolicyResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetObjectLifecyclePolicyResponse.java index 7960859b548..a3ad53350cc 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetObjectLifecyclePolicyResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetObjectLifecyclePolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetObjectResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetObjectResponse.java index 07e3b72eff7..2fe965c8b0e 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetObjectResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetObjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetPreauthenticatedRequestResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetPreauthenticatedRequestResponse.java index 73a781c7e98..5b738e2e208 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetPreauthenticatedRequestResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetPreauthenticatedRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetPrivateEndpointResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetPrivateEndpointResponse.java index 9b53c9b61ec..ed3aaf987d3 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetPrivateEndpointResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetReplicationPolicyResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetReplicationPolicyResponse.java index c7da2a3e463..a9c6dc60caf 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetReplicationPolicyResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetReplicationPolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetRetentionRuleResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetRetentionRuleResponse.java index 70d4d7ad726..2e63812408a 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetRetentionRuleResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetRetentionRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetWorkRequestResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetWorkRequestResponse.java index e71fa884ef8..e465465c2f1 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetWorkRequestResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/HeadBucketResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/HeadBucketResponse.java index 0b72b864a66..b94275bc589 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/HeadBucketResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/HeadBucketResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/HeadObjectResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/HeadObjectResponse.java index adec7763d02..cd4bf710b84 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/HeadObjectResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/HeadObjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListBucketsResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListBucketsResponse.java index bc5d018a8db..60a4124433e 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListBucketsResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListBucketsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListMultipartUploadPartsResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListMultipartUploadPartsResponse.java index 6c4024f578b..4f3ec17a6f5 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListMultipartUploadPartsResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListMultipartUploadPartsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListMultipartUploadsResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListMultipartUploadsResponse.java index a0aaad1f44f..d349ad9575a 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListMultipartUploadsResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListMultipartUploadsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListObjectVersionsResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListObjectVersionsResponse.java index a8c29a07fcd..a2b3c1fec77 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListObjectVersionsResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListObjectVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListObjectsResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListObjectsResponse.java index 1a6c6525127..a1da04a8f56 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListObjectsResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListObjectsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListPreauthenticatedRequestsResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListPreauthenticatedRequestsResponse.java index 2ed78f163f9..6539941f688 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListPreauthenticatedRequestsResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListPreauthenticatedRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListPrivateEndpointsResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListPrivateEndpointsResponse.java index 56cb61fab73..d8c0974dc53 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListPrivateEndpointsResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListPrivateEndpointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListReplicationPoliciesResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListReplicationPoliciesResponse.java index e7512b37720..b3eb969cf61 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListReplicationPoliciesResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListReplicationPoliciesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListReplicationSourcesResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListReplicationSourcesResponse.java index c4053361784..66dc8e3113d 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListReplicationSourcesResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListReplicationSourcesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListRetentionRulesResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListRetentionRulesResponse.java index 4c64523785e..43c758dd66b 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListRetentionRulesResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListRetentionRulesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListWorkRequestErrorsResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListWorkRequestErrorsResponse.java index 92630bf0a0c..611650ebcbe 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListWorkRequestLogsResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListWorkRequestLogsResponse.java index 418598bb9ef..0eca9e5a670 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListWorkRequestLogsResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListWorkRequestsResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListWorkRequestsResponse.java index 23246e67f6e..b7e6eb89ee8 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListWorkRequestsResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/MakeBucketWritableResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/MakeBucketWritableResponse.java index 053ecaa94b7..ae751d9cf1c 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/MakeBucketWritableResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/MakeBucketWritableResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/PutObjectLifecyclePolicyResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/PutObjectLifecyclePolicyResponse.java index ea82aaf2224..2555d8feab1 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/PutObjectLifecyclePolicyResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/PutObjectLifecyclePolicyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/PutObjectResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/PutObjectResponse.java index 94a0065f1ca..1639b10b7f2 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/PutObjectResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/PutObjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ReencryptBucketResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ReencryptBucketResponse.java index f6f116f001c..a968a602234 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ReencryptBucketResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ReencryptBucketResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ReencryptObjectResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ReencryptObjectResponse.java index 24b03fe3541..382e1b09b3a 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ReencryptObjectResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/ReencryptObjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/RenameObjectResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/RenameObjectResponse.java index 3690f286979..a673e218a4b 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/RenameObjectResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/RenameObjectResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/RestoreObjectsResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/RestoreObjectsResponse.java index 93dee69ff32..37d8003a4d4 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/RestoreObjectsResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/RestoreObjectsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UpdateBucketResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UpdateBucketResponse.java index bcfbc34dc78..abd502e68cf 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UpdateBucketResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UpdateBucketResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UpdateNamespaceMetadataResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UpdateNamespaceMetadataResponse.java index bcd837e31d5..0fb3fed4507 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UpdateNamespaceMetadataResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UpdateNamespaceMetadataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UpdateObjectStorageTierResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UpdateObjectStorageTierResponse.java index 9bd746f5c86..707738f41d5 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UpdateObjectStorageTierResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UpdateObjectStorageTierResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UpdatePrivateEndpointResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UpdatePrivateEndpointResponse.java index b1af6ce168a..5701bfdff74 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UpdatePrivateEndpointResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UpdatePrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UpdateRetentionRuleResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UpdateRetentionRuleResponse.java index c24eb4ecb8f..1f0683aabf5 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UpdateRetentionRuleResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UpdateRetentionRuleResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UploadPartResponse.java b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UploadPartResponse.java index 71a4cc42943..5ab9d3f9ce3 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UploadPartResponse.java +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/java/com/oracle/bmc/objectstorage/responses/UploadPartResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.objectstorage.responses; diff --git a/bmc-objectstorage/bmc-objectstorage-generated/src/main/resources/com/oracle/bmc/objectstorage/client.properties b/bmc-objectstorage/bmc-objectstorage-generated/src/main/resources/com/oracle/bmc/objectstorage/client.properties index 03c9ae88318..57fa7f4b072 100644 --- a/bmc-objectstorage/bmc-objectstorage-generated/src/main/resources/com/oracle/bmc/objectstorage/client.properties +++ b/bmc-objectstorage/bmc-objectstorage-generated/src/main/resources/com/oracle/bmc/objectstorage/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-objectstorage/pom.xml b/bmc-objectstorage/pom.xml index ba80411ce47..bdd0bb1e045 100644 --- a/bmc-objectstorage/pom.xml +++ b/bmc-objectstorage/pom.xml @@ -5,7 +5,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml diff --git a/bmc-oce/pom.xml b/bmc-oce/pom.xml index ac1bc1d453e..8f3e8f1d846 100644 --- a/bmc-oce/pom.xml +++ b/bmc-oce/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-oce @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstance.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstance.java index e8b52d85712..0cfe70a76b2 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstance.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstanceAsync.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstanceAsync.java index c8abb35d45d..4fbab22026b 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstanceAsync.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstanceAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstanceAsyncClient.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstanceAsyncClient.java index 40a42005280..7045d640bbf 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstanceAsyncClient.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstanceAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstanceClient.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstanceClient.java index 6a5768fda70..9e249eb5d86 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstanceClient.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstanceClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstancePaginators.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstancePaginators.java index b5f313bb51c..373401695c2 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstancePaginators.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstancePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstanceWaiters.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstanceWaiters.java index 5d438ba2e1f..0b4fd20901d 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstanceWaiters.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/OceInstanceWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/ChangeOceInstanceCompartmentDetails.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/ChangeOceInstanceCompartmentDetails.java index a25e77b22b5..ba3eea4088a 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/ChangeOceInstanceCompartmentDetails.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/ChangeOceInstanceCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.model; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/CreateOceInstanceDetails.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/CreateOceInstanceDetails.java index e02cb828c6e..67694ea6b2f 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/CreateOceInstanceDetails.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/CreateOceInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.model; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/IdentityStripeDetails.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/IdentityStripeDetails.java index aea6bef44aa..7bb30ccaa95 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/IdentityStripeDetails.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/IdentityStripeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.model; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/LicenseType.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/LicenseType.java index 2ec94c02677..ecbcdfd850c 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/LicenseType.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/LicenseType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.model; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/LifecycleDetails.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/LifecycleDetails.java index f701a588baa..f27e104fbf5 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/LifecycleDetails.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/LifecycleDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.model; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/LifecycleState.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/LifecycleState.java index 59de607bfc3..a2028f11969 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/LifecycleState.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/LifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.model; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/OceInstance.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/OceInstance.java index 3d41072e6a0..67e8ce7f58a 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/OceInstance.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/OceInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.model; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/OceInstanceSummary.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/OceInstanceSummary.java index ea3705b2c9d..8397cc6d52f 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/OceInstanceSummary.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/OceInstanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.model; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/UpdateOceInstanceDetails.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/UpdateOceInstanceDetails.java index 1d334b0631e..c3915b5f91c 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/UpdateOceInstanceDetails.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/UpdateOceInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.model; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkRequest.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkRequest.java index 9a75898e44e..951d454db50 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkRequest.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.model; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkRequestError.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkRequestError.java index 082810a8352..33c06cc2001 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkRequestError.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.model; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkRequestLogEntry.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkRequestLogEntry.java index 96fe885a632..45395840cb9 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkRequestLogEntry.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.model; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkRequestResource.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkRequestResource.java index 5865c2daa15..8b2255d0688 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkRequestResource.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.model; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkflowMonitor.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkflowMonitor.java index c6b9ba0642a..18d5d33d492 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkflowMonitor.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkflowMonitor.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.model; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkflowStep.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkflowStep.java index 3e79088d818..53da98bfb2d 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkflowStep.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/model/WorkflowStep.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.model; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/ChangeOceInstanceCompartmentRequest.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/ChangeOceInstanceCompartmentRequest.java index 83c97f95ad0..31b43274528 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/ChangeOceInstanceCompartmentRequest.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/ChangeOceInstanceCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.requests; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/CreateOceInstanceRequest.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/CreateOceInstanceRequest.java index 22113c68296..7a64a65f8e2 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/CreateOceInstanceRequest.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/CreateOceInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.requests; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/DeleteOceInstanceRequest.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/DeleteOceInstanceRequest.java index 9d894c2b91b..ae537f512d9 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/DeleteOceInstanceRequest.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/DeleteOceInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.requests; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/GetOceInstanceRequest.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/GetOceInstanceRequest.java index a833f4eb5ba..999151dcbde 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/GetOceInstanceRequest.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/GetOceInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.requests; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/GetWorkRequestRequest.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/GetWorkRequestRequest.java index e4eeb71050f..e8cd2821b66 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/GetWorkRequestRequest.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.requests; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/ListOceInstancesRequest.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/ListOceInstancesRequest.java index bbbdaff3165..4fb02f79196 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/ListOceInstancesRequest.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/ListOceInstancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.requests; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/ListWorkRequestErrorsRequest.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/ListWorkRequestErrorsRequest.java index 6fcb4fb126d..f8883d2474b 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.requests; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/ListWorkRequestLogsRequest.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/ListWorkRequestLogsRequest.java index 04a6f9f08ea..591dfffac26 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/ListWorkRequestLogsRequest.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.requests; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/ListWorkRequestsRequest.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/ListWorkRequestsRequest.java index f303891baeb..98d17ff62cd 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/ListWorkRequestsRequest.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.requests; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/UpdateOceInstanceRequest.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/UpdateOceInstanceRequest.java index ed344a69f84..a949b7a4571 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/UpdateOceInstanceRequest.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/requests/UpdateOceInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.requests; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/ChangeOceInstanceCompartmentResponse.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/ChangeOceInstanceCompartmentResponse.java index 6e1a6a002b2..0c5bad139ca 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/ChangeOceInstanceCompartmentResponse.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/ChangeOceInstanceCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.responses; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/CreateOceInstanceResponse.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/CreateOceInstanceResponse.java index b3e3ed14bd3..ad7edbabe5d 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/CreateOceInstanceResponse.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/CreateOceInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.responses; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/DeleteOceInstanceResponse.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/DeleteOceInstanceResponse.java index 59017eea6cd..aa14c5f3b44 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/DeleteOceInstanceResponse.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/DeleteOceInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.responses; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/GetOceInstanceResponse.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/GetOceInstanceResponse.java index 3d0e7bd8ab5..b0ce8766606 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/GetOceInstanceResponse.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/GetOceInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.responses; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/GetWorkRequestResponse.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/GetWorkRequestResponse.java index 80ea1064665..0a519fae8c2 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/GetWorkRequestResponse.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.responses; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/ListOceInstancesResponse.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/ListOceInstancesResponse.java index ca78277e61c..0d436efbce8 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/ListOceInstancesResponse.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/ListOceInstancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.responses; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/ListWorkRequestErrorsResponse.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/ListWorkRequestErrorsResponse.java index e3932a274e9..46b8044ce61 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.responses; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/ListWorkRequestLogsResponse.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/ListWorkRequestLogsResponse.java index c47e18999d0..88d3c440982 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/ListWorkRequestLogsResponse.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.responses; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/ListWorkRequestsResponse.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/ListWorkRequestsResponse.java index b9e2e55f384..0682a80f304 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/ListWorkRequestsResponse.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.responses; diff --git a/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/UpdateOceInstanceResponse.java b/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/UpdateOceInstanceResponse.java index 6420e08f81b..677a5b23067 100644 --- a/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/UpdateOceInstanceResponse.java +++ b/bmc-oce/src/main/java/com/oracle/bmc/oce/responses/UpdateOceInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oce.responses; diff --git a/bmc-oce/src/main/resources/com/oracle/bmc/oce/client.properties b/bmc-oce/src/main/resources/com/oracle/bmc/oce/client.properties index affcbfed9fa..3f438e7eb24 100644 --- a/bmc-oce/src/main/resources/com/oracle/bmc/oce/client.properties +++ b/bmc-oce/src/main/resources/com/oracle/bmc/oce/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-ocicontrolcenter/pom.xml b/bmc-ocicontrolcenter/pom.xml index 2482511bdac..c0d410e3550 100644 --- a/bmc-ocicontrolcenter/pom.xml +++ b/bmc-ocicontrolcenter/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-ocicontrolcenter @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/OccMetrics.java b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/OccMetrics.java index 3489ee14c07..f83bb1ea1c4 100644 --- a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/OccMetrics.java +++ b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/OccMetrics.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocicontrolcenter; diff --git a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/OccMetricsAsync.java b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/OccMetricsAsync.java index 53b11be886f..91b7cd81eba 100644 --- a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/OccMetricsAsync.java +++ b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/OccMetricsAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocicontrolcenter; diff --git a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/OccMetricsAsyncClient.java b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/OccMetricsAsyncClient.java index b7a44e825fd..fc530ba6173 100644 --- a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/OccMetricsAsyncClient.java +++ b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/OccMetricsAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocicontrolcenter; diff --git a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/OccMetricsClient.java b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/OccMetricsClient.java index 4e6ea45b0fd..ebae9d6a286 100644 --- a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/OccMetricsClient.java +++ b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/OccMetricsClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocicontrolcenter; diff --git a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/OccMetricsPaginators.java b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/OccMetricsPaginators.java index c9e1f7870a7..f028f187387 100644 --- a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/OccMetricsPaginators.java +++ b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/OccMetricsPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocicontrolcenter; diff --git a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/DimensionValue.java b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/DimensionValue.java index 4241a5299ba..25e651dca4b 100644 --- a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/DimensionValue.java +++ b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/DimensionValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocicontrolcenter.model; diff --git a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/MetricPropertyCollection.java b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/MetricPropertyCollection.java index 291132bc2b3..2b350d1cfcd 100644 --- a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/MetricPropertyCollection.java +++ b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/MetricPropertyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocicontrolcenter.model; diff --git a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/MetricPropertySummary.java b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/MetricPropertySummary.java index cb65e97c4cd..b04db747db5 100644 --- a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/MetricPropertySummary.java +++ b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/MetricPropertySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocicontrolcenter.model; diff --git a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/NamespaceCollection.java b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/NamespaceCollection.java index d9d686818b1..8dbeb81619f 100644 --- a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/NamespaceCollection.java +++ b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/NamespaceCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocicontrolcenter.model; diff --git a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/NamespaceSummary.java b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/NamespaceSummary.java index 6d5da0fec42..44572c0f4dd 100644 --- a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/NamespaceSummary.java +++ b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/NamespaceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocicontrolcenter.model; diff --git a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/RequestSummarizedMetricDataDetails.java b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/RequestSummarizedMetricDataDetails.java index 792e506f5e5..e5ffa047bf1 100644 --- a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/RequestSummarizedMetricDataDetails.java +++ b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/RequestSummarizedMetricDataDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocicontrolcenter.model; diff --git a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/SummarizedMetricData.java b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/SummarizedMetricData.java index f6c8536c5ba..ca3a89906a6 100644 --- a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/SummarizedMetricData.java +++ b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/SummarizedMetricData.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocicontrolcenter.model; diff --git a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/SummarizedMetricDataCollection.java b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/SummarizedMetricDataCollection.java index bd59d471826..4552f9180d7 100644 --- a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/SummarizedMetricDataCollection.java +++ b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/model/SummarizedMetricDataCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocicontrolcenter.model; diff --git a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/requests/ListMetricPropertiesRequest.java b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/requests/ListMetricPropertiesRequest.java index de5fb92c50b..8511fef161a 100644 --- a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/requests/ListMetricPropertiesRequest.java +++ b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/requests/ListMetricPropertiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocicontrolcenter.requests; diff --git a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/requests/ListNamespacesRequest.java b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/requests/ListNamespacesRequest.java index bad7a8aa8e4..fb1bb79ceb7 100644 --- a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/requests/ListNamespacesRequest.java +++ b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/requests/ListNamespacesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocicontrolcenter.requests; diff --git a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/requests/RequestSummarizedMetricDataRequest.java b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/requests/RequestSummarizedMetricDataRequest.java index 8fd73d06b29..0d40415841d 100644 --- a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/requests/RequestSummarizedMetricDataRequest.java +++ b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/requests/RequestSummarizedMetricDataRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocicontrolcenter.requests; diff --git a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/responses/ListMetricPropertiesResponse.java b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/responses/ListMetricPropertiesResponse.java index 68ad963f554..89a9aedbd2c 100644 --- a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/responses/ListMetricPropertiesResponse.java +++ b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/responses/ListMetricPropertiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocicontrolcenter.responses; diff --git a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/responses/ListNamespacesResponse.java b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/responses/ListNamespacesResponse.java index 4aa36ccf11c..6ddabbcdad2 100644 --- a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/responses/ListNamespacesResponse.java +++ b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/responses/ListNamespacesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocicontrolcenter.responses; diff --git a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/responses/RequestSummarizedMetricDataResponse.java b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/responses/RequestSummarizedMetricDataResponse.java index 7f283e37ac1..c389dc56e49 100644 --- a/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/responses/RequestSummarizedMetricDataResponse.java +++ b/bmc-ocicontrolcenter/src/main/java/com/oracle/bmc/ocicontrolcenter/responses/RequestSummarizedMetricDataResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocicontrolcenter.responses; diff --git a/bmc-ocicontrolcenter/src/main/resources/com/oracle/bmc/ocicontrolcenter/client.properties b/bmc-ocicontrolcenter/src/main/resources/com/oracle/bmc/ocicontrolcenter/client.properties index e7d765b545b..5d08ea51c2a 100644 --- a/bmc-ocicontrolcenter/src/main/resources/com/oracle/bmc/ocicontrolcenter/client.properties +++ b/bmc-ocicontrolcenter/src/main/resources/com/oracle/bmc/ocicontrolcenter/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-ocvp/pom.xml b/bmc-ocvp/pom.xml index f3ebe1a2985..24e5a588ec9 100644 --- a/bmc-ocvp/pom.xml +++ b/bmc-ocvp/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-ocvp @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/Cluster.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/Cluster.java index d2d578be625..5a46686e51a 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/Cluster.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/Cluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/ClusterAsync.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/ClusterAsync.java index 57f414e59b8..ff05c57c429 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/ClusterAsync.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/ClusterAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/ClusterAsyncClient.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/ClusterAsyncClient.java index c057fbb885f..b4be2940ff6 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/ClusterAsyncClient.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/ClusterAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/ClusterClient.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/ClusterClient.java index a0941e6c236..1acff0e8955 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/ClusterClient.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/ClusterClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/ClusterPaginators.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/ClusterPaginators.java index e5e3b19d6d0..6ef0fea75c2 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/ClusterPaginators.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/ClusterPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/ClusterWaiters.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/ClusterWaiters.java index 32d6ed5f39f..e5f80ac5fb9 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/ClusterWaiters.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/ClusterWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/Datastore.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/Datastore.java index f892ffc103e..ef18c59f6b5 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/Datastore.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/Datastore.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreAsync.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreAsync.java index 9a5d2f0cc54..86a088f8ac5 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreAsync.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreAsyncClient.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreAsyncClient.java index bd254040c8f..4066ead5d06 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreAsyncClient.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClient.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClient.java index 17e5744e141..97f1ef487ac 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClient.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreCluster.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreCluster.java index 09c40595282..c5ed95c543b 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreCluster.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreCluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClusterAsync.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClusterAsync.java index e3f6dd0dd83..8075c6ef249 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClusterAsync.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClusterAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClusterAsyncClient.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClusterAsyncClient.java index 5fbc5355d15..200ff05bea0 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClusterAsyncClient.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClusterAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClusterClient.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClusterClient.java index f8b767edc63..6f3bf5706d3 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClusterClient.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClusterClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClusterPaginators.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClusterPaginators.java index 6827aebaff4..35ea3fc844f 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClusterPaginators.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClusterPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClusterWaiters.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClusterWaiters.java index 1d0331b79da..7ae28ac2cfd 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClusterWaiters.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreClusterWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastorePaginators.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastorePaginators.java index 8d4d341ffc4..ea3f72ad81d 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastorePaginators.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastorePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreWaiters.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreWaiters.java index 84ae36e3238..0b176c92a73 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreWaiters.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/DatastoreWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHost.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHost.java index 786a34a607e..6c815f49625 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHost.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHost.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHostAsync.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHostAsync.java index 72dee7233c1..f2012a7cfe8 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHostAsync.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHostAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHostAsyncClient.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHostAsyncClient.java index 7d3e9165ca1..2c33148593e 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHostAsyncClient.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHostAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHostClient.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHostClient.java index 646979c95a3..005be7686e3 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHostClient.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHostClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHostPaginators.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHostPaginators.java index 6ebaf8b6132..08842ebc43e 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHostPaginators.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHostPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHostWaiters.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHostWaiters.java index 7eea38f059f..37d0b099ad8 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHostWaiters.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/EsxiHostWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/Sddc.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/Sddc.java index 895acedb96c..fac2e8525cf 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/Sddc.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/Sddc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/SddcAsync.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/SddcAsync.java index 03050217ef1..305bf6bd715 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/SddcAsync.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/SddcAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/SddcAsyncClient.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/SddcAsyncClient.java index 7d1e8f5de4f..cd6e1ce3b47 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/SddcAsyncClient.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/SddcAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/SddcClient.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/SddcClient.java index d0e6e2e1ba7..13f00c4bb57 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/SddcClient.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/SddcClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/SddcPaginators.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/SddcPaginators.java index 1556ed09fc7..0a021fed3a2 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/SddcPaginators.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/SddcPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/SddcWaiters.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/SddcWaiters.java index ea7b99f2512..647d1b8d616 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/SddcWaiters.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/SddcWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequest.java index 111980c8c7e..290208c43b0 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequestAsync.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequestAsync.java index 0ef064d7e18..a91c552b45c 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequestAsync.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequestAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequestAsyncClient.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequestAsyncClient.java index f04b7b54b2e..c305c29f437 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequestAsyncClient.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequestAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequestClient.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequestClient.java index 4251758712f..797a2733344 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequestClient.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequestClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequestPaginators.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequestPaginators.java index 2353d8f353e..d5baf341760 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequestPaginators.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequestPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequestWaiters.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequestWaiters.java index 61721ffe045..0b30b1ab1fa 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequestWaiters.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/WorkRequestWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ActionTypes.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ActionTypes.java index b235e51e983..44bb26ffe11 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ActionTypes.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ActionTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/AddBlockVolumeToDatastoreDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/AddBlockVolumeToDatastoreDetails.java index 0772a059a38..ed3eef957fc 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/AddBlockVolumeToDatastoreDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/AddBlockVolumeToDatastoreDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/AddDatastoreToDatastoreClusterDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/AddDatastoreToDatastoreClusterDetails.java index 7b4f8ead4cd..9e029d19ae4 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/AddDatastoreToDatastoreClusterDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/AddDatastoreToDatastoreClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/AttachDatastoreClusterToClusterDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/AttachDatastoreClusterToClusterDetails.java index 02dee757c07..7befd865e78 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/AttachDatastoreClusterToClusterDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/AttachDatastoreClusterToClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/AttachDatastoreClusterToEsxiHostDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/AttachDatastoreClusterToEsxiHostDetails.java index 30dab8c3528..0b60bc58c1d 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/AttachDatastoreClusterToEsxiHostDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/AttachDatastoreClusterToEsxiHostDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/BlockVolumeAttachment.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/BlockVolumeAttachment.java index ad38dbcf8f2..c2c85be5773 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/BlockVolumeAttachment.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/BlockVolumeAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/BlockVolumeDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/BlockVolumeDetails.java index 03a2e72b418..3a7c64b8cb8 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/BlockVolumeDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/BlockVolumeDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ChangeDatastoreClusterCompartmentDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ChangeDatastoreClusterCompartmentDetails.java index a5218caed1b..b3ccd9013ce 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ChangeDatastoreClusterCompartmentDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ChangeDatastoreClusterCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ChangeDatastoreCompartmentDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ChangeDatastoreCompartmentDetails.java index 179d234aad2..7b09e3f0f85 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ChangeDatastoreCompartmentDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ChangeDatastoreCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ChangeSddcCompartmentDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ChangeSddcCompartmentDetails.java index 5ea42cbcefa..04eead71275 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ChangeSddcCompartmentDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ChangeSddcCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/Cluster.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/Cluster.java index 9acdfcd39a5..1c5842ba1e5 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/Cluster.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/Cluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ClusterCollection.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ClusterCollection.java index ece2b6972b9..6bbcad56f15 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ClusterCollection.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ClusterCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ClusterSummary.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ClusterSummary.java index 56d80bcb002..3f512020573 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ClusterSummary.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ClusterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/Commitment.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/Commitment.java index c9c95cfba04..e9253dd1acc 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/Commitment.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/Commitment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/CreateClusterDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/CreateClusterDetails.java index 563291ac318..70e35f100ba 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/CreateClusterDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/CreateClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/CreateDatastoreClusterDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/CreateDatastoreClusterDetails.java index 4411f3fdf09..afc5e732c4e 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/CreateDatastoreClusterDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/CreateDatastoreClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/CreateDatastoreDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/CreateDatastoreDetails.java index daef53f5c7e..a5f7ffa6114 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/CreateDatastoreDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/CreateDatastoreDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/CreateEsxiHostDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/CreateEsxiHostDetails.java index 5b71eabd202..bf8179b0b37 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/CreateEsxiHostDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/CreateEsxiHostDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/CreateSddcDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/CreateSddcDetails.java index 37d22760ede..7727d0d0c09 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/CreateSddcDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/CreateSddcDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/Datastore.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/Datastore.java index 0609402155f..203fc1760eb 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/Datastore.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/Datastore.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreAttachment.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreAttachment.java index bfd4435ce5c..d3057e6afb0 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreAttachment.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreCluster.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreCluster.java index ed910780dea..8aa8c27924a 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreCluster.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreCluster.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreClusterCollection.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreClusterCollection.java index d1e434609cc..ca06d8cdd3a 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreClusterCollection.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreClusterCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreClusterSummary.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreClusterSummary.java index 146f7979c85..f54ed026363 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreClusterSummary.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreClusterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreClusterTypes.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreClusterTypes.java index eba8da8f22b..4e662236ef4 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreClusterTypes.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreClusterTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreCollection.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreCollection.java index fe9e6853405..add0e7d8886 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreCollection.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreDetails.java index c0b80744285..beb0a6aa68b 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreInfo.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreInfo.java index 5162b5246bb..b421039ecb8 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreInfo.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreSummary.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreSummary.java index 323b00dcd4f..e7c09c43048 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreSummary.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreTypes.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreTypes.java index 7d12bf3caa1..12e1a6daf14 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreTypes.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DatastoreTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DetachDatastoreClusterFromEsxiHostDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DetachDatastoreClusterFromEsxiHostDetails.java index 3537d3c94ff..00ebb45710f 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DetachDatastoreClusterFromEsxiHostDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DetachDatastoreClusterFromEsxiHostDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DowngradeHcxDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DowngradeHcxDetails.java index 2c5a03c69d7..5286dd6fcf3 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DowngradeHcxDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/DowngradeHcxDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/EsxiHost.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/EsxiHost.java index 836b6a0f7f3..ed9a4dd0261 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/EsxiHost.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/EsxiHost.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/EsxiHostCollection.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/EsxiHostCollection.java index f1630f90ef5..93b6c3d97f6 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/EsxiHostCollection.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/EsxiHostCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/EsxiHostSummary.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/EsxiHostSummary.java index 52ea6c8e138..91b6cb5b908 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/EsxiHostSummary.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/EsxiHostSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/HcxLicenseStatus.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/HcxLicenseStatus.java index 74320ca2ab7..e1d1cbf7bc9 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/HcxLicenseStatus.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/HcxLicenseStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/HcxLicenseSummary.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/HcxLicenseSummary.java index d3e52bba9f0..04357b5a64c 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/HcxLicenseSummary.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/HcxLicenseSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/HcxModes.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/HcxModes.java index fe66087846c..45ce0a2b858 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/HcxModes.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/HcxModes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/InitialClusterConfiguration.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/InitialClusterConfiguration.java index 26ad43101cc..a86376ca89c 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/InitialClusterConfiguration.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/InitialClusterConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/InitialConfiguration.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/InitialConfiguration.java index f69e3d22c4c..7d56b1cacb3 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/InitialConfiguration.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/InitialConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/LifecycleStates.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/LifecycleStates.java index 63ff2d0f54f..e8f17b78836 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/LifecycleStates.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/LifecycleStates.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/NetworkConfiguration.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/NetworkConfiguration.java index 47332b64635..b9f9944a54e 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/NetworkConfiguration.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/NetworkConfiguration.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/OperationStatus.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/OperationStatus.java index 76dd936a3ce..bb204f073f6 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/OperationStatus.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/OperationStatus.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/OperationTypes.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/OperationTypes.java index c710207aa0e..7c87b575f00 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/OperationTypes.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/OperationTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/PasswordTypes.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/PasswordTypes.java index 4aecf6e5654..e762137bb28 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/PasswordTypes.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/PasswordTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/RemoveDatastoreFromDatastoreClusterDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/RemoveDatastoreFromDatastoreClusterDetails.java index 6245fecde5f..40970ec736c 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/RemoveDatastoreFromDatastoreClusterDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/RemoveDatastoreFromDatastoreClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ReplaceHostDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ReplaceHostDetails.java index cbf5053f74d..bfb6f47928e 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ReplaceHostDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/ReplaceHostDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/Sddc.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/Sddc.java index fb2fdc0cdf0..bb7a146a081 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/Sddc.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/Sddc.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SddcCollection.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SddcCollection.java index abdd418da3d..550286e468e 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SddcCollection.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SddcCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SddcPassword.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SddcPassword.java index 30237bc16b5..d4f1f3cc738 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SddcPassword.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SddcPassword.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SddcSummary.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SddcSummary.java index 48102aad8ac..df5917ed908 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SddcSummary.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SddcSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SortOrders.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SortOrders.java index ebff0f10693..10c2aa1aeb1 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SortOrders.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SortOrders.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedCommitmentSummary.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedCommitmentSummary.java index 4e0218a8dc7..04fc9c7a213 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedCommitmentSummary.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedCommitmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedCommitmentSummaryCollection.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedCommitmentSummaryCollection.java index 21ae20e18b7..c2fc1800b5e 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedCommitmentSummaryCollection.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedCommitmentSummaryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedEsxiSoftwareVersionSummary.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedEsxiSoftwareVersionSummary.java index 93a59eab110..c4850470d2d 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedEsxiSoftwareVersionSummary.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedEsxiSoftwareVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedHostShapeCollection.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedHostShapeCollection.java index e681e6ac14c..c7f05939c67 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedHostShapeCollection.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedHostShapeCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedHostShapeSummary.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedHostShapeSummary.java index 3dfd8288bf1..491a7029138 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedHostShapeSummary.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedHostShapeSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedVmwareSoftwareVersionCollection.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedVmwareSoftwareVersionCollection.java index b75bc178db8..5d648c0226d 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedVmwareSoftwareVersionCollection.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedVmwareSoftwareVersionCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedVmwareSoftwareVersionSummary.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedVmwareSoftwareVersionSummary.java index b60d4b68683..93f64887fb5 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedVmwareSoftwareVersionSummary.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/SupportedVmwareSoftwareVersionSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/UpdateClusterDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/UpdateClusterDetails.java index 9b8a1b9aa3c..5622ed38f22 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/UpdateClusterDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/UpdateClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/UpdateDatastoreClusterDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/UpdateDatastoreClusterDetails.java index 758b859dfb2..3cba59937fd 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/UpdateDatastoreClusterDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/UpdateDatastoreClusterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/UpdateDatastoreDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/UpdateDatastoreDetails.java index 53da3b05a6a..9d1a9e9e0a3 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/UpdateDatastoreDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/UpdateDatastoreDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/UpdateEsxiHostDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/UpdateEsxiHostDetails.java index a66fcf97ed7..39a75aae1eb 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/UpdateEsxiHostDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/UpdateEsxiHostDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/UpdateSddcDetails.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/UpdateSddcDetails.java index 6cb48821806..4ba09d27b22 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/UpdateSddcDetails.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/UpdateSddcDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/VsphereLicense.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/VsphereLicense.java index 1f644a6ab6f..de1aadd8e32 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/VsphereLicense.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/VsphereLicense.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/VsphereTypes.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/VsphereTypes.java index 43365022a3b..f68ed2e7c53 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/VsphereTypes.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/VsphereTypes.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/VsphereUpgradeObject.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/VsphereUpgradeObject.java index 826587c3012..dd2c4bcc26c 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/VsphereUpgradeObject.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/VsphereUpgradeObject.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequest.java index c2986241c69..693c9dc5fcb 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestCollection.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestCollection.java index e3034798051..beb0ad15890 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestCollection.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestError.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestError.java index ddee880b79b..1b4f30e3842 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestError.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestErrorCollection.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestErrorCollection.java index f95d83162d6..0cdaa640d0e 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestErrorCollection.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestErrorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestLogEntry.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestLogEntry.java index d04f6b01ef0..3f3912a0d60 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestLogEntry.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestLogEntryCollection.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestLogEntryCollection.java index 7dbbc7b8147..fffda7b97f0 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestLogEntryCollection.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestLogEntryCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestResource.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestResource.java index c0b02bac784..756cea0d3c1 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestResource.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.model; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/AddBlockVolumeToDatastoreRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/AddBlockVolumeToDatastoreRequest.java index 204f515874d..5305eac00b9 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/AddBlockVolumeToDatastoreRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/AddBlockVolumeToDatastoreRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/AddDatastoreToDatastoreClusterRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/AddDatastoreToDatastoreClusterRequest.java index 35a31b50779..5ceff3c7815 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/AddDatastoreToDatastoreClusterRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/AddDatastoreToDatastoreClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/AttachDatastoreClusterToClusterRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/AttachDatastoreClusterToClusterRequest.java index 40a8d3de80c..448f6f644f9 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/AttachDatastoreClusterToClusterRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/AttachDatastoreClusterToClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/AttachDatastoreClusterToEsxiHostRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/AttachDatastoreClusterToEsxiHostRequest.java index a5427f8c43d..f849398d71f 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/AttachDatastoreClusterToEsxiHostRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/AttachDatastoreClusterToEsxiHostRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CancelDowngradeHcxRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CancelDowngradeHcxRequest.java index b3670ced236..37db1c2f25e 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CancelDowngradeHcxRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CancelDowngradeHcxRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ChangeDatastoreClusterCompartmentRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ChangeDatastoreClusterCompartmentRequest.java index 0fe4f204a54..63fa7471193 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ChangeDatastoreClusterCompartmentRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ChangeDatastoreClusterCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ChangeDatastoreCompartmentRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ChangeDatastoreCompartmentRequest.java index 00419461c71..657877f8994 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ChangeDatastoreCompartmentRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ChangeDatastoreCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ChangeSddcCompartmentRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ChangeSddcCompartmentRequest.java index 2e1f8c64682..dfbcdfe9e53 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ChangeSddcCompartmentRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ChangeSddcCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CreateClusterRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CreateClusterRequest.java index a3fb1d667aa..f5ce8f7b117 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CreateClusterRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CreateClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CreateDatastoreClusterRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CreateDatastoreClusterRequest.java index 9e9bb4c18e8..19b6644d760 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CreateDatastoreClusterRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CreateDatastoreClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CreateDatastoreRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CreateDatastoreRequest.java index 9b401f54783..9840761d7dc 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CreateDatastoreRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CreateDatastoreRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CreateEsxiHostRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CreateEsxiHostRequest.java index 722a1386fed..b35b8856269 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CreateEsxiHostRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CreateEsxiHostRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CreateSddcRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CreateSddcRequest.java index 383c634f941..d6c4b324f57 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CreateSddcRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/CreateSddcRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DeleteClusterRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DeleteClusterRequest.java index 323ab41e260..7539b51cba9 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DeleteClusterRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DeleteClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DeleteDatastoreClusterRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DeleteDatastoreClusterRequest.java index c2e4d389a25..41983d2ef44 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DeleteDatastoreClusterRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DeleteDatastoreClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DeleteDatastoreRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DeleteDatastoreRequest.java index 8bea75d92f9..79f54b1d7e4 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DeleteDatastoreRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DeleteDatastoreRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DeleteEsxiHostRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DeleteEsxiHostRequest.java index 6a5150582b9..9ebac5dcb68 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DeleteEsxiHostRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DeleteEsxiHostRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DeleteSddcRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DeleteSddcRequest.java index 70c2570868a..e40384a8fa9 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DeleteSddcRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DeleteSddcRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DetachDatastoreClusterFromClusterRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DetachDatastoreClusterFromClusterRequest.java index 0e3a5b1524f..af41bdc258b 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DetachDatastoreClusterFromClusterRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DetachDatastoreClusterFromClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DetachDatastoreClusterFromEsxiHostRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DetachDatastoreClusterFromEsxiHostRequest.java index e3b0f2d450a..0ca7c450164 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DetachDatastoreClusterFromEsxiHostRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DetachDatastoreClusterFromEsxiHostRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DowngradeHcxRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DowngradeHcxRequest.java index 142a871d505..772a2dcd71c 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DowngradeHcxRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/DowngradeHcxRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetClusterRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetClusterRequest.java index 035beeb8f20..a89ad9e1d80 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetClusterRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetDatastoreClusterRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetDatastoreClusterRequest.java index c2d31b5d354..e3bad9cc1b0 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetDatastoreClusterRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetDatastoreClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetDatastoreRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetDatastoreRequest.java index 41a4b4c5df9..303b3a07779 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetDatastoreRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetDatastoreRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetEsxiHostRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetEsxiHostRequest.java index 33b2dee0ba7..d77f47c5107 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetEsxiHostRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetEsxiHostRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetSddcRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetSddcRequest.java index 70fdf81c806..2ad443c0d22 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetSddcRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetSddcRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetWorkRequestRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetWorkRequestRequest.java index d93c4f7aa49..2e9b7a66ad2 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetWorkRequestRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/InplaceUpgradeRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/InplaceUpgradeRequest.java index dff63873874..41c3d68aa89 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/InplaceUpgradeRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/InplaceUpgradeRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListClustersRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListClustersRequest.java index c9e29a8105e..ae5e4abed7a 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListClustersRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListClustersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListDatastoreClustersRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListDatastoreClustersRequest.java index 1a339f90b62..47ba238f888 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListDatastoreClustersRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListDatastoreClustersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListDatastoresRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListDatastoresRequest.java index aadc355e3a1..2c44c5cf893 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListDatastoresRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListDatastoresRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListEsxiHostsRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListEsxiHostsRequest.java index cb5b9658702..be1a711cf07 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListEsxiHostsRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListEsxiHostsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListSddcsRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListSddcsRequest.java index 2f8bbb1bf41..679474b8881 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListSddcsRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListSddcsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListSupportedCommitmentsRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListSupportedCommitmentsRequest.java index 7af2410bab8..c606d62a034 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListSupportedCommitmentsRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListSupportedCommitmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListSupportedHostShapesRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListSupportedHostShapesRequest.java index 8e9ddc0a3d3..22f2bbe75d4 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListSupportedHostShapesRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListSupportedHostShapesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListSupportedVmwareSoftwareVersionsRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListSupportedVmwareSoftwareVersionsRequest.java index e5703f17512..6445925153b 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListSupportedVmwareSoftwareVersionsRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListSupportedVmwareSoftwareVersionsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListWorkRequestErrorsRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListWorkRequestErrorsRequest.java index 750e888c997..979bbfd13ff 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListWorkRequestLogsRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListWorkRequestLogsRequest.java index ec0a4a46293..29a5770fa4c 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListWorkRequestLogsRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListWorkRequestsRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListWorkRequestsRequest.java index a176dd72c08..c4ba6c69746 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListWorkRequestsRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/RefreshHcxLicenseStatusRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/RefreshHcxLicenseStatusRequest.java index 9d4dd503b41..9c0043f8253 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/RefreshHcxLicenseStatusRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/RefreshHcxLicenseStatusRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/RemoveDatastoreFromDatastoreClusterRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/RemoveDatastoreFromDatastoreClusterRequest.java index e5423295c98..6e80998583b 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/RemoveDatastoreFromDatastoreClusterRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/RemoveDatastoreFromDatastoreClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ReplaceHostRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ReplaceHostRequest.java index cfe4046a059..18287c1415c 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ReplaceHostRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/ReplaceHostRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/RetrievePasswordRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/RetrievePasswordRequest.java index d95b57744e8..8d829a199af 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/RetrievePasswordRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/RetrievePasswordRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/SwapBillingRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/SwapBillingRequest.java index d4372255772..8b56620b366 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/SwapBillingRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/SwapBillingRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpdateClusterRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpdateClusterRequest.java index c2e89cd02cf..44017a5614f 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpdateClusterRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpdateClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpdateDatastoreClusterRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpdateDatastoreClusterRequest.java index 93c729e5dc3..1fefcecc4d0 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpdateDatastoreClusterRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpdateDatastoreClusterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpdateDatastoreRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpdateDatastoreRequest.java index e74c26c0809..f9131e77f02 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpdateDatastoreRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpdateDatastoreRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpdateEsxiHostRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpdateEsxiHostRequest.java index 45f80786bc7..fddd2badedc 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpdateEsxiHostRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpdateEsxiHostRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpdateSddcRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpdateSddcRequest.java index 0a2550045c9..6bcbce0cb00 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpdateSddcRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpdateSddcRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpgradeHcxRequest.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpgradeHcxRequest.java index 5f0646ce03d..cb9728cd35c 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpgradeHcxRequest.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/requests/UpgradeHcxRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.requests; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/AddBlockVolumeToDatastoreResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/AddBlockVolumeToDatastoreResponse.java index b55bf8b3d9b..9c6c33af601 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/AddBlockVolumeToDatastoreResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/AddBlockVolumeToDatastoreResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/AddDatastoreToDatastoreClusterResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/AddDatastoreToDatastoreClusterResponse.java index 545ccee83b8..0b1164077a2 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/AddDatastoreToDatastoreClusterResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/AddDatastoreToDatastoreClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/AttachDatastoreClusterToClusterResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/AttachDatastoreClusterToClusterResponse.java index ba7ffcd87f3..78dc4ecc4ae 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/AttachDatastoreClusterToClusterResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/AttachDatastoreClusterToClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/AttachDatastoreClusterToEsxiHostResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/AttachDatastoreClusterToEsxiHostResponse.java index a810ba386b6..0dce1b6aaab 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/AttachDatastoreClusterToEsxiHostResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/AttachDatastoreClusterToEsxiHostResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CancelDowngradeHcxResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CancelDowngradeHcxResponse.java index 433fee9d45b..4618bc82863 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CancelDowngradeHcxResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CancelDowngradeHcxResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ChangeDatastoreClusterCompartmentResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ChangeDatastoreClusterCompartmentResponse.java index 0e442a05783..cc5dc5a53f2 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ChangeDatastoreClusterCompartmentResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ChangeDatastoreClusterCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ChangeDatastoreCompartmentResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ChangeDatastoreCompartmentResponse.java index f254ecfbdc9..dadee83a605 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ChangeDatastoreCompartmentResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ChangeDatastoreCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ChangeSddcCompartmentResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ChangeSddcCompartmentResponse.java index 33c790eac71..9b4f7ec72f1 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ChangeSddcCompartmentResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ChangeSddcCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CreateClusterResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CreateClusterResponse.java index a211f578a81..026b7d5d985 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CreateClusterResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CreateClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CreateDatastoreClusterResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CreateDatastoreClusterResponse.java index 968fdef960d..22488a6cd12 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CreateDatastoreClusterResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CreateDatastoreClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CreateDatastoreResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CreateDatastoreResponse.java index 6352a667038..51cc58488a1 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CreateDatastoreResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CreateDatastoreResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CreateEsxiHostResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CreateEsxiHostResponse.java index 2262e29053e..2bb2832bb98 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CreateEsxiHostResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CreateEsxiHostResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CreateSddcResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CreateSddcResponse.java index 06377a830fd..3ba2747f684 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CreateSddcResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/CreateSddcResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DeleteClusterResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DeleteClusterResponse.java index 6113a66f2f9..bb51c0633c5 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DeleteClusterResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DeleteClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DeleteDatastoreClusterResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DeleteDatastoreClusterResponse.java index 3fae91cebfa..e0baa6d2423 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DeleteDatastoreClusterResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DeleteDatastoreClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DeleteDatastoreResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DeleteDatastoreResponse.java index 7eef2bfe4e5..c4996386bcf 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DeleteDatastoreResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DeleteDatastoreResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DeleteEsxiHostResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DeleteEsxiHostResponse.java index de58cde3d5d..3bb184666b7 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DeleteEsxiHostResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DeleteEsxiHostResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DeleteSddcResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DeleteSddcResponse.java index 6faaf4e2a38..9cdb6fa4af3 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DeleteSddcResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DeleteSddcResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DetachDatastoreClusterFromClusterResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DetachDatastoreClusterFromClusterResponse.java index dcc0d8de909..f981072dce6 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DetachDatastoreClusterFromClusterResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DetachDatastoreClusterFromClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DetachDatastoreClusterFromEsxiHostResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DetachDatastoreClusterFromEsxiHostResponse.java index 73af3a13049..e13281370fd 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DetachDatastoreClusterFromEsxiHostResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DetachDatastoreClusterFromEsxiHostResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DowngradeHcxResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DowngradeHcxResponse.java index dda823de9aa..c3b579d4c32 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DowngradeHcxResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/DowngradeHcxResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetClusterResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetClusterResponse.java index 2749c28aa41..5c1da7f19c6 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetClusterResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetDatastoreClusterResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetDatastoreClusterResponse.java index b40459d493e..b938e3aa8a2 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetDatastoreClusterResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetDatastoreClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetDatastoreResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetDatastoreResponse.java index d721ee91420..088f4411a4f 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetDatastoreResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetDatastoreResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetEsxiHostResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetEsxiHostResponse.java index 01a27b73c4b..364513fb11a 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetEsxiHostResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetEsxiHostResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetSddcResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetSddcResponse.java index 251fbc62520..bfc52840ed4 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetSddcResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetSddcResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetWorkRequestResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetWorkRequestResponse.java index 10a4311a2f6..3a81ad11402 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetWorkRequestResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/InplaceUpgradeResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/InplaceUpgradeResponse.java index ae206511be4..c0b00ae6a0f 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/InplaceUpgradeResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/InplaceUpgradeResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListClustersResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListClustersResponse.java index 2632a403501..2a3559eed98 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListClustersResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListClustersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListDatastoreClustersResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListDatastoreClustersResponse.java index b20368fa323..234ea280cd5 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListDatastoreClustersResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListDatastoreClustersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListDatastoresResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListDatastoresResponse.java index 674b1961afb..6f61ebd195e 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListDatastoresResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListDatastoresResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListEsxiHostsResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListEsxiHostsResponse.java index b0725a423c6..322c8a2971c 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListEsxiHostsResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListEsxiHostsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListSddcsResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListSddcsResponse.java index 088e75da62d..6660419dddf 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListSddcsResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListSddcsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListSupportedCommitmentsResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListSupportedCommitmentsResponse.java index a9c04414206..928b740181b 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListSupportedCommitmentsResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListSupportedCommitmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListSupportedHostShapesResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListSupportedHostShapesResponse.java index a78a135bbf9..fd1e4b6108c 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListSupportedHostShapesResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListSupportedHostShapesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListSupportedVmwareSoftwareVersionsResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListSupportedVmwareSoftwareVersionsResponse.java index 0f789e40d9d..104ea9a67a2 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListSupportedVmwareSoftwareVersionsResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListSupportedVmwareSoftwareVersionsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListWorkRequestErrorsResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListWorkRequestErrorsResponse.java index 8395e90e100..4313a3677ac 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListWorkRequestLogsResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListWorkRequestLogsResponse.java index 57f92c0ea75..4e54eef7331 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListWorkRequestLogsResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListWorkRequestsResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListWorkRequestsResponse.java index 73a4ee988e6..dd11a8ea3a3 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListWorkRequestsResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/RefreshHcxLicenseStatusResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/RefreshHcxLicenseStatusResponse.java index 489772d5510..e6284f106f8 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/RefreshHcxLicenseStatusResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/RefreshHcxLicenseStatusResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/RemoveDatastoreFromDatastoreClusterResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/RemoveDatastoreFromDatastoreClusterResponse.java index 552046a30c2..c111e9c7f55 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/RemoveDatastoreFromDatastoreClusterResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/RemoveDatastoreFromDatastoreClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ReplaceHostResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ReplaceHostResponse.java index 1622c56fa2e..673dfb25ee9 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ReplaceHostResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/ReplaceHostResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/RetrievePasswordResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/RetrievePasswordResponse.java index 8cf1ac2b66b..b1ff6b7bb81 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/RetrievePasswordResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/RetrievePasswordResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/SwapBillingResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/SwapBillingResponse.java index fdcdc41e1d2..35c0cab9473 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/SwapBillingResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/SwapBillingResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpdateClusterResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpdateClusterResponse.java index 5d9edc6c4d3..f431c88df54 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpdateClusterResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpdateClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpdateDatastoreClusterResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpdateDatastoreClusterResponse.java index bb1335195cb..9b32ba2ac1a 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpdateDatastoreClusterResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpdateDatastoreClusterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpdateDatastoreResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpdateDatastoreResponse.java index 10a2df6dcfe..f24f82ff80a 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpdateDatastoreResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpdateDatastoreResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpdateEsxiHostResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpdateEsxiHostResponse.java index 2497f94e602..b906784d8ca 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpdateEsxiHostResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpdateEsxiHostResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpdateSddcResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpdateSddcResponse.java index 3311b7f3716..c3855925f43 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpdateSddcResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpdateSddcResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpgradeHcxResponse.java b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpgradeHcxResponse.java index 28cd83658f0..41b82edd9af 100644 --- a/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpgradeHcxResponse.java +++ b/bmc-ocvp/src/main/java/com/oracle/bmc/ocvp/responses/UpgradeHcxResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.ocvp.responses; diff --git a/bmc-ocvp/src/main/resources/com/oracle/bmc/ocvp/client.properties b/bmc-ocvp/src/main/resources/com/oracle/bmc/ocvp/client.properties index 681b4bfcb2b..810058f01f5 100644 --- a/bmc-ocvp/src/main/resources/com/oracle/bmc/ocvp/client.properties +++ b/bmc-ocvp/src/main/resources/com/oracle/bmc/ocvp/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-oda/pom.xml b/bmc-oda/pom.xml index 7399cdd9827..1d5f172e8d2 100644 --- a/bmc-oda/pom.xml +++ b/bmc-oda/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-oda @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/Management.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/Management.java index e4d29d7a697..dbb8c0425c8 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/Management.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/Management.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/ManagementAsync.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/ManagementAsync.java index 399856c7401..d7a23aac7e4 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/ManagementAsync.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/ManagementAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/ManagementAsyncClient.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/ManagementAsyncClient.java index 3bb308bee13..9731311f8fa 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/ManagementAsyncClient.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/ManagementAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/ManagementClient.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/ManagementClient.java index 4e1e0ec4b21..cc48705c554 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/ManagementClient.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/ManagementClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/ManagementPaginators.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/ManagementPaginators.java index c1112ad9df9..53d2fb00dac 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/ManagementPaginators.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/ManagementPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/ManagementWaiters.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/ManagementWaiters.java index 24339fd53bb..2a002ef2cd1 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/ManagementWaiters.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/ManagementWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/Oda.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/Oda.java index 6abeaca4e82..513c9ccf130 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/Oda.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/Oda.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/OdaAsync.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/OdaAsync.java index 405125bf4ea..b6f0318c3ba 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/OdaAsync.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/OdaAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/OdaAsyncClient.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/OdaAsyncClient.java index 70295dcde57..306357395ba 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/OdaAsyncClient.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/OdaAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/OdaClient.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/OdaClient.java index e969b41aac6..c4f96217aaf 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/OdaClient.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/OdaClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/OdaPaginators.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/OdaPaginators.java index 476b5f8b8a7..ffb835f0829 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/OdaPaginators.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/OdaPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/OdaWaiters.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/OdaWaiters.java index 8a387fbe86b..4b4d9c6d352 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/OdaWaiters.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/OdaWaiters.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/Odapackage.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/Odapackage.java index 184459ff5bf..5d0afcf1c47 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/Odapackage.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/Odapackage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/OdapackageAsync.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/OdapackageAsync.java index 9fe7c2ed267..29454d64977 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/OdapackageAsync.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/OdapackageAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/OdapackageAsyncClient.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/OdapackageAsyncClient.java index b7c8e461122..4c289ee0b14 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/OdapackageAsyncClient.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/OdapackageAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/OdapackageClient.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/OdapackageClient.java index 79faf3665f5..30fce9ea980 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/OdapackageClient.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/OdapackageClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/OdapackagePaginators.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/OdapackagePaginators.java index 1f803297f87..f837666bb76 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/OdapackagePaginators.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/OdapackagePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AndroidChannel.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AndroidChannel.java index 89731ef5dbf..765b088b603 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AndroidChannel.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AndroidChannel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AppEventChannel.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AppEventChannel.java index 639ddfd6e23..5f481bd297e 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AppEventChannel.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AppEventChannel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ApplicationChannel.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ApplicationChannel.java index 7392bbc18b4..90ba59cd0f3 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ApplicationChannel.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ApplicationChannel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AuthenticationGrantType.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AuthenticationGrantType.java index 142bf93ca58..14804c5a639 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AuthenticationGrantType.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AuthenticationGrantType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AuthenticationIdentityProvider.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AuthenticationIdentityProvider.java index 813afed40c9..6bf026da17f 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AuthenticationIdentityProvider.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AuthenticationIdentityProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AuthenticationProvider.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AuthenticationProvider.java index c3c4a32e44a..7a25b56a1f1 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AuthenticationProvider.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AuthenticationProvider.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AuthenticationProviderCollection.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AuthenticationProviderCollection.java index a2c2cb9e7a4..ee94b93f5f9 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AuthenticationProviderCollection.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AuthenticationProviderCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AuthenticationProviderSummary.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AuthenticationProviderSummary.java index d69f696ea92..4aa2f5b4991 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AuthenticationProviderSummary.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/AuthenticationProviderSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Bot.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Bot.java index f75448d9489..7ce0e1deb20 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Bot.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Bot.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/BotMultilingualMode.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/BotMultilingualMode.java index d2c43fbad04..92c97eee5c9 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/BotMultilingualMode.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/BotMultilingualMode.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/BotPublishState.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/BotPublishState.java index dd578b33aca..e58bbb6b235 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/BotPublishState.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/BotPublishState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/BulkCreateSkillEntitiesDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/BulkCreateSkillEntitiesDetails.java index f52c708b883..f8d991b3733 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/BulkCreateSkillEntitiesDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/BulkCreateSkillEntitiesDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChangeOdaInstanceCompartmentDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChangeOdaInstanceCompartmentDetails.java index e7d54f1c1ed..968889cc79c 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChangeOdaInstanceCompartmentDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChangeOdaInstanceCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChangeOdaPrivateEndpointCompartmentDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChangeOdaPrivateEndpointCompartmentDetails.java index d3af31bbdea..889cacd2a5b 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChangeOdaPrivateEndpointCompartmentDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChangeOdaPrivateEndpointCompartmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Channel.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Channel.java index 72ce8c74bab..fef79baacb3 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Channel.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Channel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChannelCategory.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChannelCategory.java index 2c29c50345c..71fd0311937 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChannelCategory.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChannelCategory.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChannelCollection.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChannelCollection.java index ef4dc04a4f2..9f46b43b1a2 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChannelCollection.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChannelCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChannelSummary.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChannelSummary.java index 5c29224d10e..96cd339e8e8 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChannelSummary.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChannelSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChannelType.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChannelType.java index 63b2463127a..fc8bbf989d0 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChannelType.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ChannelType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CloneDigitalAssistantDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CloneDigitalAssistantDetails.java index 98cbce93cba..09f8350c43f 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CloneDigitalAssistantDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CloneDigitalAssistantDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CloneSkillDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CloneSkillDetails.java index e8b4b0e5939..e3e7597bad9 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CloneSkillDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CloneSkillDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CompositeEntity.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CompositeEntity.java index 353bd11fa30..08e32710ea1 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CompositeEntity.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CompositeEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ConfigureDigitalAssistantParametersDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ConfigureDigitalAssistantParametersDetails.java index 4eeadd00282..66ec399da10 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ConfigureDigitalAssistantParametersDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ConfigureDigitalAssistantParametersDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CortanaChannel.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CortanaChannel.java index 92eb9d8d57e..b5f0cc96376 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CortanaChannel.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CortanaChannel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateAndroidChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateAndroidChannelDetails.java index 02fd8266e87..51c0f8ec0dd 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateAndroidChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateAndroidChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateAndroidChannelResult.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateAndroidChannelResult.java index f72e7b6aa64..007fadc2fc3 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateAndroidChannelResult.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateAndroidChannelResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateAppEventChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateAppEventChannelDetails.java index 0f9a006e245..7a50de833c0 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateAppEventChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateAppEventChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateAppEventChannelResult.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateAppEventChannelResult.java index a1a8d21616a..8267fa9077f 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateAppEventChannelResult.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateAppEventChannelResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateApplicationChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateApplicationChannelDetails.java index 92f80864b43..8aa2120cf73 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateApplicationChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateApplicationChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateApplicationChannelResult.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateApplicationChannelResult.java index 4cfbb25daa3..5a41e624620 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateApplicationChannelResult.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateApplicationChannelResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateAuthenticationProviderDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateAuthenticationProviderDetails.java index e8b89e916be..f9087df6f73 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateAuthenticationProviderDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateAuthenticationProviderDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateBotKind.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateBotKind.java index ff9d4dd07bc..3eb85842a88 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateBotKind.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateBotKind.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateChannelDetails.java index 9334b4ab8c2..a831c76cc64 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateChannelResult.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateChannelResult.java index bce01f95053..7e96da29255 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateChannelResult.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateChannelResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateCortanaChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateCortanaChannelDetails.java index c0bf6a02125..0af19bf36d8 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateCortanaChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateCortanaChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateCortanaChannelResult.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateCortanaChannelResult.java index ba50b6b529d..1f2361e5bc3 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateCortanaChannelResult.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateCortanaChannelResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateDigitalAssistantDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateDigitalAssistantDetails.java index 9cd682ed258..1cfefa035ac 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateDigitalAssistantDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateDigitalAssistantDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateDigitalAssistantVersionDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateDigitalAssistantVersionDetails.java index ba6c8ff266e..9531ea6c289 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateDigitalAssistantVersionDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateDigitalAssistantVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateFacebookChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateFacebookChannelDetails.java index 3b4f6cd1dfc..2ba63989bfa 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateFacebookChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateFacebookChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateFacebookChannelResult.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateFacebookChannelResult.java index 54d29b276fe..c285e4fd1ae 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateFacebookChannelResult.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateFacebookChannelResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateImportedPackageDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateImportedPackageDetails.java index b0e397c96e2..d1d3e46d8e4 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateImportedPackageDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateImportedPackageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateIosChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateIosChannelDetails.java index 681652b1aa7..edfa32960ed 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateIosChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateIosChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateIosChannelResult.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateIosChannelResult.java index db5036a2383..04a02536315 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateIosChannelResult.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateIosChannelResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateMSTeamsChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateMSTeamsChannelDetails.java index 66d89dc62a8..543e07fd1c2 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateMSTeamsChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateMSTeamsChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateMSTeamsChannelResult.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateMSTeamsChannelResult.java index a144f4b7795..047af443da4 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateMSTeamsChannelResult.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateMSTeamsChannelResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateNewDigitalAssistantDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateNewDigitalAssistantDetails.java index fcea3e63ad0..d0344e40971 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateNewDigitalAssistantDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateNewDigitalAssistantDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateNewSkillDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateNewSkillDetails.java index 33d1d01d0e2..01203d5b594 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateNewSkillDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateNewSkillDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOSSChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOSSChannelDetails.java index 18192d3e365..e99b8d54073 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOSSChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOSSChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOSSChannelResult.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOSSChannelResult.java index a8c3be09103..01bb54d38af 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOSSChannelResult.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOSSChannelResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOdaInstanceAttachmentDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOdaInstanceAttachmentDetails.java index 155df2d9925..5ceaa0a36d1 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOdaInstanceAttachmentDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOdaInstanceAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOdaInstanceDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOdaInstanceDetails.java index 41402cd86a0..8ae0d8e6474 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOdaInstanceDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOdaInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOdaPrivateEndpointAttachmentDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOdaPrivateEndpointAttachmentDetails.java index 08d02e33625..0a9b82c5856 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOdaPrivateEndpointAttachmentDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOdaPrivateEndpointAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOdaPrivateEndpointDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOdaPrivateEndpointDetails.java index d7815e27006..a441cef21c0 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOdaPrivateEndpointDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOdaPrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOdaPrivateEndpointScanProxyDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOdaPrivateEndpointScanProxyDetails.java index a4a5abf059e..ce3365afcc4 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOdaPrivateEndpointScanProxyDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOdaPrivateEndpointScanProxyDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOsvcChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOsvcChannelDetails.java index a2477a55e11..8c445a370c2 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOsvcChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOsvcChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOsvcChannelResult.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOsvcChannelResult.java index a634452d107..dfcf8b4e801 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOsvcChannelResult.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateOsvcChannelResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateServiceCloudChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateServiceCloudChannelDetails.java index b3799d228a3..f022d71a798 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateServiceCloudChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateServiceCloudChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateServiceCloudChannelResult.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateServiceCloudChannelResult.java index da5421541d5..601df63e060 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateServiceCloudChannelResult.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateServiceCloudChannelResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillCompositeEntityDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillCompositeEntityDetails.java index 94b74784c41..9c8e631c47f 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillCompositeEntityDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillCompositeEntityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillDetails.java index 0d93dbb5ac1..9e28ecd61b1 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillEntityDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillEntityDetails.java index 1d1bffcefef..52d98510ad8 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillEntityDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillEntityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillParameterDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillParameterDetails.java index b95583352c7..02a010ac6e7 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillParameterDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillParameterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillValueListEntityDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillValueListEntityDetails.java index cb59acfd5b8..fa99bc33ad6 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillValueListEntityDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillValueListEntityDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillVersionDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillVersionDetails.java index 6425402f540..cfe5344783c 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillVersionDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSkillVersionDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSlackChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSlackChannelDetails.java index 8435e5f7e5b..f615e89800a 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSlackChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSlackChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSlackChannelResult.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSlackChannelResult.java index 1d1f08dab16..8973489b802 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSlackChannelResult.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateSlackChannelResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateTestChannelResult.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateTestChannelResult.java index 47f99c64064..a3aeff548b5 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateTestChannelResult.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateTestChannelResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateTranslatorDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateTranslatorDetails.java index d504565e397..c18eb794a60 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateTranslatorDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateTranslatorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateTwilioChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateTwilioChannelDetails.java index fc7a7e2956f..91648e7c18a 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateTwilioChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateTwilioChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateTwilioChannelResult.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateTwilioChannelResult.java index 3c2e3663d06..cbc15b74330 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateTwilioChannelResult.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateTwilioChannelResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateWebChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateWebChannelDetails.java index ee62e8d02f6..7b2e953ed7f 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateWebChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateWebChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateWebChannelResult.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateWebChannelResult.java index 08d1c651aec..d024fcb91b9 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateWebChannelResult.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateWebChannelResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateWebhookChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateWebhookChannelDetails.java index 5d78c41f474..b25ac04f940 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateWebhookChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateWebhookChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateWebhookChannelResult.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateWebhookChannelResult.java index 7b5009f1d5d..5aec080800b 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateWebhookChannelResult.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/CreateWebhookChannelResult.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DefaultParameterValues.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DefaultParameterValues.java index 68276a29148..5821d8303f3 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DefaultParameterValues.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DefaultParameterValues.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistant.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistant.java index 32bef3d78b8..0605b6c59e2 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistant.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistant.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantCollection.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantCollection.java index ca8ce6e79e9..c00a166a6d1 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantCollection.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantParameter.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantParameter.java index 7d11cf2455c..7f686c65506 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantParameter.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantParameter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantParameterCollection.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantParameterCollection.java index b472e690b9c..2464d577ae4 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantParameterCollection.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantParameterCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantParameterSummary.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantParameterSummary.java index 7b9010320b9..08672b5e0f4 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantParameterSummary.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantParameterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantParameterValue.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantParameterValue.java index 30ad58dea6f..cbdb87966a4 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantParameterValue.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantParameterValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantSummary.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantSummary.java index 396c055b4cd..fcc9737f5ae 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantSummary.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/DigitalAssistantSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Entity.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Entity.java index ebf73e6ca5e..e5de0a3a782 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Entity.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Entity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityAction.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityAction.java index 4a06daa41d9..26b32472d04 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityAction.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityAction.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityActionArgument.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityActionArgument.java index f4f786b146a..2b2d3aeed21 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityActionArgument.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityActionArgument.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityActionArgumentNaturalLanguageMapping.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityActionArgumentNaturalLanguageMapping.java index c64089760ac..45ef50a88af 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityActionArgumentNaturalLanguageMapping.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityActionArgumentNaturalLanguageMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityActionNaturalLanguageMapping.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityActionNaturalLanguageMapping.java index 323c0d0d36e..1a558b6457d 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityActionNaturalLanguageMapping.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityActionNaturalLanguageMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityAttribute.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityAttribute.java index 93a9270aefc..7962eba42bf 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityAttribute.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityAttribute.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityAttributeNaturalLanguageMapping.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityAttributeNaturalLanguageMapping.java index 445cb167f21..89fbab51c77 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityAttributeNaturalLanguageMapping.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityAttributeNaturalLanguageMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityAttributeType.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityAttributeType.java index 89e0a4d8902..019faa4c549 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityAttributeType.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityAttributeType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityNaturalLanguageMapping.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityNaturalLanguageMapping.java index d2577949075..8d1e742b4ff 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityNaturalLanguageMapping.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityNaturalLanguageMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityType.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityType.java index 716eef8b532..9ed61bacb39 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityType.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/EntityType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ErrorBody.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ErrorBody.java index 14bad6ba7a9..51aed779e8b 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ErrorBody.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ErrorBody.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ExportBotDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ExportBotDetails.java index aff370fd5d5..66a4330856e 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ExportBotDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ExportBotDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ExportDigitalAssistantDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ExportDigitalAssistantDetails.java index 22c6cd4b318..bf033b4c685 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ExportDigitalAssistantDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ExportDigitalAssistantDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ExportSkillDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ExportSkillDetails.java index bf5ff667547..ec5dcc93dc4 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ExportSkillDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ExportSkillDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ExtendDigitalAssistantDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ExtendDigitalAssistantDetails.java index 73c1a114889..509c333b4b9 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ExtendDigitalAssistantDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ExtendDigitalAssistantDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ExtendSkillDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ExtendSkillDetails.java index 7122ddddb9e..90226390e16 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ExtendSkillDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ExtendSkillDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/FacebookChannel.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/FacebookChannel.java index 56642a829fb..09b61984a0d 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/FacebookChannel.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/FacebookChannel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ImportBotDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ImportBotDetails.java index dc02d06544a..eac9ac46008 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ImportBotDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ImportBotDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ImportContract.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ImportContract.java index 530e1185f8a..831c0cfc073 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ImportContract.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ImportContract.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ImportedPackage.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ImportedPackage.java index 0680c046741..b0518f97e4f 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ImportedPackage.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ImportedPackage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ImportedPackageSummary.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ImportedPackageSummary.java index f9f6e63f342..b8c1e25f2c8 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ImportedPackageSummary.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ImportedPackageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/IosChannel.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/IosChannel.java index b31debf3534..e27a489d464 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/IosChannel.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/IosChannel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/LanguageMapping.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/LanguageMapping.java index 9ae6d9fb27d..69995e0eea3 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/LanguageMapping.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/LanguageMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/LifecycleState.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/LifecycleState.java index 4e4b9e271da..c69169c2d81 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/LifecycleState.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/LifecycleState.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/MSTeamsChannel.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/MSTeamsChannel.java index c12e3423f78..1c142dad7fe 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/MSTeamsChannel.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/MSTeamsChannel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/MetadataProperty.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/MetadataProperty.java index 2d3201ec8f6..0495e783ccc 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/MetadataProperty.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/MetadataProperty.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/NameMapping.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/NameMapping.java index 5e07615519d..f46569d7e74 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/NameMapping.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/NameMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OSSChannel.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OSSChannel.java index 75759a319dc..ddecc20ba7c 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OSSChannel.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OSSChannel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstance.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstance.java index 41641b3fcb4..61f7bb3e489 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstance.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstance.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceAttachment.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceAttachment.java index 41e9438135b..24f08ce8d51 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceAttachment.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceAttachmentCollection.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceAttachmentCollection.java index b9879d00cb4..65869d11e24 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceAttachmentCollection.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceAttachmentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceAttachmentOwner.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceAttachmentOwner.java index 44d76362129..ad8a1938141 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceAttachmentOwner.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceAttachmentOwner.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceAttachmentSummary.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceAttachmentSummary.java index f4edba04178..2d039a95720 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceAttachmentSummary.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceAttachmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceOwner.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceOwner.java index e4599df8c50..1febb9e2fc9 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceOwner.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceOwner.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceSummary.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceSummary.java index 1d9b55a5c2a..e9effb836f9 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceSummary.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaInstanceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpoint.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpoint.java index 80e34b672b6..44c7cccb864 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpoint.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpoint.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointAttachment.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointAttachment.java index 6c7368471ed..f86ee54802d 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointAttachment.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointAttachment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointAttachmentCollection.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointAttachmentCollection.java index 7bf2495fded..4f72fa49173 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointAttachmentCollection.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointAttachmentCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointAttachmentSummary.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointAttachmentSummary.java index c52a2039394..ffd5e8acf65 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointAttachmentSummary.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointAttachmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointCollection.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointCollection.java index 0db44455b0e..2b756c39690 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointCollection.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointScanProxy.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointScanProxy.java index bca51bebfb5..b01fb42a3f7 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointScanProxy.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointScanProxy.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointScanProxyCollection.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointScanProxyCollection.java index a469f708c20..c96b7eaa52a 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointScanProxyCollection.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointScanProxyCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointScanProxySummary.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointScanProxySummary.java index 101ff887505..2da3e8e51ab 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointScanProxySummary.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointScanProxySummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointSummary.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointSummary.java index 34311176de3..cc1a80af960 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointSummary.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OdaPrivateEndpointSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OsvcChannel.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OsvcChannel.java index 98ac71ebd5f..00de9cf7f08 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OsvcChannel.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OsvcChannel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OsvcServiceType.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OsvcServiceType.java index d66df179de0..db86ad741ff 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OsvcServiceType.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/OsvcServiceType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/PackageItem.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/PackageItem.java index 64e4aa89c9f..51d83aca65e 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/PackageItem.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/PackageItem.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/PackageSummary.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/PackageSummary.java index 3832c619121..7f4616f6a7d 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/PackageSummary.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/PackageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Parameter.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Parameter.java index 48e13fcc725..0d47fcf6b5c 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Parameter.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Parameter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ParameterDefinition.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ParameterDefinition.java index daaf1c8b270..24dd2b6973b 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ParameterDefinition.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ParameterDefinition.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ParameterType.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ParameterType.java index 3727ef43a50..3bbf8ec1de9 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ParameterType.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ParameterType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ResourceTypeDefaultParameterValues.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ResourceTypeDefaultParameterValues.java index 852d0596277..93cdca34e8b 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ResourceTypeDefaultParameterValues.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ResourceTypeDefaultParameterValues.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ResourceTypeImportContract.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ResourceTypeImportContract.java index 9d09e610a99..b417ab19df4 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ResourceTypeImportContract.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ResourceTypeImportContract.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ResourceTypeMetadata.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ResourceTypeMetadata.java index fbd49345bdf..540a39b5c21 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ResourceTypeMetadata.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ResourceTypeMetadata.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/RestrictedOperation.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/RestrictedOperation.java index ab910330f20..e793b21d0a2 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/RestrictedOperation.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/RestrictedOperation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ScanListenerInfo.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ScanListenerInfo.java index 70bffb1007d..4136d33a675 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ScanListenerInfo.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ScanListenerInfo.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ServiceCloudChannel.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ServiceCloudChannel.java index 3b7eaede90e..ffc35fde8f6 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ServiceCloudChannel.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ServiceCloudChannel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ServiceCloudClientType.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ServiceCloudClientType.java index ea471a07b60..f232edc63bc 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ServiceCloudClientType.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ServiceCloudClientType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Skill.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Skill.java index 06764d4c8e7..9deffd18525 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Skill.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Skill.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SkillCollection.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SkillCollection.java index d7ef58a91a9..5684408a43a 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SkillCollection.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SkillCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SkillParameter.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SkillParameter.java index 0afd43c37f2..a4d544f6636 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SkillParameter.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SkillParameter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SkillParameterCollection.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SkillParameterCollection.java index fa484495c6a..d7b8a2c11cd 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SkillParameterCollection.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SkillParameterCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SkillParameterSummary.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SkillParameterSummary.java index 362b29d70b2..7835f2c30a5 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SkillParameterSummary.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SkillParameterSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SkillSummary.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SkillSummary.java index cc2cb8b4fcd..afe5499547c 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SkillSummary.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SkillSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SlackChannel.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SlackChannel.java index 57d2a7392a4..f2421b1ba76 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SlackChannel.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/SlackChannel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/StaticEntityValue.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/StaticEntityValue.java index 3f4db4c9bb6..55587dca82b 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/StaticEntityValue.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/StaticEntityValue.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/StaticEntityValueNaturalLanguageMapping.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/StaticEntityValueNaturalLanguageMapping.java index 83c5010434a..f91d68326cd 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/StaticEntityValueNaturalLanguageMapping.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/StaticEntityValueNaturalLanguageMapping.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/StorageLocation.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/StorageLocation.java index 45615ebcf96..8a956d2d678 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/StorageLocation.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/StorageLocation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TemporalPreference.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TemporalPreference.java index 4bc4b5d51e9..a8451df1d13 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TemporalPreference.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TemporalPreference.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TestChannel.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TestChannel.java index 7b729838dab..95b3c4cc440 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TestChannel.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TestChannel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TrainSkillDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TrainSkillDetails.java index 45fe7d3cfcf..1b932ef89eb 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TrainSkillDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TrainSkillDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TrainSkillParameter.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TrainSkillParameter.java index 2935f1aa0c6..89a8a0cceb3 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TrainSkillParameter.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TrainSkillParameter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TrainSkillParameterType.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TrainSkillParameterType.java index 569b5b943ae..34b4dfcddd5 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TrainSkillParameterType.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TrainSkillParameterType.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TrainSkillQueryEntityParameter.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TrainSkillQueryEntityParameter.java index 42835c6b053..9f949493f7e 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TrainSkillQueryEntityParameter.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TrainSkillQueryEntityParameter.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TranslationService.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TranslationService.java index 10d23ebe8e7..41493c628a8 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TranslationService.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TranslationService.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Translator.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Translator.java index 1e79aae08cc..a2a2c08ebbe 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Translator.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/Translator.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TranslatorCollection.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TranslatorCollection.java index 03d77415a6a..9b66dad4052 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TranslatorCollection.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TranslatorCollection.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TranslatorSummary.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TranslatorSummary.java index e32710669e8..77d929f1b6a 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TranslatorSummary.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TranslatorSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TwilioChannel.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TwilioChannel.java index 12b25fbdca8..30e8335fea8 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TwilioChannel.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/TwilioChannel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateAndroidChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateAndroidChannelDetails.java index 4c9ee8c0f75..84fd4a33af9 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateAndroidChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateAndroidChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateAppEventChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateAppEventChannelDetails.java index de522802495..70ef115d9d7 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateAppEventChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateAppEventChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateApplicationChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateApplicationChannelDetails.java index 3ac96968673..bc924a4e556 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateApplicationChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateApplicationChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateAuthenticationProviderDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateAuthenticationProviderDetails.java index cd64404ad4e..23d07468e0d 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateAuthenticationProviderDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateAuthenticationProviderDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateChannelDetails.java index 9dcdddff18a..d6a84ce597e 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateCortanaChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateCortanaChannelDetails.java index ca4f062ab83..6439068df68 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateCortanaChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateCortanaChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateDigitalAssistantDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateDigitalAssistantDetails.java index 04f8548caf5..f400c53a4b7 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateDigitalAssistantDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateDigitalAssistantDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateDigitalAssistantParameterDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateDigitalAssistantParameterDetails.java index ebed55d19ee..afa61c7113f 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateDigitalAssistantParameterDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateDigitalAssistantParameterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateFacebookChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateFacebookChannelDetails.java index 31cad8b22fe..04021ae1949 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateFacebookChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateFacebookChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateImportedPackageDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateImportedPackageDetails.java index 4ddec26ec21..b270e7cd4d4 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateImportedPackageDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateImportedPackageDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateIosChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateIosChannelDetails.java index ff691a3b78a..01ae8675391 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateIosChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateIosChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateMSTeamsChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateMSTeamsChannelDetails.java index 14bdbaa3d75..e922aad2bb6 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateMSTeamsChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateMSTeamsChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateOSSChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateOSSChannelDetails.java index 7c710414b26..9d6fd12ae42 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateOSSChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateOSSChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateOdaInstanceAttachmentDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateOdaInstanceAttachmentDetails.java index 2583c1ad66f..b4b66d4fbb2 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateOdaInstanceAttachmentDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateOdaInstanceAttachmentDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateOdaInstanceDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateOdaInstanceDetails.java index a801fe5d445..6b183a16db7 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateOdaInstanceDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateOdaInstanceDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateOdaPrivateEndpointDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateOdaPrivateEndpointDetails.java index 6fa59670dcd..6bfe7a31d1a 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateOdaPrivateEndpointDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateOdaPrivateEndpointDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateOsvcChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateOsvcChannelDetails.java index 08520d0fd3e..15ff1ec5ac2 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateOsvcChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateOsvcChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateServiceCloudChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateServiceCloudChannelDetails.java index 83e7cbcdb8c..d9e5b77c48e 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateServiceCloudChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateServiceCloudChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateSkillDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateSkillDetails.java index e3feb0fc9f7..5d4ea391ec8 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateSkillDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateSkillDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateSkillParameterDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateSkillParameterDetails.java index c12e1106d06..bfe43df937e 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateSkillParameterDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateSkillParameterDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateSlackChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateSlackChannelDetails.java index 0d31a4baa23..7c421b00f9a 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateSlackChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateSlackChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateTranslatorDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateTranslatorDetails.java index 7e5c3ee0120..48972658c30 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateTranslatorDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateTranslatorDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateTwilioChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateTwilioChannelDetails.java index f0c56a0b39b..e35baa49f13 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateTwilioChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateTwilioChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateWebChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateWebChannelDetails.java index 2c511a02836..f1914de30bf 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateWebChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateWebChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateWebhookChannelDetails.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateWebhookChannelDetails.java index a4ffac8d88e..53a35b5982e 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateWebhookChannelDetails.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/UpdateWebhookChannelDetails.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ValueListEntity.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ValueListEntity.java index 9097ca03e6e..fa5d4c123f8 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ValueListEntity.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/ValueListEntity.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WebChannel.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WebChannel.java index 8c6d9e1a3f6..1eed593e0d1 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WebChannel.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WebChannel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WebhookChannel.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WebhookChannel.java index d49ca03d16b..cc821273c4b 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WebhookChannel.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WebhookChannel.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WebhookPayloadVersion.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WebhookPayloadVersion.java index 3ae0e38c5f4..7d465598419 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WebhookPayloadVersion.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WebhookPayloadVersion.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WorkRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WorkRequest.java index a540b09433e..1db3a371cee 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WorkRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WorkRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WorkRequestError.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WorkRequestError.java index e2145815789..27022b3daf7 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WorkRequestError.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WorkRequestError.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WorkRequestLogEntry.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WorkRequestLogEntry.java index c1fd2ccb498..fd4286b8645 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WorkRequestLogEntry.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WorkRequestLogEntry.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WorkRequestResource.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WorkRequestResource.java index fb36464a1c3..0dffcd3ad92 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WorkRequestResource.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WorkRequestResource.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WorkRequestSummary.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WorkRequestSummary.java index 4aa55d33ee4..739416ce63f 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WorkRequestSummary.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/model/WorkRequestSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.model; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/BulkCreateSkillEntitiesRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/BulkCreateSkillEntitiesRequest.java index 480eb155961..58012c3423f 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/BulkCreateSkillEntitiesRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/BulkCreateSkillEntitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CascadingDeleteSkillCustomEntitiesRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CascadingDeleteSkillCustomEntitiesRequest.java index 74ed145f7bc..a3d69135d80 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CascadingDeleteSkillCustomEntitiesRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CascadingDeleteSkillCustomEntitiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ChangeOdaInstanceCompartmentRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ChangeOdaInstanceCompartmentRequest.java index 45b30507724..75c94f9e8ac 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ChangeOdaInstanceCompartmentRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ChangeOdaInstanceCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ChangeOdaPrivateEndpointCompartmentRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ChangeOdaPrivateEndpointCompartmentRequest.java index 98cf1246beb..53af566ab47 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ChangeOdaPrivateEndpointCompartmentRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ChangeOdaPrivateEndpointCompartmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ConfigureDigitalAssistantParametersRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ConfigureDigitalAssistantParametersRequest.java index 33dc491d54a..95713a22f90 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ConfigureDigitalAssistantParametersRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ConfigureDigitalAssistantParametersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateAuthenticationProviderRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateAuthenticationProviderRequest.java index 26f6b095356..336fa00762f 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateAuthenticationProviderRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateAuthenticationProviderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateChannelRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateChannelRequest.java index 6b2cd7c7161..bc72c6cf842 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateChannelRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateChannelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateDigitalAssistantRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateDigitalAssistantRequest.java index 1278351ebe1..754bc82b131 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateDigitalAssistantRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateDigitalAssistantRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateImportedPackageRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateImportedPackageRequest.java index 2819fcb7285..bebe72da546 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateImportedPackageRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateImportedPackageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateOdaInstanceAttachmentRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateOdaInstanceAttachmentRequest.java index 09b84bd22a9..d68e7bdf9b8 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateOdaInstanceAttachmentRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateOdaInstanceAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateOdaInstanceRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateOdaInstanceRequest.java index feee26bd124..0935d69406c 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateOdaInstanceRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateOdaInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateOdaPrivateEndpointAttachmentRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateOdaPrivateEndpointAttachmentRequest.java index fed0ca1fc7c..ab7aaa80c03 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateOdaPrivateEndpointAttachmentRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateOdaPrivateEndpointAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateOdaPrivateEndpointRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateOdaPrivateEndpointRequest.java index a3b02b91c5c..65c1de6cd17 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateOdaPrivateEndpointRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateOdaPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateOdaPrivateEndpointScanProxyRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateOdaPrivateEndpointScanProxyRequest.java index c407c5f2d78..e4e1557d5a6 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateOdaPrivateEndpointScanProxyRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateOdaPrivateEndpointScanProxyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateSkillParameterRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateSkillParameterRequest.java index a8692870581..ddfdc65c02f 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateSkillParameterRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateSkillParameterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateSkillRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateSkillRequest.java index 5e70aefcb51..96b11d68b60 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateSkillRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateSkillRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateTranslatorRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateTranslatorRequest.java index 90ff634015d..77d3c102fd7 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateTranslatorRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/CreateTranslatorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteAuthenticationProviderRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteAuthenticationProviderRequest.java index 1ead00da5bb..468985442f7 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteAuthenticationProviderRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteAuthenticationProviderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteChannelRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteChannelRequest.java index 7c274ca5e0a..43ce6e3d636 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteChannelRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteChannelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteDigitalAssistantRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteDigitalAssistantRequest.java index 60e7e39ae97..afe496b5be1 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteDigitalAssistantRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteDigitalAssistantRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteImportedPackageRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteImportedPackageRequest.java index 68131c09f93..0f75de9908a 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteImportedPackageRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteImportedPackageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteOdaInstanceAttachmentRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteOdaInstanceAttachmentRequest.java index 26271b801df..11a971fd4fb 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteOdaInstanceAttachmentRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteOdaInstanceAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteOdaInstanceRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteOdaInstanceRequest.java index 0202e0f3227..c784d247d04 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteOdaInstanceRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteOdaInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteOdaPrivateEndpointAttachmentRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteOdaPrivateEndpointAttachmentRequest.java index 3456eeb36c1..22ec5697cb9 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteOdaPrivateEndpointAttachmentRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteOdaPrivateEndpointAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteOdaPrivateEndpointRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteOdaPrivateEndpointRequest.java index 50005d9539c..3c7b5e3a474 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteOdaPrivateEndpointRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteOdaPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteOdaPrivateEndpointScanProxyRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteOdaPrivateEndpointScanProxyRequest.java index 6ae404925e8..beb6f72241d 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteOdaPrivateEndpointScanProxyRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteOdaPrivateEndpointScanProxyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteSkillParameterRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteSkillParameterRequest.java index f239a07bb10..88940b3d78c 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteSkillParameterRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteSkillParameterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteSkillRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteSkillRequest.java index c63e27397a0..e4435ad4549 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteSkillRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteSkillRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteTranslatorRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteTranslatorRequest.java index 1e6a912b9bb..18c4aa3bfc0 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteTranslatorRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/DeleteTranslatorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ExportDigitalAssistantRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ExportDigitalAssistantRequest.java index 2ec7aa519f7..472fd8dd7a9 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ExportDigitalAssistantRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ExportDigitalAssistantRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ExportSkillRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ExportSkillRequest.java index 0cd78310d83..5c1fb93fbed 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ExportSkillRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ExportSkillRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetAuthenticationProviderRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetAuthenticationProviderRequest.java index a2a67675009..4102c4d2689 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetAuthenticationProviderRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetAuthenticationProviderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetChannelRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetChannelRequest.java index e05c6d1893a..205aeef269a 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetChannelRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetChannelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetDigitalAssistantParameterRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetDigitalAssistantParameterRequest.java index 4ceb065c74c..cd3c05d0fb7 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetDigitalAssistantParameterRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetDigitalAssistantParameterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetDigitalAssistantRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetDigitalAssistantRequest.java index 48d51e3afb8..5ca64c4dd6b 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetDigitalAssistantRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetDigitalAssistantRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetImportedPackageRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetImportedPackageRequest.java index 312a3951a31..2a6cf3d023a 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetImportedPackageRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetImportedPackageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetOdaInstanceAttachmentRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetOdaInstanceAttachmentRequest.java index 7416e4a0980..07730284ad4 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetOdaInstanceAttachmentRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetOdaInstanceAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetOdaInstanceRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetOdaInstanceRequest.java index c69c57a2a91..2413449491e 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetOdaInstanceRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetOdaInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetOdaPrivateEndpointAttachmentRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetOdaPrivateEndpointAttachmentRequest.java index 476165043bd..0b903aa48d0 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetOdaPrivateEndpointAttachmentRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetOdaPrivateEndpointAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetOdaPrivateEndpointRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetOdaPrivateEndpointRequest.java index 89a263d39e2..1a2a4249af3 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetOdaPrivateEndpointRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetOdaPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetOdaPrivateEndpointScanProxyRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetOdaPrivateEndpointScanProxyRequest.java index c522c483181..34279bdedd9 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetOdaPrivateEndpointScanProxyRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetOdaPrivateEndpointScanProxyRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetPackageRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetPackageRequest.java index ca1923eb09c..ce3aa79d1d4 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetPackageRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetPackageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetSkillParameterRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetSkillParameterRequest.java index b3a7686f52e..45a7f02bc2f 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetSkillParameterRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetSkillParameterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetSkillRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetSkillRequest.java index 1cdb1c13204..cc419b612ba 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetSkillRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetSkillRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetTranslatorRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetTranslatorRequest.java index bc0bdb8ddf8..599dfdc610c 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetTranslatorRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetTranslatorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetWorkRequestRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetWorkRequestRequest.java index ee553fe10aa..75a2467e756 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetWorkRequestRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/GetWorkRequestRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ImportBotRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ImportBotRequest.java index cf4a59002fc..90e1f597522 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ImportBotRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ImportBotRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListAuthenticationProvidersRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListAuthenticationProvidersRequest.java index 14e4b2b68fc..6e14b7e1a40 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListAuthenticationProvidersRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListAuthenticationProvidersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListChannelsRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListChannelsRequest.java index 05472433b17..4fe31d0ffba 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListChannelsRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListChannelsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListDigitalAssistantParametersRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListDigitalAssistantParametersRequest.java index 1e33e0df614..8f844d88732 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListDigitalAssistantParametersRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListDigitalAssistantParametersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListDigitalAssistantsRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListDigitalAssistantsRequest.java index 1ea27a3d2b8..7bd32884a98 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListDigitalAssistantsRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListDigitalAssistantsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListImportedPackagesRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListImportedPackagesRequest.java index a0fef042477..b83455395ee 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListImportedPackagesRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListImportedPackagesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListOdaInstanceAttachmentsRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListOdaInstanceAttachmentsRequest.java index 4dae3baee8e..ce778638c0f 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListOdaInstanceAttachmentsRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListOdaInstanceAttachmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListOdaInstancesRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListOdaInstancesRequest.java index b0e1b57c8d0..0383c514713 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListOdaInstancesRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListOdaInstancesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListOdaPrivateEndpointAttachmentsRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListOdaPrivateEndpointAttachmentsRequest.java index 0ee6ebc1aa7..100ad5d8afe 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListOdaPrivateEndpointAttachmentsRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListOdaPrivateEndpointAttachmentsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListOdaPrivateEndpointScanProxiesRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListOdaPrivateEndpointScanProxiesRequest.java index 622d0a8dc23..b260e2feed9 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListOdaPrivateEndpointScanProxiesRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListOdaPrivateEndpointScanProxiesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListOdaPrivateEndpointsRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListOdaPrivateEndpointsRequest.java index deece404c45..de1274eac87 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListOdaPrivateEndpointsRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListOdaPrivateEndpointsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListPackagesRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListPackagesRequest.java index 946cd982736..e0091720c1c 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListPackagesRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListPackagesRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListSkillParametersRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListSkillParametersRequest.java index 77de9eec7f9..98fad30ae80 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListSkillParametersRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListSkillParametersRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListSkillsRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListSkillsRequest.java index 3b6bbd10057..e38dc9693b0 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListSkillsRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListSkillsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListTranslatorsRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListTranslatorsRequest.java index 37bb1f454f3..24a7c315f60 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListTranslatorsRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListTranslatorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListWorkRequestErrorsRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListWorkRequestErrorsRequest.java index 51a251e5a32..4b1eb4be940 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListWorkRequestErrorsRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListWorkRequestErrorsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListWorkRequestLogsRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListWorkRequestLogsRequest.java index 258de8ab395..aef47ed353a 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListWorkRequestLogsRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListWorkRequestLogsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListWorkRequestsRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListWorkRequestsRequest.java index bdcc4958585..76b4511a70f 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListWorkRequestsRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/ListWorkRequestsRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/PublishDigitalAssistantRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/PublishDigitalAssistantRequest.java index ea97652a7c4..d6aaed19f73 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/PublishDigitalAssistantRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/PublishDigitalAssistantRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/PublishSkillRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/PublishSkillRequest.java index c3a1d31c78a..8f3f82afc12 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/PublishSkillRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/PublishSkillRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/RotateChannelKeysRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/RotateChannelKeysRequest.java index eaa404d88ea..89fabbcf96d 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/RotateChannelKeysRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/RotateChannelKeysRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/StartChannelRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/StartChannelRequest.java index a0d104d67be..252002420ca 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/StartChannelRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/StartChannelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/StartOdaInstanceRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/StartOdaInstanceRequest.java index 8c501a762eb..b1a644adb8e 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/StartOdaInstanceRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/StartOdaInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/StopChannelRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/StopChannelRequest.java index 7ab5abf2123..de4aa5be066 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/StopChannelRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/StopChannelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/StopOdaInstanceRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/StopOdaInstanceRequest.java index fd5b8939475..d093acadeef 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/StopOdaInstanceRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/StopOdaInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/TrainSkillRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/TrainSkillRequest.java index 5477ce9e6a5..d709bdf02f7 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/TrainSkillRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/TrainSkillRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateAuthenticationProviderRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateAuthenticationProviderRequest.java index d59980e973d..2ba3a986be7 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateAuthenticationProviderRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateAuthenticationProviderRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateChannelRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateChannelRequest.java index 1f5a873d8a9..18d359066e8 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateChannelRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateChannelRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateDigitalAssistantParameterRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateDigitalAssistantParameterRequest.java index 41e952e5ad7..923425c793f 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateDigitalAssistantParameterRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateDigitalAssistantParameterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateDigitalAssistantRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateDigitalAssistantRequest.java index c925f2e4c26..0cc6cd98c1a 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateDigitalAssistantRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateDigitalAssistantRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateImportedPackageRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateImportedPackageRequest.java index 63dd6503914..36d9cfa4f02 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateImportedPackageRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateImportedPackageRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateOdaInstanceAttachmentRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateOdaInstanceAttachmentRequest.java index f0b889162ba..59b90794764 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateOdaInstanceAttachmentRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateOdaInstanceAttachmentRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateOdaInstanceRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateOdaInstanceRequest.java index 6baf92c2e42..5e436ebb8f8 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateOdaInstanceRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateOdaInstanceRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateOdaPrivateEndpointRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateOdaPrivateEndpointRequest.java index 026d5ee6cbb..442d15557b7 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateOdaPrivateEndpointRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateOdaPrivateEndpointRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateSkillParameterRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateSkillParameterRequest.java index 90213c7ee06..87f220f3d64 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateSkillParameterRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateSkillParameterRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateSkillRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateSkillRequest.java index 4ca9e33bab0..4ec020729cf 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateSkillRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateSkillRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateTranslatorRequest.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateTranslatorRequest.java index c37c666f40a..ed4c9cc15f7 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateTranslatorRequest.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/requests/UpdateTranslatorRequest.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.requests; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/BulkCreateSkillEntitiesResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/BulkCreateSkillEntitiesResponse.java index bf3544e35a7..e6a0cc0cfdb 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/BulkCreateSkillEntitiesResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/BulkCreateSkillEntitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CascadingDeleteSkillCustomEntitiesResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CascadingDeleteSkillCustomEntitiesResponse.java index e4413369639..4b643b0c80c 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CascadingDeleteSkillCustomEntitiesResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CascadingDeleteSkillCustomEntitiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ChangeOdaInstanceCompartmentResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ChangeOdaInstanceCompartmentResponse.java index 608a99cb465..405eebe9a06 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ChangeOdaInstanceCompartmentResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ChangeOdaInstanceCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ChangeOdaPrivateEndpointCompartmentResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ChangeOdaPrivateEndpointCompartmentResponse.java index e2b8b50cdde..7170402b1c6 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ChangeOdaPrivateEndpointCompartmentResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ChangeOdaPrivateEndpointCompartmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ConfigureDigitalAssistantParametersResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ConfigureDigitalAssistantParametersResponse.java index 7f4248e220a..00bcc0cb871 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ConfigureDigitalAssistantParametersResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ConfigureDigitalAssistantParametersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateAuthenticationProviderResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateAuthenticationProviderResponse.java index 2659b637aec..f8aaf78973d 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateAuthenticationProviderResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateAuthenticationProviderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateChannelResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateChannelResponse.java index 3121fac0b8d..d1aba95f5fb 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateChannelResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateChannelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateDigitalAssistantResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateDigitalAssistantResponse.java index eba38e2a915..99d34d30e9c 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateDigitalAssistantResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateDigitalAssistantResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateImportedPackageResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateImportedPackageResponse.java index c4331b97394..50766795dbf 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateImportedPackageResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateImportedPackageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateOdaInstanceAttachmentResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateOdaInstanceAttachmentResponse.java index e7bd4e1e649..8478ac6e6b8 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateOdaInstanceAttachmentResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateOdaInstanceAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateOdaInstanceResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateOdaInstanceResponse.java index 896555ac665..800e5e787d0 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateOdaInstanceResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateOdaInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateOdaPrivateEndpointAttachmentResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateOdaPrivateEndpointAttachmentResponse.java index 0aabfca997c..c1379652c07 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateOdaPrivateEndpointAttachmentResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateOdaPrivateEndpointAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateOdaPrivateEndpointResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateOdaPrivateEndpointResponse.java index 9fbb575b390..c1136803378 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateOdaPrivateEndpointResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateOdaPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateOdaPrivateEndpointScanProxyResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateOdaPrivateEndpointScanProxyResponse.java index 5017fa5db24..7b31d91ed78 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateOdaPrivateEndpointScanProxyResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateOdaPrivateEndpointScanProxyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateSkillParameterResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateSkillParameterResponse.java index 07bcd5fd87c..2568c57b830 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateSkillParameterResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateSkillParameterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateSkillResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateSkillResponse.java index 3405637240b..d76cc6c42a4 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateSkillResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateSkillResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateTranslatorResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateTranslatorResponse.java index 79bbd58e6b4..fca046e0250 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateTranslatorResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/CreateTranslatorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteAuthenticationProviderResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteAuthenticationProviderResponse.java index 207d447a0cb..08239d856ef 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteAuthenticationProviderResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteAuthenticationProviderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteChannelResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteChannelResponse.java index f71fc673d19..9277521988c 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteChannelResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteChannelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteDigitalAssistantResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteDigitalAssistantResponse.java index daa289e99ce..91de7de4b40 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteDigitalAssistantResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteDigitalAssistantResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteImportedPackageResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteImportedPackageResponse.java index 6c19804fe80..c95ef4ee62b 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteImportedPackageResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteImportedPackageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteOdaInstanceAttachmentResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteOdaInstanceAttachmentResponse.java index 88c71df5d6e..2f948044d57 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteOdaInstanceAttachmentResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteOdaInstanceAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteOdaInstanceResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteOdaInstanceResponse.java index 92a2a85b3d4..d8395ec08fc 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteOdaInstanceResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteOdaInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteOdaPrivateEndpointAttachmentResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteOdaPrivateEndpointAttachmentResponse.java index 813703c1985..880c8b3d2d6 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteOdaPrivateEndpointAttachmentResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteOdaPrivateEndpointAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteOdaPrivateEndpointResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteOdaPrivateEndpointResponse.java index ca58c45d68c..8225a630920 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteOdaPrivateEndpointResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteOdaPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteOdaPrivateEndpointScanProxyResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteOdaPrivateEndpointScanProxyResponse.java index efbbfb34e8d..4900ecc38c5 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteOdaPrivateEndpointScanProxyResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteOdaPrivateEndpointScanProxyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteSkillParameterResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteSkillParameterResponse.java index e557156ad2a..a629ea87a01 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteSkillParameterResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteSkillParameterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteSkillResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteSkillResponse.java index 9354e68f096..d4af3b5d73c 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteSkillResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteSkillResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteTranslatorResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteTranslatorResponse.java index 2e51923e706..42eb2dd8ace 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteTranslatorResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/DeleteTranslatorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ExportDigitalAssistantResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ExportDigitalAssistantResponse.java index f1403461de0..be66b76d45d 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ExportDigitalAssistantResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ExportDigitalAssistantResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ExportSkillResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ExportSkillResponse.java index 59dc218ead6..b027d520d9d 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ExportSkillResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ExportSkillResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetAuthenticationProviderResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetAuthenticationProviderResponse.java index fbf97acea68..91780635a26 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetAuthenticationProviderResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetAuthenticationProviderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetChannelResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetChannelResponse.java index 67c9c79750d..bb845ca6301 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetChannelResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetChannelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetDigitalAssistantParameterResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetDigitalAssistantParameterResponse.java index 4171c6ebb59..983d9a7d759 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetDigitalAssistantParameterResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetDigitalAssistantParameterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetDigitalAssistantResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetDigitalAssistantResponse.java index a9e30c4983b..2a57ddaf67f 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetDigitalAssistantResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetDigitalAssistantResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetImportedPackageResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetImportedPackageResponse.java index 8a3231aa673..ea1d59b6c98 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetImportedPackageResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetImportedPackageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetOdaInstanceAttachmentResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetOdaInstanceAttachmentResponse.java index c604ea04a5b..39a85dbc233 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetOdaInstanceAttachmentResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetOdaInstanceAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetOdaInstanceResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetOdaInstanceResponse.java index cddf8f6b63f..adf5a51e360 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetOdaInstanceResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetOdaInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetOdaPrivateEndpointAttachmentResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetOdaPrivateEndpointAttachmentResponse.java index e6e7d5b0d51..3459b1819a3 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetOdaPrivateEndpointAttachmentResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetOdaPrivateEndpointAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetOdaPrivateEndpointResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetOdaPrivateEndpointResponse.java index d81d026b07f..fbfcb525cfc 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetOdaPrivateEndpointResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetOdaPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetOdaPrivateEndpointScanProxyResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetOdaPrivateEndpointScanProxyResponse.java index d05396c71a0..b4a96e6d26d 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetOdaPrivateEndpointScanProxyResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetOdaPrivateEndpointScanProxyResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetPackageResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetPackageResponse.java index 289e6524e51..c5df04af15a 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetPackageResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetPackageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetSkillParameterResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetSkillParameterResponse.java index 76b3e7e2541..137798a8bf1 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetSkillParameterResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetSkillParameterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetSkillResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetSkillResponse.java index d30e5e5a16f..dd4071d52b0 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetSkillResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetSkillResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetTranslatorResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetTranslatorResponse.java index 05b6912ded1..de389a22997 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetTranslatorResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetTranslatorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetWorkRequestResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetWorkRequestResponse.java index 1d5c5f64713..ce4d56ebf75 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetWorkRequestResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/GetWorkRequestResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ImportBotResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ImportBotResponse.java index bdd35442915..405f5a3194c 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ImportBotResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ImportBotResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListAuthenticationProvidersResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListAuthenticationProvidersResponse.java index 3ed3adc838e..7ddd3213e0c 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListAuthenticationProvidersResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListAuthenticationProvidersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListChannelsResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListChannelsResponse.java index 1ee40f1feaa..4c328e385b6 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListChannelsResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListChannelsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListDigitalAssistantParametersResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListDigitalAssistantParametersResponse.java index 8858239da4c..2fce21085ed 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListDigitalAssistantParametersResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListDigitalAssistantParametersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListDigitalAssistantsResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListDigitalAssistantsResponse.java index ecdc0aaf189..9067bd4ee9a 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListDigitalAssistantsResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListDigitalAssistantsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListImportedPackagesResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListImportedPackagesResponse.java index 629cb5eb588..9b516dfdb80 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListImportedPackagesResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListImportedPackagesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListOdaInstanceAttachmentsResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListOdaInstanceAttachmentsResponse.java index f19ccc13995..3d07ac2aebc 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListOdaInstanceAttachmentsResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListOdaInstanceAttachmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListOdaInstancesResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListOdaInstancesResponse.java index cc83c491f30..4da3ee9cbe6 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListOdaInstancesResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListOdaInstancesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListOdaPrivateEndpointAttachmentsResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListOdaPrivateEndpointAttachmentsResponse.java index f69dfba3f8e..00b829f45ad 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListOdaPrivateEndpointAttachmentsResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListOdaPrivateEndpointAttachmentsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListOdaPrivateEndpointScanProxiesResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListOdaPrivateEndpointScanProxiesResponse.java index d878a3ef6b9..803ab583ce5 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListOdaPrivateEndpointScanProxiesResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListOdaPrivateEndpointScanProxiesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListOdaPrivateEndpointsResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListOdaPrivateEndpointsResponse.java index 2ad2bad3356..7e7007e6bb8 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListOdaPrivateEndpointsResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListOdaPrivateEndpointsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListPackagesResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListPackagesResponse.java index 2daebc8a21b..af0a0fea5fc 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListPackagesResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListPackagesResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListSkillParametersResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListSkillParametersResponse.java index 72e599c930e..00eaf6c4be6 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListSkillParametersResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListSkillParametersResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListSkillsResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListSkillsResponse.java index 350549e3664..bec18cb8da3 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListSkillsResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListSkillsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListTranslatorsResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListTranslatorsResponse.java index 2f7398002e1..af9615ae131 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListTranslatorsResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListTranslatorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListWorkRequestErrorsResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListWorkRequestErrorsResponse.java index d8e24d605df..39067c2a294 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListWorkRequestErrorsResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListWorkRequestErrorsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListWorkRequestLogsResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListWorkRequestLogsResponse.java index ac7ba101c8c..d2a3efed284 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListWorkRequestLogsResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListWorkRequestLogsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListWorkRequestsResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListWorkRequestsResponse.java index 16a40bbc29a..c487f86b168 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListWorkRequestsResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/ListWorkRequestsResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/PublishDigitalAssistantResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/PublishDigitalAssistantResponse.java index d97bf995223..83e42ff0a25 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/PublishDigitalAssistantResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/PublishDigitalAssistantResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/PublishSkillResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/PublishSkillResponse.java index 4c12808fc11..40e1aa60f42 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/PublishSkillResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/PublishSkillResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/RotateChannelKeysResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/RotateChannelKeysResponse.java index b49a45af1a8..d5bd7932d2d 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/RotateChannelKeysResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/RotateChannelKeysResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/StartChannelResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/StartChannelResponse.java index 0555c2e2a28..032552dae61 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/StartChannelResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/StartChannelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/StartOdaInstanceResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/StartOdaInstanceResponse.java index 0db89686986..3463b1de953 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/StartOdaInstanceResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/StartOdaInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/StopChannelResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/StopChannelResponse.java index d4e4b64ccf3..3692517244f 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/StopChannelResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/StopChannelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/StopOdaInstanceResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/StopOdaInstanceResponse.java index 1a6d76e6d69..5e024493354 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/StopOdaInstanceResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/StopOdaInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/TrainSkillResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/TrainSkillResponse.java index 05a92ef9353..062692646fa 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/TrainSkillResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/TrainSkillResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateAuthenticationProviderResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateAuthenticationProviderResponse.java index 716983b7080..b189f48ba83 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateAuthenticationProviderResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateAuthenticationProviderResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateChannelResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateChannelResponse.java index ad8e362f965..c3c9325e54b 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateChannelResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateChannelResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateDigitalAssistantParameterResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateDigitalAssistantParameterResponse.java index e33b7318e6b..b5bdb979e35 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateDigitalAssistantParameterResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateDigitalAssistantParameterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateDigitalAssistantResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateDigitalAssistantResponse.java index 770585b42e1..03c4e899857 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateDigitalAssistantResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateDigitalAssistantResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateImportedPackageResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateImportedPackageResponse.java index b7af82ec252..636c08dbbd7 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateImportedPackageResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateImportedPackageResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateOdaInstanceAttachmentResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateOdaInstanceAttachmentResponse.java index d1031417bfb..e40b312ca3c 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateOdaInstanceAttachmentResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateOdaInstanceAttachmentResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateOdaInstanceResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateOdaInstanceResponse.java index 33d8abdc697..fa92ff2a440 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateOdaInstanceResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateOdaInstanceResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateOdaPrivateEndpointResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateOdaPrivateEndpointResponse.java index 99b0a1cd2c2..8631fe1ff06 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateOdaPrivateEndpointResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateOdaPrivateEndpointResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateSkillParameterResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateSkillParameterResponse.java index 19742352277..46df6d74ba8 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateSkillParameterResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateSkillParameterResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateSkillResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateSkillResponse.java index 1aa03e02f76..44d89a1abbf 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateSkillResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateSkillResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateTranslatorResponse.java b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateTranslatorResponse.java index 67fa97608ab..39dc5fdb73f 100644 --- a/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateTranslatorResponse.java +++ b/bmc-oda/src/main/java/com/oracle/bmc/oda/responses/UpdateTranslatorResponse.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.oda.responses; diff --git a/bmc-oda/src/main/resources/com/oracle/bmc/oda/client.properties b/bmc-oda/src/main/resources/com/oracle/bmc/oda/client.properties index 02608a1ce65..2ee6570be84 100644 --- a/bmc-oda/src/main/resources/com/oracle/bmc/oda/client.properties +++ b/bmc-oda/src/main/resources/com/oracle/bmc/oda/client.properties @@ -1,5 +1,5 @@ # -# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # diff --git a/bmc-onesubscription/pom.xml b/bmc-onesubscription/pom.xml index e95c4ef04f0..180579fa401 100644 --- a/bmc-onesubscription/pom.xml +++ b/bmc-onesubscription/pom.xml @@ -4,7 +4,7 @@ com.oracle.oci.sdk oci-java-sdk - 3.77.2 + 3.78.0 ../pom.xml oci-java-sdk-onesubscription @@ -15,7 +15,7 @@ com.oracle.oci.sdk oci-java-sdk-common - 3.77.2 + 3.78.0 \ No newline at end of file diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/BillingSchedule.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/BillingSchedule.java index cb06d28234f..bbb0a239731 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/BillingSchedule.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/BillingSchedule.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/BillingScheduleAsync.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/BillingScheduleAsync.java index 650a5ed6e59..16173c287db 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/BillingScheduleAsync.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/BillingScheduleAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/BillingScheduleAsyncClient.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/BillingScheduleAsyncClient.java index b2f6d522c09..2495f9c9cca 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/BillingScheduleAsyncClient.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/BillingScheduleAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/BillingScheduleClient.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/BillingScheduleClient.java index 1c8fd372fc9..0932311b52a 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/BillingScheduleClient.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/BillingScheduleClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/BillingSchedulePaginators.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/BillingSchedulePaginators.java index 962a88cb921..7144a9a3eca 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/BillingSchedulePaginators.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/BillingSchedulePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/Commitment.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/Commitment.java index 9670ad40f14..c489a1352a5 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/Commitment.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/Commitment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/CommitmentAsync.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/CommitmentAsync.java index 2c4a7fd376d..59c3364331f 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/CommitmentAsync.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/CommitmentAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/CommitmentAsyncClient.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/CommitmentAsyncClient.java index b73e27d432b..44f46abcdb6 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/CommitmentAsyncClient.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/CommitmentAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/CommitmentClient.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/CommitmentClient.java index 059e708c9e4..3149e40e7a1 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/CommitmentClient.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/CommitmentClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/CommitmentPaginators.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/CommitmentPaginators.java index 0ef69a22d53..1c340b146a7 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/CommitmentPaginators.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/CommitmentPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/ComputedUsage.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/ComputedUsage.java index 756de1a62c8..7d576f56913 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/ComputedUsage.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/ComputedUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/ComputedUsageAsync.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/ComputedUsageAsync.java index 588408663b3..5c62fda81b5 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/ComputedUsageAsync.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/ComputedUsageAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/ComputedUsageAsyncClient.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/ComputedUsageAsyncClient.java index 83f78772746..03c79420a04 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/ComputedUsageAsyncClient.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/ComputedUsageAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/ComputedUsageClient.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/ComputedUsageClient.java index 5c0ac634bb1..db02dea0c8e 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/ComputedUsageClient.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/ComputedUsageClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/ComputedUsagePaginators.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/ComputedUsagePaginators.java index 14f293d3986..a09fa7e9d62 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/ComputedUsagePaginators.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/ComputedUsagePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/InvoiceSummary.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/InvoiceSummary.java index 479eed0857b..fca65da9dfd 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/InvoiceSummary.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/InvoiceSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/InvoiceSummaryAsync.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/InvoiceSummaryAsync.java index cfcc03e37b4..7bf7e9388ce 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/InvoiceSummaryAsync.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/InvoiceSummaryAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/InvoiceSummaryAsyncClient.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/InvoiceSummaryAsyncClient.java index 743adc8fa85..3a3853aa3a0 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/InvoiceSummaryAsyncClient.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/InvoiceSummaryAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/InvoiceSummaryClient.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/InvoiceSummaryClient.java index 7f290335bfd..0811c6c1bce 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/InvoiceSummaryClient.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/InvoiceSummaryClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/InvoiceSummaryPaginators.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/InvoiceSummaryPaginators.java index 82a7cfecfb1..87f37d11db6 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/InvoiceSummaryPaginators.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/InvoiceSummaryPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/OrganizationSubscription.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/OrganizationSubscription.java index 6ee700b8eb0..1a4507d5acb 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/OrganizationSubscription.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/OrganizationSubscription.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/OrganizationSubscriptionAsync.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/OrganizationSubscriptionAsync.java index ae14853e0fe..e8580681b2d 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/OrganizationSubscriptionAsync.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/OrganizationSubscriptionAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/OrganizationSubscriptionAsyncClient.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/OrganizationSubscriptionAsyncClient.java index a7ba744bc6a..28da3872df5 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/OrganizationSubscriptionAsyncClient.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/OrganizationSubscriptionAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/OrganizationSubscriptionClient.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/OrganizationSubscriptionClient.java index 483520117c1..7c64380ea7e 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/OrganizationSubscriptionClient.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/OrganizationSubscriptionClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/OrganizationSubscriptionPaginators.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/OrganizationSubscriptionPaginators.java index 8452515024a..5b0277235b3 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/OrganizationSubscriptionPaginators.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/OrganizationSubscriptionPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/Ratecard.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/Ratecard.java index e1809e74b58..c764f05707c 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/Ratecard.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/Ratecard.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/RatecardAsync.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/RatecardAsync.java index befd0d8624b..721fbff6d2f 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/RatecardAsync.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/RatecardAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/RatecardAsyncClient.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/RatecardAsyncClient.java index ffcaff834f4..ef964fc43b3 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/RatecardAsyncClient.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/RatecardAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/RatecardClient.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/RatecardClient.java index 0315cc1db8b..4725a43eb41 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/RatecardClient.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/RatecardClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/RatecardPaginators.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/RatecardPaginators.java index 45290a4ab43..4e73901aef0 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/RatecardPaginators.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/RatecardPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscribedService.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscribedService.java index a33da123f8e..7defd2d0edc 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscribedService.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscribedService.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscribedServiceAsync.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscribedServiceAsync.java index 37e37ec89eb..012d850a1f8 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscribedServiceAsync.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscribedServiceAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscribedServiceAsyncClient.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscribedServiceAsyncClient.java index 9a9628bc1a9..f6f5fa11561 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscribedServiceAsyncClient.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscribedServiceAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscribedServiceClient.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscribedServiceClient.java index cf07e428e48..663099d2632 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscribedServiceClient.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscribedServiceClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscribedServicePaginators.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscribedServicePaginators.java index e254554a55d..a3463c728c2 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscribedServicePaginators.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscribedServicePaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/Subscription.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/Subscription.java index 24f90c77461..c3f01b4022b 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/Subscription.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/Subscription.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscriptionAsync.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscriptionAsync.java index 9fa9a52e9a5..5b608ffdce4 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscriptionAsync.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscriptionAsync.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscriptionAsyncClient.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscriptionAsyncClient.java index 911d6285887..06c1da04028 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscriptionAsyncClient.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscriptionAsyncClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscriptionClient.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscriptionClient.java index f13a5908585..ccf9d716284 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscriptionClient.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscriptionClient.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscriptionPaginators.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscriptionPaginators.java index d2ed67fd253..c582b041bc8 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscriptionPaginators.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/SubscriptionPaginators.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/AggregatedComputedUsageSummary.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/AggregatedComputedUsageSummary.java index 110545cafae..4b0cf499c8c 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/AggregatedComputedUsageSummary.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/AggregatedComputedUsageSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription.model; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/BillingScheduleProduct.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/BillingScheduleProduct.java index e50763f8167..66c0e5e5784 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/BillingScheduleProduct.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/BillingScheduleProduct.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription.model; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/BillingScheduleSummary.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/BillingScheduleSummary.java index 83e954d0729..76c26b8b4f7 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/BillingScheduleSummary.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/BillingScheduleSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription.model; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/Commitment.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/Commitment.java index a2a936ea262..3cb630899d2 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/Commitment.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/Commitment.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription.model; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/CommitmentService.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/CommitmentService.java index 43187426cc9..98e323b869e 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/CommitmentService.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/CommitmentService.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription.model; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/CommitmentSummary.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/CommitmentSummary.java index 97a6a51e939..c89d51127b4 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/CommitmentSummary.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/CommitmentSummary.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription.model; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/ComputedUsage.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/ComputedUsage.java index 63c7ec0bee8..83ed6e1c23a 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/ComputedUsage.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/ComputedUsage.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription.model; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/ComputedUsageAggregation.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/ComputedUsageAggregation.java index 3e83881702d..f4ada1dda41 100644 --- a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/ComputedUsageAggregation.java +++ b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/ComputedUsageAggregation.java @@ -1,5 +1,5 @@ /** - * Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ package com.oracle.bmc.onesubscription.model; diff --git a/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/ComputedUsageProduct.java b/bmc-onesubscription/src/main/java/com/oracle/bmc/onesubscription/model/ComputedUsageProduct.java index 52cd40cbcbd..28{"code":"internal","msg":"git-diff-tree: context deadline exceeded","meta":{"cause":"*fmt.wrapError"}}